mirror of
https://github.com/nothke/quality-control.git
synced 2024-11-10 12:53:43 +00:00
14 lines
410 B
C#
14 lines
410 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace KinematicCharacterController
|
|||
|
{
|
|||
|
public interface IMoverController
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// This is called to let you tell the PhysicsMover where it should be right now
|
|||
|
/// </summary>
|
|||
|
void UpdateMovement(out Vector3 goalPosition, out Quaternion goalRotation, float deltaTime);
|
|||
|
}
|
|||
|
}
|