I tried to make zoom object with slider. in cube successfully , but my object created failed . is file extension .fbx in the zoom object is not support ?
I use this script :
void Start () {
sliderval = 1.0f;
}
// Update is called once per frame
void Update () {
objek.transform.localScale = new Vector3(0.55f, 0.55f, 0.55f) * sliderval * 0.1f;
Comment