Пример #1
0
        private void VisHost_Load()
        {
            //Keyboard.KeyRepeat = true;

            components.Load();
            SetProjection(ClientSize);
            timer.Start();
            InitKeyboard();
        }
Пример #2
0
        private void DebugAudioData_Loading(object sender, EventArgs e)
        {
            components.Load();

            float rowsize = 2f / Globals.AUDIODATASIZE;
            int   i       = 0;

            foreach (var s in filterOutputNames)
            {
                var tb = new TextBlock($"F{i:000}", $"{i:000} {s}", new Vector3(0.0f, 0.0f + (i + .5f) * rowsize, 0.0f), 0.07f / 1024f, new Vector4(1f, 1f, 1f, .2f));
                textManager.AddOrUpdate(tb);
                i++;
            }
        }
Пример #3
0
 private void TestBench_Load()
 {
     components.Load();
     timer.Start();
 }
Пример #4
0
 private void ParticleTestBench_Load(object sender, EventArgs e)
 {
     components.Load();
     timer.Start();
 }