AndroidJavaObject.SetStatic.<FieldType> 设置静态域类型

function SetStatic.<FieldType> (fieldName : string, val : FieldType) : void

Parameters参数

Description描述

Set the value of a static field in an object type.

设置一个对象类型上的静态域值。

The generic parameter determines the field type.

一般参数定义域类型。

// Create an object of user provided class org.example.StaticFields,
// and set the value of field 'globalName'.
//创建一个用户提供的类对象org.example.StaticFields
//并设置域globalName的值
function Start() {
	var jo = new AndroidJavaObject("org.example.StaticFields");
	jo.Set.<string>("globalName", "this_is_the_name");
}
最后修改:2011年4月6日 Wednesday 14:57

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。