针对该问题的项目路径 要求部分 what you need to doReview the tasks provided in the section below.Obtain the boilerplate code.Use your local development environment to implement a solution.Upload your solution for marking via Gradescope. There is no attempt…
1、new C# 对象(创建游戏物体)
LuaCallCSharp.cs
using UnityEngine;
using XLua;public class LuaCallCSharp : MonoBehaviour
{public LuaEnv env null;void Start(){LuaEnv env new LuaEnv();env.DoString("requireLuaCallCSharp");}pr…