사용자 도구

사이트 도구


language:unity:playmaker:1.basic

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

language:unity:playmaker:1.basic [2014/05/22 17:29] – 만듦 kieunslanguage:unity:playmaker:1.basic [2024/04/23 22:45] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 +
 +====== FSM ======
 +  * state를 임의로 실행 시켜보고 싶다면, PlayMaker FSM 화면에서 Alt+클릭
 +
 +====== Script 스크립트 연동 ======
 +===== FSM >> Script =====
 +  * Send Message 이벤트로 스크립트의 함수를 호출 할 수 있다.
 +===== Script >> FSM =====
 +<code javascript>
 +var _fsm : PlayMakerFSM;
 +_fsm = gameObject.Find("<NameOfFSM>").GetComponent<PlayMakerFSM>();
 +//
 +// then use it
 +</code>
 +===== from youtube : 12 - connecting Scripts to Playermaker =====
 +{{youtube>large:QVG-336_PsM}}
 +
 +
 +====== Add on ======
 +
 +PlayMaker Custom Action이 있는 사이트 : [[https://hutonggames.fogbugz.com/?W714|링크]]
 +
 +  * [[https://hutonggames.fogbugz.com/default.asp?W1150|Unity 2D]]
 +  * 2D Toolkit : 2D Toolkit에 내장 되어 있다.
 +  * [[http://www.fluffyunderware.com/pages/unity-plugins/curvy/addons.php|Curvy]]
 +  * [[http://hutonggames.com/playmakerforum/index.php?topic=2299.msg10104#msg10104|HoTween]]
 +  * [[https://hutonggames.fogbugz.com/default.asp?W1111|NGUI]]
 +    * NGUI 버젼 갱신 속도가 빨라서, 괜찮을지 모르겠네.
 +
 +Extension
 +
 +  * [[https://hutonggames.fogbugz.com/default.asp?W715|Array, HashTable]]
 +  * [[https://hutonggames.fogbugz.com/default.asp?W1118|PlayerPrefs X]]
 +    * Provides a way to save and load arrays of various types from PlayerPrefs, plus Vector2, Vector3, Quaternion, rect and Color.
 +
 +