You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
289 B
C#
13 lines
289 B
C#
2 months ago
|
using Cinemachine;
|
||
|
using D2D.Core;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class SetCameraPriorityOnGameRun : GameStateMachineUser
|
||
|
{
|
||
|
[SerializeField] private int _priority;
|
||
|
|
||
|
protected override void OnGameRun()
|
||
|
{
|
||
|
GetComponent<CinemachineVirtualCamera>().Priority = _priority;
|
||
|
}
|
||
|
}
|