You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
639 B
17 lines
639 B
public partial class Player : CharacterBody3D |
|
{ |
|
[Export] public bool IsLocal { get; set; } = true; |
|
|
|
public MovementController Movement { get; private set; } |
|
public CameraController Camera { get; private set; } |
|
public AnimationController Animation { get; private set; } |
|
public PickupController Pickup { get; private set; } |
|
|
|
public override void _EnterTree() |
|
{ |
|
Movement = GetNode<MovementController>("MovementController"); |
|
Camera = GetNode<CameraController>("CameraController"); |
|
Animation = GetNode<AnimationController>("AnimationController"); |
|
Pickup = GetNode<PickupController>("PickupController"); |
|
} |
|
}
|
|
|