예제 #1
0
파일: UFO.cs 프로젝트: EvilDroner/Asteroids
    void Update()
    {
        HandleSound();

        _inputVertical.ReadInput();
        _inputHorizontal.ReadInput();
        _motorVertical.Tick();
        _motorHorizontal.Tick();
    }
예제 #2
0
 void Update()
 {
     _input.ReadInput();
     _motor.Tick();
 }