The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

0 votes

Hey. I'm making a HBoxContainer and it's children disappear in a tween node, but when i try, i get this.

https://drive.google.com/file/d/13X2EFqegBVW1aIWCik1sh9d6qMQX55At/view?usp=sharing

Here's all the necessary code

func _notification(what: int) -> void:
    match what:
        NOTIFICATION_WM_MOUSE_ENTER:
            show_buttons()
        NOTIFICATION_WM_MOUSE_EXIT:
            hide_buttons()

func show_buttons() -> void:
    $Buttons.show()
    $Buttons.set_mouse_filter(Control.MOUSE_FILTER_PASS)

    $Tween.interpolate_property(
        $Buttons,
        'modulate',
        $Buttons.get_modulate(),
        Color(255, 255, 255, 0),
        0.75,
        Tween.TRANS_SINE,
        Tween.EASE_IN
    )
    $Tween.start()

func hide_buttons() -> void:
    $Buttons.show()
    $Buttons.set_mouse_filter(Control.MOUSE_FILTER_IGNORE)

    $Tween.interpolate_property(
        $Buttons,
        'modulate',
        $Buttons.get_modulate(),
        Color(255, 255, 255, 255),
        0.75,
        Tween.TRANS_SINE,
        Tween.EASE_OUT
    )
    $Tween.start()

    $Buttons.hide()
Godot version v3.3.4 stable
in Engine by (19 points)
edited by

1 Answer

+3 votes
Best answer

You can tween the alpha directly if that's what you need:

$Tween.interpolate_property(
        $Buttons,
        "modulate:a",
        $Buttons.modulate.a,
        0,
        etc etc
    )

However if you just want to make the UI disappear, you can simply call hide() and show().

by (194 points)
selected by

It seems to stop the node from turning white. For the hide button functions however, I needed to add a yield function to stop it from hiding before the tween node is finished:

func hide_buttons() -> void:
    $Buttons.show()
    $Buttons.set_mouse_filter(Control.MOUSE_FILTER_IGNORE)

    $Tween.stop_all()
    $Tween.interpolate_property(
        $Buttons,
        'modulate:a',
        $Buttons.get_modulate().a,
        0.0,
        0.25,
        Tween.TRANS_SINE,
        Tween.EASE_OUT
    )
    $Tween.start()

    yield($Tween, 'tween_completed')
    $Buttons.hide()

Thanks for the help

Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.