Appearance
Image (JavaScript)
Image
Scripting Name:Insight.Image
GUI 上 Sprite 显示组件。
Properties
color
type :Insight.Vector4
图片颜色。
javascript
// sample:
var image = gameobject.getComponent("Image", 0);image.color = Insight.Vector4.New(1.0, 0.0, 0.0); -- 将图片颜色改为红色
sprite
type :Insight.Sprite
图片的 Sprite。
material
type :Insight.Material
图片使用的材质。
Methods
toString
javascript
public string toString();
将 image 内容以一定格式转为 string 类型。
javascript
// sample:
var image = gameobject.getComponent("Image", 0);Insight.Debug.Log(image.toString());
Inherited Properties(继承自 Component)
enabled
type : boolean
该组件是否是可用的。
gameObject
type :Insight.GameObject
(只读)该组件所依附的 GameObject。
isActiveAndEnabled
type : boolean
(只读)该组件是否可用,且其依附的 GameObject 是否是活跃状态。
name
type : string
(只读)所依附的 GameObject 的名称。
tag
type : string
(只读)所依附的 GameObject 的 Tag。
⚠️ 暂时未启用
transform
type :Insight.Transform
(只读)所依附的 GameObject 的 transform。