├── README.md ├── SublimeText └── UnityC#.sublime-completions ├── VSCode └── csharp.json ├── Monodevelop └── Unity.template.xml └── VisualStudio └── Unity C# └── My Code Snippets └── Unity.snippet /README.md: -------------------------------------------------------------------------------- 1 | #monodevelop-code-template-unity 2 | 3 | ##Install 4 | 5 | ### Monodevelop 6 | 7 | ``` 8 | Mac ~/Library/MonoDevelop-{version}/Snippets/ 9 | Windows ~\AppData\Roaming\MonoDevelop-{version}\Snippets\ 10 | ``` 11 | 12 | ![](https://dl.dropboxusercontent.com/u/153254465/screenshot/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202014-01-24%2014.10.42.png) 13 | 14 | ### VisualStudio 15 | 16 | ``` 17 | Windows %USERPROFILE%\Documents\Visual Studio {version}\Code Snippets\ 18 | ``` 19 | 20 | ![](https://dl.dropboxusercontent.com/u/153254465/screenshot/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202014-05-08%2014.13.46.png) 21 | 22 | 23 | ### ReSharper (Plugin) 24 | 25 | Open **Templates Explorer...** 26 | 27 | ![](https://dl.dropboxusercontent.com/u/153254465/screenshot/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88_2014-05-08_14_17_19.png) 28 | 29 | ### Sublime Text 30 | 31 | ``` 32 | Mac ~/Library/Application Support/Sublime Text {version}/Packages/User 33 | ``` 34 | 35 | ![](https://dl.dropboxusercontent.com/u/153254465/screenshot2/ss%202014-12-07%2016.00.30.png) 36 | 37 | 38 | ### Visual Studio Code 39 | 40 | 41 | ``` 42 | Windows %APPDATA%\Code\User\snippets\csharp.json 43 | Mac $HOME/Library/Application Support/Code/User/snippets/csharp.json 44 | Linux $HOME/.config/Code/User/snippets/csharp.json 45 | ``` 46 | -------------------------------------------------------------------------------- /SublimeText/UnityC#.sublime-completions: -------------------------------------------------------------------------------- 1 | {"completions":[{"trigger":"Awake","contents":"void Awake (){\n\t${1:}\n}"},{"trigger":"FixedUpdate","contents":"void FixedUpdate (){\n\t${1:}\n}"},{"trigger":"LateUpdate","contents":"void LateUpdate (){\n\t${1:}\n}"},{"trigger":"OnAnimatorIK","contents":"void OnAnimatorIK (int ${1:layerIndex}){\n\t${2:}\n}"},{"trigger":"OnAnimatorMove","contents":"void OnAnimatorMove (){\n\t${1:}\n}"},{"trigger":"OnApplicationFocus","contents":"void OnApplicationFocus (bool ${1:focusStatus}){\n\t${2:}\n}"},{"trigger":"OnApplicationPause","contents":"void OnApplicationPause (bool ${1:pauseStatus}){\n\t${2:}\n}"},{"trigger":"OnApplicationQuit","contents":"void OnApplicationQuit (){\n\t${1:}\n}"},{"trigger":"OnAudioFilterRead","contents":"void OnAudioFilterRead (float[] ${1:data}, int ${2:channels}){\n\t${3:}\n}"},{"trigger":"OnBecameInvisible","contents":"void OnBecameInvisible (){\n\t${1:}\n}"},{"trigger":"OnBecameVisible","contents":"void OnBecameVisible (){\n\t${1:}\n}"},{"trigger":"OnCollisionEnter","contents":"void OnCollisionEnter (Collision ${1:collision}){\n\t${2:}\n}"},{"trigger":"OnCollisionEnter2D","contents":"void OnCollisionEnter2D (Collision2D ${1:collision2D}){\n\t${2:}\n}"},{"trigger":"OnCollisionExit","contents":"void OnCollisionExit (Collision ${1:collision}){\n\t${2:}\n}"},{"trigger":"OnCollisionExit2D","contents":"void OnCollisionExit2D (Collision2D ${1:collision2D}){\n\t${2:}\n}"},{"trigger":"OnCollisionStay","contents":"void OnCollisionStay (Collision ${1:collision}){\n\t${2:}\n}"},{"trigger":"OnCollisionStay2D","contents":"void OnCollisionStay2D (Collision2D ${1:collision2D}){\n\t${2:}\n}"},{"trigger":"OnConnectedToServer","contents":"void OnConnectedToServer (){\n\t${1:}\n}"},{"trigger":"OnControllerColliderHit","contents":"void OnControllerColliderHit (ControllerColliderHit ${1:hit}){\n\t${2:}\n}"},{"trigger":"OnDestroy","contents":"void OnDestroy (){\n\t${1:}\n}"},{"trigger":"OnDisable","contents":"void OnDisable (){\n\t${1:}\n}"},{"trigger":"OnDisconnectedFromServer","contents":"void OnDisconnectedFromServer (NetworkDisconnection ${1:info}){\n\t${2:}\n}"},{"trigger":"OnDrawGizmos","contents":"void OnDrawGizmos (){\n\t${1:}\n}"},{"trigger":"OnDrawGizmosSelected","contents":"void OnDrawGizmosSelected (){\n\t${1:}\n}"},{"trigger":"OnEnable","contents":"void OnEnable (){\n\t${1:}\n}"},{"trigger":"OnFailedToConnect","contents":"void OnFailedToConnect (NetworkConnectionError ${1:error}){\n\t${2:}\n}"},{"trigger":"OnFailedToConnectToMasterServer","contents":"void OnFailedToConnectToMasterServer (NetworkConnectionError ${1:info}){\n\t${2:}\n}"},{"trigger":"OnGUI","contents":"void OnGUI (){\n\t${1:}\n}"},{"trigger":"OnJointBreak","contents":"void OnJointBreak (float ${1:breakForce}){\n\t${2:}\n}"},{"trigger":"OnLevelWasLoaded","contents":"void OnLevelWasLoaded (int ${1:level}){\n\t${2:}\n}"},{"trigger":"OnMasterServerEvent","contents":"void OnMasterServerEvent (MasterServerEvent ${1:msEvent}){\n\t${2:}\n}"},{"trigger":"OnMouseDown","contents":"void OnMouseDown (){\n\t${1:}\n}"},{"trigger":"OnMouseDrag","contents":"void OnMouseDrag (){\n\t${1:}\n}"},{"trigger":"OnMouseEnter","contents":"void OnMouseEnter (){\n\t${1:}\n}"},{"trigger":"OnMouseExit","contents":"void OnMouseExit (){\n\t${1:}\n}"},{"trigger":"OnMouseOver","contents":"void OnMouseOver (){\n\t${1:}\n}"},{"trigger":"OnMouseUp","contents":"void OnMouseUp (){\n\t${1:}\n}"},{"trigger":"OnMouseUpAsButton","contents":"void OnMouseUpAsButton (){\n\t${1:}\n}"},{"trigger":"OnNetworkInstantiate","contents":"void OnNetworkInstantiate (NetworkMessageInfo ${1:info}){\n\t${2:}\n}"},{"trigger":"OnParticleCollision","contents":"void OnParticleCollision (GameObject ${1:other}){\n\t${2:}\n}"},{"trigger":"OnPlayerConnected","contents":"void OnPlayerConnected (NetworkPlayer ${1:player}){\n\t${2:}\n}"},{"trigger":"OnPlayerDisconnected","contents":"void OnPlayerDisconnected (NetworkPlayer ${1:player}){\n\t${2:}\n}"},{"trigger":"OnPostRender","contents":"void OnPostRender (){\n\t${1:}\n}"},{"trigger":"OnPreCull","contents":"void OnPreCull (){\n\t${1:}\n}"},{"trigger":"OnPreRender","contents":"void OnPreRender (){\n\t${1:}\n}"},{"trigger":"OnRectTransformRemoved","contents":"void OnRectTransformRemoved (){\n\t${1:}\n}"},{"trigger":"OnRenderImage","contents":"void OnRenderImage (RenderTexture ${1:src}, RenderTexture ${2:dest}){\n\t${3:}\n}"},{"trigger":"OnRenderObject","contents":"void OnRenderObject (){\n\t${1:}\n}"},{"trigger":"OnSerializeNetworkView","contents":"void OnSerializeNetworkView (BitStream ${1:stream}, NetworkMessageInfo ${2:info}){\n\t${3:}\n}"},{"trigger":"OnServerInitialized","contents":"void OnServerInitialized (){\n\t${1:}\n}"},{"trigger":"OnTriggerEnter","contents":"void OnTriggerEnter (Collider ${1:other}){\n\t${2:}\n}"},{"trigger":"OnTriggerEnter2D","contents":"void OnTriggerEnter2D (Collider2D ${1:other}){\n\t${2:}\n}"},{"trigger":"OnTriggerExit","contents":"void OnTriggerExit (Collider ${1:other}){\n\t${2:}\n}"},{"trigger":"OnTriggerExit2D","contents":"void OnTriggerExit2D (Collider2D ${1:other}){\n\t${2:}\n}"},{"trigger":"OnTriggerStay","contents":"void OnTriggerStay (Collider ${1:other}){\n\t${2:}\n}"},{"trigger":"OnTriggerStay2D","contents":"void OnTriggerStay2D (Collider2D ${1:other}){\n\t${2:}\n}"},{"trigger":"OnValidate","contents":"void OnValidate (){\n\t${1:}\n}"},{"trigger":"OnWillRenderObject","contents":"void OnWillRenderObject (){\n\t${1:}\n}"},{"trigger":"Reset","contents":"void Reset (){\n\t${1:}\n}"},{"trigger":"Start","contents":"void Start (){\n\t${1:}\n}"},{"trigger":"Update","contents":"void Update (){\n\t${1:}\n}"},{"trigger":"OnBeginDrag","contents":"void OnBeginDrag (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnDeselect","contents":"void OnDeselect (BaseEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnDrag","contents":"void OnDrag (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnDrop","contents":"void OnDrop (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnEndDrag","contents":"void OnEndDrag (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnInitializePotentialDrag","contents":"void OnInitializePotentialDrag (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnMove","contents":"void OnMove (AxisEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnRebuildRequested","contents":"void OnRebuildRequested (){\n\t${1:}\n}"},{"trigger":"OnScroll","contents":"void OnScroll (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnSelect","contents":"void OnSelect (BaseEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnSubmit","contents":"void OnSubmit (BaseEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnTransformChildrenChanged","contents":"void OnTransformChildrenChanged (){\n\t${1:}\n}"},{"trigger":"OnBeforeSerialize","contents":"void OnBeforeSerialize (){\n\t${1:}\n}"},{"trigger":"OnBeforeTransformParentChanged","contents":"void OnBeforeTransformParentChanged (){\n\t${1:}\n}"},{"trigger":"OnCanvasGroupChanged","contents":"void OnCanvasGroupChanged (){\n\t${1:}\n}"},{"trigger":"OnDidApplyAnimationProperties","contents":"void OnDidApplyAnimationProperties (){\n\t${1:}\n}"},{"trigger":"OnFillVBO","contents":"void OnFillVBO (List<UIVertex> ${1:vbo}){\n\t${2:}\n}"},{"trigger":"OnPointerClick","contents":"void OnPointerClick (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnPointerDown","contents":"void OnPointerDown (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnPointerEnter","contents":"void OnPointerEnter (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnPointerExit","contents":"void OnPointerExit (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnPointerUp","contents":"void OnPointerUp (PointerEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"OnRectTransformDimensionsChange","contents":"void OnRectTransformDimensionsChange (){\n\t${1:}\n}"},{"trigger":"OnSiblingGraphicEnabledDisabled","contents":"void OnSiblingGraphicEnabledDisabled (){\n\t${1:}\n}"},{"trigger":"OnTransformParentChanged","contents":"void OnTransformParentChanged (){\n\t${1:}\n}"},{"trigger":"OnUpdateSelected","contents":"void OnUpdateSelected (BaseEventData ${1:eventData}){\n\t${2:}\n}"},{"trigger":"UpdateGeometry","contents":"void UpdateGeometry (){\n\t${1:}\n}"},{"trigger":"UpdateMaterial","contents":"void UpdateMaterial (){\n\t${1:}\n}"},{"trigger":"OnAssignMaterialModel","contents":"Material OnAssignMaterialModel (Material ${1:material}, Renderer ${2:renderer}){\n\t${3:}\n}"},{"trigger":"OnHierarchyChange","contents":"void OnHierarchyChange (){\n\t${1:}\n}"},{"trigger":"OnInspectorUpdate","contents":"void OnInspectorUpdate (){\n\t${1:}\n}"},{"trigger":"OnLostFocus","contents":"void OnLostFocus (){\n\t${1:}\n}"},{"trigger":"OnPostprocessAllAssets","contents":"static void OnPostprocessAllAssets (string[] ${1:importedAssets}, string[] ${2:deletedAssets}, string[] ${3:movedAssets}, string[] ${4:movedFromPath}){\n\t${5:}\n}"},{"trigger":"OnPostprocessAssetbundleNameChanged","contents":"void OnPostprocessAssetbundleNameChanged (string ${1:assetPath}, string ${2:prevoiusAssetBundleName}, string ${3:newAssetBundleName}){\n\t${4:}\n}"},{"trigger":"OnPostprocessAudio","contents":"void OnPostprocessAudio (AudioClip ${1:clip}){\n\t${2:}\n}"},{"trigger":"OnPostprocessGameObjectWithUserProperties","contents":"void OnPostprocessGameObjectWithUserProperties (GameObject ${1:root}, string[] ${2:propNames}, object[] ${3:values}){\n\t${4:}\n}"},{"trigger":"OnPostprocessModel","contents":"void OnPostprocessModel (GameObject ${1:root}){\n\t${2:}\n}"},{"trigger":"OnPostprocessSpeedTree","contents":"void OnPostprocessSpeedTree (GameObject ${1:root}){\n\t${2:}\n}"},{"trigger":"OnPostprocessSprites","contents":"void OnPostprocessSprites (Texture2D ${1:texture}, Sprite[] ${2:sprites}){\n\t${3:}\n}"},{"trigger":"OnPostprocessTexture","contents":"void OnPostprocessTexture (Texture2D ${1:texture}){\n\t${2:}\n}"},{"trigger":"OnPreprocessAudio","contents":"void OnPreprocessAudio (){\n\t${1:}\n}"},{"trigger":"OnPreprocessModel","contents":"void OnPreprocessModel (){\n\t${1:}\n}"},{"trigger":"OnPreprocessSpeedTree","contents":"void OnPreprocessSpeedTree (){\n\t${1:}\n}"},{"trigger":"OnPreprocessTexture","contents":"void OnPreprocessTexture (){\n\t${1:}\n}"},{"trigger":"OnProjectChange","contents":"void OnProjectChange (){\n\t${1:}\n}"},{"trigger":"OnSceneGUI","contents":"void OnSceneGUI (){\n\t${1:}\n}"},{"trigger":"OnSelectionChange","contents":"void OnSelectionChange (){\n\t${1:}\n}"},{"trigger":"OnWillCreateAsset","contents":"static void OnWillCreateAsset (string ${1:path}){\n\t${2:}\n}"},{"trigger":"OnWillDeleteAsset","contents":"static AssetDeleteResult OnWillDeleteAsset (string ${1:assetPath}, RemoveAssetOptions ${2:option}){\n\t${3:}\n}"},{"trigger":"OnWillMoveAsset","contents":"static AssetMoveResult OnWillMoveAsset (string ${1:oldPath}, string ${2:newPath}){\n\t${3:}\n}"},{"trigger":"OnWillSaveAssets","contents":"static void OnWillSaveAssets (string[] ${1:paths}){\n\t${2:}\n}"},{"trigger":"OnWizardCreate","contents":"void OnWizardCreate (){\n\t${1:}\n}"},{"trigger":"OnWizardOtherButton","contents":"void OnWizardOtherButton (){\n\t${1:}\n}"},{"trigger":"OnWizardUpdate","contents":"void OnWizardUpdate (){\n\t${1:}\n}"}],"scope":"source.cs"} -------------------------------------------------------------------------------- /VSCode/csharp.json: -------------------------------------------------------------------------------- 1 | { 2 | "Awake": { 3 | "prefix": "Awake", 4 | "body": [ 5 | "void Awake (){", 6 | " $0", 7 | "}" 8 | ], 9 | "description": "" 10 | }, 11 | "FixedUpdate": { 12 | "prefix": "FixedUpdate", 13 | "body": [ 14 | "void FixedUpdate (){", 15 | " $0", 16 | "}" 17 | ], 18 | "description": "" 19 | }, 20 | "LateUpdate": { 21 | "prefix": "LateUpdate", 22 | "body": [ 23 | "void LateUpdate (){", 24 | " $0", 25 | "}" 26 | ], 27 | "description": "" 28 | }, 29 | "OnAnimatorIK": { 30 | "prefix": "OnAnimatorIK", 31 | "body": [ 32 | "void OnAnimatorIK (int ${layerIndex}){", 33 | " $0", 34 | "}" 35 | ], 36 | "description": "" 37 | }, 38 | "OnAnimatorMove": { 39 | "prefix": "OnAnimatorMove", 40 | "body": [ 41 | "void OnAnimatorMove (){", 42 | " $0", 43 | "}" 44 | ], 45 | "description": "" 46 | }, 47 | "OnApplicationFocus": { 48 | "prefix": "OnApplicationFocus", 49 | "body": [ 50 | "void OnApplicationFocus (bool ${focusStatus}){", 51 | " $0", 52 | "}" 53 | ], 54 | "description": "" 55 | }, 56 | "OnApplicationPause": { 57 | "prefix": "OnApplicationPause", 58 | "body": [ 59 | "void OnApplicationPause (bool ${pauseStatus}){", 60 | " $0", 61 | "}" 62 | ], 63 | "description": "" 64 | }, 65 | "OnApplicationQuit": { 66 | "prefix": "OnApplicationQuit", 67 | "body": [ 68 | "void OnApplicationQuit (){", 69 | " $0", 70 | "}" 71 | ], 72 | "description": "" 73 | }, 74 | "OnAudioFilterRead": { 75 | "prefix": "OnAudioFilterRead", 76 | "body": [ 77 | "void OnAudioFilterRead (float[] ${data}, int ${channels}){", 78 | " $0", 79 | "}" 80 | ], 81 | "description": "" 82 | }, 83 | "OnBecameInvisible": { 84 | "prefix": "OnBecameInvisible", 85 | "body": [ 86 | "void OnBecameInvisible (){", 87 | " $0", 88 | "}" 89 | ], 90 | "description": "" 91 | }, 92 | "OnBecameVisible": { 93 | "prefix": "OnBecameVisible", 94 | "body": [ 95 | "void OnBecameVisible (){", 96 | " $0", 97 | "}" 98 | ], 99 | "description": "" 100 | }, 101 | "OnCollisionEnter": { 102 | "prefix": "OnCollisionEnter", 103 | "body": [ 104 | "void OnCollisionEnter (Collision ${collision}){", 105 | " $0", 106 | "}" 107 | ], 108 | "description": "" 109 | }, 110 | "OnCollisionEnter2D": { 111 | "prefix": "OnCollisionEnter2D", 112 | "body": [ 113 | "void OnCollisionEnter2D (Collision2D ${collision2D}){", 114 | " $0", 115 | "}" 116 | ], 117 | "description": "" 118 | }, 119 | "OnCollisionExit": { 120 | "prefix": "OnCollisionExit", 121 | "body": [ 122 | "void OnCollisionExit (Collision ${collision}){", 123 | " $0", 124 | "}" 125 | ], 126 | "description": "" 127 | }, 128 | "OnCollisionExit2D": { 129 | "prefix": "OnCollisionExit2D", 130 | "body": [ 131 | "void OnCollisionExit2D (Collision2D ${collision2D}){", 132 | " $0", 133 | "}" 134 | ], 135 | "description": "" 136 | }, 137 | "OnCollisionStay": { 138 | "prefix": "OnCollisionStay", 139 | "body": [ 140 | "void OnCollisionStay (Collision ${collision}){", 141 | " $0", 142 | "}" 143 | ], 144 | "description": "" 145 | }, 146 | "OnCollisionStay2D": { 147 | "prefix": "OnCollisionStay2D", 148 | "body": [ 149 | "void OnCollisionStay2D (Collision2D ${collision2D}){", 150 | " $0", 151 | "}" 152 | ], 153 | "description": "" 154 | }, 155 | "OnConnectedToServer": { 156 | "prefix": "OnConnectedToServer", 157 | "body": [ 158 | "void OnConnectedToServer (){", 159 | " $0", 160 | "}" 161 | ], 162 | "description": "" 163 | }, 164 | "OnControllerColliderHit": { 165 | "prefix": "OnControllerColliderHit", 166 | "body": [ 167 | "void OnControllerColliderHit (ControllerColliderHit ${hit}){", 168 | " $0", 169 | "}" 170 | ], 171 | "description": "" 172 | }, 173 | "OnDestroy": { 174 | "prefix": "OnDestroy", 175 | "body": [ 176 | "void OnDestroy (){", 177 | " $0", 178 | "}" 179 | ], 180 | "description": "" 181 | }, 182 | "OnDisable": { 183 | "prefix": "OnDisable", 184 | "body": [ 185 | "void OnDisable (){", 186 | " $0", 187 | "}" 188 | ], 189 | "description": "" 190 | }, 191 | "OnDisconnectedFromServer": { 192 | "prefix": "OnDisconnectedFromServer", 193 | "body": [ 194 | "void OnDisconnectedFromServer (NetworkDisconnection ${info}){", 195 | " $0", 196 | "}" 197 | ], 198 | "description": "" 199 | }, 200 | "OnDrawGizmos": { 201 | "prefix": "OnDrawGizmos", 202 | "body": [ 203 | "void OnDrawGizmos (){", 204 | " $0", 205 | "}" 206 | ], 207 | "description": "" 208 | }, 209 | "OnDrawGizmosSelected": { 210 | "prefix": "OnDrawGizmosSelected", 211 | "body": [ 212 | "void OnDrawGizmosSelected (){", 213 | " $0", 214 | "}" 215 | ], 216 | "description": "" 217 | }, 218 | "OnEnable": { 219 | "prefix": "OnEnable", 220 | "body": [ 221 | "void OnEnable (){", 222 | " $0", 223 | "}" 224 | ], 225 | "description": "" 226 | }, 227 | "OnFailedToConnect": { 228 | "prefix": "OnFailedToConnect", 229 | "body": [ 230 | "void OnFailedToConnect (NetworkConnectionError ${error}){", 231 | " $0", 232 | "}" 233 | ], 234 | "description": "" 235 | }, 236 | "OnFailedToConnectToMasterServer": { 237 | "prefix": "OnFailedToConnectToMasterServer", 238 | "body": [ 239 | "void OnFailedToConnectToMasterServer (NetworkConnectionError ${info}){", 240 | " $0", 241 | "}" 242 | ], 243 | "description": "" 244 | }, 245 | "OnGUI": { 246 | "prefix": "OnGUI", 247 | "body": [ 248 | "void OnGUI (){", 249 | " $0", 250 | "}" 251 | ], 252 | "description": "" 253 | }, 254 | "OnJointBreak": { 255 | "prefix": "OnJointBreak", 256 | "body": [ 257 | "void OnJointBreak (float ${breakForce}){", 258 | " $0", 259 | "}" 260 | ], 261 | "description": "" 262 | }, 263 | "OnLevelWasLoaded": { 264 | "prefix": "OnLevelWasLoaded", 265 | "body": [ 266 | "void OnLevelWasLoaded (int ${level}){", 267 | " $0", 268 | "}" 269 | ], 270 | "description": "" 271 | }, 272 | "OnMasterServerEvent": { 273 | "prefix": "OnMasterServerEvent", 274 | "body": [ 275 | "void OnMasterServerEvent (MasterServerEvent ${msEvent}){", 276 | " $0", 277 | "}" 278 | ], 279 | "description": "" 280 | }, 281 | "OnMouseDown": { 282 | "prefix": "OnMouseDown", 283 | "body": [ 284 | "void OnMouseDown (){", 285 | " $0", 286 | "}" 287 | ], 288 | "description": "" 289 | }, 290 | "OnMouseDrag": { 291 | "prefix": "OnMouseDrag", 292 | "body": [ 293 | "void OnMouseDrag (){", 294 | " $0", 295 | "}" 296 | ], 297 | "description": "" 298 | }, 299 | "OnMouseEnter": { 300 | "prefix": "OnMouseEnter", 301 | "body": [ 302 | "void OnMouseEnter (){", 303 | " $0", 304 | "}" 305 | ], 306 | "description": "" 307 | }, 308 | "OnMouseExit": { 309 | "prefix": "OnMouseExit", 310 | "body": [ 311 | "void OnMouseExit (){", 312 | " $0", 313 | "}" 314 | ], 315 | "description": "" 316 | }, 317 | "OnMouseOver": { 318 | "prefix": "OnMouseOver", 319 | "body": [ 320 | "void OnMouseOver (){", 321 | " $0", 322 | "}" 323 | ], 324 | "description": "" 325 | }, 326 | "OnMouseUp": { 327 | "prefix": "OnMouseUp", 328 | "body": [ 329 | "void OnMouseUp (){", 330 | " $0", 331 | "}" 332 | ], 333 | "description": "" 334 | }, 335 | "OnMouseUpAsButton": { 336 | "prefix": "OnMouseUpAsButton", 337 | "body": [ 338 | "void OnMouseUpAsButton (){", 339 | " $0", 340 | "}" 341 | ], 342 | "description": "" 343 | }, 344 | "OnNetworkInstantiate": { 345 | "prefix": "OnNetworkInstantiate", 346 | "body": [ 347 | "void OnNetworkInstantiate (NetworkMessageInfo ${info}){", 348 | " $0", 349 | "}" 350 | ], 351 | "description": "" 352 | }, 353 | "OnParticleCollision": { 354 | "prefix": "OnParticleCollision", 355 | "body": [ 356 | "void OnParticleCollision (GameObject ${other}){", 357 | " $0", 358 | "}" 359 | ], 360 | "description": "" 361 | }, 362 | "OnPlayerConnected": { 363 | "prefix": "OnPlayerConnected", 364 | "body": [ 365 | "void OnPlayerConnected (NetworkPlayer ${player}){", 366 | " $0", 367 | "}" 368 | ], 369 | "description": "" 370 | }, 371 | "OnPlayerDisconnected": { 372 | "prefix": "OnPlayerDisconnected", 373 | "body": [ 374 | "void OnPlayerDisconnected (NetworkPlayer ${player}){", 375 | " $0", 376 | "}" 377 | ], 378 | "description": "" 379 | }, 380 | "OnPostRender": { 381 | "prefix": "OnPostRender", 382 | "body": [ 383 | "void OnPostRender (){", 384 | " $0", 385 | "}" 386 | ], 387 | "description": "" 388 | }, 389 | "OnPreCull": { 390 | "prefix": "OnPreCull", 391 | "body": [ 392 | "void OnPreCull (){", 393 | " $0", 394 | "}" 395 | ], 396 | "description": "" 397 | }, 398 | "OnPreRender": { 399 | "prefix": "OnPreRender", 400 | "body": [ 401 | "void OnPreRender (){", 402 | " $0", 403 | "}" 404 | ], 405 | "description": "" 406 | }, 407 | "OnRectTransformRemoved": { 408 | "prefix": "OnRectTransformRemoved", 409 | "body": [ 410 | "void OnRectTransformRemoved (){", 411 | " $0", 412 | "}" 413 | ], 414 | "description": "" 415 | }, 416 | "OnRenderImage": { 417 | "prefix": "OnRenderImage", 418 | "body": [ 419 | "void OnRenderImage (RenderTexture ${src}, RenderTexture ${dest}){", 420 | " $0", 421 | "}" 422 | ], 423 | "description": "" 424 | }, 425 | "OnRenderObject": { 426 | "prefix": "OnRenderObject", 427 | "body": [ 428 | "void OnRenderObject (){", 429 | " $0", 430 | "}" 431 | ], 432 | "description": "" 433 | }, 434 | "OnSerializeNetworkView": { 435 | "prefix": "OnSerializeNetworkView", 436 | "body": [ 437 | "void OnSerializeNetworkView (BitStream ${stream}, NetworkMessageInfo ${info}){", 438 | " $0", 439 | "}" 440 | ], 441 | "description": "" 442 | }, 443 | "OnServerInitialized": { 444 | "prefix": "OnServerInitialized", 445 | "body": [ 446 | "void OnServerInitialized (){", 447 | " $0", 448 | "}" 449 | ], 450 | "description": "" 451 | }, 452 | "OnTriggerEnter": { 453 | "prefix": "OnTriggerEnter", 454 | "body": [ 455 | "void OnTriggerEnter (Collider ${other}){", 456 | " $0", 457 | "}" 458 | ], 459 | "description": "" 460 | }, 461 | "OnTriggerEnter2D": { 462 | "prefix": "OnTriggerEnter2D", 463 | "body": [ 464 | "void OnTriggerEnter2D (Collider2D ${other}){", 465 | " $0", 466 | "}" 467 | ], 468 | "description": "" 469 | }, 470 | "OnTriggerExit": { 471 | "prefix": "OnTriggerExit", 472 | "body": [ 473 | "void OnTriggerExit (Collider ${other}){", 474 | " $0", 475 | "}" 476 | ], 477 | "description": "" 478 | }, 479 | "OnTriggerExit2D": { 480 | "prefix": "OnTriggerExit2D", 481 | "body": [ 482 | "void OnTriggerExit2D (Collider2D ${other}){", 483 | " $0", 484 | "}" 485 | ], 486 | "description": "" 487 | }, 488 | "OnTriggerStay": { 489 | "prefix": "OnTriggerStay", 490 | "body": [ 491 | "void OnTriggerStay (Collider ${other}){", 492 | " $0", 493 | "}" 494 | ], 495 | "description": "" 496 | }, 497 | "OnTriggerStay2D": { 498 | "prefix": "OnTriggerStay2D", 499 | "body": [ 500 | "void OnTriggerStay2D (Collider2D ${other}){", 501 | " $0", 502 | "}" 503 | ], 504 | "description": "" 505 | }, 506 | "OnValidate": { 507 | "prefix": "OnValidate", 508 | "body": [ 509 | "void OnValidate (){", 510 | " $0", 511 | "}" 512 | ], 513 | "description": "" 514 | }, 515 | "OnWillRenderObject": { 516 | "prefix": "OnWillRenderObject", 517 | "body": [ 518 | "void OnWillRenderObject (){", 519 | " $0", 520 | "}" 521 | ], 522 | "description": "" 523 | }, 524 | "Reset": { 525 | "prefix": "Reset", 526 | "body": [ 527 | "void Reset (){", 528 | " $0", 529 | "}" 530 | ], 531 | "description": "" 532 | }, 533 | "Start": { 534 | "prefix": "Start", 535 | "body": [ 536 | "void Start (){", 537 | " $0", 538 | "}" 539 | ], 540 | "description": "" 541 | }, 542 | "Update": { 543 | "prefix": "Update", 544 | "body": [ 545 | "void Update (){", 546 | " $0", 547 | "}" 548 | ], 549 | "description": "" 550 | }, 551 | "OnBeginDrag": { 552 | "prefix": "OnBeginDrag", 553 | "body": [ 554 | "void OnBeginDrag (PointerEventData ${eventData}){", 555 | " $0", 556 | "}" 557 | ], 558 | "description": "" 559 | }, 560 | "OnDeselect": { 561 | "prefix": "OnDeselect", 562 | "body": [ 563 | "void OnDeselect (BaseEventData ${eventData}){", 564 | " $0", 565 | "}" 566 | ], 567 | "description": "" 568 | }, 569 | "OnDrag": { 570 | "prefix": "OnDrag", 571 | "body": [ 572 | "void OnDrag (PointerEventData ${eventData}){", 573 | " $0", 574 | "}" 575 | ], 576 | "description": "" 577 | }, 578 | "OnDrop": { 579 | "prefix": "OnDrop", 580 | "body": [ 581 | "void OnDrop (PointerEventData ${eventData}){", 582 | " $0", 583 | "}" 584 | ], 585 | "description": "" 586 | }, 587 | "OnEndDrag": { 588 | "prefix": "OnEndDrag", 589 | "body": [ 590 | "void OnEndDrag (PointerEventData ${eventData}){", 591 | " $0", 592 | "}" 593 | ], 594 | "description": "" 595 | }, 596 | "OnInitializePotentialDrag": { 597 | "prefix": "OnInitializePotentialDrag", 598 | "body": [ 599 | "void OnInitializePotentialDrag (PointerEventData ${eventData}){", 600 | " $0", 601 | "}" 602 | ], 603 | "description": "" 604 | }, 605 | "OnMove": { 606 | "prefix": "OnMove", 607 | "body": [ 608 | "void OnMove (AxisEventData ${eventData}){", 609 | " $0", 610 | "}" 611 | ], 612 | "description": "" 613 | }, 614 | "OnRebuildRequested": { 615 | "prefix": "OnRebuildRequested", 616 | "body": [ 617 | "void OnRebuildRequested (){", 618 | " $0", 619 | "}" 620 | ], 621 | "description": "" 622 | }, 623 | "OnScroll": { 624 | "prefix": "OnScroll", 625 | "body": [ 626 | "void OnScroll (PointerEventData ${eventData}){", 627 | " $0", 628 | "}" 629 | ], 630 | "description": "" 631 | }, 632 | "OnSelect": { 633 | "prefix": "OnSelect", 634 | "body": [ 635 | "void OnSelect (BaseEventData ${eventData}){", 636 | " $0", 637 | "}" 638 | ], 639 | "description": "" 640 | }, 641 | "OnSubmit": { 642 | "prefix": "OnSubmit", 643 | "body": [ 644 | "void OnSubmit (BaseEventData ${eventData}){", 645 | " $0", 646 | "}" 647 | ], 648 | "description": "" 649 | }, 650 | "OnTransformChildrenChanged": { 651 | "prefix": "OnTransformChildrenChanged", 652 | "body": [ 653 | "void OnTransformChildrenChanged (){", 654 | " $0", 655 | "}" 656 | ], 657 | "description": "" 658 | }, 659 | "OnBeforeSerialize": { 660 | "prefix": "OnBeforeSerialize", 661 | "body": [ 662 | "void OnBeforeSerialize (){", 663 | " $0", 664 | "}" 665 | ], 666 | "description": "" 667 | }, 668 | "OnBeforeTransformParentChanged": { 669 | "prefix": "OnBeforeTransformParentChanged", 670 | "body": [ 671 | "void OnBeforeTransformParentChanged (){", 672 | " $0", 673 | "}" 674 | ], 675 | "description": "" 676 | }, 677 | "OnCanvasGroupChanged": { 678 | "prefix": "OnCanvasGroupChanged", 679 | "body": [ 680 | "void OnCanvasGroupChanged (){", 681 | " $0", 682 | "}" 683 | ], 684 | "description": "" 685 | }, 686 | "OnDidApplyAnimationProperties": { 687 | "prefix": "OnDidApplyAnimationProperties", 688 | "body": [ 689 | "void OnDidApplyAnimationProperties (){", 690 | " $0", 691 | "}" 692 | ], 693 | "description": "" 694 | }, 695 | "OnFillVBO": { 696 | "prefix": "OnFillVBO", 697 | "body": [ 698 | "void OnFillVBO (List<UIVertex> ${vbo}){", 699 | " $0", 700 | "}" 701 | ], 702 | "description": "" 703 | }, 704 | "OnPointerClick": { 705 | "prefix": "OnPointerClick", 706 | "body": [ 707 | "void OnPointerClick (PointerEventData ${eventData}){", 708 | " $0", 709 | "}" 710 | ], 711 | "description": "" 712 | }, 713 | "OnPointerDown": { 714 | "prefix": "OnPointerDown", 715 | "body": [ 716 | "void OnPointerDown (PointerEventData ${eventData}){", 717 | " $0", 718 | "}" 719 | ], 720 | "description": "" 721 | }, 722 | "OnPointerEnter": { 723 | "prefix": "OnPointerEnter", 724 | "body": [ 725 | "void OnPointerEnter (PointerEventData ${eventData}){", 726 | " $0", 727 | "}" 728 | ], 729 | "description": "" 730 | }, 731 | "OnPointerExit": { 732 | "prefix": "OnPointerExit", 733 | "body": [ 734 | "void OnPointerExit (PointerEventData ${eventData}){", 735 | " $0", 736 | "}" 737 | ], 738 | "description": "" 739 | }, 740 | "OnPointerUp": { 741 | "prefix": "OnPointerUp", 742 | "body": [ 743 | "void OnPointerUp (PointerEventData ${eventData}){", 744 | " $0", 745 | "}" 746 | ], 747 | "description": "" 748 | }, 749 | "OnRectTransformDimensionsChange": { 750 | "prefix": "OnRectTransformDimensionsChange", 751 | "body": [ 752 | "void OnRectTransformDimensionsChange (){", 753 | " $0", 754 | "}" 755 | ], 756 | "description": "" 757 | }, 758 | "OnSiblingGraphicEnabledDisabled": { 759 | "prefix": "OnSiblingGraphicEnabledDisabled", 760 | "body": [ 761 | "void OnSiblingGraphicEnabledDisabled (){", 762 | " $0", 763 | "}" 764 | ], 765 | "description": "" 766 | }, 767 | "OnTransformParentChanged": { 768 | "prefix": "OnTransformParentChanged", 769 | "body": [ 770 | "void OnTransformParentChanged (){", 771 | " $0", 772 | "}" 773 | ], 774 | "description": "" 775 | }, 776 | "OnUpdateSelected": { 777 | "prefix": "OnUpdateSelected", 778 | "body": [ 779 | "void OnUpdateSelected (BaseEventData ${eventData}){", 780 | " $0", 781 | "}" 782 | ], 783 | "description": "" 784 | }, 785 | "UpdateGeometry": { 786 | "prefix": "UpdateGeometry", 787 | "body": [ 788 | "void UpdateGeometry (){", 789 | " $0", 790 | "}" 791 | ], 792 | "description": "" 793 | }, 794 | "UpdateMaterial": { 795 | "prefix": "UpdateMaterial", 796 | "body": [ 797 | "void UpdateMaterial (){", 798 | " $0", 799 | "}" 800 | ], 801 | "description": "" 802 | }, 803 | "OnAssignMaterialModel": { 804 | "prefix": "OnAssignMaterialModel", 805 | "body": [ 806 | "Material OnAssignMaterialModel (Material ${material}, Renderer ${renderer}){", 807 | " $0", 808 | "}" 809 | ], 810 | "description": "" 811 | }, 812 | "OnHierarchyChange": { 813 | "prefix": "OnHierarchyChange", 814 | "body": [ 815 | "void OnHierarchyChange (){", 816 | " $0", 817 | "}" 818 | ], 819 | "description": "" 820 | }, 821 | "OnInspectorUpdate": { 822 | "prefix": "OnInspectorUpdate", 823 | "body": [ 824 | "void OnInspectorUpdate (){", 825 | " $0", 826 | "}" 827 | ], 828 | "description": "" 829 | }, 830 | "OnLostFocus": { 831 | "prefix": "OnLostFocus", 832 | "body": [ 833 | "void OnLostFocus (){", 834 | " $0", 835 | "}" 836 | ], 837 | "description": "" 838 | }, 839 | "OnPostprocessAllAssets": { 840 | "prefix": "OnPostprocessAllAssets", 841 | "body": [ 842 | "void OnPostprocessAllAssets (string[] ${importedAssets}, string[] ${deletedAssets}, string[] ${movedAssets}, string[] ${movedFromPath}){", 843 | " $0", 844 | "}" 845 | ], 846 | "description": "" 847 | }, 848 | "OnPostprocessAssetbundleNameChanged": { 849 | "prefix": "OnPostprocessAssetbundleNameChanged", 850 | "body": [ 851 | "void OnPostprocessAssetbundleNameChanged (string ${assetPath}, string ${prevoiusAssetBundleName}, string ${newAssetBundleName}){", 852 | " $0", 853 | "}" 854 | ], 855 | "description": "" 856 | }, 857 | "OnPostprocessAudio": { 858 | "prefix": "OnPostprocessAudio", 859 | "body": [ 860 | "void OnPostprocessAudio (AudioClip ${clip}){", 861 | " $0", 862 | "}" 863 | ], 864 | "description": "" 865 | }, 866 | "OnPostprocessGameObjectWithUserProperties": { 867 | "prefix": "OnPostprocessGameObjectWithUserProperties", 868 | "body": [ 869 | "void OnPostprocessGameObjectWithUserProperties (GameObject ${root}, string[] ${propNames}, object[] ${values}){", 870 | " $0", 871 | "}" 872 | ], 873 | "description": "" 874 | }, 875 | "OnPostprocessModel": { 876 | "prefix": "OnPostprocessModel", 877 | "body": [ 878 | "void OnPostprocessModel (GameObject ${root}){", 879 | " $0", 880 | "}" 881 | ], 882 | "description": "" 883 | }, 884 | "OnPostprocessSpeedTree": { 885 | "prefix": "OnPostprocessSpeedTree", 886 | "body": [ 887 | "void OnPostprocessSpeedTree (GameObject ${root}){", 888 | " $0", 889 | "}" 890 | ], 891 | "description": "" 892 | }, 893 | "OnPostprocessSprites": { 894 | "prefix": "OnPostprocessSprites", 895 | "body": [ 896 | "void OnPostprocessSprites (Texture2D ${texture}, Sprite[] ${sprites}){", 897 | " $0", 898 | "}" 899 | ], 900 | "description": "" 901 | }, 902 | "OnPostprocessTexture": { 903 | "prefix": "OnPostprocessTexture", 904 | "body": [ 905 | "void OnPostprocessTexture (Texture2D ${texture}){", 906 | " $0", 907 | "}" 908 | ], 909 | "description": "" 910 | }, 911 | "OnPreprocessAudio": { 912 | "prefix": "OnPreprocessAudio", 913 | "body": [ 914 | "void OnPreprocessAudio (){", 915 | " $0", 916 | "}" 917 | ], 918 | "description": "" 919 | }, 920 | "OnPreprocessModel": { 921 | "prefix": "OnPreprocessModel", 922 | "body": [ 923 | "void OnPreprocessModel (){", 924 | " $0", 925 | "}" 926 | ], 927 | "description": "" 928 | }, 929 | "OnPreprocessSpeedTree": { 930 | "prefix": "OnPreprocessSpeedTree", 931 | "body": [ 932 | "void OnPreprocessSpeedTree (){", 933 | " $0", 934 | "}" 935 | ], 936 | "description": "" 937 | }, 938 | "OnPreprocessTexture": { 939 | "prefix": "OnPreprocessTexture", 940 | "body": [ 941 | "void OnPreprocessTexture (){", 942 | " $0", 943 | "}" 944 | ], 945 | "description": "" 946 | }, 947 | "OnProjectChange": { 948 | "prefix": "OnProjectChange", 949 | "body": [ 950 | "void OnProjectChange (){", 951 | " $0", 952 | "}" 953 | ], 954 | "description": "" 955 | }, 956 | "OnSceneGUI": { 957 | "prefix": "OnSceneGUI", 958 | "body": [ 959 | "void OnSceneGUI (){", 960 | " $0", 961 | "}" 962 | ], 963 | "description": "" 964 | }, 965 | "OnSelectionChange": { 966 | "prefix": "OnSelectionChange", 967 | "body": [ 968 | "void OnSelectionChange (){", 969 | " $0", 970 | "}" 971 | ], 972 | "description": "" 973 | }, 974 | "OnWillCreateAsset": { 975 | "prefix": "OnWillCreateAsset", 976 | "body": [ 977 | "void OnWillCreateAsset (string ${path}){", 978 | " $0", 979 | "}" 980 | ], 981 | "description": "" 982 | }, 983 | "OnWillDeleteAsset": { 984 | "prefix": "OnWillDeleteAsset", 985 | "body": [ 986 | "AssetDeleteResult OnWillDeleteAsset (string ${assetPath}, RemoveAssetOptions ${option}){", 987 | " $0", 988 | "}" 989 | ], 990 | "description": "" 991 | }, 992 | "OnWillMoveAsset": { 993 | "prefix": "OnWillMoveAsset", 994 | "body": [ 995 | "AssetMoveResult OnWillMoveAsset (string ${oldPath}, string ${newPath}){", 996 | " $0", 997 | "}" 998 | ], 999 | "description": "" 1000 | }, 1001 | "OnWillSaveAssets": { 1002 | "prefix": "OnWillSaveAssets", 1003 | "body": [ 1004 | "void OnWillSaveAssets (string[] ${paths}){", 1005 | " $0", 1006 | "}" 1007 | ], 1008 | "description": "" 1009 | }, 1010 | "OnWizardCreate": { 1011 | "prefix": "OnWizardCreate", 1012 | "body": [ 1013 | "void OnWizardCreate (){", 1014 | " $0", 1015 | "}" 1016 | ], 1017 | "description": "" 1018 | }, 1019 | "OnWizardOtherButton": { 1020 | "prefix": "OnWizardOtherButton", 1021 | "body": [ 1022 | "void OnWizardOtherButton (){", 1023 | " $0", 1024 | "}" 1025 | ], 1026 | "description": "" 1027 | }, 1028 | "OnWizardUpdate": { 1029 | "prefix": "OnWizardUpdate", 1030 | "body": [ 1031 | "void OnWizardUpdate (){", 1032 | " $0", 1033 | "}" 1034 | ], 1035 | "description": "" 1036 | } 1037 | } -------------------------------------------------------------------------------- /Monodevelop/Unity.template.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | <_Group>UnityC# 6 | text/x-csharp 7 | 1.0 8 | <_Description>Message 9 | SurroundsWith,Expansion 10 | Awake 11 |
12 | 13 | 16 |
17 | 18 |
19 | <_Group>UnityC# 20 | text/x-csharp 21 | 1.0 22 | <_Description>Message 23 | SurroundsWith,Expansion 24 | FixedUpdate 25 |
26 | 27 | 30 |
31 | 32 |
33 | <_Group>UnityC# 34 | text/x-csharp 35 | 1.0 36 | <_Description>Message 37 | SurroundsWith,Expansion 38 | LateUpdate 39 |
40 | 41 | 44 |
45 | 46 |
47 | <_Group>UnityC# 48 | text/x-csharp 49 | 1.0 50 | <_Description>Message 51 | SurroundsWith,Expansion 52 | OnAnimatorIK 53 |
54 | 55 | 56 | layerIndex 57 | 58 | 59 | 62 |
63 | 64 |
65 | <_Group>UnityC# 66 | text/x-csharp 67 | 1.0 68 | <_Description>Message 69 | SurroundsWith,Expansion 70 | OnAnimatorMove 71 |
72 | 73 | 76 |
77 | 78 |
79 | <_Group>UnityC# 80 | text/x-csharp 81 | 1.0 82 | <_Description>Message 83 | SurroundsWith,Expansion 84 | OnApplicationFocus 85 |
86 | 87 | 88 | focusStatus 89 | 90 | 91 | 94 |
95 | 96 |
97 | <_Group>UnityC# 98 | text/x-csharp 99 | 1.0 100 | <_Description>Message 101 | SurroundsWith,Expansion 102 | OnApplicationPause 103 |
104 | 105 | 106 | pauseStatus 107 | 108 | 109 | 112 |
113 | 114 |
115 | <_Group>UnityC# 116 | text/x-csharp 117 | 1.0 118 | <_Description>Message 119 | SurroundsWith,Expansion 120 | OnApplicationQuit 121 |
122 | 123 | 126 |
127 | 128 |
129 | <_Group>UnityC# 130 | text/x-csharp 131 | 1.0 132 | <_Description>Message 133 | SurroundsWith,Expansion 134 | OnAudioFilterRead 135 |
136 | 137 | 138 | data 139 | 140 | 141 | channels 142 | 143 | 144 | 147 |
148 | 149 |
150 | <_Group>UnityC# 151 | text/x-csharp 152 | 1.0 153 | <_Description>Message 154 | SurroundsWith,Expansion 155 | OnBecameInvisible 156 |
157 | 158 | 161 |
162 | 163 |
164 | <_Group>UnityC# 165 | text/x-csharp 166 | 1.0 167 | <_Description>Message 168 | SurroundsWith,Expansion 169 | OnBecameVisible 170 |
171 | 172 | 175 |
176 | 177 |
178 | <_Group>UnityC# 179 | text/x-csharp 180 | 1.0 181 | <_Description>Message 182 | SurroundsWith,Expansion 183 | OnCollisionEnter 184 |
185 | 186 | 187 | collision 188 | 189 | 190 | 193 |
194 | 195 |
196 | <_Group>UnityC# 197 | text/x-csharp 198 | 1.0 199 | <_Description>Message 200 | SurroundsWith,Expansion 201 | OnCollisionEnter2D 202 |
203 | 204 | 205 | collision2D 206 | 207 | 208 | 211 |
212 | 213 |
214 | <_Group>UnityC# 215 | text/x-csharp 216 | 1.0 217 | <_Description>Message 218 | SurroundsWith,Expansion 219 | OnCollisionExit 220 |
221 | 222 | 223 | collision 224 | 225 | 226 | 229 |
230 | 231 |
232 | <_Group>UnityC# 233 | text/x-csharp 234 | 1.0 235 | <_Description>Message 236 | SurroundsWith,Expansion 237 | OnCollisionExit2D 238 |
239 | 240 | 241 | collision2D 242 | 243 | 244 | 247 |
248 | 249 |
250 | <_Group>UnityC# 251 | text/x-csharp 252 | 1.0 253 | <_Description>Message 254 | SurroundsWith,Expansion 255 | OnCollisionStay 256 |
257 | 258 | 259 | collision 260 | 261 | 262 | 265 |
266 | 267 |
268 | <_Group>UnityC# 269 | text/x-csharp 270 | 1.0 271 | <_Description>Message 272 | SurroundsWith,Expansion 273 | OnCollisionStay2D 274 |
275 | 276 | 277 | collision2D 278 | 279 | 280 | 283 |
284 | 285 |
286 | <_Group>UnityC# 287 | text/x-csharp 288 | 1.0 289 | <_Description>Message 290 | SurroundsWith,Expansion 291 | OnConnectedToServer 292 |
293 | 294 | 297 |
298 | 299 |
300 | <_Group>UnityC# 301 | text/x-csharp 302 | 1.0 303 | <_Description>Message 304 | SurroundsWith,Expansion 305 | OnControllerColliderHit 306 |
307 | 308 | 309 | hit 310 | 311 | 312 | 315 |
316 | 317 |
318 | <_Group>UnityC# 319 | text/x-csharp 320 | 1.0 321 | <_Description>Message 322 | SurroundsWith,Expansion 323 | OnDestroy 324 |
325 | 326 | 329 |
330 | 331 |
332 | <_Group>UnityC# 333 | text/x-csharp 334 | 1.0 335 | <_Description>Message 336 | SurroundsWith,Expansion 337 | OnDisable 338 |
339 | 340 | 343 |
344 | 345 |
346 | <_Group>UnityC# 347 | text/x-csharp 348 | 1.0 349 | <_Description>Message 350 | SurroundsWith,Expansion 351 | OnDisconnectedFromServer 352 |
353 | 354 | 355 | info 356 | 357 | 358 | 361 |
362 | 363 |
364 | <_Group>UnityC# 365 | text/x-csharp 366 | 1.0 367 | <_Description>Message 368 | SurroundsWith,Expansion 369 | OnDrawGizmos 370 |
371 | 372 | 375 |
376 | 377 |
378 | <_Group>UnityC# 379 | text/x-csharp 380 | 1.0 381 | <_Description>Message 382 | SurroundsWith,Expansion 383 | OnDrawGizmosSelected 384 |
385 | 386 | 389 |
390 | 391 |
392 | <_Group>UnityC# 393 | text/x-csharp 394 | 1.0 395 | <_Description>Message 396 | SurroundsWith,Expansion 397 | OnEnable 398 |
399 | 400 | 403 |
404 | 405 |
406 | <_Group>UnityC# 407 | text/x-csharp 408 | 1.0 409 | <_Description>Message 410 | SurroundsWith,Expansion 411 | OnFailedToConnect 412 |
413 | 414 | 415 | error 416 | 417 | 418 | 421 |
422 | 423 |
424 | <_Group>UnityC# 425 | text/x-csharp 426 | 1.0 427 | <_Description>Message 428 | SurroundsWith,Expansion 429 | OnFailedToConnectToMasterServer 430 |
431 | 432 | 433 | info 434 | 435 | 436 | 439 |
440 | 441 |
442 | <_Group>UnityC# 443 | text/x-csharp 444 | 1.0 445 | <_Description>Message 446 | SurroundsWith,Expansion 447 | OnGUI 448 |
449 | 450 | 453 |
454 | 455 |
456 | <_Group>UnityC# 457 | text/x-csharp 458 | 1.0 459 | <_Description>Message 460 | SurroundsWith,Expansion 461 | OnJointBreak 462 |
463 | 464 | 465 | breakForce 466 | 467 | 468 | 471 |
472 | 473 |
474 | <_Group>UnityC# 475 | text/x-csharp 476 | 1.0 477 | <_Description>Message 478 | SurroundsWith,Expansion 479 | OnLevelWasLoaded 480 |
481 | 482 | 483 | level 484 | 485 | 486 | 489 |
490 | 491 |
492 | <_Group>UnityC# 493 | text/x-csharp 494 | 1.0 495 | <_Description>Message 496 | SurroundsWith,Expansion 497 | OnMasterServerEvent 498 |
499 | 500 | 501 | msEvent 502 | 503 | 504 | 507 |
508 | 509 |
510 | <_Group>UnityC# 511 | text/x-csharp 512 | 1.0 513 | <_Description>Message 514 | SurroundsWith,Expansion 515 | OnMouseDown 516 |
517 | 518 | 521 |
522 | 523 |
524 | <_Group>UnityC# 525 | text/x-csharp 526 | 1.0 527 | <_Description>Message 528 | SurroundsWith,Expansion 529 | OnMouseDrag 530 |
531 | 532 | 535 |
536 | 537 |
538 | <_Group>UnityC# 539 | text/x-csharp 540 | 1.0 541 | <_Description>Message 542 | SurroundsWith,Expansion 543 | OnMouseEnter 544 |
545 | 546 | 549 |
550 | 551 |
552 | <_Group>UnityC# 553 | text/x-csharp 554 | 1.0 555 | <_Description>Message 556 | SurroundsWith,Expansion 557 | OnMouseExit 558 |
559 | 560 | 563 |
564 | 565 |
566 | <_Group>UnityC# 567 | text/x-csharp 568 | 1.0 569 | <_Description>Message 570 | SurroundsWith,Expansion 571 | OnMouseOver 572 |
573 | 574 | 577 |
578 | 579 |
580 | <_Group>UnityC# 581 | text/x-csharp 582 | 1.0 583 | <_Description>Message 584 | SurroundsWith,Expansion 585 | OnMouseUp 586 |
587 | 588 | 591 |
592 | 593 |
594 | <_Group>UnityC# 595 | text/x-csharp 596 | 1.0 597 | <_Description>Message 598 | SurroundsWith,Expansion 599 | OnMouseUpAsButton 600 |
601 | 602 | 605 |
606 | 607 |
608 | <_Group>UnityC# 609 | text/x-csharp 610 | 1.0 611 | <_Description>Message 612 | SurroundsWith,Expansion 613 | OnNetworkInstantiate 614 |
615 | 616 | 617 | info 618 | 619 | 620 | 623 |
624 | 625 |
626 | <_Group>UnityC# 627 | text/x-csharp 628 | 1.0 629 | <_Description>Message 630 | SurroundsWith,Expansion 631 | OnParticleCollision 632 |
633 | 634 | 635 | other 636 | 637 | 638 | 641 |
642 | 643 |
644 | <_Group>UnityC# 645 | text/x-csharp 646 | 1.0 647 | <_Description>Message 648 | SurroundsWith,Expansion 649 | OnPlayerConnected 650 |
651 | 652 | 653 | player 654 | 655 | 656 | 659 |
660 | 661 |
662 | <_Group>UnityC# 663 | text/x-csharp 664 | 1.0 665 | <_Description>Message 666 | SurroundsWith,Expansion 667 | OnPlayerDisconnected 668 |
669 | 670 | 671 | player 672 | 673 | 674 | 677 |
678 | 679 |
680 | <_Group>UnityC# 681 | text/x-csharp 682 | 1.0 683 | <_Description>Message 684 | SurroundsWith,Expansion 685 | OnPostRender 686 |
687 | 688 | 691 |
692 | 693 |
694 | <_Group>UnityC# 695 | text/x-csharp 696 | 1.0 697 | <_Description>Message 698 | SurroundsWith,Expansion 699 | OnPreCull 700 |
701 | 702 | 705 |
706 | 707 |
708 | <_Group>UnityC# 709 | text/x-csharp 710 | 1.0 711 | <_Description>Message 712 | SurroundsWith,Expansion 713 | OnPreRender 714 |
715 | 716 | 719 |
720 | 721 |
722 | <_Group>UnityC# 723 | text/x-csharp 724 | 1.0 725 | <_Description>Message 726 | SurroundsWith,Expansion 727 | OnRectTransformRemoved 728 |
729 | 730 | 733 |
734 | 735 |
736 | <_Group>UnityC# 737 | text/x-csharp 738 | 1.0 739 | <_Description>Message 740 | SurroundsWith,Expansion 741 | OnRenderImage 742 |
743 | 744 | 745 | src 746 | 747 | 748 | dest 749 | 750 | 751 | 754 |
755 | 756 |
757 | <_Group>UnityC# 758 | text/x-csharp 759 | 1.0 760 | <_Description>Message 761 | SurroundsWith,Expansion 762 | OnRenderObject 763 |
764 | 765 | 768 |
769 | 770 |
771 | <_Group>UnityC# 772 | text/x-csharp 773 | 1.0 774 | <_Description>Message 775 | SurroundsWith,Expansion 776 | OnSerializeNetworkView 777 |
778 | 779 | 780 | stream 781 | 782 | 783 | info 784 | 785 | 786 | 789 |
790 | 791 |
792 | <_Group>UnityC# 793 | text/x-csharp 794 | 1.0 795 | <_Description>Message 796 | SurroundsWith,Expansion 797 | OnServerInitialized 798 |
799 | 800 | 803 |
804 | 805 |
806 | <_Group>UnityC# 807 | text/x-csharp 808 | 1.0 809 | <_Description>Message 810 | SurroundsWith,Expansion 811 | OnTriggerEnter 812 |
813 | 814 | 815 | other 816 | 817 | 818 | 821 |
822 | 823 |
824 | <_Group>UnityC# 825 | text/x-csharp 826 | 1.0 827 | <_Description>Message 828 | SurroundsWith,Expansion 829 | OnTriggerEnter2D 830 |
831 | 832 | 833 | other 834 | 835 | 836 | 839 |
840 | 841 |
842 | <_Group>UnityC# 843 | text/x-csharp 844 | 1.0 845 | <_Description>Message 846 | SurroundsWith,Expansion 847 | OnTriggerExit 848 |
849 | 850 | 851 | other 852 | 853 | 854 | 857 |
858 | 859 |
860 | <_Group>UnityC# 861 | text/x-csharp 862 | 1.0 863 | <_Description>Message 864 | SurroundsWith,Expansion 865 | OnTriggerExit2D 866 |
867 | 868 | 869 | other 870 | 871 | 872 | 875 |
876 | 877 |
878 | <_Group>UnityC# 879 | text/x-csharp 880 | 1.0 881 | <_Description>Message 882 | SurroundsWith,Expansion 883 | OnTriggerStay 884 |
885 | 886 | 887 | other 888 | 889 | 890 | 893 |
894 | 895 |
896 | <_Group>UnityC# 897 | text/x-csharp 898 | 1.0 899 | <_Description>Message 900 | SurroundsWith,Expansion 901 | OnTriggerStay2D 902 |
903 | 904 | 905 | other 906 | 907 | 908 | 911 |
912 | 913 |
914 | <_Group>UnityC# 915 | text/x-csharp 916 | 1.0 917 | <_Description>Message 918 | SurroundsWith,Expansion 919 | OnValidate 920 |
921 | 922 | 925 |
926 | 927 |
928 | <_Group>UnityC# 929 | text/x-csharp 930 | 1.0 931 | <_Description>Message 932 | SurroundsWith,Expansion 933 | OnWillRenderObject 934 |
935 | 936 | 939 |
940 | 941 |
942 | <_Group>UnityC# 943 | text/x-csharp 944 | 1.0 945 | <_Description>Message 946 | SurroundsWith,Expansion 947 | Reset 948 |
949 | 950 | 953 |
954 | 955 |
956 | <_Group>UnityC# 957 | text/x-csharp 958 | 1.0 959 | <_Description>Message 960 | SurroundsWith,Expansion 961 | Start 962 |
963 | 964 | 967 |
968 | 969 |
970 | <_Group>UnityC# 971 | text/x-csharp 972 | 1.0 973 | <_Description>Message 974 | SurroundsWith,Expansion 975 | Update 976 |
977 | 978 | 981 |
982 | 983 |
984 | <_Group>UnityC# 985 | text/x-csharp 986 | 1.0 987 | <_Description>Message 988 | SurroundsWith,Expansion 989 | OnBeginDrag 990 |
991 | 992 | 993 | eventData 994 | 995 | 996 | 999 |
1000 | 1001 |
1002 | <_Group>UnityC# 1003 | text/x-csharp 1004 | 1.0 1005 | <_Description>Message 1006 | SurroundsWith,Expansion 1007 | OnDeselect 1008 |
1009 | 1010 | 1011 | eventData 1012 | 1013 | 1014 | 1017 |
1018 | 1019 |
1020 | <_Group>UnityC# 1021 | text/x-csharp 1022 | 1.0 1023 | <_Description>Message 1024 | SurroundsWith,Expansion 1025 | OnDrag 1026 |
1027 | 1028 | 1029 | eventData 1030 | 1031 | 1032 | 1035 |
1036 | 1037 |
1038 | <_Group>UnityC# 1039 | text/x-csharp 1040 | 1.0 1041 | <_Description>Message 1042 | SurroundsWith,Expansion 1043 | OnDrop 1044 |
1045 | 1046 | 1047 | eventData 1048 | 1049 | 1050 | 1053 |
1054 | 1055 |
1056 | <_Group>UnityC# 1057 | text/x-csharp 1058 | 1.0 1059 | <_Description>Message 1060 | SurroundsWith,Expansion 1061 | OnEndDrag 1062 |
1063 | 1064 | 1065 | eventData 1066 | 1067 | 1068 | 1071 |
1072 | 1073 |
1074 | <_Group>UnityC# 1075 | text/x-csharp 1076 | 1.0 1077 | <_Description>Message 1078 | SurroundsWith,Expansion 1079 | OnInitializePotentialDrag 1080 |
1081 | 1082 | 1083 | eventData 1084 | 1085 | 1086 | 1089 |
1090 | 1091 |
1092 | <_Group>UnityC# 1093 | text/x-csharp 1094 | 1.0 1095 | <_Description>Message 1096 | SurroundsWith,Expansion 1097 | OnMove 1098 |
1099 | 1100 | 1101 | eventData 1102 | 1103 | 1104 | 1107 |
1108 | 1109 |
1110 | <_Group>UnityC# 1111 | text/x-csharp 1112 | 1.0 1113 | <_Description>Message 1114 | SurroundsWith,Expansion 1115 | OnRebuildRequested 1116 |
1117 | 1118 | 1121 |
1122 | 1123 |
1124 | <_Group>UnityC# 1125 | text/x-csharp 1126 | 1.0 1127 | <_Description>Message 1128 | SurroundsWith,Expansion 1129 | OnScroll 1130 |
1131 | 1132 | 1133 | eventData 1134 | 1135 | 1136 | 1139 |
1140 | 1141 |
1142 | <_Group>UnityC# 1143 | text/x-csharp 1144 | 1.0 1145 | <_Description>Message 1146 | SurroundsWith,Expansion 1147 | OnSelect 1148 |
1149 | 1150 | 1151 | eventData 1152 | 1153 | 1154 | 1157 |
1158 | 1159 |
1160 | <_Group>UnityC# 1161 | text/x-csharp 1162 | 1.0 1163 | <_Description>Message 1164 | SurroundsWith,Expansion 1165 | OnSubmit 1166 |
1167 | 1168 | 1169 | eventData 1170 | 1171 | 1172 | 1175 |
1176 | 1177 |
1178 | <_Group>UnityC# 1179 | text/x-csharp 1180 | 1.0 1181 | <_Description>Message 1182 | SurroundsWith,Expansion 1183 | OnTransformChildrenChanged 1184 |
1185 | 1186 | 1189 |
1190 | 1191 |
1192 | <_Group>UnityC# 1193 | text/x-csharp 1194 | 1.0 1195 | <_Description>Message 1196 | SurroundsWith,Expansion 1197 | OnBeforeSerialize 1198 |
1199 | 1200 | 1203 |
1204 | 1205 |
1206 | <_Group>UnityC# 1207 | text/x-csharp 1208 | 1.0 1209 | <_Description>Message 1210 | SurroundsWith,Expansion 1211 | OnBeforeTransformParentChanged 1212 |
1213 | 1214 | 1217 |
1218 | 1219 |
1220 | <_Group>UnityC# 1221 | text/x-csharp 1222 | 1.0 1223 | <_Description>Message 1224 | SurroundsWith,Expansion 1225 | OnCanvasGroupChanged 1226 |
1227 | 1228 | 1231 |
1232 | 1233 |
1234 | <_Group>UnityC# 1235 | text/x-csharp 1236 | 1.0 1237 | <_Description>Message 1238 | SurroundsWith,Expansion 1239 | OnDidApplyAnimationProperties 1240 |
1241 | 1242 | 1245 |
1246 | 1247 |
1248 | <_Group>UnityC# 1249 | text/x-csharp 1250 | 1.0 1251 | <_Description>Message 1252 | SurroundsWith,Expansion 1253 | OnFillVBO 1254 |
1255 | 1256 | 1257 | vbo 1258 | 1259 | 1260 | 1263 |
1264 | 1265 |
1266 | <_Group>UnityC# 1267 | text/x-csharp 1268 | 1.0 1269 | <_Description>Message 1270 | SurroundsWith,Expansion 1271 | OnPointerClick 1272 |
1273 | 1274 | 1275 | eventData 1276 | 1277 | 1278 | 1281 |
1282 | 1283 |
1284 | <_Group>UnityC# 1285 | text/x-csharp 1286 | 1.0 1287 | <_Description>Message 1288 | SurroundsWith,Expansion 1289 | OnPointerDown 1290 |
1291 | 1292 | 1293 | eventData 1294 | 1295 | 1296 | 1299 |
1300 | 1301 |
1302 | <_Group>UnityC# 1303 | text/x-csharp 1304 | 1.0 1305 | <_Description>Message 1306 | SurroundsWith,Expansion 1307 | OnPointerEnter 1308 |
1309 | 1310 | 1311 | eventData 1312 | 1313 | 1314 | 1317 |
1318 | 1319 |
1320 | <_Group>UnityC# 1321 | text/x-csharp 1322 | 1.0 1323 | <_Description>Message 1324 | SurroundsWith,Expansion 1325 | OnPointerExit 1326 |
1327 | 1328 | 1329 | eventData 1330 | 1331 | 1332 | 1335 |
1336 | 1337 |
1338 | <_Group>UnityC# 1339 | text/x-csharp 1340 | 1.0 1341 | <_Description>Message 1342 | SurroundsWith,Expansion 1343 | OnPointerUp 1344 |
1345 | 1346 | 1347 | eventData 1348 | 1349 | 1350 | 1353 |
1354 | 1355 |
1356 | <_Group>UnityC# 1357 | text/x-csharp 1358 | 1.0 1359 | <_Description>Message 1360 | SurroundsWith,Expansion 1361 | OnRectTransformDimensionsChange 1362 |
1363 | 1364 | 1367 |
1368 | 1369 |
1370 | <_Group>UnityC# 1371 | text/x-csharp 1372 | 1.0 1373 | <_Description>Message 1374 | SurroundsWith,Expansion 1375 | OnSiblingGraphicEnabledDisabled 1376 |
1377 | 1378 | 1381 |
1382 | 1383 |
1384 | <_Group>UnityC# 1385 | text/x-csharp 1386 | 1.0 1387 | <_Description>Message 1388 | SurroundsWith,Expansion 1389 | OnTransformParentChanged 1390 |
1391 | 1392 | 1395 |
1396 | 1397 |
1398 | <_Group>UnityC# 1399 | text/x-csharp 1400 | 1.0 1401 | <_Description>Message 1402 | SurroundsWith,Expansion 1403 | OnUpdateSelected 1404 |
1405 | 1406 | 1407 | eventData 1408 | 1409 | 1410 | 1413 |
1414 | 1415 |
1416 | <_Group>UnityC# 1417 | text/x-csharp 1418 | 1.0 1419 | <_Description>Message 1420 | SurroundsWith,Expansion 1421 | UpdateGeometry 1422 |
1423 | 1424 | 1427 |
1428 | 1429 |
1430 | <_Group>UnityC# 1431 | text/x-csharp 1432 | 1.0 1433 | <_Description>Message 1434 | SurroundsWith,Expansion 1435 | UpdateMaterial 1436 |
1437 | 1438 | 1441 |
1442 | 1443 |
1444 | <_Group>UnityC# 1445 | text/x-csharp 1446 | 1.0 1447 | <_Description>Message 1448 | SurroundsWith,Expansion 1449 | OnAssignMaterialModel 1450 |
1451 | 1452 | 1453 | material 1454 | 1455 | 1456 | renderer 1457 | 1458 | 1459 | 1462 |
1463 | 1464 |
1465 | <_Group>UnityC# 1466 | text/x-csharp 1467 | 1.0 1468 | <_Description>Message 1469 | SurroundsWith,Expansion 1470 | OnHierarchyChange 1471 |
1472 | 1473 | 1476 |
1477 | 1478 |
1479 | <_Group>UnityC# 1480 | text/x-csharp 1481 | 1.0 1482 | <_Description>Message 1483 | SurroundsWith,Expansion 1484 | OnInspectorUpdate 1485 |
1486 | 1487 | 1490 |
1491 | 1492 |
1493 | <_Group>UnityC# 1494 | text/x-csharp 1495 | 1.0 1496 | <_Description>Message 1497 | SurroundsWith,Expansion 1498 | OnLostFocus 1499 |
1500 | 1501 | 1504 |
1505 | 1506 |
1507 | <_Group>UnityC# 1508 | text/x-csharp 1509 | 1.0 1510 | <_Description>Message 1511 | SurroundsWith,Expansion 1512 | OnPostprocessAllAssets 1513 |
1514 | 1515 | 1516 | importedAssets 1517 | 1518 | 1519 | deletedAssets 1520 | 1521 | 1522 | movedAssets 1523 | 1524 | 1525 | movedFromPath 1526 | 1527 | 1528 | 1531 |
1532 | 1533 |
1534 | <_Group>UnityC# 1535 | text/x-csharp 1536 | 1.0 1537 | <_Description>Message 1538 | SurroundsWith,Expansion 1539 | OnPostprocessAssetbundleNameChanged 1540 |
1541 | 1542 | 1543 | assetPath 1544 | 1545 | 1546 | prevoiusAssetBundleName 1547 | 1548 | 1549 | newAssetBundleName 1550 | 1551 | 1552 | 1555 |
1556 | 1557 |
1558 | <_Group>UnityC# 1559 | text/x-csharp 1560 | 1.0 1561 | <_Description>Message 1562 | SurroundsWith,Expansion 1563 | OnPostprocessAudio 1564 |
1565 | 1566 | 1567 | clip 1568 | 1569 | 1570 | 1573 |
1574 | 1575 |
1576 | <_Group>UnityC# 1577 | text/x-csharp 1578 | 1.0 1579 | <_Description>Message 1580 | SurroundsWith,Expansion 1581 | OnPostprocessGameObjectWithUserProperties 1582 |
1583 | 1584 | 1585 | root 1586 | 1587 | 1588 | propNames 1589 | 1590 | 1591 | values 1592 | 1593 | 1594 | 1597 |
1598 | 1599 |
1600 | <_Group>UnityC# 1601 | text/x-csharp 1602 | 1.0 1603 | <_Description>Message 1604 | SurroundsWith,Expansion 1605 | OnPostprocessModel 1606 |
1607 | 1608 | 1609 | root 1610 | 1611 | 1612 | 1615 |
1616 | 1617 |
1618 | <_Group>UnityC# 1619 | text/x-csharp 1620 | 1.0 1621 | <_Description>Message 1622 | SurroundsWith,Expansion 1623 | OnPostprocessSpeedTree 1624 |
1625 | 1626 | 1627 | root 1628 | 1629 | 1630 | 1633 |
1634 | 1635 |
1636 | <_Group>UnityC# 1637 | text/x-csharp 1638 | 1.0 1639 | <_Description>Message 1640 | SurroundsWith,Expansion 1641 | OnPostprocessSprites 1642 |
1643 | 1644 | 1645 | texture 1646 | 1647 | 1648 | sprites 1649 | 1650 | 1651 | 1654 |
1655 | 1656 |
1657 | <_Group>UnityC# 1658 | text/x-csharp 1659 | 1.0 1660 | <_Description>Message 1661 | SurroundsWith,Expansion 1662 | OnPostprocessTexture 1663 |
1664 | 1665 | 1666 | texture 1667 | 1668 | 1669 | 1672 |
1673 | 1674 |
1675 | <_Group>UnityC# 1676 | text/x-csharp 1677 | 1.0 1678 | <_Description>Message 1679 | SurroundsWith,Expansion 1680 | OnPreprocessAudio 1681 |
1682 | 1683 | 1686 |
1687 | 1688 |
1689 | <_Group>UnityC# 1690 | text/x-csharp 1691 | 1.0 1692 | <_Description>Message 1693 | SurroundsWith,Expansion 1694 | OnPreprocessModel 1695 |
1696 | 1697 | 1700 |
1701 | 1702 |
1703 | <_Group>UnityC# 1704 | text/x-csharp 1705 | 1.0 1706 | <_Description>Message 1707 | SurroundsWith,Expansion 1708 | OnPreprocessSpeedTree 1709 |
1710 | 1711 | 1714 |
1715 | 1716 |
1717 | <_Group>UnityC# 1718 | text/x-csharp 1719 | 1.0 1720 | <_Description>Message 1721 | SurroundsWith,Expansion 1722 | OnPreprocessTexture 1723 |
1724 | 1725 | 1728 |
1729 | 1730 |
1731 | <_Group>UnityC# 1732 | text/x-csharp 1733 | 1.0 1734 | <_Description>Message 1735 | SurroundsWith,Expansion 1736 | OnProjectChange 1737 |
1738 | 1739 | 1742 |
1743 | 1744 |
1745 | <_Group>UnityC# 1746 | text/x-csharp 1747 | 1.0 1748 | <_Description>Message 1749 | SurroundsWith,Expansion 1750 | OnSceneGUI 1751 |
1752 | 1753 | 1756 |
1757 | 1758 |
1759 | <_Group>UnityC# 1760 | text/x-csharp 1761 | 1.0 1762 | <_Description>Message 1763 | SurroundsWith,Expansion 1764 | OnSelectionChange 1765 |
1766 | 1767 | 1770 |
1771 | 1772 |
1773 | <_Group>UnityC# 1774 | text/x-csharp 1775 | 1.0 1776 | <_Description>Message 1777 | SurroundsWith,Expansion 1778 | OnWillCreateAsset 1779 |
1780 | 1781 | 1782 | path 1783 | 1784 | 1785 | 1788 |
1789 | 1790 |
1791 | <_Group>UnityC# 1792 | text/x-csharp 1793 | 1.0 1794 | <_Description>Message 1795 | SurroundsWith,Expansion 1796 | OnWillDeleteAsset 1797 |
1798 | 1799 | 1800 | assetPath 1801 | 1802 | 1803 | option 1804 | 1805 | 1806 | 1809 |
1810 | 1811 |
1812 | <_Group>UnityC# 1813 | text/x-csharp 1814 | 1.0 1815 | <_Description>Message 1816 | SurroundsWith,Expansion 1817 | OnWillMoveAsset 1818 |
1819 | 1820 | 1821 | oldPath 1822 | 1823 | 1824 | newPath 1825 | 1826 | 1827 | 1830 |
1831 | 1832 |
1833 | <_Group>UnityC# 1834 | text/x-csharp 1835 | 1.0 1836 | <_Description>Message 1837 | SurroundsWith,Expansion 1838 | OnWillSaveAssets 1839 |
1840 | 1841 | 1842 | paths 1843 | 1844 | 1845 | 1848 |
1849 | 1850 |
1851 | <_Group>UnityC# 1852 | text/x-csharp 1853 | 1.0 1854 | <_Description>Message 1855 | SurroundsWith,Expansion 1856 | OnWizardCreate 1857 |
1858 | 1859 | 1862 |
1863 | 1864 |
1865 | <_Group>UnityC# 1866 | text/x-csharp 1867 | 1.0 1868 | <_Description>Message 1869 | SurroundsWith,Expansion 1870 | OnWizardOtherButton 1871 |
1872 | 1873 | 1876 |
1877 | 1878 |
1879 | <_Group>UnityC# 1880 | text/x-csharp 1881 | 1.0 1882 | <_Description>Message 1883 | SurroundsWith,Expansion 1884 | OnWizardUpdate 1885 |
1886 | 1887 | 1890 |
1891 |
-------------------------------------------------------------------------------- /VisualStudio/Unity C#/My Code Snippets/Unity.snippet: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Awake 5 | Message 6 | 7 | Expansion 8 | SurroundsWith 9 | 10 | Awake 11 |
12 | 13 | 14 | 17 | 18 |
19 | 20 |
21 | FixedUpdate 22 | Message 23 | 24 | Expansion 25 | SurroundsWith 26 | 27 | FixedUpdate 28 |
29 | 30 | 31 | 34 | 35 |
36 | 37 |
38 | LateUpdate 39 | Message 40 | 41 | Expansion 42 | SurroundsWith 43 | 44 | LateUpdate 45 |
46 | 47 | 48 | 51 | 52 |
53 | 54 |
55 | OnAnimatorIK 56 | Message 57 | 58 | Expansion 59 | SurroundsWith 60 | 61 | OnAnimatorIK 62 |
63 | 64 | 65 | 66 | name0 67 | layerIndex 68 | 69 | 70 | 73 | 74 |
75 | 76 |
77 | OnAnimatorMove 78 | Message 79 | 80 | Expansion 81 | SurroundsWith 82 | 83 | OnAnimatorMove 84 |
85 | 86 | 87 | 90 | 91 |
92 | 93 |
94 | OnApplicationFocus 95 | Message 96 | 97 | Expansion 98 | SurroundsWith 99 | 100 | OnApplicationFocus 101 |
102 | 103 | 104 | 105 | name0 106 | focusStatus 107 | 108 | 109 | 112 | 113 |
114 | 115 |
116 | OnApplicationPause 117 | Message 118 | 119 | Expansion 120 | SurroundsWith 121 | 122 | OnApplicationPause 123 |
124 | 125 | 126 | 127 | name0 128 | pauseStatus 129 | 130 | 131 | 134 | 135 |
136 | 137 |
138 | OnApplicationQuit 139 | Message 140 | 141 | Expansion 142 | SurroundsWith 143 | 144 | OnApplicationQuit 145 |
146 | 147 | 148 | 151 | 152 |
153 | 154 |
155 | OnAudioFilterRead 156 | Message 157 | 158 | Expansion 159 | SurroundsWith 160 | 161 | OnAudioFilterRead 162 |
163 | 164 | 165 | 166 | name0 167 | data 168 | 169 | 170 | 171 | name1 172 | channels 173 | 174 | 175 | 178 | 179 |
180 | 181 |
182 | OnBecameInvisible 183 | Message 184 | 185 | Expansion 186 | SurroundsWith 187 | 188 | OnBecameInvisible 189 |
190 | 191 | 192 | 195 | 196 |
197 | 198 |
199 | OnBecameVisible 200 | Message 201 | 202 | Expansion 203 | SurroundsWith 204 | 205 | OnBecameVisible 206 |
207 | 208 | 209 | 212 | 213 |
214 | 215 |
216 | OnCollisionEnter 217 | Message 218 | 219 | Expansion 220 | SurroundsWith 221 | 222 | OnCollisionEnter 223 |
224 | 225 | 226 | 227 | name0 228 | collision 229 | 230 | 231 | 234 | 235 |
236 | 237 |
238 | OnCollisionEnter2D 239 | Message 240 | 241 | Expansion 242 | SurroundsWith 243 | 244 | OnCollisionEnter2D 245 |
246 | 247 | 248 | 249 | name0 250 | collision2D 251 | 252 | 253 | 256 | 257 |
258 | 259 |
260 | OnCollisionExit 261 | Message 262 | 263 | Expansion 264 | SurroundsWith 265 | 266 | OnCollisionExit 267 |
268 | 269 | 270 | 271 | name0 272 | collision 273 | 274 | 275 | 278 | 279 |
280 | 281 |
282 | OnCollisionExit2D 283 | Message 284 | 285 | Expansion 286 | SurroundsWith 287 | 288 | OnCollisionExit2D 289 |
290 | 291 | 292 | 293 | name0 294 | collision2D 295 | 296 | 297 | 300 | 301 |
302 | 303 |
304 | OnCollisionStay 305 | Message 306 | 307 | Expansion 308 | SurroundsWith 309 | 310 | OnCollisionStay 311 |
312 | 313 | 314 | 315 | name0 316 | collision 317 | 318 | 319 | 322 | 323 |
324 | 325 |
326 | OnCollisionStay2D 327 | Message 328 | 329 | Expansion 330 | SurroundsWith 331 | 332 | OnCollisionStay2D 333 |
334 | 335 | 336 | 337 | name0 338 | collision2D 339 | 340 | 341 | 344 | 345 |
346 | 347 |
348 | OnConnectedToServer 349 | Message 350 | 351 | Expansion 352 | SurroundsWith 353 | 354 | OnConnectedToServer 355 |
356 | 357 | 358 | 361 | 362 |
363 | 364 |
365 | OnControllerColliderHit 366 | Message 367 | 368 | Expansion 369 | SurroundsWith 370 | 371 | OnControllerColliderHit 372 |
373 | 374 | 375 | 376 | name0 377 | hit 378 | 379 | 380 | 383 | 384 |
385 | 386 |
387 | OnDestroy 388 | Message 389 | 390 | Expansion 391 | SurroundsWith 392 | 393 | OnDestroy 394 |
395 | 396 | 397 | 400 | 401 |
402 | 403 |
404 | OnDisable 405 | Message 406 | 407 | Expansion 408 | SurroundsWith 409 | 410 | OnDisable 411 |
412 | 413 | 414 | 417 | 418 |
419 | 420 |
421 | OnDisconnectedFromServer 422 | Message 423 | 424 | Expansion 425 | SurroundsWith 426 | 427 | OnDisconnectedFromServer 428 |
429 | 430 | 431 | 432 | name0 433 | info 434 | 435 | 436 | 439 | 440 |
441 | 442 |
443 | OnDrawGizmos 444 | Message 445 | 446 | Expansion 447 | SurroundsWith 448 | 449 | OnDrawGizmos 450 |
451 | 452 | 453 | 456 | 457 |
458 | 459 |
460 | OnDrawGizmosSelected 461 | Message 462 | 463 | Expansion 464 | SurroundsWith 465 | 466 | OnDrawGizmosSelected 467 |
468 | 469 | 470 | 473 | 474 |
475 | 476 |
477 | OnEnable 478 | Message 479 | 480 | Expansion 481 | SurroundsWith 482 | 483 | OnEnable 484 |
485 | 486 | 487 | 490 | 491 |
492 | 493 |
494 | OnFailedToConnect 495 | Message 496 | 497 | Expansion 498 | SurroundsWith 499 | 500 | OnFailedToConnect 501 |
502 | 503 | 504 | 505 | name0 506 | error 507 | 508 | 509 | 512 | 513 |
514 | 515 |
516 | OnFailedToConnectToMasterServer 517 | Message 518 | 519 | Expansion 520 | SurroundsWith 521 | 522 | OnFailedToConnectToMasterServer 523 |
524 | 525 | 526 | 527 | name0 528 | info 529 | 530 | 531 | 534 | 535 |
536 | 537 |
538 | OnGUI 539 | Message 540 | 541 | Expansion 542 | SurroundsWith 543 | 544 | OnGUI 545 |
546 | 547 | 548 | 551 | 552 |
553 | 554 |
555 | OnJointBreak 556 | Message 557 | 558 | Expansion 559 | SurroundsWith 560 | 561 | OnJointBreak 562 |
563 | 564 | 565 | 566 | name0 567 | breakForce 568 | 569 | 570 | 573 | 574 |
575 | 576 |
577 | OnLevelWasLoaded 578 | Message 579 | 580 | Expansion 581 | SurroundsWith 582 | 583 | OnLevelWasLoaded 584 |
585 | 586 | 587 | 588 | name0 589 | level 590 | 591 | 592 | 595 | 596 |
597 | 598 |
599 | OnMasterServerEvent 600 | Message 601 | 602 | Expansion 603 | SurroundsWith 604 | 605 | OnMasterServerEvent 606 |
607 | 608 | 609 | 610 | name0 611 | msEvent 612 | 613 | 614 | 617 | 618 |
619 | 620 |
621 | OnMouseDown 622 | Message 623 | 624 | Expansion 625 | SurroundsWith 626 | 627 | OnMouseDown 628 |
629 | 630 | 631 | 634 | 635 |
636 | 637 |
638 | OnMouseDrag 639 | Message 640 | 641 | Expansion 642 | SurroundsWith 643 | 644 | OnMouseDrag 645 |
646 | 647 | 648 | 651 | 652 |
653 | 654 |
655 | OnMouseEnter 656 | Message 657 | 658 | Expansion 659 | SurroundsWith 660 | 661 | OnMouseEnter 662 |
663 | 664 | 665 | 668 | 669 |
670 | 671 |
672 | OnMouseExit 673 | Message 674 | 675 | Expansion 676 | SurroundsWith 677 | 678 | OnMouseExit 679 |
680 | 681 | 682 | 685 | 686 |
687 | 688 |
689 | OnMouseOver 690 | Message 691 | 692 | Expansion 693 | SurroundsWith 694 | 695 | OnMouseOver 696 |
697 | 698 | 699 | 702 | 703 |
704 | 705 |
706 | OnMouseUp 707 | Message 708 | 709 | Expansion 710 | SurroundsWith 711 | 712 | OnMouseUp 713 |
714 | 715 | 716 | 719 | 720 |
721 | 722 |
723 | OnMouseUpAsButton 724 | Message 725 | 726 | Expansion 727 | SurroundsWith 728 | 729 | OnMouseUpAsButton 730 |
731 | 732 | 733 | 736 | 737 |
738 | 739 |
740 | OnNetworkInstantiate 741 | Message 742 | 743 | Expansion 744 | SurroundsWith 745 | 746 | OnNetworkInstantiate 747 |
748 | 749 | 750 | 751 | name0 752 | info 753 | 754 | 755 | 758 | 759 |
760 | 761 |
762 | OnParticleCollision 763 | Message 764 | 765 | Expansion 766 | SurroundsWith 767 | 768 | OnParticleCollision 769 |
770 | 771 | 772 | 773 | name0 774 | other 775 | 776 | 777 | 780 | 781 |
782 | 783 |
784 | OnPlayerConnected 785 | Message 786 | 787 | Expansion 788 | SurroundsWith 789 | 790 | OnPlayerConnected 791 |
792 | 793 | 794 | 795 | name0 796 | player 797 | 798 | 799 | 802 | 803 |
804 | 805 |
806 | OnPlayerDisconnected 807 | Message 808 | 809 | Expansion 810 | SurroundsWith 811 | 812 | OnPlayerDisconnected 813 |
814 | 815 | 816 | 817 | name0 818 | player 819 | 820 | 821 | 824 | 825 |
826 | 827 |
828 | OnPostRender 829 | Message 830 | 831 | Expansion 832 | SurroundsWith 833 | 834 | OnPostRender 835 |
836 | 837 | 838 | 841 | 842 |
843 | 844 |
845 | OnPreCull 846 | Message 847 | 848 | Expansion 849 | SurroundsWith 850 | 851 | OnPreCull 852 |
853 | 854 | 855 | 858 | 859 |
860 | 861 |
862 | OnPreRender 863 | Message 864 | 865 | Expansion 866 | SurroundsWith 867 | 868 | OnPreRender 869 |
870 | 871 | 872 | 875 | 876 |
877 | 878 |
879 | OnRectTransformRemoved 880 | Message 881 | 882 | Expansion 883 | SurroundsWith 884 | 885 | OnRectTransformRemoved 886 |
887 | 888 | 889 | 892 | 893 |
894 | 895 |
896 | OnRenderImage 897 | Message 898 | 899 | Expansion 900 | SurroundsWith 901 | 902 | OnRenderImage 903 |
904 | 905 | 906 | 907 | name0 908 | src 909 | 910 | 911 | 912 | name1 913 | dest 914 | 915 | 916 | 919 | 920 |
921 | 922 |
923 | OnRenderObject 924 | Message 925 | 926 | Expansion 927 | SurroundsWith 928 | 929 | OnRenderObject 930 |
931 | 932 | 933 | 936 | 937 |
938 | 939 |
940 | OnSerializeNetworkView 941 | Message 942 | 943 | Expansion 944 | SurroundsWith 945 | 946 | OnSerializeNetworkView 947 |
948 | 949 | 950 | 951 | name0 952 | stream 953 | 954 | 955 | 956 | name1 957 | info 958 | 959 | 960 | 963 | 964 |
965 | 966 |
967 | OnServerInitialized 968 | Message 969 | 970 | Expansion 971 | SurroundsWith 972 | 973 | OnServerInitialized 974 |
975 | 976 | 977 | 980 | 981 |
982 | 983 |
984 | OnTriggerEnter 985 | Message 986 | 987 | Expansion 988 | SurroundsWith 989 | 990 | OnTriggerEnter 991 |
992 | 993 | 994 | 995 | name0 996 | other 997 | 998 | 999 | 1002 | 1003 |
1004 | 1005 |
1006 | OnTriggerEnter2D 1007 | Message 1008 | 1009 | Expansion 1010 | SurroundsWith 1011 | 1012 | OnTriggerEnter2D 1013 |
1014 | 1015 | 1016 | 1017 | name0 1018 | other 1019 | 1020 | 1021 | 1024 | 1025 |
1026 | 1027 |
1028 | OnTriggerExit 1029 | Message 1030 | 1031 | Expansion 1032 | SurroundsWith 1033 | 1034 | OnTriggerExit 1035 |
1036 | 1037 | 1038 | 1039 | name0 1040 | other 1041 | 1042 | 1043 | 1046 | 1047 |
1048 | 1049 |
1050 | OnTriggerExit2D 1051 | Message 1052 | 1053 | Expansion 1054 | SurroundsWith 1055 | 1056 | OnTriggerExit2D 1057 |
1058 | 1059 | 1060 | 1061 | name0 1062 | other 1063 | 1064 | 1065 | 1068 | 1069 |
1070 | 1071 |
1072 | OnTriggerStay 1073 | Message 1074 | 1075 | Expansion 1076 | SurroundsWith 1077 | 1078 | OnTriggerStay 1079 |
1080 | 1081 | 1082 | 1083 | name0 1084 | other 1085 | 1086 | 1087 | 1090 | 1091 |
1092 | 1093 |
1094 | OnTriggerStay2D 1095 | Message 1096 | 1097 | Expansion 1098 | SurroundsWith 1099 | 1100 | OnTriggerStay2D 1101 |
1102 | 1103 | 1104 | 1105 | name0 1106 | other 1107 | 1108 | 1109 | 1112 | 1113 |
1114 | 1115 |
1116 | OnValidate 1117 | Message 1118 | 1119 | Expansion 1120 | SurroundsWith 1121 | 1122 | OnValidate 1123 |
1124 | 1125 | 1126 | 1129 | 1130 |
1131 | 1132 |
1133 | OnWillRenderObject 1134 | Message 1135 | 1136 | Expansion 1137 | SurroundsWith 1138 | 1139 | OnWillRenderObject 1140 |
1141 | 1142 | 1143 | 1146 | 1147 |
1148 | 1149 |
1150 | Reset 1151 | Message 1152 | 1153 | Expansion 1154 | SurroundsWith 1155 | 1156 | Reset 1157 |
1158 | 1159 | 1160 | 1163 | 1164 |
1165 | 1166 |
1167 | Start 1168 | Message 1169 | 1170 | Expansion 1171 | SurroundsWith 1172 | 1173 | Start 1174 |
1175 | 1176 | 1177 | 1180 | 1181 |
1182 | 1183 |
1184 | Update 1185 | Message 1186 | 1187 | Expansion 1188 | SurroundsWith 1189 | 1190 | Update 1191 |
1192 | 1193 | 1194 | 1197 | 1198 |
1199 | 1200 |
1201 | OnBeginDrag 1202 | Message 1203 | 1204 | Expansion 1205 | SurroundsWith 1206 | 1207 | OnBeginDrag 1208 |
1209 | 1210 | 1211 | 1212 | name0 1213 | eventData 1214 | 1215 | 1216 | 1219 | 1220 |
1221 | 1222 |
1223 | OnDeselect 1224 | Message 1225 | 1226 | Expansion 1227 | SurroundsWith 1228 | 1229 | OnDeselect 1230 |
1231 | 1232 | 1233 | 1234 | name0 1235 | eventData 1236 | 1237 | 1238 | 1241 | 1242 |
1243 | 1244 |
1245 | OnDrag 1246 | Message 1247 | 1248 | Expansion 1249 | SurroundsWith 1250 | 1251 | OnDrag 1252 |
1253 | 1254 | 1255 | 1256 | name0 1257 | eventData 1258 | 1259 | 1260 | 1263 | 1264 |
1265 | 1266 |
1267 | OnDrop 1268 | Message 1269 | 1270 | Expansion 1271 | SurroundsWith 1272 | 1273 | OnDrop 1274 |
1275 | 1276 | 1277 | 1278 | name0 1279 | eventData 1280 | 1281 | 1282 | 1285 | 1286 |
1287 | 1288 |
1289 | OnEndDrag 1290 | Message 1291 | 1292 | Expansion 1293 | SurroundsWith 1294 | 1295 | OnEndDrag 1296 |
1297 | 1298 | 1299 | 1300 | name0 1301 | eventData 1302 | 1303 | 1304 | 1307 | 1308 |
1309 | 1310 |
1311 | OnInitializePotentialDrag 1312 | Message 1313 | 1314 | Expansion 1315 | SurroundsWith 1316 | 1317 | OnInitializePotentialDrag 1318 |
1319 | 1320 | 1321 | 1322 | name0 1323 | eventData 1324 | 1325 | 1326 | 1329 | 1330 |
1331 | 1332 |
1333 | OnMove 1334 | Message 1335 | 1336 | Expansion 1337 | SurroundsWith 1338 | 1339 | OnMove 1340 |
1341 | 1342 | 1343 | 1344 | name0 1345 | eventData 1346 | 1347 | 1348 | 1351 | 1352 |
1353 | 1354 |
1355 | OnRebuildRequested 1356 | Message 1357 | 1358 | Expansion 1359 | SurroundsWith 1360 | 1361 | OnRebuildRequested 1362 |
1363 | 1364 | 1365 | 1368 | 1369 |
1370 | 1371 |
1372 | OnScroll 1373 | Message 1374 | 1375 | Expansion 1376 | SurroundsWith 1377 | 1378 | OnScroll 1379 |
1380 | 1381 | 1382 | 1383 | name0 1384 | eventData 1385 | 1386 | 1387 | 1390 | 1391 |
1392 | 1393 |
1394 | OnSelect 1395 | Message 1396 | 1397 | Expansion 1398 | SurroundsWith 1399 | 1400 | OnSelect 1401 |
1402 | 1403 | 1404 | 1405 | name0 1406 | eventData 1407 | 1408 | 1409 | 1412 | 1413 |
1414 | 1415 |
1416 | OnSubmit 1417 | Message 1418 | 1419 | Expansion 1420 | SurroundsWith 1421 | 1422 | OnSubmit 1423 |
1424 | 1425 | 1426 | 1427 | name0 1428 | eventData 1429 | 1430 | 1431 | 1434 | 1435 |
1436 | 1437 |
1438 | OnTransformChildrenChanged 1439 | Message 1440 | 1441 | Expansion 1442 | SurroundsWith 1443 | 1444 | OnTransformChildrenChanged 1445 |
1446 | 1447 | 1448 | 1451 | 1452 |
1453 | 1454 |
1455 | OnBeforeSerialize 1456 | Message 1457 | 1458 | Expansion 1459 | SurroundsWith 1460 | 1461 | OnBeforeSerialize 1462 |
1463 | 1464 | 1465 | 1468 | 1469 |
1470 | 1471 |
1472 | OnBeforeTransformParentChanged 1473 | Message 1474 | 1475 | Expansion 1476 | SurroundsWith 1477 | 1478 | OnBeforeTransformParentChanged 1479 |
1480 | 1481 | 1482 | 1485 | 1486 |
1487 | 1488 |
1489 | OnCanvasGroupChanged 1490 | Message 1491 | 1492 | Expansion 1493 | SurroundsWith 1494 | 1495 | OnCanvasGroupChanged 1496 |
1497 | 1498 | 1499 | 1502 | 1503 |
1504 | 1505 |
1506 | OnDidApplyAnimationProperties 1507 | Message 1508 | 1509 | Expansion 1510 | SurroundsWith 1511 | 1512 | OnDidApplyAnimationProperties 1513 |
1514 | 1515 | 1516 | 1519 | 1520 |
1521 | 1522 |
1523 | OnFillVBO 1524 | Message 1525 | 1526 | Expansion 1527 | SurroundsWith 1528 | 1529 | OnFillVBO 1530 |
1531 | 1532 | 1533 | 1534 | name0 1535 | vbo 1536 | 1537 | 1538 | 1541 | 1542 |
1543 | 1544 |
1545 | OnPointerClick 1546 | Message 1547 | 1548 | Expansion 1549 | SurroundsWith 1550 | 1551 | OnPointerClick 1552 |
1553 | 1554 | 1555 | 1556 | name0 1557 | eventData 1558 | 1559 | 1560 | 1563 | 1564 |
1565 | 1566 |
1567 | OnPointerDown 1568 | Message 1569 | 1570 | Expansion 1571 | SurroundsWith 1572 | 1573 | OnPointerDown 1574 |
1575 | 1576 | 1577 | 1578 | name0 1579 | eventData 1580 | 1581 | 1582 | 1585 | 1586 |
1587 | 1588 |
1589 | OnPointerEnter 1590 | Message 1591 | 1592 | Expansion 1593 | SurroundsWith 1594 | 1595 | OnPointerEnter 1596 |
1597 | 1598 | 1599 | 1600 | name0 1601 | eventData 1602 | 1603 | 1604 | 1607 | 1608 |
1609 | 1610 |
1611 | OnPointerExit 1612 | Message 1613 | 1614 | Expansion 1615 | SurroundsWith 1616 | 1617 | OnPointerExit 1618 |
1619 | 1620 | 1621 | 1622 | name0 1623 | eventData 1624 | 1625 | 1626 | 1629 | 1630 |
1631 | 1632 |
1633 | OnPointerUp 1634 | Message 1635 | 1636 | Expansion 1637 | SurroundsWith 1638 | 1639 | OnPointerUp 1640 |
1641 | 1642 | 1643 | 1644 | name0 1645 | eventData 1646 | 1647 | 1648 | 1651 | 1652 |
1653 | 1654 |
1655 | OnRectTransformDimensionsChange 1656 | Message 1657 | 1658 | Expansion 1659 | SurroundsWith 1660 | 1661 | OnRectTransformDimensionsChange 1662 |
1663 | 1664 | 1665 | 1668 | 1669 |
1670 | 1671 |
1672 | OnSiblingGraphicEnabledDisabled 1673 | Message 1674 | 1675 | Expansion 1676 | SurroundsWith 1677 | 1678 | OnSiblingGraphicEnabledDisabled 1679 |
1680 | 1681 | 1682 | 1685 | 1686 |
1687 | 1688 |
1689 | OnTransformParentChanged 1690 | Message 1691 | 1692 | Expansion 1693 | SurroundsWith 1694 | 1695 | OnTransformParentChanged 1696 |
1697 | 1698 | 1699 | 1702 | 1703 |
1704 | 1705 |
1706 | OnUpdateSelected 1707 | Message 1708 | 1709 | Expansion 1710 | SurroundsWith 1711 | 1712 | OnUpdateSelected 1713 |
1714 | 1715 | 1716 | 1717 | name0 1718 | eventData 1719 | 1720 | 1721 | 1724 | 1725 |
1726 | 1727 |
1728 | UpdateGeometry 1729 | Message 1730 | 1731 | Expansion 1732 | SurroundsWith 1733 | 1734 | UpdateGeometry 1735 |
1736 | 1737 | 1738 | 1741 | 1742 |
1743 | 1744 |
1745 | UpdateMaterial 1746 | Message 1747 | 1748 | Expansion 1749 | SurroundsWith 1750 | 1751 | UpdateMaterial 1752 |
1753 | 1754 | 1755 | 1758 | 1759 |
1760 | 1761 |
1762 | OnAssignMaterialModel 1763 | Message 1764 | 1765 | Expansion 1766 | SurroundsWith 1767 | 1768 | OnAssignMaterialModel 1769 |
1770 | 1771 | 1772 | 1773 | name0 1774 | material 1775 | 1776 | 1777 | 1778 | name1 1779 | renderer 1780 | 1781 | 1782 | 1785 | 1786 |
1787 | 1788 |
1789 | OnHierarchyChange 1790 | Message 1791 | 1792 | Expansion 1793 | SurroundsWith 1794 | 1795 | OnHierarchyChange 1796 |
1797 | 1798 | 1799 | 1802 | 1803 |
1804 | 1805 |
1806 | OnInspectorUpdate 1807 | Message 1808 | 1809 | Expansion 1810 | SurroundsWith 1811 | 1812 | OnInspectorUpdate 1813 |
1814 | 1815 | 1816 | 1819 | 1820 |
1821 | 1822 |
1823 | OnLostFocus 1824 | Message 1825 | 1826 | Expansion 1827 | SurroundsWith 1828 | 1829 | OnLostFocus 1830 |
1831 | 1832 | 1833 | 1836 | 1837 |
1838 | 1839 |
1840 | OnPostprocessAllAssets 1841 | Message 1842 | 1843 | Expansion 1844 | SurroundsWith 1845 | 1846 | OnPostprocessAllAssets 1847 |
1848 | 1849 | 1850 | 1851 | name0 1852 | importedAssets 1853 | 1854 | 1855 | 1856 | name1 1857 | deletedAssets 1858 | 1859 | 1860 | 1861 | name2 1862 | movedAssets 1863 | 1864 | 1865 | 1866 | name3 1867 | movedFromPath 1868 | 1869 | 1870 | 1873 | 1874 |
1875 | 1876 |
1877 | OnPostprocessAssetbundleNameChanged 1878 | Message 1879 | 1880 | Expansion 1881 | SurroundsWith 1882 | 1883 | OnPostprocessAssetbundleNameChanged 1884 |
1885 | 1886 | 1887 | 1888 | name0 1889 | assetPath 1890 | 1891 | 1892 | 1893 | name1 1894 | prevoiusAssetBundleName 1895 | 1896 | 1897 | 1898 | name2 1899 | newAssetBundleName 1900 | 1901 | 1902 | 1905 | 1906 |
1907 | 1908 |
1909 | OnPostprocessAudio 1910 | Message 1911 | 1912 | Expansion 1913 | SurroundsWith 1914 | 1915 | OnPostprocessAudio 1916 |
1917 | 1918 | 1919 | 1920 | name0 1921 | clip 1922 | 1923 | 1924 | 1927 | 1928 |
1929 | 1930 |
1931 | OnPostprocessGameObjectWithUserProperties 1932 | Message 1933 | 1934 | Expansion 1935 | SurroundsWith 1936 | 1937 | OnPostprocessGameObjectWithUserProperties 1938 |
1939 | 1940 | 1941 | 1942 | name0 1943 | root 1944 | 1945 | 1946 | 1947 | name1 1948 | propNames 1949 | 1950 | 1951 | 1952 | name2 1953 | values 1954 | 1955 | 1956 | 1959 | 1960 |
1961 | 1962 |
1963 | OnPostprocessModel 1964 | Message 1965 | 1966 | Expansion 1967 | SurroundsWith 1968 | 1969 | OnPostprocessModel 1970 |
1971 | 1972 | 1973 | 1974 | name0 1975 | root 1976 | 1977 | 1978 | 1981 | 1982 |
1983 | 1984 |
1985 | OnPostprocessSpeedTree 1986 | Message 1987 | 1988 | Expansion 1989 | SurroundsWith 1990 | 1991 | OnPostprocessSpeedTree 1992 |
1993 | 1994 | 1995 | 1996 | name0 1997 | root 1998 | 1999 | 2000 | 2003 | 2004 |
2005 | 2006 |
2007 | OnPostprocessSprites 2008 | Message 2009 | 2010 | Expansion 2011 | SurroundsWith 2012 | 2013 | OnPostprocessSprites 2014 |
2015 | 2016 | 2017 | 2018 | name0 2019 | texture 2020 | 2021 | 2022 | 2023 | name1 2024 | sprites 2025 | 2026 | 2027 | 2030 | 2031 |
2032 | 2033 |
2034 | OnPostprocessTexture 2035 | Message 2036 | 2037 | Expansion 2038 | SurroundsWith 2039 | 2040 | OnPostprocessTexture 2041 |
2042 | 2043 | 2044 | 2045 | name0 2046 | texture 2047 | 2048 | 2049 | 2052 | 2053 |
2054 | 2055 |
2056 | OnPreprocessAudio 2057 | Message 2058 | 2059 | Expansion 2060 | SurroundsWith 2061 | 2062 | OnPreprocessAudio 2063 |
2064 | 2065 | 2066 | 2069 | 2070 |
2071 | 2072 |
2073 | OnPreprocessModel 2074 | Message 2075 | 2076 | Expansion 2077 | SurroundsWith 2078 | 2079 | OnPreprocessModel 2080 |
2081 | 2082 | 2083 | 2086 | 2087 |
2088 | 2089 |
2090 | OnPreprocessSpeedTree 2091 | Message 2092 | 2093 | Expansion 2094 | SurroundsWith 2095 | 2096 | OnPreprocessSpeedTree 2097 |
2098 | 2099 | 2100 | 2103 | 2104 |
2105 | 2106 |
2107 | OnPreprocessTexture 2108 | Message 2109 | 2110 | Expansion 2111 | SurroundsWith 2112 | 2113 | OnPreprocessTexture 2114 |
2115 | 2116 | 2117 | 2120 | 2121 |
2122 | 2123 |
2124 | OnProjectChange 2125 | Message 2126 | 2127 | Expansion 2128 | SurroundsWith 2129 | 2130 | OnProjectChange 2131 |
2132 | 2133 | 2134 | 2137 | 2138 |
2139 | 2140 |
2141 | OnSceneGUI 2142 | Message 2143 | 2144 | Expansion 2145 | SurroundsWith 2146 | 2147 | OnSceneGUI 2148 |
2149 | 2150 | 2151 | 2154 | 2155 |
2156 | 2157 |
2158 | OnSelectionChange 2159 | Message 2160 | 2161 | Expansion 2162 | SurroundsWith 2163 | 2164 | OnSelectionChange 2165 |
2166 | 2167 | 2168 | 2171 | 2172 |
2173 | 2174 |
2175 | OnWillCreateAsset 2176 | Message 2177 | 2178 | Expansion 2179 | SurroundsWith 2180 | 2181 | OnWillCreateAsset 2182 |
2183 | 2184 | 2185 | 2186 | name0 2187 | path 2188 | 2189 | 2190 | 2193 | 2194 |
2195 | 2196 |
2197 | OnWillDeleteAsset 2198 | Message 2199 | 2200 | Expansion 2201 | SurroundsWith 2202 | 2203 | OnWillDeleteAsset 2204 |
2205 | 2206 | 2207 | 2208 | name0 2209 | assetPath 2210 | 2211 | 2212 | 2213 | name1 2214 | option 2215 | 2216 | 2217 | 2220 | 2221 |
2222 | 2223 |
2224 | OnWillMoveAsset 2225 | Message 2226 | 2227 | Expansion 2228 | SurroundsWith 2229 | 2230 | OnWillMoveAsset 2231 |
2232 | 2233 | 2234 | 2235 | name0 2236 | oldPath 2237 | 2238 | 2239 | 2240 | name1 2241 | newPath 2242 | 2243 | 2244 | 2247 | 2248 |
2249 | 2250 |
2251 | OnWillSaveAssets 2252 | Message 2253 | 2254 | Expansion 2255 | SurroundsWith 2256 | 2257 | OnWillSaveAssets 2258 |
2259 | 2260 | 2261 | 2262 | name0 2263 | paths 2264 | 2265 | 2266 | 2269 | 2270 |
2271 | 2272 |
2273 | OnWizardCreate 2274 | Message 2275 | 2276 | Expansion 2277 | SurroundsWith 2278 | 2279 | OnWizardCreate 2280 |
2281 | 2282 | 2283 | 2286 | 2287 |
2288 | 2289 |
2290 | OnWizardOtherButton 2291 | Message 2292 | 2293 | Expansion 2294 | SurroundsWith 2295 | 2296 | OnWizardOtherButton 2297 |
2298 | 2299 | 2300 | 2303 | 2304 |
2305 | 2306 |
2307 | OnWizardUpdate 2308 | Message 2309 | 2310 | Expansion 2311 | SurroundsWith 2312 | 2313 | OnWizardUpdate 2314 |
2315 | 2316 | 2317 | 2320 | 2321 |
2322 |
--------------------------------------------------------------------------------