ActorController.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
    void Update()
    {
        if (_Speed > 0)
        {
            _Update(UnityEngine.Time.deltaTime);
        }
    }

Usage Example

Esempio n. 1
0
        public void Update()
        {
            Console.Clear();
            Console.WriteLine("Enter id of record you want to change:");
            var id = Int32.Parse(Console.ReadLine());

            var entity = controller.Find(id);

            controller.Update(entity);
        }
All Usage Examples Of ActorController::Update