You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
976 B
41 lines
976 B
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
using AX.MessageSystem; |
|
using AX.InputSystem; |
|
|
|
[RequireComponent(typeof(CameraManager))] |
|
public class CameraVerticalTransaction : MonoBehaviour { |
|
|
|
private CameraManager cameraManager; |
|
// Use this for initialization |
|
void Start () { |
|
cameraManager = GetComponent<CameraManager>(); |
|
} |
|
|
|
// Update is called once per frame |
|
void Update () { |
|
|
|
} |
|
|
|
void OnEnable() |
|
{ |
|
MessageDispatcher.AddListener("CAMERA_VERTICAL_MOVE_COMMAND", Execute); |
|
} |
|
|
|
void OnDisable() |
|
{ |
|
MessageDispatcher.RemoveListener("CAMERA_VERTICAL_MOVE_COMMAND", Execute); |
|
} |
|
|
|
void OnDestroy() |
|
{ |
|
MessageDispatcher.RemoveListener("CAMERA_VERTICAL_MOVE_COMMAND", Execute); |
|
} |
|
|
|
private void Execute(IMessage obj) |
|
{ |
|
var data = (CameraCmdArgs)obj.Data; |
|
cameraManager.UpdateCameraVerticalMoveData(data.keyX, data.targetMoveing); |
|
} |
|
}
|
|
|