using Blue; /// /// 下载移动场景的Pos、Rot /// public class PointPosRotDownloadCommand : ICommand { private int sceneID; /// /// 获取移动场景的Pos、Rot命令 /// /// 场景ID public PointPosRotDownloadCommand(int sceneID) { this.sceneID = sceneID; } public void OnExcute() { this.GetService().GetScenePosRot(sceneID); } }