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>() { "µÚÒ»²½", "µÚ¶þ²½", "µÚÈý²½" };
|
|
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()
|
|
{
|
|
|
|
}
|
|
}
|