Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

hello Im trying to make a game using Godot GDnative script c++. Iwas wondering how I could access audio from the c++ script.

here is my c++ code:

void Ball::_physics_process(float delta) {
auto collision_object = move_and_collide(motion * speed * delta);

if (collision_object!=NULL) {
    motion = motion.bounce(get_floor_normal());
}
"collisionBeep".play();

here is my GD code:

func _physics_process(delta):
    var collision_object = move_and_collide(velocity * speed * delta)
    print(collision_object)
    if collision_object:
        velocity = velocity.bounce(collision_object.normal)
        $collisionBeep.play()
question from:https://stackoverflow.com/questions/65874469/godot-c-audio-access

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...