首页 > 代码库 > Unity输出场景中选中的物体数量
Unity输出场景中选中的物体数量
需要注意的有两点:
1.如果直接输出,每个没选中的物体都会执行一遍命令,需要过滤只让一个物体执行命令,但是我用Validate不太管用.直接在命令里过滤
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; [CanEditMultipleObjects] public class SelectionCount : Editor { [MenuItem("GameObject/Get Selection Count",false,0)] static public void GetSelectionCount(MenuCommand menuCommand) { //Prevent executing multiple times when right-clicking. if (Selection.objects.Length > 1) { if (menuCommand.context != Selection.objects[0]) { return; } } Debug.Log("<color=yellow>选中的数量为" + Selection.objects.Length + "</color>"); } }
Unity输出场景中选中的物体数量
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。