チェンジセット 4634

差分発生行の前後
無視リスト:
コミット日時:
2011/10/11 21:47:23 (2 年前)
コミッタ:
uranodai
ログメッセージ:

--

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/kinectas4win/src/uranodai/kinect/Kinect.as

    r4628 r4634  
    2323                private var _snapshotHandler:Callback; 
    2424                 
    25                 public function Kinect(host:String="127.0.0.1", receivePort:int=3333, sendPort:int=3334) 
     25                public function Kinect(receiveHost:String="127.0.0.1", receivePort:int=3333, sendHost:String="127.0.0.1", sendPort:int=3334) 
    2626                { 
    27                         var connectorIn:UDPConnector = new UDPConnector(host, receivePort, true); 
    28                         var connectorOut:UDPConnector = new UDPConnector(host, sendPort, false); 
     27                        var connectorIn:UDPConnector = new UDPConnector(receiveHost, receivePort, true); 
     28                        var connectorOut:UDPConnector = new UDPConnector(sendHost, sendPort, false); 
    2929                         
    3030                        _osc = new OSCManager(connectorIn, connectorOut, true);