Created
August 16, 2017 06:39
-
-
Save xhiroga/85ddd4ed0d1de6131d87dce6573a83cc to your computer and use it in GitHub Desktop.
はてなブログでソースコードっぽい記載になるやつ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<pre class="code" data-lang="c#" data-unlink=""> | |
void Update () { | |
Animator anim = GetComponent<animator> (); | |
AnimatorStateInfo state = anim.GetCurrentAnimatorStateInfo (0);<br /> | |
if (Input.GetKeyDown (KeyCode.Space)) { | |
anim.SetTrigger ("Jump"); | |
}<br />} | |
</pre> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment