Page 1 of 1

Light animations

Posted: 12 Aug 2019, 05:59
by CommanderABab
To include light within your plugins:

Use

Code: Select all

"light":true
within an animation and use that animation as the plugin image. Note the frames is left null in the plugin itself and draw ground is used.

Code: Select all

[{  
	  "id":"$testlightanim",
	  "type":"animation",
	  "light":true,
	  "light switching":false,
	  "frames": [{"bmp":"unsettlingi.png","handle y":8}]
	},
	"id":"$testxlight",
	   "title": "test",
		"text": "test",
		"build time": 3,
		"price": 0,
		"removable": true,
		"needs road": false,
		"needs land":false,
		
		"draw ground": true,
		"max count":96,
		"type": "park",
		"frames":[],
		"animation":[{"id":"$testlightanim"}],
		"slope aware":true,
		"influence park":10,
		"width": 1,
		"height": 1,
		"fun":[
        
        {"condition":{"type":"and","inner":[{"type":"buildable","id":"$testxlight","x":-1,"y":-1}, {"type":"days built","min":3,"max":4},{"type":"building count","id":"$testxlight","min":0,"max":50},{"type":"rect","x":-6,"y":-6,"w":13,"h":13,"min":1,"max":169,"inner":[{"type":"road","level":0}]}]},
"actions":[{"type":"build","id":"$testxlight","x":-1,"y":-1}],"p":100, "ignore sucess":true }]
]
unsettlingi.png
unsettlingi.png (290 Bytes) Viewed 8964 times
Use:

Code: Select all

"light":true,
	  "light switching":true
or omit the light switching line because the default is true if light is used.
If light switching is true, the park will only be visible at night with the day night cycle plugin from the plugin store built on the map. With both lines omitted, the park would always be visible, but darken at night.
The code should work if you include the image in the test folder within your plugins folder.

Re: Light animations

Posted: 12 Aug 2019, 08:17
by Kulche
Thanks.
Don't ask about proper night definitions and tutorials because they will come out later.

Re: Light animations

Posted: 12 Aug 2019, 11:30
by Lakan Haraya
Heya!! I think, this is what I'm looking for! Hmm... Thanks @CommanderABab

Re: Light animations

Posted: 29 Aug 2019, 14:37
by Sparkle8538
Night frames not animation?

Code: Select all

"night frames":[{"bmp":"YOUR_FRAMES_HERE.png"}]

Re: Light animations

Posted: 29 Aug 2019, 18:17
by CommanderABab
Maybe, ...

Re: Light animations

Posted: 29 Aug 2019, 18:19
by Kulche
No, it doesn't work that way.

Re: Light animations

Posted: 29 Aug 2019, 18:21
by Sparkle8538
Maybe lobby must launch it

Re: Light animations

Posted: 30 Aug 2019, 12:29
by malsa
Sparkle8538 wrote:
29 Aug 2019, 18:21
Maybe lobby must launch it
what?

Re: Light animations

Posted: 10 Oct 2020, 21:51
by 1Code
What is the minimum version for this?

Re: Light animations

Posted: 10 Oct 2020, 23:32
by CommanderABab
Probably 1.7.43 to be safe.

Re: Light animations

Posted: 18 Jun 2021, 20:13
by anhkatori2k
How to add night animations to slope frames ?