Unity3d + Node.js 연동 테스트

Unity3D 2014. 3. 17. 14:33
반응형

http://whackcode.wordpress.com/2013/12/18/part-2-getting-started-with-node-js-as-a-unity-3d-game-server/

 

http://stackoverflow.com/questions/17568066/connecting-unity3d-with-node-js

 

http://mobicon.tistory.com/224

 

http://www.nodebeginner.org/index-kr.html

 

socket.io사용

http://forum.falinux.com/zbxe/index.php?document_srl=573508&mid=lecture_tip

 

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

반응형

'Unity3D' 카테고리의 다른 글

[Unity] Basic Character Customization Tutorial  (0) 2014.03.20
I18N.CJK.dll  (0) 2014.03.20
클래스 다이어그램  (0) 2014.02.12
그는 코루틴으로 속임수를 쓴다.  (0) 2014.02.07
Unity3D에서의 GUI Scale  (0) 2014.02.07
: