12345678910111213141516171819202122 |
- using Blue;
- /// <summary>
- /// 下载移动场景的Pos、Rot
- /// </summary>
- public class PointPosRotDownloadCommand : ICommand
- {
- private int sceneID;
- /// <summary>
- /// 获取移动场景的Pos、Rot命令
- /// </summary>
- /// <param name="projectID">场景ID</param>
- public PointPosRotDownloadCommand(int sceneID)
- {
- this.sceneID = sceneID;
- }
- public void OnExcute()
- {
- this.GetService<IUpOrDownloadService>().GetScenePosRot(sceneID);
- }
- }
|