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.
25 lines
562 B
25 lines
562 B
4 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using System;
|
||
|
using AX.MessageSystem;
|
||
|
|
||
|
namespace AX.InputSystem
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 旋转进入命令
|
||
|
/// </summary>
|
||
|
public class RotateEnterCommand : Command
|
||
|
{
|
||
|
public static readonly RotateEnterCommand Instance = new RotateEnterCommand();
|
||
|
|
||
|
public override void Execute(long gameObjID, CmdArgs arg)
|
||
|
{
|
||
|
base.Execute(gameObjID, arg);
|
||
|
|
||
|
MessageDispatcher.SendMessage("ROTATE_ENTER_COMMAND", arg);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|