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

I have connected StreamPlayer-> TextureButton
How to make a button that stops when you release the music play

my code
`extends TextureButton
func ready():
pass
func _on
TextureButtonpressed():
get
tree().getroot().getnode("StreamPlayer").play()
pass
func onTextureButtonreleased():
get
tree().getroot().getnode("StreamPlayer").stop()
pass

func onTextureButton_toggled( pressed ):
pass
`
but why this code does not work

Sorry for my English

in Engine by (12 points)

Если нужно сделать кнопку которая перестает работать после отпускания нужно добавить в ИНСПЕКТОРЕ Click On Press и в коде добавлять не чего не надо

1 Answer

+1 vote

If you want the button to emit a released signal, you have to enable Click On Press in the inspector.
This is not only true for TextureButtons, but buttons in general (every node that extends from BaseButton)

See the documentation

by (922 points)

Thank you very much .It works

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.