This commit is contained in:
CortexCore
2023-12-16 23:30:08 +08:00
parent 78216a3d47
commit 961ae8feb4
33 changed files with 369 additions and 148 deletions

View File

@@ -9,6 +9,12 @@ using UnityEngine;
namespace BITFALL.Player.Movement
{
[Serializable]
public class MonoPlayerFixedPlace:AbstractPlayerFixedPlace
{
[SerializeField] private PlayerFixedPlace playerFixedPlace;
protected override IPlayerFixedPlace _playerFixedPlaceImplementation => playerFixedPlace;
}
public class PlayerFixedPlace :MonoBehaviour, IPlayerFixedPlace,IDescription
{
[SerializeField] private new Rigidbody rigidbody;