Page 1 of 1

unwanted visuals

Posted: 17 Nov 2024, 06:41
by Jtrendz
I draw a phone booth to use as a decoration plugin but when I place it there's water instead of the decal flooring does anyone know how I could fix that
Screenshot_20241116-230645.png

Re: unwanted visuals

Posted: 17 Nov 2024, 09:29
by FVI
That is due to a missing attribute in your code.

To fix that, add this in it.

Code: Select all

"draw ground": true,
(remove the comma if you are placing it at the end of the code) By default, if you have some transparent frames in your plugin, if you place it without it having this anywhere in the code, it will always show water under it, so every time you are creating a plugin with transparent floor, remember this json attribute.

:bc

Re: unwanted visuals

Posted: 17 Nov 2024, 18:28
by Jtrendz
Oh I see, thanks so much.

Re: unwanted visuals

Posted: 17 Nov 2024, 20:22
by FVI
You're welcome!