Skip to content

Instantly share code, notes, and snippets.

@NanoDano
Created June 19, 2023 00:09
Show Gist options
  • Save NanoDano/524956f2db5c6c89fe531b1eaee4a89f to your computer and use it in GitHub Desktop.
Save NanoDano/524956f2db5c6c89fe531b1eaee4a89f to your computer and use it in GitHub Desktop.
Play animation on keypress in Unity
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayAnimationOnKey : MonoBehaviour
{
public Animation animationToPlay;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.Space))
{
animationToPlay.Play();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment