install useful assets

This commit is contained in:
2025-11-16 18:44:39 -05:00
parent 101a8ef233
commit 1e009cd67c
214 changed files with 15645 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
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);
}
}