Appearance
RawImage (JavaScript)
RawImage
Scripting Name:Insight.RawImage
GUI 上纹理显示组件。
Properties
color
type :Insight.Vector4
图片颜色。
javascript
// sample:
var image = gameobject.getComponent("RawImage", 0);image.color = Insight.Vector4.New(1.0, 0.0, 0.0); -- 将图片颜色改为红色
material
type :Insight.Material
图片使用的材质。
texture
type :Insight.Texture
图片使用的纹理。
Methods
toString
javascript
public string toString();
将 image 内容以一定格式转为 string 类型。
javascript
// sample:
var image = gameobject.getComponent("RawImage", 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。
Origin Link: https://near.yuque.com/arworld/pgywq3/khntcr