lua代码设置unity对象的基础属性
Posted 小小灵爱李婷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lua代码设置unity对象的基础属性相关的知识,希望对你有一定的参考价值。
设置对象的父节点:
wall.transform:SetParent(GameObject.Find("Walls").transform)
设置颜色:
wall:GetComponent("Image").color = UnityEngine.Color(111/255, 89/255, 89/255, 1)
设置大小:
wall.transform.localScale = UnityEngine.Vector3(0.2, 0.2, 1)
设置位置:
wall.transform.localPosition = UnityEngine.Vector3(pos.posX, pos.posY, pos.posZ)
以上是关于lua代码设置unity对象的基础属性的主要内容,如果未能解决你的问题,请参考以下文章