- 最后登录
- 2019-12-2
- 注册时间
- 2012-8-25
- 阅读权限
- 90
- 积分
- 34660
- 纳金币
- 38268
- 精华
- 111
|
- public static class Test
- {
-
- public static void ResetT(this Transform trans)
- {
- trans.position = Vector3.zero;
- trans.localRotation = Quaternion.identity;
- trans.localScale = new Vector3(1, 1, 1);
- }
- }
复制代码 一个静态类Test里面有一个静态ResetT方法一般情况下要使用 Test.ResetT(tt)来调用
可以直接 使用 this.transform.ResetT();- using UnityEngine;
- using System.Collections;
- public class MyClass : MonoBehaviour
- {
-
- void OnGUI()
- {
- if( GUILayout.Button(“ResetTransform”) )
- {
- this.transform.ResetT();
- }
- }
- }
复制代码 |
|