unity c# 代码示例
Posted qq77530202
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity c# 代码示例相关的知识,希望对你有一定的参考价值。
1、
using UnityEngine; using System.Collections; public class AnimatorMove : MonoBehaviour { public float DirectionDampTime = .25f; private Animator animator; //声明一个动作机变量 animator void Start () { animator = GetComponent<Animator>(); } void Update () { if (animator == null) return; //return后就不会执行下面操作 AnimatorStateInfo stateInfo = animator.GetCurrentAnimatorStateInfo(0);// 判断动画是否播放完成 if (stateInfo.IsName("Base Layer.Run")) { if (Input.GetButton("Fire1")) animator.SetBool("Jump", true); } else animator.SetBool("Jump", false); if (Input.GetButtonDown("Fire2") && animator.layerCount >= 2) animator.SetBool("Hi", true); else animator.SetBool("Hi", false); float h = Input.GetAxis("Horizontal"); float v = Input.GetAxis("Vertical"); animator.SetFloat("Speed", h * h + v * v); animator.SetFloat("Direction", h, DirectionDampTime, Time.deltaTime); } }
2、
private Animator animator; void Start() { animator = this.GetComponent<Animator>(); } void Update() { AnimatorStateInfo info = animator.GetCurrentAnimatorStateInfo(0); // 判断动画是否播放完成 if( info.normalizedTime >= 1.0f) { DoSomething(); } }
以上是关于unity c# 代码示例的主要内容,如果未能解决你的问题,请参考以下文章
Unity HTFramework框架(四十)Debug的性能监控
Unity3DAndroid Studio 工程中使用 Java 代码调用 Unity 的 C# 脚本 ( Java 中调用 UnityPlayer#UnitySendMessage 方法 )
Unity3DAndroid Studio 工程中使用 Java 代码调用 Unity 的 C# 脚本 ( Java 中调用 UnityPlayer#UnitySendMessage 方法 )