Profile image

How make mech cockpit

6,107 AltheimManufactorum  1.9 years ago

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

  • Log in to leave a comment
  • Profile image

    @hpgbproductions thank you for helping

    one year ago
  • Profile image

    @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.

    1.9 years ago
  • Profile image

    @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

    +1 1.9 years ago
  • Profile image

    @hpgbproductions I'll be honest with you. I didn't understand a damn thing.

    1.9 years ago
  • Profile image

    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)

    1.9 years ago