Page 1 of 1
How to make a plugin with a building so that the building does not turn when the camera turns?
Posted: 31 Aug 2023, 15:42
by Chanel_joom
how to make the building in the plugin not rotate? What function should I write in the code?
Re: How to make a plugin with a building so that the building does not turn when the camera turns?
Posted: 01 Sep 2023, 09:34
by FVI
You must include 4 textures
Re: How to make a plugin with a building so that the building does not turn when the camera turns?
Posted: 01 Sep 2023, 15:01
by ur_sc4_guy
FVI wrote: ↑01 Sep 2023, 09:34
You must include 4 textures
Doesn't this have the inverse desired effect?
I mean, I think he/she is asking to not make it rotation-aware.
Re: How to make a plugin with a building so that the building does not turn when the camera turns?
Posted: 01 Sep 2023, 15:34
by FVI
ur_sc4_guy wrote: ↑01 Sep 2023, 15:01
FVI wrote: ↑01 Sep 2023, 09:34
You must include 4 textures
Doesn't this have the inverse desired effect?
I mean, I think he/she is asking to not make it rotation-aware.
Yes, you're right.
Put "false" instead of "true"
Re: How to make a plugin with a building so that the building does not turn when the camera turns?
Posted: 01 Sep 2023, 20:43
by Kulche
First of all, this attribute is a boolean so you don't put it in quotation marks. I assume "the building turns when the camera turns" means that simply the building has no rotation frames. If you want it not to rotate you have to provide a total of 4 frames and use "rotation aware": true.
Re: How to make a plugin with a building so that the building does not turn when the camera turns?
Posted: 06 Jul 2024, 13:33
by Chanel_joom
Thank you