2012-05-11 10 views
0

私はUnity3dによってゲームコード用のサーバーを構築しています。私のサーバーはYiiで構築されていますが、Yii tutorialのWebサービスに関するガイドを見ると、サーバーで関数を呼び出すためにsoapClientを使用しています。しかし、Unity3dでは、ちょうどWWWとWWWFormがサーバにリクエストすることを知っています。では、Unity3dのWebサービスを使ってYiiと通信する方法は誰にでも分かりますか?
ありがとうございます。Unity3dとYii webserivce

答えて

1

あなただけWWWForm

http://unity3d.com/support/documentation/ScriptReference/WWWForm.html

var highscore_url = "http://www.my-site.com/?r=MyGame/highscore"; 

を通過してのYiiのコントローラにデータを送信:\保護\コントローラ\ MyGameController.php

class MyGame extends Controller 
{ 
    public function actionHighscore() 
    { 
     // Here you get data from $_REQUEST ($_POST or $_GET) 
     // and use Yii's power for output some data 
     // like perl example in link upthere 
    } 

} 
+0

okei。ありがとうございます。 –