rokojori_action_library/Runtime/Cameras/CameraSlotSelectors/SetActiveCameraSlot.cs

25 lines
383 B
C#
Raw Normal View History

using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System;
using Godot;
2026-05-22 12:25:02 +00:00
using Rokojori.Extensions;
namespace Rokojori
{
[Tool]
[GlobalClass]
public partial class SetActiveCameraSlot:CameraSlotSelector
{
[Export]
2025-08-31 06:05:39 +00:00
public CameraSlot slot;
2025-08-31 06:05:39 +00:00
public override CameraSlot GetCameraSlot()
{
return slot;
}
}
}