unwanted visuals
Moderators: Scenario Moderators, Plugin Moderators
unwanted visuals
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
- FVI
- Inhabitant of a Galaxy
- Posts: 2368
- Joined: 22 Feb 2022, 18:00
- Location: The largest island in Europe
- Plugins: Showcase Store
- Version: Beta
-
Platform
Re: unwanted visuals
That is due to a missing attribute in your code.
To fix that, add this in it. (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.

To fix that, add this in it.
Code: Select all
"draw ground": true,

Re: unwanted visuals
Oh I see, thanks so much.