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.
31 lines
690 B
31 lines
690 B
using Babushka.scripts.CSharp.Common.Fight;
|
|
using Godot;
|
|
|
|
namespace Babushka.scripts.CSharp.Common.Camera;
|
|
|
|
public partial class CameraController : Camera2D
|
|
{
|
|
#region Singleton ( Contains _EnterTree() ) // TODO: use autoload or other solution
|
|
|
|
public static CameraController Instance { get; private set; } = null!;
|
|
|
|
public override void _EnterTree()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
#endregion
|
|
|
|
[Export] private Node2D _followNode;
|
|
|
|
public FightHappening? fightToShow;
|
|
|
|
|
|
public override void _Process(double delta)
|
|
{
|
|
this.GlobalPosition = /*fightToShow?.camPositionNode.GlobalPosition ??*/ _followNode.GlobalPosition;
|
|
|
|
}
|
|
|
|
}
|