コード例 #1
0
ファイル: MainForm.cs プロジェクト: thomas5lab/PSVRFramework
        void blink(object state)
        {
            ledsOn = !ledsOn;

            if (ledsOn)
            {
                PSVRController.LedsOn();
            }
            else
            {
                PSVRController.LedsOff();
            }
        }