- 2
- 0
- 约4.68千字
- 约 22页
- 2017-11-27 发布于广东
- 举报
第09-12课
编辑器界面功能扩展
—编辑器;课程名称 Lesson Title
编辑器界面功能扩展
学习者等级 Learner Level
专业能力认证课程
模块 Module
编辑器
本课时长 Duration
180分钟;学习者背景 Learner Background
本课程要求学习者熟悉Unity用户界面,对编辑器类有简单了解。
教学目标 Objectives
? 能够熟练运用编辑器的拓展功能;主题 Topics ;在编辑器中访问选择对象;using UnityEngine;
using UnityEditor;
public class LookAtMainCamera : ScriptableObject {
[MenuItem (Example/Selection looks at Main Camera _l)]
static void Look() {
Camera camera = Camera.main;
if (camera) {
foreach (Transform transform in Selection.transforms) {
Undo.RegisterUndo(transform, + Looks at Main Camera );
transform.LookAt(camera.transform);
}
}
}
//The menu item will be disabled if nothing, is selected.
//菜单项目将会失去效用,如果没有事物被选择。
[MenuItem (Example/Selection looks at Main Camera _l, true)]
static bool ValidateSelection () {
return Selection.transforms.Length != 0;
}
};SelectionMode类;主题 Topics ;Undo;方法;using UnityEngine;
using UnityEditor;
//Performs an Undo the number of times specified.
//执行指定的撤销次数
public class PerformVariousUndo : ScriptableWizard {
public int numberOfSteps = 5;
[MenuItem (Example/Perform Various Undo %#u)]
static void ExecuteMenu() {
ScriptableWizard.DisplayWizard(
Perform various Undo at the same time,
typeof(PerformVariousUndo),
Undo!);
}
void OnWizardCreate() {
// We have to make this in order to make the undo
// dont reset the value entered in the inspector
int savedNumberOfSteps = numberOfSteps + 1;
for(int i = 0; i savedNumberOfSteps; i++) {
Undo.PerformUndo();
}
}
};主题 Topics ;MonoScript;using UnityEngine;
using UnityEditor;
using System.Collections;
public class MonoScriptTest : EditorWindow{
MonoScript sc;
[MenuItem (Example/MonoScriptTest)]
static void Init()
{
EditorWindow window = EditorWindow.GetWindow(typeof(MonoScriptTest));
window.Show();
}
void OnGUI()
{
sc = EditorGUILayout.ObjectField(Component, sc, typeof(MonoScript)) as MonoScript;
if(GUILayout.Button(Add t
您可能关注的文档
- UAC2015W0910SourceUAC2015W0910章节.pptx
- UAC2015W0905SourceUAC2015W0905章节.pptx
- UAC2015W0915SourceUAC2015W0915章节.pptx
- UAC2015W0926SourceUAC2015W0926章节.pptx
- UAC2015W1016SourceUAC2015W1016章节.pptx
- UAC2015W1013SourceUAC2015W1013章节.pptx
- UAC2015W1201SourceUAC2015W1201章节.pptx
- 餐饮管理第二版蔡万坤餐饮管理第二版课程教学支持资源.ppt
- 饭店管理实务英语郭淑梅课件.ppt
- 非营利组织管理学李维安3章节.ppt
- 山西天一大联考2025-2026学年高二上学期期末学情监测语文试题(试卷+解析).docx
- 山西忻州部分学校2025-2026学年高一上学期2月质量检测数学试题(人教B版)(试卷+解析).docx
- 山西运城市2025-2026学年高二第一学期期末调研测试数学试题(试卷+解析).docx
- 陕西省榆林市榆阳区2025-2026学年八年级上学期期末地理试题(试卷+解析).docx
- 陕西西安市碑林区2025-2026学年度第一学期期末八年级生物试题(试卷+解析).docx
- 四川省广元市苍溪县2025-2026年八年级上学期期末道德与法治试题(试卷+解析).docx
- 江苏泰州市姜堰区2025-2026学年七年级上学期1月期末数学试题(试卷+解析).docx
- 江苏省扬州市邗江区2025-2026学年九年级上学期期末考试化学试题(试卷+解析).docx
- 江西上饶市铅山县2025-2026学年第一学期期末考试八年级数学试题(试卷+解析).docx
- 江苏扬州市高邮市2025-2026学年度第一学期期末学业质量监测试题九年级英语(试卷+解析).docx
原创力文档

文档评论(0)