create camera script to report it's current viewport via the event bus

This commit is contained in:
2022-11-21 01:42:57 -03:00
parent 6ffb2a58d0
commit 96a64077bf
2 changed files with 22 additions and 0 deletions

View File

@@ -14,4 +14,6 @@ public sealed class Event : Node
delegate void PlayerTouched();
[Signal]
delegate void DebugState(string state);
[Signal]
delegate void CameraView(Rect2 rect);
}