using System.Collections; using System.Collections.Generic; using UnityEngine; public class WebTest : MonoBehaviour { // Start is called before the first frame update void Start() { List stepNames = new List() { "第一步", "第二步", "第三步" }; List maxScore = new List() { 10, 20, 30 }; List score = new List() { 5, 10, 15 }; LYTWebGLHelper.Instance.UpLoadData(60, stepNames, maxScore, score); } // Update is called once per frame void Update() { } }