예제 #1
0
파일: Player.cs 프로젝트: NoohAlavi/zombies
    public async void ShowBlood()
    {
        _bloodParticles.Show();
        await ToSignal(GetTree().CreateTimer(.5f), "timeout");

        _bloodParticles.Hide();
    }
예제 #2
0
파일: HUD.cs 프로젝트: IndieRonin/Roller
 //Show the exit button for the main n=menu when it shows
 public void LoadMenu()
 {
     HideUI();
     hudParticles.Show();
     EmitSignal(nameof(ShowMenu));
     messageLabel.Show();
     exitBtn.Show();
 }