Night Animations
Moderator: Plugin Moderators
- KINGTUT10101
- 1,000,000 inhabitants
- Reactions:
- Posts: 2104
- Joined: Thu Jul 07, 2016 22:50
- Location: 'Merica
- Plugins: Show
- Version: Beta
- Contact:
Re: Night Animations
Is there a way to add a probability that certain lights will be on/off?
All of my plug-ins, maps and more:
https://sites.google.com/view/retrocity ... authuser=0
YouTube channel:
https://youtube.com/c/kingtut-101
https://sites.google.com/view/retrocity ... authuser=0
YouTube channel:
https://youtube.com/c/kingtut-101
- Imran M
- Inhabitant of a Megalopolis
- Reactions:
- Posts: 721
- Joined: Wed Oct 24, 2018 13:41
- Plugins: Show
Re: Night Animations
Probably fun, maybe check animation control, or random fun, as well as rnd. Those could be what you need.KINGTUT10101 wrote: ↑Wed Jun 24, 2020 21:04Is there a way to add a probability that certain lights will be on/off?
I have no clue what's happening this year
- MONTEMARINO
- Inhabitant of a Conurbation
- Reactions:
- Posts: 506
- Joined: Sat Nov 18, 2017 19:23
- Plugins: Show
- Version: Beta
Re: Night Animations
Yes. Ask @Carlão da massa, he added a random animation on his Allianz Parque Stadium. Lights shoud be the same...KINGTUT10101 wrote: ↑Wed Jun 24, 2020 21:04Is there a way to add a probability that certain lights will be on/off?

-
- Villager
- Reactions:
- Posts: 15
- Joined: Fri Jan 10, 2020 21:10
- Plugins: Show
Re: Night Animations
For the stadium I just put a date factor for the animation ("date": {"start day": 0, "days": 7, "days total": 30}) it is simply a periodic animation.
- KINGTUT10101
- 1,000,000 inhabitants
- Reactions:
- Posts: 2104
- Joined: Thu Jul 07, 2016 22:50
- Location: 'Merica
- Plugins: Show
- Version: Beta
- Contact:
Re: Night Animations
That's a bit disappointing. Thanks for the response though. I would implement that idea into my plug-in, but I don't want to redefine all of the light animations to do it tbh. Maybe a developer could add it in the future.
All of my plug-ins, maps and more:
https://sites.google.com/view/retrocity ... authuser=0
YouTube channel:
https://youtube.com/c/kingtut-101
https://sites.google.com/view/retrocity ... authuser=0
YouTube channel:
https://youtube.com/c/kingtut-101
- TheFennekin
- Neighborhood fox
- Reactions:
- Posts: 2217
- Joined: Thu Aug 24, 2017 11:17
- Location: Tokyo
- Plugins: Show
- Version: Beta
Re: Night Animations
Noob question, how do you add a custom night animation?
- KINGTUT10101
- 1,000,000 inhabitants
- Reactions:
- Posts: 2104
- Joined: Thu Jul 07, 2016 22:50
- Location: 'Merica
- Plugins: Show
- Version: Beta
- Contact:
Re: Night Animations
Is there a way we could easily change the color of these lights? I think having white or light blue versions available would be really nice.
All of my plug-ins, maps and more:
https://sites.google.com/view/retrocity ... authuser=0
YouTube channel:
https://youtube.com/c/kingtut-101
https://sites.google.com/view/retrocity ... authuser=0
YouTube channel:
https://youtube.com/c/kingtut-101
Re: Night Animations
I could recolor all the lights white and use "color" in animation def and add blue variants. There is no easy way of changing colors without adding new animations.
I'm not lazy, I'm motivated to do nothing!
...
...
Re: Night Animations
Since the latest versionIn a future version (that will be 1.8.90) a new attribute can be used. It is called
It can be used in animation definition. With the code above, the light has a 90% probability of spawning. It can be used to create more diversity of lights on the same buildings.
Code: Select all
"night light probability":0.9
/\_/\ ( o.o ) > ^ <
I'm not lazy, I'm motivated to do nothing!
...
...
Re: Night Animations
That upcoming version will also support color within animation spot definitions instead of only within the animation draft definitions.
Could look like that: You can either specify a color directly within a color object (like "color":{r:...}) or provide an id of a color that was defined before:
Could look like that: You can either specify a color directly within a color object (like "color":{r:...}) or provide an id of a color that was defined before:
Code: Select all
[
{
"id": "$simpletestcolor00",
"type": "color",
"r": 0,
"g": 255,
"b": 0
},
{
"id":"$comhotel00",
"type":"commercial",
"animation": [
{"id": "$anim_comhotel00_elevator00"},
{"id":"4x2_side", "x":9, "y":-47,"color": {"r": 255,"g": 0,"b": 0}},
{"id":"4x2_side", "x":9, "y":-57,"color": "$simpletestcolor00"},
...
],
...
}
]
_._ _,-'""`-._ (,-.`._,'( |\`-/| `-.-' \ )-`( , o o) `- \`_`"'-
=^._.^= ∫
Re: Night Animations
Another option is to useKulche wrote: ↑Sun Jun 28, 2020 13:07Since the latest versionIn a future version (that will be 1.8.90) a new attribute can be used. It is calledCode: Select all
"night light probability":0.9
Code: Select all
"animation night light probability": 0.9
=^._.^= ∫
- Alparingitlgnd5
- Villager
- Reactions:
- Posts: 15
- Joined: Fri Jul 31, 2020 17:45
- Location: Las Piñas, Philippines
- Plugins: Show
- Version: Beta
- Contact:
Re: Night Animations
Where to put this code "animation":[{"id":"1x2l", "x":9, "y":-5}] and "animation":[{"id":"1x2", "x":9, "y":-5}, {"id":"1x2", "x":23, "y":-2}] this one? also this one [{"id":"1x2", "x":16, "y":-7, "frame":0}, {"id":"1x2", "x":12, "y":-1, "frame":1}] where do I put these ones even this "light":true/false, and this "light switching":true/false sorry for my question.
Re: Night Animations
All the "animation" codes go into your building definition. The "light" ones go into your animation definition, along with custom frames and such.
I'm not lazy, I'm motivated to do nothing!
...
...
Re: Night Animations
answering your question I think the order does not matter I would put the code down to the bottom of the jsonAlparingitlgnd5 wrote: ↑Tue Aug 11, 2020 7:26Where to put this code "animation":[{"id":"1x2l", "x":9, "y":-5}] and "animation":[{"id":"1x2", "x":9, "y":-5}, {"id":"1x2", "x":23, "y":-2}] this one? also this one [{"id":"1x2", "x":16, "y":-7, "frame":0}, {"id":"1x2", "x":12, "y":-1, "frame":1}] where do I put these ones even this "light":true/false, and this "light switching":true/false sorry for my question.
Last edited by TTFercho on Wed Aug 12, 2020 21:06, edited 2 times in total.
Re: Night Animations
Kulche do you know of any mobile app that allows me to see the coordinates of the windows or how can I know it? I use pixel studio to make my plugins, please answer me.
Re: Night Animations
I don't use Android so I don't know any apps that show coordinates. Maybe you could try Pixly but I'm not sure about it. I recommend getting paint.net on a desktop as it's far more convenient.
I'm not lazy, I'm motivated to do nothing!
...
...
Re: Night Animations
and I have to write the exact coordinates of the window or those of the pivot point?
Re: Night Animations
You have to define the red points, otherwise the windows will be misaligned
I'm not lazy, I'm motivated to do nothing!
...
...