Page 1 of 1

[1.8.58] Ground tiles under buildings

Posted: 31 May 2020, 14:09
by Bearbear76
Hello!
With the upcoming update 1.8.58 a new feature has been added to JSON called:

Code: Select all

"ground tiles": [ "$ground_00", "$ground_01", "$ground_02" ],  //array with ground ids
This will randomly select one ground tile in the given array and build it under the building.
So for example, you want to make a building that has asphalt as it's ground you would simply add this line of JSON:

Code: Select all

"ground tiles": [ "$asphalt00", "$asphalt01", "$asphalt02" ]
nice asphalt :)
nice asphalt :)
SPOILER_401c90c6-3ca7-458e-8245-58e2e77e66eb.png (219.95 KiB) Viewed 4922 times
Also by adding a wide variety of grounds your building won't look too repetitive.
You could also save plugin space by using this method if you use a variety of ground tiles for a variety of buildings.

\(space = grounds + buildings\)
space you use when using the ground tile method (new method)

\(space = grounds \cdot buildings\)
space you use adding the ground individually to each building (old method)

make sure you do some quick maths since the ground tile method won't always save plugin space!
1 ground frame, 3 buildings
  • new method: 3 + 1 = 4 <-- uses more plugin space :(
  • old method: 3 * 1 = 3
3 ground frames, 4 buildings
  • new method: 3 + 4 = 7 <-- uses less plugin space :)
  • old method: 3 * 4 = 12
This is an example of how you would implement it in your JSON:

Code: Select all

[	{
		//old method
 		"id": "$ground_tile_example",
  		...
		"random frames": true,
		 "frames": [
		 	{"bmp": "$example_building00"},
	 		{"bmp": "$example_building01"},
		 	{"bmp": "$example_building02"}
		 ]
	},
	{
		//new method
		//this makes it more concise, yet much more readable
		"id": "$ground_tile_example",
		...
		"draw ground": true,
		"frames": [{"bmp": "$example_building"}],
		"ground tiles": [ "$example_tile00", "$example_tile01", "$example_tile02" ]
	}
]
:jb: Bear out!

Re: [1.8.58] Ground tiles

Posted: 31 May 2020, 14:33
by Bevise
What does "random frames" mean?

Re: [1.8.58] Ground tiles

Posted: 31 May 2020, 15:10
by Bearbear76
Bevise wrote:
31 May 2020, 14:33
What does "random frames" mean?
Advanced tags for building plugins wrote: "random frame": (bool),
Every time you place the building, a random frame from the frame array will be selected
does almost the same thing. :)

Re: [1.8.58] Ground tiles

Posted: 07 Jun 2020, 13:59
by ian`
What ground is automatically removed when i bulldoze buildings?

Re: [1.8.58] Ground tiles

Posted: 07 Jun 2020, 17:30
by JustAnyone
This exact ground