This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

I have a KinematicBody2D and simple scene. In start plays something like a cutscene and I need to stop player when it plays.
code:

extends Node2D

    func _ready():
        $frisk.hide()

    func _process(delta):
        $wake.play("wake_up")
        if Input.is_action_just_pressed("ui_accept"):
            $frisk.show()
            $frisk/AnimationPlayer.play("idle_left")
            $wake.hide()

or i can make things more easier? if it is, then you can tell me.

(I actually have "wake_up" animation in animationplayer, but i can't find way how to use it properly)

Godot version 3.2.3 stable
in Engine by (32 points)

1 Answer

+1 vote

I think add a key in your animationplayer that consist of your Player's position and set it up with
x = 0
y = 0.

This will stop the player

if this doesn't work then, just completely make your player controller inaccessible for a period of time

by (385 points)
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.