Hello.
Writing on the forum for the first time, not counting on the answer, but still...
Saw one author like this (link 1) how can you do about the same, so that initially the text panels are black, but when you click on any of the activators (say activator 1) these same text panels relatively smoothly became transparent, giving a full view of the cockpit?
Here is the link itself : https://www.simpleplanes.com/Videos/View/1669080/Interesting-pseudo-reality-projection-display
@hpgbproductions thank you for helping
@hpgbproductions I don't know anything about programming at all. I can copy and paste code, but I can't write it myself and make it work.... I certainly can't.
@AltheimManufactorum try to toggle a label's visibility without animations first. Then add an animation timer and multiple levels of opacity. This should help you learn how it's made
@hpgbproductions I'll be honest with you. I didn't understand a damn thing.
Use alpha tag with a timer ternary list like:
{timer<0.1?"FF":(timer<0.2?"E0":( ... ))}
Where timer is an animation timer that is zero at full opacity, for example:
smooth(activate ? timerMax : 0, 1)