24 lines
556 B
C#
24 lines
556 B
C#
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
public class WebTest : MonoBehaviour
|
|||
|
|
{
|
|||
|
|
// Start is called before the first frame update
|
|||
|
|
void Start()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
List<string> stepNames = new List<string>() { "<22><>һ<EFBFBD><D2BB>", "<22>ڶ<EFBFBD><DAB6><EFBFBD>", "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" };
|
|||
|
|
List<int> maxScore = new List<int>() { 10, 20, 30 };
|
|||
|
|
List<int> score = new List<int>() { 5, 10, 15 };
|
|||
|
|
LYTWebGLHelper.Instance.UpLoadData(60, stepNames, maxScore, score);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// Update is called once per frame
|
|||
|
|
void Update()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|