|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
1、web搭建,请web内容放置在web下的cp中。
2、客户端代码请更改 online.cs 中的IP,连接自己web中的页面,页面中是可以设置服务器IP的。
3、tableread.cs这个文件,这个内是游戏资源更新相关的。
WWW www = new WWW(@"http://127.0.0.1:80/cp/Update_Throne.html");
WWW www = new WWW(@"http://127.0.0.1:80/cp/geturl/geturl.php?type=" + strPageName);
4、公告信息:ttp://221.229.162.251:8080/cp/1.2.6Android/GameBulletin.html
在annocementContent.cs
//实际以上的都未用到,可以忽略。只需要改以下的就行了。
5、 public void ConMy() //这个连接登陆的
{
serverAddress = "115.29.36.226:9998";
serverAddress2 = "115.29.36.226:9998";
StartCoroutine(Connect());
}
6、BtnServer.cs中将MainMenuManage.my.Connect(this.applicationName, "115.29.36.226", this.applicationHost, isFastBtn, this.lblServerName.text);
//里面的IP改成自己要连接的。
|
|