Files
MuHua-Core/Assets/ModuleFunction/ViewInput/ViewInputPlateBaking.cs
T
2024-11-08 18:15:06 +08:00

15 lines
506 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ViewInputPlateBaking : ViewInput {
protected override void Awake() {
ModuleCore.PlateBakingViewInput = this;
}
private void Start() {
leftViewInputUnit = new VIUCameraMobile(ModuleCore.PlateBakingViewCamera);
rightViewInputUnit = new VIUCameraRotate(ModuleCore.PlateBakingViewCamera);
scrollViewInputUnit = new VIUCameraScale(ModuleCore.PlateBakingViewCamera);
}
}