摘要:
O3DE 是否会成为游戏引擎界的“Blender” O3DE的前世今生 上个月Epic Games 也加入了Open 3D Foundation(O3DF),伴随着Epic Games 的加入,O3DF已有Adobe、亚马逊 AWS、华为、英特尔、LightSpeed Studios、微软和Nian 阅读全文
摘要:
最近迁移项目到UnityXR框架,发现UnityXR框架使用了新的输入系统(InputSystem)然后就学习了一下。 using System.Collections; using System.Collections.Generic; using UnityEngine; using Unity 阅读全文
摘要:
如何使用事件创建动态的“广播”系统。 事件 EventManager using UnityEngine; using System.Collections; public class EventManager : MonoBehaviour { public delegate void Click 阅读全文
摘要:
使用属性可以将其他行为附加到所创建的方法和变量。在本视频中,您将学习属性的格式以及如何使用“Range”和“ExecuteInEditMode”属性。 SpinScript using UnityEngine; using System.Collections; public class SpinS 阅读全文
摘要:
DelegateScript using UnityEngine; using System.Collections; public class DelegateScript : MonoBehaviour { delegate void MyDelegate(int num); MyDelegat 阅读全文
摘要:
MotionScript using UnityEngine; using System.Collections; public class MotionScript : MonoBehaviour { public float speed = 3f; void Update () { transf 阅读全文
摘要:
如何创建协程并使用它们来实现复杂的行为。 CoroutinesExample using UnityEngine; using System.Collections; public class CoroutinesExample : MonoBehaviour { public float smoo 阅读全文