[trim] fully-unreachable files deleted: 3 [trim] files edited: 21, files deleted: 0, nodes removed: 38 [type-trim] files edited: 3, types removed: 3 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
27 lines
344 B
C#
27 lines
344 B
C#
using UnityEngine;
|
|
using Wizard.Battle.View.Vfx;
|
|
|
|
public class BattleCamera
|
|
{
|
|
public UICamera m_CutInCamera;
|
|
|
|
public Camera Camera;
|
|
|
|
public Camera _backgroundCamera;
|
|
|
|
public BattleCamera()
|
|
{
|
|
Camera = null;
|
|
}
|
|
|
|
public Camera Get3DCamera()
|
|
{
|
|
return Camera;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Camera = null;
|
|
}
|
|
}
|