纳金网
标题:
Transform静态类方法直接调用
[打印本页]
作者:
王者再临
时间:
2014-8-31 12:17
标题:
Transform静态类方法直接调用
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();
[code]csharpcode:
using UnityEngine;
using System.Collections;
public class MyClass : MonoBehaviour
{
void OnGUI()
{
if( GUILayout.Button(“ResetTransform”) )
{
this.transform.ResetT();
}
}
}
复制代码
作者:
hyui
时间:
2014-9-1 04:36
!@~感谢分享!
欢迎光临 纳金网 (http://go.narkii.com/club/)
Powered by Discuz! X2.5