Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/mevulfmp3/ceramic-collision_trigger/src/commit/c1d8cd2d50eaf0051e58acc8b233d2c729468e1e/Assets/%E7%A2%97-%E7%A2%B0%E6%92%9E-%E8%A7%A6%E5%8F%91/BowlGM.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

29 lines
463 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BowlGM
{
public string active;
private static BowlGM _instance;
public static BowlGM Instance
{
get
{
if (null == _instance)
{
_instance = new BowlGM();
}
return _instance;
}
}
public void Method()
{
Debug.Log("simle singleton");
}
}