Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2012
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 207.67 KB | None | 0 0
  1. local REMOTE_URL = "http://getmoai.com/docs/index.html"
  2.  
  3. --- Quickhelp Documentation (ctrl-Q)
  4. -- This is called when the user invokes quick help via ctrl-q, or by
  5. -- having the quickhelp panel open and set to autolookup
  6. -- @param name The name to get documentation for.
  7. -- @return the documentation as an HTML or plain text string
  8. function getDocumentation(name)
  9.     local file = getDocumentationUrl(name)
  10.  
  11.     -- any additional external help?
  12.     if not file then return getQuickNavigateDocumentation(name) end
  13.  
  14.     -- try load remote file with additional help
  15.     html = fetchURL(file)
  16.     if not html then return end
  17.  
  18.     local id = file:find("#")
  19.     if not id then return end
  20.  
  21.     -- lookup for needed block
  22.     local start_pattern = [=[<a class=['"]anchor" id=['"]]=] .. file:sub(id + 1) .. [=[">(.-)<div class=['"]memitem['"]>]=]
  23.     local stop_pattern = [=[<div class=['"]memdoc['"]>(.-)</div>]=]
  24.  
  25.     local start = html:find(start_pattern)
  26.     if start then
  27.         result = html:match(stop_pattern, start)
  28.         if not result then return end
  29.     end
  30.  
  31.     -- lets make some cleanup
  32.     result = result:gsub([=[<a(.-)>(.-)</a>]=], "%2")
  33.     result = result:gsub([=[class=['"](.-)['"]]=], "")
  34.     result = [=[<html><h3>]=] .. name .. [=[</h3>]=] .. result .. [=[<br/><br/>[ <b>information provided by MOAI SDK </b> <a href="]=] .. REMOTE_URL .. [=[">]=] .. REMOTE_URL .. [=[</a> ]</html>]=]
  35.     return result
  36. end
  37.  
  38. --- External Documentation URL (shift-F1)
  39. -- This is called by shift-F1 on the symbol, or by the
  40. -- external documentation button on the quick help panel
  41. -- @param name The name to get documentation for.
  42. -- @return the URL of the external documentation
  43. function getDocumentationUrl(name)
  44.     local sig = SIGNATURES[name]
  45.     if not sig then return end
  46.     if type(sig) == "table" then
  47.         return REMOTE_URL .. sig[2]
  48.     end
  49. end
  50.  
  51.  
  52. --- Quick Navigation Tooltip Text, (ctrl-hover on symbol)
  53. -- This is called when the user ctrl-hovers over a symbol
  54. -- @param name The name to get documentation for.
  55. -- @return the documentation as a plain text string
  56. function getQuickNavigateDocumentation(name)
  57.     local sig = SIGNATURES[name]
  58.     if not sig then return end
  59.     if type(sig) == "table" then
  60.         sig = sig[1]
  61.     end
  62.  
  63.     return "[MOAI SDK]\r\n " .. sig
  64. end
  65.  
  66.  
  67. SIGNATURES = {
  68.  
  69. MOAIAction = [=[Base class for actions.]=],
  70. ["MOAIAction.EVENT_STOP"] = [=[ID of event stop callback. Signature is: nil onStop ()]=],
  71. ["MOAIAction.addChild"] = {[=[function addChild ( MOAIAction self, MOAIAction child )]=], [=[class_m_o_a_i_action.html#a05625367fac4b1492518fc5a9a519082]=]},
  72. ["MOAIAction.attach"] = {[=[function attach ( MOAIAction self [, MOAIAction parent ] )]=], [=[class_m_o_a_i_action.html#aad03471d4156a51ac678f898bfa1a1a6]=]},
  73. ["MOAIAction.clear"] = {[=[function clear ( MOAIAction self )]=], [=[class_m_o_a_i_action.html#a0900bdd5a8cef5b3a1ad55e9a843899a]=]},
  74. ["MOAIAction.detach"] = {[=[function detach ( MOAIAction self )]=], [=[class_m_o_a_i_action.html#ab929bd18c978b577a517b042930dad4a]=]},
  75. ["MOAIAction.isActive"] = {[=[function isActive ( MOAIAction self )]=], [=[class_m_o_a_i_action.html#a8e6f4d72c54a0134f2e00666740307da]=]},
  76. ["MOAIAction.isBusy"] = {[=[function isBusy ( MOAIAction self )]=], [=[class_m_o_a_i_action.html#ac01ec3acfb62fd9c7799b809deb7203a]=]},
  77. ["MOAIAction.isDone"] = {[=[function isDone ( MOAIAction self )]=], [=[class_m_o_a_i_action.html#a71bacc8f2f84be20184aff4d7a05e1c0]=]},
  78. ["MOAIAction.start"] = {[=[function start ( MOAIAction self [, MOAIAction parent ] )]=], [=[class_m_o_a_i_action.html#a493b7454e5a03fa0d1159e88614aa9fa]=]},
  79. ["MOAIAction.stop"] = {[=[function stop ( MOAIAction self )]=], [=[class_m_o_a_i_action.html#a37e2790c8715e24007ca3ec4f1844209]=]},
  80. ["MOAIAction.throttle"] = {[=[function throttle ( MOAIAction self [, number throttle ] )]=], [=[class_m_o_a_i_action.html#a9899079d94e271e34b51fe7f66813e62]=]},
  81.  
  82. MOAIActionMgr = [=[Manager class for MOAIActions]=],
  83. ["MOAIActionMgr.getRoot"] = {[=[function getRoot ()]=], [=[class_m_o_a_i_action_mgr.html#a65375dfc3c1d7cd2c2f717393837c434]=]},
  84. ["MOAIActionMgr.setProfilingEnabled"] = {[=[function setProfilingEnabled ( [ boolean enable ] )]=], [=[class_m_o_a_i_action_mgr.html#af92225b34cb9b7e3f5120d941e57709c]=]},
  85. ["MOAIActionMgr.setRoot"] = {[=[function setRoot ( [ MOAIAction root ] )]=], [=[class_m_o_a_i_action_mgr.html#a08d77ad920b271b5ea8943adad00c317]=]},
  86. ["MOAIActionMgr.setThreadInfoEnabled"] = {[=[function setThreadInfoEnabled ( [ boolean enable ] )]=], [=[class_m_o_a_i_action_mgr.html#a58ed8bd8fe82dfb32bdfe680d93b476b]=]},
  87.  
  88. MOAIAdColonyAndroid = [=[Wrapper for AdColony integration on Android devices. Exposed to lua via MOAIAdColony on all mobile platforms.]=],
  89. ["MOAIAdColonyAndroid.VIDEO_BEGAN_IN_ZONE"] = [=[Event code for video playback started notifications. Unused.]=],
  90. ["MOAIAdColonyAndroid.VIDEO_ENDED_IN_ZONE"] = [=[Event code for video playback ended notifications.]=],
  91. ["MOAIAdColonyAndroid.VIDEO_FAILED_IN_ZONE"] = [=[Event code for video playback failed notifications. Unused.]=],
  92. ["MOAIAdColonyAndroid.VIDEO_PAUSED_IN_ZONE"] = [=[Event code for video playback paused notifications. Unused.]=],
  93. ["MOAIAdColonyAndroid.VIDEO_RESUMED_IN_ZONE"] = [=[Event code for video playback resumed notifications. Unused.]=],
  94. ["MOAIAdColonyAndroid.getDeviceID"] = {[=[function getDeviceID ()]=], [=[class_m_o_a_i_ad_colony_android.html#a9aadb0317b3a14bef8717a16eb461743]=]},
  95. ["MOAIAdColonyAndroid.init"] = {[=[function init ( string appId, table zones )]=], [=[class_m_o_a_i_ad_colony_android.html#ab393983f983d102b70925f921128dfa6]=]},
  96. ["MOAIAdColonyAndroid.playVideo"] = {[=[function playVideo ( string zone [, bool prompt, bool confirm ] )]=], [=[class_m_o_a_i_ad_colony_android.html#aaee1a01b08f49dad802bf3ee4b747d18]=]},
  97. ["MOAIAdColonyAndroid.videoReadyForZone"] = {[=[function videoReadyForZone ( string zone )]=], [=[class_m_o_a_i_ad_colony_android.html#ad8c513a6a521429e4370c7d213842bee]=]},
  98.  
  99. MOAIAdColonyIOS = [=[Wrapper for AdColony integration on iOS devices. Exposed to lua via MOAIAdColony on all mobile platforms.]=],
  100. ["MOAIAdColonyIOS.VIDEO_BEGAN_IN_ZONE"] = [=[Event code for video playback started notifications.]=],
  101. ["MOAIAdColonyIOS.VIDEO_ENDED_IN_ZONE"] = [=[Event code for video playback ended notifications.]=],
  102. ["MOAIAdColonyIOS.VIDEO_FAILED_IN_ZONE"] = [=[Event code for video playback failed notifications.]=],
  103. ["MOAIAdColonyIOS.VIDEO_PAUSED_IN_ZONE"] = [=[Event code for video playback paused notifications.]=],
  104. ["MOAIAdColonyIOS.VIDEO_RESUMED_IN_ZONE"] = [=[Event code for video playback resumed notifications.]=],
  105. ["MOAIAdColonyIOS.+ "] = {[=[]=], [=[]=]},
  106.  
  107. MOAIAnim = [=[Bind anim curves to nodes and provides timer controls for anim playback]=],
  108. ["MOAIAnim.apply"] = {[=[]=], [=[class_m_o_a_i_anim.html#a6c8463ad3e89d225621baa44f2ede95f]=]},
  109. ["MOAIAnim.getLength"] = {[=[]=], [=[class_m_o_a_i_anim.html#ae14ef08656e22cfa67966f4321fc9bd6]=]},
  110. ["MOAIAnim.reserveLinks"] = {[=[]=], [=[class_m_o_a_i_anim.html#a8f533896929b8ea359cf583eae21153c]=]},
  111. ["MOAIAnim.setLink"] = {[=[]=], [=[class_m_o_a_i_anim.html#a7fd28d277b58536b00dbaaba35214d4b]=]},
  112.  
  113. MOAIAnimCurve = [=[Piecewise animation function with one input (time) and one output (value).]=],
  114. ["MOAIAnimCurve.getLength"] = {[=[]=], [=[class_m_o_a_i_anim_curve.html#a5f3d3f160018e153839d7469f7f43fd9]=]},
  115. ["MOAIAnimCurve.getValueAtTime"] = {[=[]=], [=[class_m_o_a_i_anim_curve.html#a7a49b425c394dfc75ab5afc2264da9fc]=]},
  116. ["MOAIAnimCurve.reserveKeys"] = {[=[]=], [=[class_m_o_a_i_anim_curve.html#a3309fb4d868b5eec4fa2f7aa04185143]=]},
  117. ["MOAIAnimCurve.setKey"] = {[=[]=], [=[class_m_o_a_i_anim_curve.html#a54c4c5da8d364217d90f989855fb3203]=]},
  118. ["MOAIAnimCurve.setWrapMode"] = {[=[]=], [=[class_m_o_a_i_anim_curve.html#af21e46ea3e40f8d2d9f86c8dd5f06460]=]},
  119.  
  120. MOAIAppAndroid = [=[Wrapper for base application class on Android devices. Exposed to lua via MOAIApp on all mobile platforms.]=],
  121. ["MOAIAppAndroid.SESSION_START"] = [=[Event code indicating the beginning of an app session.]=],
  122. ["MOAIAppAndroid.SESSION_END"] = [=[Event code indicating the end of an app sessions.]=],
  123. ["MOAIAppAndroid.BACK_BUTTON_PRESSED"] = [=[Event code indicating that the pysical device back button was pressed.]=],
  124. ["MOAIAppAndroid.openURL"] = {[=[]=], [=[class_m_o_a_i_app_android.html#aaa2f943bd1d8e4eef19617fbef9fb2c4]=]},
  125. ["MOAIAppAndroid.share"] = {[=[]=], [=[class_m_o_a_i_app_android.html#a83140f51d72100c5b5fd9c1e718d93fe]=]},
  126.  
  127. MOAIAppIOS = [=[Wrapper for base application class on iOS devices. Exposed to lua via MOAIApp on all mobile platforms.]=],
  128. ["MOAIAppIOS.APP_OPENED_FROM_URL"] = [=[Event code indicating that the app was stared via a URL click.]=],
  129. ["MOAIAppIOS.SESSION_START"] = [=[Event code indicating the beginning of an app session.]=],
  130. ["MOAIAppIOS.SESSION_END"] = [=[Event code indicating the end of an app sessions.]=],
  131. ["MOAIAppIOS.DOMAIN_DOCUMENTS"] = [=[Directory domain 'documents'.]=],
  132. ["MOAIAppIOS.DOMAIN_APP_SUPPORT"] = [=[Directory domain 'application support'.]=],
  133. ["MOAIAppIOS.getDirectoryInDomain"] = {[=[]=], [=[class_m_o_a_i_app_i_o_s.html#a6700ae4b7b60b26548cf5f2b31c30072]=]},
  134.  
  135. MOAIAudioSampler = [=[Audio sampler singleton]=],
  136.  
  137. MOAIBillingAndroid = [=[Wrapper for in-app purchase integration on Android devices using either Google Play or Amazon. Exposed to lua via MOAIBilling on all mobile platforms, but API differs on iOS and Android.]=],
  138. ["MOAIBillingAndroid.CHECK_BILLING_SUPPORTED"] = [=[Event code for billing support request completion.]=],
  139. ["MOAIBillingAndroid.PURCHASE_RESPONSE_RECEIVED"] = [=[Event code for item purchase request receipt.]=],
  140. ["MOAIBillingAndroid.PURCHASE_STATE_CHANGED"] = [=[Event code for item purchase state change (purchased, refunded, etc.).]=],
  141. ["MOAIBillingAndroid.RESTORE_RESPONSE_RECEIVED"] = [=[Event code for restore purchases request receipt.]=],
  142. ["MOAIBillingAndroid.USER_ID_DETERMINED"] = [=[Event code for user ID request completion.]=],
  143. ["MOAIBillingAndroid.BILLING_PROVIDER_GOOGLE"] = [=[Provider code for Google Play.]=],
  144. ["MOAIBillingAndroid.BILLING_PROVIDER_AMAZON"] = [=[Provider code for Amazon.]=],
  145. ["MOAIBillingAndroid.BILLING_RESULT_SUCCESS"] = [=[Error code for a successful billing request.]=],
  146. ["MOAIBillingAndroid.BILLING_RESULT_USER_CANCELED"] = [=[Error code for a billing request canceled by the user, if detected.]=],
  147. ["MOAIBillingAndroid.BILLING_RESULT_BILLING_UNAVAILABLE"] = [=[Error code for a billing request attempted with no billing provider present.]=],
  148. ["MOAIBillingAndroid.BILLING_RESULT_ITEM_UNAVAILABLE"] = [=[Error code for a billing request for an unavailable item.]=],
  149. ["MOAIBillingAndroid.BILLING_RESULT_ERROR"] = [=[Error code for a billing request error.]=],
  150. ["MOAIBillingAndroid.BILLING_PURCHASE_STATE_ITEM_PURCHASED"] = [=[Purchase state code for a successfully purchased item.]=],
  151. ["MOAIBillingAndroid.BILLING_PURCHASE_STATE_PURCHASE_CANCELED"] = [=[Purchase state code for a canceled purchase.]=],
  152. ["MOAIBillingAndroid.BILLING_PURCHASE_STATE_ITEM_REFUNDED"] = [=[Purchase state code for a refunded/revoked purchase.]=],
  153. ["MOAIBillingAndroid.checkBillingSupported"] = {[=[]=], [=[class_m_o_a_i_billing_android.html#a093a969eac5fc1eabed99f63159a8bdc]=]},
  154. ["MOAIBillingAndroid.confirmNotification"] = {[=[]=], [=[class_m_o_a_i_billing_android.html#a49a7599347895b9a855d4b58bc7feb50]=]},
  155. ["MOAIBillingAndroid.getUserId"] = {[=[]=], [=[class_m_o_a_i_billing_android.html#a622825e519f3b9ad67b185e1de8ff561]=]},
  156. ["MOAIBillingAndroid.requestPurchase"] = {[=[]=], [=[class_m_o_a_i_billing_android.html#a3cbc417999aace2f2a7a7f93cdfece2c]=]},
  157. ["MOAIBillingAndroid.restoreTransactions"] = {[=[]=], [=[class_m_o_a_i_billing_android.html#aa709bde27e3753d599b53df3579c4657]=]},
  158. ["MOAIBillingAndroid.setBillingProvider"] = {[=[]=], [=[class_m_o_a_i_billing_android.html#a64b7d946ac6b8e6f4d6826a3d169e8a1]=]},
  159. ["MOAIBillingAndroid.setPublicKey"] = {[=[]=], [=[class_m_o_a_i_billing_android.html#acc1418317aea18679ec9b6e110142c8d]=]},
  160.  
  161. MOAIBitmapFontReader = [=[]=],
  162. ["MOAIBitmapFontReader.loadPage"] = {[=[]=], [=[class_m_o_a_i_bitmap_font_reader.html#a283ef3233a6aa50005c3647c1e63b007]=]},
  163.  
  164. MOAIBox2DArbiter = [=[Box2D Arbiter.]=],
  165. ["MOAIBox2DArbiter.getContactNormal"] = {[=[]=], [=[class_m_o_a_i_box2_d_arbiter.html#ab43fe990b8d7e3939275d8e5b30e5ced]=]},
  166. ["MOAIBox2DArbiter.getNormalImpulse"] = {[=[]=], [=[class_m_o_a_i_box2_d_arbiter.html#a76f402d3184570a961d16f4ad28aca0f]=]},
  167. ["MOAIBox2DArbiter.getTangentImpulse"] = {[=[]=], [=[class_m_o_a_i_box2_d_arbiter.html#a27787f3461d36e34077c1d6aed9c880e]=]},
  168. ["MOAIBox2DArbiter.setContactEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_arbiter.html#a6cd7f4bdc1e71ea206fb6b7e074cd2c6]=]},
  169.  
  170. MOAIBox2DBody = [=[Box2D body.]=],
  171. ["MOAIBox2DBody.addCircle"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#ab4d0d3524fa4588d55364fc0896c38d8]=]},
  172. ["MOAIBox2DBody.addEdges"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a8b9be9022fff4551acdaa474764c7380]=]},
  173. ["MOAIBox2DBody.addPolygon"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a6228b584b8ca2dfac351b83679851eb2]=]},
  174. ["MOAIBox2DBody.addRect"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#aef8dd17c8b401aafdb7f8b80b7bdebb2]=]},
  175. ["MOAIBox2DBody.applyAngularImpulse"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a6b1451724c6866bcec86e76bd2170131]=]},
  176. ["MOAIBox2DBody.applyForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a01996cc3ea7b24b7e391eaf22fe067b8]=]},
  177. ["MOAIBox2DBody.applyLinearImpulse"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a2689dcf3bd1e90c8f545c0e463e2d023]=]},
  178. ["MOAIBox2DBody.applyTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a64a04d54dcfdb015de459442d8edf180]=]},
  179. ["MOAIBox2DBody.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a6c97b4f8c35c581f15a53f0a1ede1ccc]=]},
  180. ["MOAIBox2DBody.getAngle"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a3d4f5b42e3f79867f31da237dc6b9ca6]=]},
  181. ["MOAIBox2DBody.getAngularVelocity"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a3e493cff496816373f8771dfa0935ed7]=]},
  182. ["MOAIBox2DBody.getInertia"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#aef2a8dd3cc5247996204a097413c8a9d]=]},
  183. ["MOAIBox2DBody.getLinearVelocity"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a89c733358d967809ab3acaace63f06e7]=]},
  184. ["MOAIBox2DBody.getLocalCenter"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a17e511dffc8199d621d7d6f27f76d07f]=]},
  185. ["MOAIBox2DBody.getMass"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a7c73a5c68b76a2543ca47d846329d759]=]},
  186. ["MOAIBox2DBody.getPosition"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a0678181d67dd40af9fc6741735fd02bb]=]},
  187. ["MOAIBox2DBody.getWorldCenter"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a3e7923f2242cfa313e9b13255d8cf934]=]},
  188. ["MOAIBox2DBody.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  189. ["MOAIBox2DBody.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  190. ["MOAIBox2DBody.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  191. ["MOAIBox2DBody.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  192. ["MOAIBox2DBody.isActive"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#ae7842bbaea81be4b8c75bc893c3920e2]=]},
  193. ["MOAIBox2DBody.isAwake"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#add6f5a0d738384210481f50a3b2fbbf1]=]},
  194. ["MOAIBox2DBody.isBullet"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#ab8736afa5afb7099bd638ad40b915a7d]=]},
  195. ["MOAIBox2DBody.isFixedRotation"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a22050f9d352c623fdc50e5e56b563838]=]},
  196. ["MOAIBox2DBody.resetMassData"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a9bc61d69e1c3294055ef1498996a4f40]=]},
  197. ["MOAIBox2DBody.setActive"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a6ec1771886d6b4df5971a77310ec586e]=]},
  198. ["MOAIBox2DBody.setAngularDamping"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a43edc70cf182c526db7ce3fdb169a00f]=]},
  199. ["MOAIBox2DBody.setAngularVelocity"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a50ba0db725a04ace82d382807a76ed94]=]},
  200. ["MOAIBox2DBody.setAwake"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#adaf81e29a9a8653df9bc842bfcab3be6]=]},
  201. ["MOAIBox2DBody.setBullet"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a96277b7e15975d472830a0ea326ca307]=]},
  202. ["MOAIBox2DBody.setFixedRotation"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a811b3b7995156bf50454de059ceb7baf]=]},
  203. ["MOAIBox2DBody.setLinearDamping"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#a0a679414f4f660ec2094c827780c8feb]=]},
  204. ["MOAIBox2DBody.setLinearVelocity"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#aa5051a9c40f129911d9f210c0b30ee43]=]},
  205. ["MOAIBox2DBody.setMassData"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#ad5b9ce0638f24c0ca6a7617873c066b6]=]},
  206. ["MOAIBox2DBody.setTransform"] = {[=[]=], [=[class_m_o_a_i_box2_d_body.html#ab0a298f298801cf1c2d54b13afb7567a]=]},
  207.  
  208. MOAIBox2DDistanceJoint = [=[Box2D distance joint]=],
  209. ["MOAIBox2DDistanceJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  210. ["MOAIBox2DDistanceJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  211. ["MOAIBox2DDistanceJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  212. ["MOAIBox2DDistanceJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  213. ["MOAIBox2DDistanceJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  214. ["MOAIBox2DDistanceJoint.getDampingRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_distance_joint.html#a6116e8f7a1ce7185a925a776951668c1]=]},
  215. ["MOAIBox2DDistanceJoint.getFrequency"] = {[=[]=], [=[class_m_o_a_i_box2_d_distance_joint.html#ad0d1233bed847a7ada126a0788bc1db4]=]},
  216. ["MOAIBox2DDistanceJoint.getLength"] = {[=[]=], [=[class_m_o_a_i_box2_d_distance_joint.html#a44bd110d7d946064b4831fe44d8af7c2]=]},
  217. ["MOAIBox2DDistanceJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  218. ["MOAIBox2DDistanceJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  219. ["MOAIBox2DDistanceJoint.setDampingRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_distance_joint.html#a2c83f6d8a896760a8d25f6800384baf2]=]},
  220. ["MOAIBox2DDistanceJoint.setFrequency"] = {[=[]=], [=[class_m_o_a_i_box2_d_distance_joint.html#a0b0671d23031414406828a5dcc34061f]=]},
  221. ["MOAIBox2DDistanceJoint.setLength"] = {[=[]=], [=[class_m_o_a_i_box2_d_distance_joint.html#a3d85f21feb6103c8071998619c44e324]=]},
  222.  
  223. MOAIBox2DFixture = [=[Box2D fixture]=],
  224. ["MOAIBox2DFixture.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#ac5a76ea95333fead415d8fc2fecaa891]=]},
  225. ["MOAIBox2DFixture.getBody"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#af1c5795c79726e782f71fed91b659732]=]},
  226. ["MOAIBox2DFixture.getFilter"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#a48bd95a540cab4b857ea2411fa6899f4]=]},
  227. ["MOAIBox2DFixture.setCollisionHandler"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#a693a608fc6645b170d067845dd1a9c20]=]},
  228. ["MOAIBox2DFixture.setDensity"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#a3b1578482666958a0c765131ea7a8816]=]},
  229. ["MOAIBox2DFixture.setFilter"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#a7d02be60e36bf9c1b08f36116f00b353]=]},
  230. ["MOAIBox2DFixture.setFriction"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#a4adda8bac674c80f203b57ca74916008]=]},
  231. ["MOAIBox2DFixture.setRestitution"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#ab355520925be0957b359ef4511cd4b1b]=]},
  232. ["MOAIBox2DFixture.setSensor"] = {[=[]=], [=[class_m_o_a_i_box2_d_fixture.html#a1a138ffe12a999bec09008b6675cad1a]=]},
  233.  
  234. MOAIBox2DFrictionJoint = [=[Box2D friction joint]=],
  235. ["MOAIBox2DFrictionJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  236. ["MOAIBox2DFrictionJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  237. ["MOAIBox2DFrictionJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  238. ["MOAIBox2DFrictionJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  239. ["MOAIBox2DFrictionJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  240. ["MOAIBox2DFrictionJoint.getMaxForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_friction_joint.html#a8f25ea860701254891ff6a30574ca041]=]},
  241. ["MOAIBox2DFrictionJoint.getMaxTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_friction_joint.html#a493da29c53c5382b0e90281cdbc82e77]=]},
  242. ["MOAIBox2DFrictionJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  243. ["MOAIBox2DFrictionJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  244. ["MOAIBox2DFrictionJoint.setMaxForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_friction_joint.html#accd674331ccb3602e81bd8a7a03a9f39]=]},
  245. ["MOAIBox2DFrictionJoint.setMaxTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_friction_joint.html#a340e16b8d66701411c3086a74e71d5af]=]},
  246.  
  247. MOAIBox2DGearJoint = [=[Box2D gear joint]=],
  248. ["MOAIBox2DGearJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  249. ["MOAIBox2DGearJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  250. ["MOAIBox2DGearJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  251. ["MOAIBox2DGearJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  252. ["MOAIBox2DGearJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  253. ["MOAIBox2DGearJoint.getJointA"] = {[=[]=], [=[class_m_o_a_i_box2_d_gear_joint.html#a5f01686600e75680b4bb5aac8fd8fa04]=]},
  254. ["MOAIBox2DGearJoint.getJointB"] = {[=[]=], [=[class_m_o_a_i_box2_d_gear_joint.html#af0d3842dc1872590d3930d7c8b058e76]=]},
  255. ["MOAIBox2DGearJoint.getRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_gear_joint.html#acf6dc92f353e67a1b3c93af5c2d03eaa]=]},
  256. ["MOAIBox2DGearJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  257. ["MOAIBox2DGearJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  258. ["MOAIBox2DGearJoint.setRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_gear_joint.html#aef2f45b7cb8ab609fd872e7e8d29960b]=]},
  259.  
  260. MOAIBox2DJoint = [=[Box2D joint]=],
  261. ["MOAIBox2DJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  262. ["MOAIBox2DJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  263. ["MOAIBox2DJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  264. ["MOAIBox2DJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  265. ["MOAIBox2DJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  266. ["MOAIBox2DJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  267. ["MOAIBox2DJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  268.  
  269. MOAIBox2DMouseJoint = [=[Box2D 'mouse' joint]=],
  270. ["MOAIBox2DMouseJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  271. ["MOAIBox2DMouseJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  272. ["MOAIBox2DMouseJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  273. ["MOAIBox2DMouseJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  274. ["MOAIBox2DMouseJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  275. ["MOAIBox2DMouseJoint.getDampingRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#a2d8a60cf2afeffbafb75702d9d9cb802]=]},
  276. ["MOAIBox2DMouseJoint.getFrequency"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#af9af7a3a55547b0840d709d94b00ae6b]=]},
  277. ["MOAIBox2DMouseJoint.getMaxForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#a7bb152b969904c13afc8fc73276eb41c]=]},
  278. ["MOAIBox2DMouseJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  279. ["MOAIBox2DMouseJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  280. ["MOAIBox2DMouseJoint.getTarget"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#aa12c2b85a9dd748b0df8335c04baeda7]=]},
  281. ["MOAIBox2DMouseJoint.setDampingRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#a1676db24c020e1d3f5964112dd7ddbec]=]},
  282. ["MOAIBox2DMouseJoint.setFrequency"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#ae2717584a33f3c82acabc4a0ce30e736]=]},
  283. ["MOAIBox2DMouseJoint.setMaxForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#a0e7247bf7fd0c0b9b459f8aecd6ece4f]=]},
  284. ["MOAIBox2DMouseJoint.setTarget"] = {[=[]=], [=[class_m_o_a_i_box2_d_mouse_joint.html#add10cf120b85148a7b906c025d257c7c]=]},
  285.  
  286. MOAIBox2DPrismaticJoint = [=[Box2D prismatic joint]=],
  287. ["MOAIBox2DPrismaticJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  288. ["MOAIBox2DPrismaticJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  289. ["MOAIBox2DPrismaticJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  290. ["MOAIBox2DPrismaticJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  291. ["MOAIBox2DPrismaticJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  292. ["MOAIBox2DPrismaticJoint.getJointSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a58e02bbc25b78a8895c78aaa74c7bb84]=]},
  293. ["MOAIBox2DPrismaticJoint.getJointTranslation"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#ad95df5e0f2e360e398c82f626ad27c04]=]},
  294. ["MOAIBox2DPrismaticJoint.getLowerLimit"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a62f630cbe86b4448a956506a700a48c5]=]},
  295. ["MOAIBox2DPrismaticJoint.getMotorForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#aafe888f6707ad2f659a5a1ab66daca1f]=]},
  296. ["MOAIBox2DPrismaticJoint.getMotorSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#abbc5077cd8827df1d50169b36bb3cd4b]=]},
  297. ["MOAIBox2DPrismaticJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  298. ["MOAIBox2DPrismaticJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  299. ["MOAIBox2DPrismaticJoint.getUpperLimit"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a7908f39814ed92b9b538f669b54394b6]=]},
  300. ["MOAIBox2DPrismaticJoint.isLimitEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#ae174af6453dd13289b794eb7e987a043]=]},
  301. ["MOAIBox2DPrismaticJoint.isMotorEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a3b9c9d4d5eb98480c88c574bc31f39e7]=]},
  302. ["MOAIBox2DPrismaticJoint.setLimit"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a0bdb802159842741b875dbc54b9b5d66]=]},
  303. ["MOAIBox2DPrismaticJoint.setLimitEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#aaaae2d209280c863832fe292ad596240]=]},
  304. ["MOAIBox2DPrismaticJoint.setMaxMotorForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a5e9a09da25c736e12e36b1f6ae93c872]=]},
  305. ["MOAIBox2DPrismaticJoint.setMotor"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a69e29882950993fd9fae0502f9741d92]=]},
  306. ["MOAIBox2DPrismaticJoint.setMotorEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#abb7fd6be3e52da38d88600d6cd9726fb]=]},
  307. ["MOAIBox2DPrismaticJoint.setMotorSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_prismatic_joint.html#a540bc0f76eb473d3cd2fb9a6444b7892]=]},
  308.  
  309. MOAIBox2DPulleyJoint = [=[Box2D pulley joint]=],
  310. ["MOAIBox2DPulleyJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  311. ["MOAIBox2DPulleyJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  312. ["MOAIBox2DPulleyJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  313. ["MOAIBox2DPulleyJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  314. ["MOAIBox2DPulleyJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  315. ["MOAIBox2DPulleyJoint.getGroundAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_pulley_joint.html#a3c358bbf298474256453ef89ee6bc164]=]},
  316. ["MOAIBox2DPulleyJoint.getGroundAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_pulley_joint.html#a0d84c099633880305fcafad731c52426]=]},
  317. ["MOAIBox2DPulleyJoint.getLength1"] = {[=[]=], [=[class_m_o_a_i_box2_d_pulley_joint.html#abb67b880f2f57cce3589dcb807d7677b]=]},
  318. ["MOAIBox2DPulleyJoint.getLength2"] = {[=[]=], [=[class_m_o_a_i_box2_d_pulley_joint.html#a9ad7d305ec2d3586d5f4b616c81546a9]=]},
  319. ["MOAIBox2DPulleyJoint.getRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_pulley_joint.html#a2a42054b1e6106f07e9e3e01e4342605]=]},
  320. ["MOAIBox2DPulleyJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  321. ["MOAIBox2DPulleyJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  322.  
  323. MOAIBox2DRevoluteJoint = [=[Box2D revolute joint]=],
  324. ["MOAIBox2DRevoluteJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  325. ["MOAIBox2DRevoluteJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  326. ["MOAIBox2DRevoluteJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  327. ["MOAIBox2DRevoluteJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  328. ["MOAIBox2DRevoluteJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  329. ["MOAIBox2DRevoluteJoint.getJointAngle"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a825ac5c3635c08cb469a44d2631c5d42]=]},
  330. ["MOAIBox2DRevoluteJoint.getJointSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a418b634899cdd737d29f2e403d10d935]=]},
  331. ["MOAIBox2DRevoluteJoint.getLowerLimit"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a0b33dd612b7d094d6676eb82f36c9972]=]},
  332. ["MOAIBox2DRevoluteJoint.getMotorSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#ad284abdbeaffb8f8bcfffd6e203f7a1e]=]},
  333. ["MOAIBox2DRevoluteJoint.getMotorTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a2aa5221d5cc48ab7e6f6685154be5e7a]=]},
  334. ["MOAIBox2DRevoluteJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  335. ["MOAIBox2DRevoluteJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  336. ["MOAIBox2DRevoluteJoint.getUpperLimit"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a6a250b0f6c6d2edf9e23aeb1d4eefcbf]=]},
  337. ["MOAIBox2DRevoluteJoint.isLimitEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a8b87e090cfe967ed1d62c5c1d4fca187]=]},
  338. ["MOAIBox2DRevoluteJoint.isMotorEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#acfb156925dc686f8f896aa5503da06fd]=]},
  339. ["MOAIBox2DRevoluteJoint.setLimit"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a3aec83cf86ac32a90ad2000b13a7a2b2]=]},
  340. ["MOAIBox2DRevoluteJoint.setLimitEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#af71b79edff2ff77f4f71303febd223f4]=]},
  341. ["MOAIBox2DRevoluteJoint.setMaxMotorTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#aee1a0acf2522e4fb5a4c8a11dce698fc]=]},
  342. ["MOAIBox2DRevoluteJoint.setMotor"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a86a375cdf393d930a732e6246d3c0b40]=]},
  343. ["MOAIBox2DRevoluteJoint.setMotorEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#a13c2b341fcf276477e9cafe3f56ea3c4]=]},
  344. ["MOAIBox2DRevoluteJoint.setMotorSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_revolute_joint.html#accd9a831ebe77ce44ee014b99081dfe3]=]},
  345.  
  346. MOAIBox2DRopeJoint = [=[Box2D weld joint]=],
  347. ["MOAIBox2DRopeJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  348. ["MOAIBox2DRopeJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  349. ["MOAIBox2DRopeJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  350. ["MOAIBox2DRopeJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  351. ["MOAIBox2DRopeJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  352. ["MOAIBox2DRopeJoint.getLimitState"] = {[=[]=], [=[class_m_o_a_i_box2_d_rope_joint.html#a52a6c0d301ef06f2033a814aac83374d]=]},
  353. ["MOAIBox2DRopeJoint.getMaxLength"] = {[=[]=], [=[class_m_o_a_i_box2_d_rope_joint.html#a446c37a16750b6b109ab92fab9ef495b]=]},
  354. ["MOAIBox2DRopeJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  355. ["MOAIBox2DRopeJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  356. ["MOAIBox2DRopeJoint.setMaxLength"] = {[=[]=], [=[class_m_o_a_i_box2_d_rope_joint.html#ac1f457a90c595814b01dd52ff3152a19]=]},
  357.  
  358. MOAIBox2DWeldJoint = [=[Box2D weld joint]=],
  359. ["MOAIBox2DWeldJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  360. ["MOAIBox2DWeldJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  361. ["MOAIBox2DWeldJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  362. ["MOAIBox2DWeldJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  363. ["MOAIBox2DWeldJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  364. ["MOAIBox2DWeldJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  365. ["MOAIBox2DWeldJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  366.  
  367. MOAIBox2DWheelJoint = [=[Box2D weld joint]=],
  368. ["MOAIBox2DWheelJoint.destroy"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a7d1fb4ce4368c300c747a910f2f397b5]=]},
  369. ["MOAIBox2DWheelJoint.getAnchorA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a26d4a244043b64e70082ee5468472031]=]},
  370. ["MOAIBox2DWheelJoint.getAnchorB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a863eca0344a28c587094be6f4f6b2024]=]},
  371. ["MOAIBox2DWheelJoint.getBodyA"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a8ca2543f2ec7bae85828bdd3eb0aeb1e]=]},
  372. ["MOAIBox2DWheelJoint.getBodyB"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#ad0f9afe3f646cafc243d74cbe5fde403]=]},
  373. ["MOAIBox2DWheelJoint.getJointSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#aea66cedd4c3b8d53358ede4a29d8aa03]=]},
  374. ["MOAIBox2DWheelJoint.getJointTranslation"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#ae5423aa50d56b4fd12983c11b009134d]=]},
  375. ["MOAIBox2DWheelJoint.getMaxMotorTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#a4b24e872f2dd733f7154daf8d24cc9e5]=]},
  376. ["MOAIBox2DWheelJoint.getMotorSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#ad42e5d6ea43cc823ce9a48c7ed9a2891]=]},
  377. ["MOAIBox2DWheelJoint.getMotorTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#ab90a2c8ad5d7486f39d5ebb7fab1462f]=]},
  378. ["MOAIBox2DWheelJoint.getReactionForce"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a4340ed50487cb83559d6e188f0b50510]=]},
  379. ["MOAIBox2DWheelJoint.getReactionTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_joint.html#a18f9758d870d21cb41607327bac5c8bc]=]},
  380. ["MOAIBox2DWheelJoint.getSpringDampingRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#a9a3f5bd76669f088e9ffc6bcf856526f]=]},
  381. ["MOAIBox2DWheelJoint.getSpringFrequencyHz"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#afc32c82a33c1e8b25520e4f90cbf63ed]=]},
  382. ["MOAIBox2DWheelJoint.isMotorEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#a32bd561a5624fe0d0d514f7926ba076e]=]},
  383. ["MOAIBox2DWheelJoint.setMaxMotorTorque"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#a776529008131a9b174c1fc1384445653]=]},
  384. ["MOAIBox2DWheelJoint.setMotor"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#a6609ebe9e664861411e05a5bdb363e9e]=]},
  385. ["MOAIBox2DWheelJoint.setMotorEnabled"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#abd6614c26b0321775dbc307836bbba36]=]},
  386. ["MOAIBox2DWheelJoint.setMotorSpeed"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#a34680287242322a2c1f3331b85f1df3b]=]},
  387. ["MOAIBox2DWheelJoint.setSpringDampingRatio"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#ac113fd6a828b12a7e012d3c47fca05ce]=]},
  388. ["MOAIBox2DWheelJoint.setSpringFrequencyHz"] = {[=[]=], [=[class_m_o_a_i_box2_d_wheel_joint.html#a7f0ac1c6ba37f6e75ead26c6bf93352f]=]},
  389.  
  390. MOAIBox2DWorld = [=[Box2D world.]=],
  391. ["MOAIBox2DWorld.addBody"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#aaf7c8cc91211676ded45d58e67d07fa9]=]},
  392. ["MOAIBox2DWorld.addDistanceJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a4ecca776668698405287bd5f73943558]=]},
  393. ["MOAIBox2DWorld.addFrictionJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a0e8c4f8663db1613925961095144977f]=]},
  394. ["MOAIBox2DWorld.addGearJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#acfa25a4eceb976dea3f8240d562ac7b3]=]},
  395. ["MOAIBox2DWorld.addMouseJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#afa2e83f332a125fa339a2b2270f9a4d0]=]},
  396. ["MOAIBox2DWorld.addPrismaticJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a276b2e88f465d3ff61740da91bb21e76]=]},
  397. ["MOAIBox2DWorld.addPulleyJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a61ae77372a66ab82f7bee8b76262907b]=]},
  398. ["MOAIBox2DWorld.addRevoluteJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a59caf941c5cdc33218fa0b45e0283c4e]=]},
  399. ["MOAIBox2DWorld.addRopeJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a547b7b3ac4112f0917fd0e47ae91f691]=]},
  400. ["MOAIBox2DWorld.addWeldJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a8f6e781e41c330fb28cdd32c0566dfcf]=]},
  401. ["MOAIBox2DWorld.addWheelJoint"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a9ca0b054a6ce13361c708f81eeabdc6c]=]},
  402. ["MOAIBox2DWorld.getAngularSleepTolerance"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#acd9ed1dd3711cc573df61f6b78481a4e]=]},
  403. ["MOAIBox2DWorld.getAutoClearForces"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a830ee5adf6d2fd1c8e8f0bc95b44d018]=]},
  404. ["MOAIBox2DWorld.getGravity"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#af3419218896369b7156c70d9d79af5a0]=]},
  405. ["MOAIBox2DWorld.getLinearSleepTolerance"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a623532baec9c4feff003b98d7eb9cde2]=]},
  406. ["MOAIBox2DWorld.getTimeToSleep"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#ac0dc79640d12738f0b6cc51edf63ce0d]=]},
  407. ["MOAIBox2DWorld.setAngularSleepTolerance"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#aae52b98bccc6909f196eeeca250f910f]=]},
  408. ["MOAIBox2DWorld.setAutoClearForces"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a63a6e2ae9a1bdab473b4d7bfabf0efe4]=]},
  409. ["MOAIBox2DWorld.setDebugDrawFlags"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#ace5f1d0d5d7cd5b043237527bd6ac97e]=]},
  410. ["MOAIBox2DWorld.setGravity"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a9e7b9e591adb57fe22cfb3131a19e448]=]},
  411. ["MOAIBox2DWorld.setIterations"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a8d870c1eed4de86a2cacd7858971da07]=]},
  412. ["MOAIBox2DWorld.setLinearSleepTolerance"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#af283862b5df38a15275a17781560937d]=]},
  413. ["MOAIBox2DWorld.setTimeToSleep"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a1658269b820208fc63089fd8eca2ae23]=]},
  414. ["MOAIBox2DWorld.setUnitsToMeters"] = {[=[]=], [=[class_m_o_a_i_box2_d_world.html#a3976b84b6fdee27ee4d79d5b21c50966]=]},
  415.  
  416. MOAIBreakpoint = [=[Internal breakpoint definition class]=],
  417.  
  418. MOAIButtonSensor = [=[Button sensor]=],
  419. ["MOAIButtonSensor.down"] = {[=[]=], [=[class_m_o_a_i_button_sensor.html#a4c734825273c80a2cd3a09c8a34d58f2]=]},
  420. ["MOAIButtonSensor.isDown"] = {[=[]=], [=[class_m_o_a_i_button_sensor.html#ab436f4083a02215d621588beda3f6b36]=]},
  421. ["MOAIButtonSensor.isUp"] = {[=[]=], [=[class_m_o_a_i_button_sensor.html#a8f1acb14d038fa14ff5ffe4ef5f0e187]=]},
  422. ["MOAIButtonSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_button_sensor.html#ab077b1b224783711346b2ab643f46a0f]=]},
  423. ["MOAIButtonSensor.up"] = {[=[]=], [=[class_m_o_a_i_button_sensor.html#a4a0f2153efa2c52c8d595f664a3d5edd]=]},
  424.  
  425. MOAICamera = [=[Perspective or orthographic camera]=],
  426. ["MOAICamera.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  427. ["MOAICamera.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  428. ["MOAICamera.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  429. ["MOAICamera.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  430. ["MOAICamera.getFarPlane"] = {[=[]=], [=[class_m_o_a_i_camera.html#a4941bf531a743308538c40a54e9a3ae9]=]},
  431. ["MOAICamera.getFieldOfView"] = {[=[]=], [=[class_m_o_a_i_camera.html#a1059ba243053a05cbfdd07d10fd8aaa1]=]},
  432. ["MOAICamera.getFocalLength"] = {[=[]=], [=[class_m_o_a_i_camera.html#ae8cab7ce531051ac99d9a8cbc82447e0]=]},
  433. ["MOAICamera.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  434. ["MOAICamera.getNearPlane"] = {[=[]=], [=[class_m_o_a_i_camera.html#a9ddf0b24ee223c734ac5fe0f738fa717]=]},
  435. ["MOAICamera.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  436. ["MOAICamera.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  437. ["MOAICamera.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  438. ["MOAICamera.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  439. ["MOAICamera.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  440. ["MOAICamera.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  441. ["MOAICamera.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  442. ["MOAICamera.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  443. ["MOAICamera.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  444. ["MOAICamera.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  445. ["MOAICamera.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  446. ["MOAICamera.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  447. ["MOAICamera.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  448. ["MOAICamera.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  449. ["MOAICamera.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  450. ["MOAICamera.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  451. ["MOAICamera.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  452. ["MOAICamera.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  453. ["MOAICamera.setFarPlane"] = {[=[]=], [=[class_m_o_a_i_camera.html#a723a23f641a83f3d56a01c1488f4c718]=]},
  454. ["MOAICamera.setFieldOfView"] = {[=[]=], [=[class_m_o_a_i_camera.html#a52e5f6c46033ea3ee15ec479f6b8a26c]=]},
  455. ["MOAICamera.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  456. ["MOAICamera.setNearPlane"] = {[=[]=], [=[class_m_o_a_i_camera.html#a99d7b01167a21ce879e06631e3740bf6]=]},
  457. ["MOAICamera.setOrtho"] = {[=[]=], [=[class_m_o_a_i_camera.html#a90198cc7c6627f35a402d837811a2480]=]},
  458. ["MOAICamera.setParent"] = {[=[]=], [=[class_m_o_a_i_transform.html#ade884083513de1ef87979cf0de5f5b89]=]},
  459. ["MOAICamera.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  460. ["MOAICamera.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  461. ["MOAICamera.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  462. ["MOAICamera.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  463. ["MOAICamera.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  464. ["MOAICamera.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  465. ["MOAICamera.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  466.  
  467. MOAICamera2D = [=[2D camera]=],
  468. ["MOAICamera2D.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a34771c207808995c983bcfacb43e52e6]=]},
  469. ["MOAICamera2D.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a986eebb850eb075f5b3eee7845d220d8]=]},
  470. ["MOAICamera2D.addRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a12c6766cba3d4837ad2f908fc1396b24]=]},
  471. ["MOAICamera2D.addScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#adc2004fb55aa44c9aa22a42d5a4e7edd]=]},
  472. ["MOAICamera2D.getFarPlane"] = {[=[]=], [=[class_m_o_a_i_camera2_d.html#abf965f81d89c10b5f3ed2a51bbccef8b]=]},
  473. ["MOAICamera2D.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a22400e631257974bfb0b9e3c7e3d6bd5]=]},
  474. ["MOAICamera2D.getNearPlane"] = {[=[]=], [=[class_m_o_a_i_camera2_d.html#aac6ea64f69e67f899843ae773b7eb645]=]},
  475. ["MOAICamera2D.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a52fbedf1bcac8c3469b1f01aa15b54d1]=]},
  476. ["MOAICamera2D.getRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a0cbf9b7aaa273c54c5b14549081836e9]=]},
  477. ["MOAICamera2D.getScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a08901ef30601e4f9d5f1b3dca8ef4d12]=]},
  478. ["MOAICamera2D.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  479. ["MOAICamera2D.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  480. ["MOAICamera2D.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  481. ["MOAICamera2D.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  482. ["MOAICamera2D.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ac97f3ef5eae9cda33dd9c2f3c2bee2ec]=]},
  483. ["MOAICamera2D.move"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a703238a99b7ca35c859bc1fdd76a9184]=]},
  484. ["MOAICamera2D.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#acd24bff873fba8b018038ce04c9f5f88]=]},
  485. ["MOAICamera2D.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a446e3db7377a0d2bb7e1c06bfcff7e64]=]},
  486. ["MOAICamera2D.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ade2136ff1eae1768f3822439c0e70810]=]},
  487. ["MOAICamera2D.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a7fe326ef7c8a4a6537edd312a1a0c2d1]=]},
  488. ["MOAICamera2D.seek"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#aa7918b8f605b9de6c14f91b62db5f409]=]},
  489. ["MOAICamera2D.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ab34624ae895862c12af8090f530323ad]=]},
  490. ["MOAICamera2D.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abe524823923ede68c87a717e7648f777]=]},
  491. ["MOAICamera2D.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a2b6d6b49dc6d2c6c290e4bf41ec6caaf]=]},
  492. ["MOAICamera2D.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a679e8851a6743fbcfea1df2589173b3a]=]},
  493. ["MOAICamera2D.setFarPlane"] = {[=[]=], [=[class_m_o_a_i_camera2_d.html#a5d42a1897a696d147df6a3647939fa20]=]},
  494. ["MOAICamera2D.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a127e63534b8cb2f4e4039fc353f2dc51]=]},
  495. ["MOAICamera2D.setNearPlane"] = {[=[]=], [=[class_m_o_a_i_camera2_d.html#a90ace48b4b6bb0d0dee51cf7c8028ad9]=]},
  496. ["MOAICamera2D.setParent"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#aa0cb5639ac6bed8e1c74677930055d98]=]},
  497. ["MOAICamera2D.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abb6b327f54c2a9311dba6f319448d047]=]},
  498. ["MOAICamera2D.setRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ad1db6d6ced421380693d962192abaf9c]=]},
  499. ["MOAICamera2D.setScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a1bfd891dd1c4421d8946d092a54d44df]=]},
  500. ["MOAICamera2D.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a813d9eaec94392b3567cfb7e811b3e48]=]},
  501.  
  502. MOAICameraAnchor2D = [=[Attaches fitting information to a transform. Used by MOAICameraFitter2D]=],
  503. ["MOAICameraAnchor2D.setParent"] = {[=[]=], [=[class_m_o_a_i_camera_anchor2_d.html#a66b4b4c6097071a269fb29818163986c]=]},
  504. ["MOAICameraAnchor2D.setRect"] = {[=[]=], [=[class_m_o_a_i_camera_anchor2_d.html#a470ad4f799beb1a4ac3fbef8a04e08ed]=]},
  505.  
  506. MOAICameraFitter2D = [=[Action to dynamically fit a camera transform to a set of targets given a viewport and world space constraints.]=],
  507. ["MOAICameraFitter2D.clearAnchors"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a8a2083cebe5cfbf5667c6a52012a6eb4]=]},
  508. ["MOAICameraFitter2D.clearFitMode"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a412dd965924d227fef7dfbfd8aebd62d]=]},
  509. ["MOAICameraFitter2D.getFitDistance"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#ac71b45ebc51126d076122038fbd8c7d8]=]},
  510. ["MOAICameraFitter2D.getFitLoc"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a00acfefd41da39f97938cd0d86c9de8b]=]},
  511. ["MOAICameraFitter2D.getFitMode"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#aa1b9818c6f984dc03f0095e40fe0afa0]=]},
  512. ["MOAICameraFitter2D.getFitScale"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#ad5c1d56f9ae09ac2c3a9bd51d824efca]=]},
  513. ["MOAICameraFitter2D.getTargetLoc"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a698952db28dd172017f9a464fa68f034]=]},
  514. ["MOAICameraFitter2D.getTargetScale"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#ad23a34007ddb3cdb2a866ec4b87bc851]=]},
  515. ["MOAICameraFitter2D.insertAnchor"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#aeb1ef0cbf2dc89cc0c3fac23ca5015ff]=]},
  516. ["MOAICameraFitter2D.removeAnchor"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a2c2a19c1e177e74222b2867a10b07c00]=]},
  517. ["MOAICameraFitter2D.setBounds"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a5bdb123e0a7a63f5dfcdad0881fdb07c]=]},
  518. ["MOAICameraFitter2D.setCamera"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a53ea335e9687568639dff712b236f8a0]=]},
  519. ["MOAICameraFitter2D.setDamper"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a9550007c01fc7267135ab336912c82e3]=]},
  520. ["MOAICameraFitter2D.setFitLoc"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a24e8950e5531018e82d3738750a45c88]=]},
  521. ["MOAICameraFitter2D.setFitMode"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a806fe892798479faee26aab71a9fc287]=]},
  522. ["MOAICameraFitter2D.setFitScale"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a5c8392d18e7111e53e58a4e065b604d1]=]},
  523. ["MOAICameraFitter2D.setMin"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#ab2dd0bd050d1581cc406b7ad65a2eead]=]},
  524. ["MOAICameraFitter2D.setViewport"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#ae498f037a175858909a4b5cdb0a9d7de]=]},
  525. ["MOAICameraFitter2D.snapToTarget"] = {[=[]=], [=[class_m_o_a_i_camera_fitter2_d.html#a63865c985312a59b7f4a42f0f26e0bc8]=]},
  526.  
  527. MOAIColor = [=[Color vector with animation helper methods.]=],
  528. ["MOAIColor.moveColor"] = {[=[]=], [=[class_m_o_a_i_color.html#a04a45c7fac26dc38ecad468b6ecb6c42]=]},
  529. ["MOAIColor.seekColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ad65bf55d287cde9961adf426d3d92fa1]=]},
  530. ["MOAIColor.setColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ab3634e8f57dcb7322a31fe3440b569fe]=]},
  531. ["MOAIColor.setParent"] = {[=[]=], [=[class_m_o_a_i_color.html#ad3fe6df43003c7f206a65567c10538a4]=]},
  532.  
  533. MOAICompassSensor = [=[Device heading sensor]=],
  534. ["MOAICompassSensor.getHeading"] = {[=[]=], [=[class_m_o_a_i_compass_sensor.html#a0d9514cbf4156353415e3aecb94008a2]=]},
  535. ["MOAICompassSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_compass_sensor.html#acac9836f85af5cc4d224dd11992fbac1]=]},
  536.  
  537. MOAICoroutine = [=[Binds a Lua coroutine to a MOAIAction]=],
  538. ["MOAICoroutine.blockOnAction"] = {[=[]=], [=[class_m_o_a_i_coroutine.html#a00f1fe1b5db286b0762a500f93646faa]=]},
  539. ["MOAICoroutine.currentThread"] = {[=[]=], [=[class_m_o_a_i_coroutine.html#aa5408070101008deb6fc32d71311396b]=]},
  540. ["MOAICoroutine.run"] = {[=[]=], [=[class_m_o_a_i_coroutine.html#a82ee7e8d5f175a81e8270d8fb03c0d5b]=]},
  541.  
  542. MOAICp = [=[Singleton for Chipmunk global configuration]=],
  543. ["MOAICp.getBiasCoefficient"] = {[=[]=], [=[class_m_o_a_i_cp.html#a1f2462fbb641baa78590f9a5ca1675f3]=]},
  544. ["MOAICp.getCollisionSlop"] = {[=[]=], [=[class_m_o_a_i_cp.html#a4376e895174522c696e9ae3c125e3464]=]},
  545. ["MOAICp.getContactPersistence"] = {[=[]=], [=[class_m_o_a_i_cp.html#a7bd9d27dcaa7f6e4fdd60d6886936649]=]},
  546. ["MOAICp.setBiasCoefficient"] = {[=[]=], [=[class_m_o_a_i_cp.html#ae1c76afba6cf5d06b20257347f31d0fe]=]},
  547. ["MOAICp.setCollisionSlop"] = {[=[]=], [=[class_m_o_a_i_cp.html#a63a5bc3cd28d84d29f09a81ecefaaebe]=]},
  548. ["MOAICp.setContactPersistence"] = {[=[]=], [=[class_m_o_a_i_cp.html#a79d181fafb94d1eddabf6a0eaeb4ab2d]=]},
  549.  
  550. MOAICpArbiter = [=[Chipmunk Arbiter]=],
  551. ["MOAICpArbiter.countContacts"] = {[=[]=], [=[class_m_o_a_i_cp_arbiter.html#a8b8e096ad47c865d2b2898de543a2167]=]},
  552. ["MOAICpArbiter.getContactDepth"] = {[=[]=], [=[class_m_o_a_i_cp_arbiter.html#ab28534ab2d3337dc09fec2a4b95386ec]=]},
  553. ["MOAICpArbiter.getContactNormal"] = {[=[]=], [=[class_m_o_a_i_cp_arbiter.html#a38b317f2b20978e09a50a4a6259807f7]=]},
  554. ["MOAICpArbiter.getContactPoint"] = {[=[]=], [=[class_m_o_a_i_cp_arbiter.html#a103784f54aa3b0bfa767b134e50cfc6f]=]},
  555. ["MOAICpArbiter.getTotalImpulse"] = {[=[]=], [=[class_m_o_a_i_cp_arbiter.html#a5b3af52df0f88355d2bfd87acac76b7c]=]},
  556. ["MOAICpArbiter.getTotalImpulseWithFriction"] = {[=[]=], [=[class_m_o_a_i_cp_arbiter.html#a1302175530cf2635cab7c7f52504baff]=]},
  557. ["MOAICpArbiter.isFirstContact"] = {[=[]=], [=[class_m_o_a_i_cp_arbiter.html#a40d33921fec4ffbcd3ce6d1132781ac6]=]},
  558.  
  559. MOAICpBody = [=[Chipmunk Body.]=],
  560. ["MOAICpBody.activate"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a20aef4301b7195050a7abf4a35950894]=]},
  561. ["MOAICpBody.addCircle"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#aa6d83aec22be5fac9419960540956afb]=]},
  562. ["MOAICpBody.addPolygon"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a88137993e9c8ba69c3947a7300888c03]=]},
  563. ["MOAICpBody.addRect"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a24071f32688b223aece3ccfb9f5caffb]=]},
  564. ["MOAICpBody.addSegment"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#ad31f3618dd0b5f6e3479aae67342bcfb]=]},
  565. ["MOAICpBody.applyForce"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a23c33bb9f3521abad7458f78374a4aa6]=]},
  566. ["MOAICpBody.applyImpulse"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a4c440e1a7fd811bfbd5e0d45e7767c06]=]},
  567. ["MOAICpBody.getAngle"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a091317624fac566f2a937aac87c39cc8]=]},
  568. ["MOAICpBody.getAngVel"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a830cd9e5ee913c59c05c32e56b51c4c7]=]},
  569. ["MOAICpBody.getForce"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a13c016f1a30f693be27db8b56caa4ea2]=]},
  570. ["MOAICpBody.getMass"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#ab18b40143fed579a4c4f361d831947b7]=]},
  571. ["MOAICpBody.getMoment"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a9ff9235bc7fdcfa40003d2f80e42c18d]=]},
  572. ["MOAICpBody.getPos"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#aec5a87448bfccadd98530644f3bc1d6c]=]},
  573. ["MOAICpBody.getRot"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a592cb5546975a4efd325a97142672c7b]=]},
  574. ["MOAICpBody.getTorque"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#abefd966344bcadddcc597770d00e5ffa]=]},
  575. ["MOAICpBody.getVel"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#ae56832b4121b6fb3675e393084da5e51]=]},
  576. ["MOAICpBody.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  577. ["MOAICpBody.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  578. ["MOAICpBody.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  579. ["MOAICpBody.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  580. ["MOAICpBody.isRogue"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a71f06db5a18e5269010bdda3a04fb906]=]},
  581. ["MOAICpBody.isSleeping"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a7923f40266b301ef87c7a1a726b2da7f]=]},
  582. ["MOAICpBody.isStatic"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a6f3d00a99477762548bde74ace0e627a]=]},
  583. ["MOAICpBody.localToWorld"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a2025471e2f9d208f65aa81e9316b4f76]=]},
  584. ["MOAICpBody.new"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a289fd1438385b2b3515ef906d0129fdd]=]},
  585. ["MOAICpBody.newStatic"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a72828e46211a7cc4934c1f20f249fad9]=]},
  586. ["MOAICpBody.resetForces"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a8b8ae3e917060971d3c2085f21abbaa6]=]},
  587. ["MOAICpBody.setAngle"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a206bf51ddaab60a5f2bb28107851aa7e]=]},
  588. ["MOAICpBody.setAngVel"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a8517638f641e8a8ac7b5a2c0893fdce6]=]},
  589. ["MOAICpBody.setForce"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a1c9de393619eb7a924aff84b768bb2d1]=]},
  590. ["MOAICpBody.setMass"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#aefa9c0f1ef064db833c725ba25016f2f]=]},
  591. ["MOAICpBody.setMoment"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a90246e4537241a7bfc040ac9da4a12ca]=]},
  592. ["MOAICpBody.setPos"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a1af16385937a6544c179808602df11e8]=]},
  593. ["MOAICpBody.setRemoveFlag"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#ae9011251da1a3cd05c6fedd0a341ac57]=]},
  594. ["MOAICpBody.setTorque"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a1ac4b83c292502e1d511e54bca3b3e2c]=]},
  595. ["MOAICpBody.setVel"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#aa249bf5d6c14344f93c6f7c63dbc765c]=]},
  596. ["MOAICpBody.sleep"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a3228079c7eaafe58a11d6d9cc999270f]=]},
  597. ["MOAICpBody.sleepWithGroup"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#a8294c4910593e5e751f7266259cc148c]=]},
  598. ["MOAICpBody.worldToLocal"] = {[=[]=], [=[class_m_o_a_i_cp_body.html#aace1a9e20bf8568364be009beb63c6c0]=]},
  599.  
  600. MOAICpConstraint = [=[Chipmunk Constraint]=],
  601. ["MOAICpConstraint.getBiasCoef"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a210ef5f8979f68c7bdba270a949b4722]=]},
  602. ["MOAICpConstraint.getMaxBias"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a6d1663a9c5d272438cad59184db9e590]=]},
  603. ["MOAICpConstraint.getMaxForce"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a62f53b100aef538a5a0634e5c559d1cc]=]},
  604. ["MOAICpConstraint.newDampedRotarySpring"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a68bc473abad111ee7f924741c99afeaf]=]},
  605. ["MOAICpConstraint.newDampedSpring"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a4fb7433279f95cfb01e22987b9490b3f]=]},
  606. ["MOAICpConstraint.newGearJoint"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a975c88bd4e01f921131132f84588a1f4]=]},
  607. ["MOAICpConstraint.newGrooveJoint"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#adf8449fe2db746666716c070c6a06f56]=]},
  608. ["MOAICpConstraint.newPinJoint"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a1ae4e304dbb5f63bd4e12d015a4e0626]=]},
  609. ["MOAICpConstraint.newPivotJoint"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a3358ef517294a60b788630deb7b7eb4d]=]},
  610. ["MOAICpConstraint.newRatchetJoint"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#ad5fb8d9861dee9e4214c7c7aeae9f2c5]=]},
  611. ["MOAICpConstraint.newRotaryLimitJoint"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a7c41f0c4bd2790987b96a5aa0d8a1609]=]},
  612. ["MOAICpConstraint.newSimpleMotor"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a5be5da7f25b9b01c7f1a6dba009d2b81]=]},
  613. ["MOAICpConstraint.newSlideJoint"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a03fcb7f796193762e498634647461f5a]=]},
  614. ["MOAICpConstraint.setBiasCoef"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#adeacd072b68da94861a1b6ef358161f3]=]},
  615. ["MOAICpConstraint.setMaxBias"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#a839c07671a2de7f15d9562103ef80a12]=]},
  616. ["MOAICpConstraint.setMaxForce"] = {[=[]=], [=[class_m_o_a_i_cp_constraint.html#ae71c6e8900156ac3a334cbe182915d4d]=]},
  617.  
  618. MOAICpShape = [=[Chipmunk Shape]=],
  619. ["MOAICpShape.areaForCircle"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a75c9f5ab47a0ff93643966a2f7db9deb]=]},
  620. ["MOAICpShape.areaForPolygon"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#ab61f17c915e64137cd9720a2525f9cd6]=]},
  621. ["MOAICpShape.areaForRect"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#ad9dcbfea2b7fc0ae0f73faf23614396b]=]},
  622. ["MOAICpShape.areaForSegment"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a953bb76b2f62a6a39a8eb445fe7cfbd0]=]},
  623. ["MOAICpShape.getBody"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a11d41b3459b29f4874e708a374c67963]=]},
  624. ["MOAICpShape.getElasticity"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#aa2f2878a1bda95824591c907e081448e]=]},
  625. ["MOAICpShape.getFriction"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#aeb0b380c01e018f1802f894bf4605640]=]},
  626. ["MOAICpShape.getGroup"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a57f82b3e51dc98a726d66dab8f3b43e3]=]},
  627. ["MOAICpShape.getLayers"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a6bce95ad3f3088224d2e6d21169ccae2]=]},
  628. ["MOAICpShape.getSurfaceVel"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a8b1269fd0817e04c477cf430ac7b1fb1]=]},
  629. ["MOAICpShape.getType"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a7cec7e23aa3f3a779621046bae8fef35]=]},
  630. ["MOAICpShape.inside"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#ab0cdffbfd4db79ed9a7fad8ff0c43d83]=]},
  631. ["MOAICpShape.isSensor"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a719e9a94ebae8c3af58a65ff6a22580b]=]},
  632. ["MOAICpShape.momentForCircle"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a21909ba43ed26a1fd560f1132465107f]=]},
  633. ["MOAICpShape.momentForPolygon"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#abcd47a2fd15c35f99f783b35be5262cc]=]},
  634. ["MOAICpShape.momentForRect"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a5b290a2650b493736a5322ad31e86f9c]=]},
  635. ["MOAICpShape.momentForSegment"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#ab95fec71e25d55a98c761b50908da785]=]},
  636. ["MOAICpShape.setElasticity"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a0542d5c8c9454019eef4eb89286d9d5b]=]},
  637. ["MOAICpShape.setFriction"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a5a3676ac6c1a062209f4031dc5fcf21e]=]},
  638. ["MOAICpShape.setGroup"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#af211a1c4e397d47616fd674a5b543e59]=]},
  639. ["MOAICpShape.setIsSensor"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a4679b5c54f7efb1cd9cab4281804f3a8]=]},
  640. ["MOAICpShape.setLayers"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a27ab06ed4bfacb8a013410ef5f245ba9]=]},
  641. ["MOAICpShape.setSurfaceVel"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#ae253119c1c059cdd23a88e35772292db]=]},
  642. ["MOAICpShape.setType"] = {[=[]=], [=[class_m_o_a_i_cp_shape.html#a5239eeeabd1fe3fc08d1454d49c0bb3b]=]},
  643.  
  644. MOAICpSpace = [=[Chipmunk Space.]=],
  645. ["MOAICpSpace.activateShapesTouchingShape"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#ad5a903707a8a357e87d8351bc1e260b6]=]},
  646. ["MOAICpSpace.getDamping"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a9aacbeaf6131f2edb4de036b899c3d5e]=]},
  647. ["MOAICpSpace.getGravity"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a4e751519793b520bf9b30dc96522bb7e]=]},
  648. ["MOAICpSpace.getIdleSpeedThreshold"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a97a99d02ac495d99fbdc3bcc28a78ea0]=]},
  649. ["MOAICpSpace.getIterations"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a3056f6ff3447a9f37e230ee150454049]=]},
  650. ["MOAICpSpace.getSleepTimeThreshold"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a400a3164a1a93a26f07730d355e51ee1]=]},
  651. ["MOAICpSpace.getStaticBody"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a4bdeafba28c6d330e1fdc08775a6eb2b]=]},
  652. ["MOAICpSpace.insertProp"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#acad4f4ad83d6c0efc37a20f5eb19c321]=]},
  653. ["MOAICpSpace.rehashShape"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a5b3744a5563f3ec3d2b0dc8ae8754223]=]},
  654. ["MOAICpSpace.rehashStatic"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#af8fd1da32da0c58233fb6ac6a42b78f6]=]},
  655. ["MOAICpSpace.removeProp"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#ac01e8f94230acb1d608b48fd4312c748]=]},
  656. ["MOAICpSpace.resizeActiveHash"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a2b98087f2a9a28df1ee796e52a26b019]=]},
  657. ["MOAICpSpace.resizeStaticHash"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a4442251e123819ea9e46face81343203]=]},
  658. ["MOAICpSpace.setCollisionHandler"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#abee135affbd22de644f330432700ca96]=]},
  659. ["MOAICpSpace.setDamping"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a29e6b4cb02933f9d3d6fe18b0d17856c]=]},
  660. ["MOAICpSpace.setGravity"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#ae67e9be71aff878a93936c0305683236]=]},
  661. ["MOAICpSpace.setIdleSpeedThreshold"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a42cfb9e1fde6f9f010502f4d46aeb3b1]=]},
  662. ["MOAICpSpace.setIterations"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a0e75018223aa4f5ccf29c5550e29993c]=]},
  663. ["MOAICpSpace.setSleepTimeThreshold"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#ad80228614bd626a90e78d1cf359d6409]=]},
  664. ["MOAICpSpace.shapeForPoint"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#aa8bf3a7ba632a3c71e17aaf309d6ffc6]=]},
  665. ["MOAICpSpace.shapeForSegment"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a5ff9c71319395eaf904a1907dc9668e6]=]},
  666. ["MOAICpSpace.shapeListForPoint"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a666d2001c6da941300429ba5fef88ceb]=]},
  667. ["MOAICpSpace.shapeListForRect"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a2bfe80527e3b0d1da69cf02c0aa4670d]=]},
  668. ["MOAICpSpace.shapeListForSegment"] = {[=[]=], [=[class_m_o_a_i_cp_space.html#a027276f756ba74aa8521c1af7a71fc04]=]},
  669.  
  670. MOAICrittercismAndroid = [=[Wrapper for Crittercism integration on Android devices. Crittercism provides real-time, actionable crash reports for mobile apps. Exposed to lua via MOAICrittercism on all mobile platforms]=],
  671. ["MOAICrittercismAndroid.init"] = {[=[]=], [=[class_m_o_a_i_crittercism_android.html#ab3308d09d276399525803d9a7afbd750]=]},
  672.  
  673. MOAICrittercismIOS = [=[Wrapper for Crittercism integration on iOS devices. Crittercism provides real-time, actionable crash reports for mobile apps. Exposed to lua via MOAICrittercism on all mobile platforms]=],
  674. ["MOAICrittercismIOS.init"] = {[=[]=], [=[class_m_o_a_i_crittercism_i_o_s.html#a8cb3b87b53501156d0383b8b0890b495]=]},
  675.  
  676. MOAIDataBuffer = [=[Buffer for loading and holding data. Data operations may be performed without additional penalty of marshalling buffers between Lua and C]=],
  677. ["MOAIDataBuffer.base64Decode"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#ac32e10dfc9a9254926f9738e89b40f09]=]},
  678. ["MOAIDataBuffer.base64Encode"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#a467480078ea4d8c71596f635598a42be]=]},
  679. ["MOAIDataBuffer.deflate"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#a9ca115ef0a8c9d4dbfd761bc5998b0d7]=]},
  680. ["MOAIDataBuffer.getSize"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#a5bbb20ab6f77acff496ac66256e1ee33]=]},
  681. ["MOAIDataBuffer.getString"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#aafa26aac4b45b3f9625a657fec94d767]=]},
  682. ["MOAIDataBuffer.inflate"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#aff34d1d98c0b7c42d329edac56cad0e7]=]},
  683. ["MOAIDataBuffer.load"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#aa3c418b7c504dd8384c21c1ecb107011]=]},
  684. ["MOAIDataBuffer.loadAsync"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#a3daac49f7a301bed78414eb40dd5e6fd]=]},
  685. ["MOAIDataBuffer.save"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#a2e6097a0f281486e1b67fe3782e67fed]=]},
  686. ["MOAIDataBuffer.saveAsync"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#adcbc12f63ce25ca13a964480a9b22eb2]=]},
  687. ["MOAIDataBuffer.setString"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#a887884d06bb95488977be2c49a44c129]=]},
  688. ["MOAIDataBuffer.toCppHeader"] = {[=[]=], [=[class_m_o_a_i_data_buffer.html#a18b878cb0344c69ca135eb4ca011338a]=]},
  689.  
  690. MOAIDataIOAction = [=[Action for asynchronously loading and saving data]=],
  691. ["MOAIDataIOAction.setCallback"] = {[=[]=], [=[class_m_o_a_i_data_i_o_action.html#a3c6c56c4524eaf7e4917099f984e883f]=]},
  692.  
  693. MOAIDebugLines = [=[Singleton for managing rendering of world space debug vectors.]=],
  694. ["MOAIDebugLines.setStyle"] = {[=[]=], [=[class_m_o_a_i_debug_lines.html#a57ed2d9ac307d9a419ea1de229c7b84a]=]},
  695. ["MOAIDebugLines.showStyle"] = {[=[]=], [=[class_m_o_a_i_debug_lines.html#a079638d9dcd74ed1dde182054e45bd43]=]},
  696.  
  697. MOAIDeck = [=[Base class for decks]=],
  698. ["MOAIDeck.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  699. ["MOAIDeck.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  700.  
  701. MOAIDeck2D = [=[Base class for 2D decks]=],
  702. ["MOAIDeck2D.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  703. ["MOAIDeck2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  704.  
  705. MOAIDeckRemapper = [=[Remap deck indices. Most useful for controlling animated tiles in tilemaps. All indices are exposed as attributes that may be connected by setAttrLink or driven using MOAIAnim or MOAIAnimCurve]=],
  706. ["MOAIDeckRemapper.reserve"] = {[=[]=], [=[class_m_o_a_i_deck_remapper.html#a8d5d73ededa55dd0f682d724e634253e]=]},
  707. ["MOAIDeckRemapper.setBase"] = {[=[]=], [=[class_m_o_a_i_deck_remapper.html#a1665dc10abcdc61358f2d1271456db7a]=]},
  708. ["MOAIDeckRemapper.setRemap"] = {[=[]=], [=[class_m_o_a_i_deck_remapper.html#a89d293e2af7dc6c939fa90617dec3b58]=]},
  709.  
  710. MOAIDialogAndroid = [=[Wrapper for a simple native dialog implementation on Android devices. Exposed to lua via MOAIDialog on all mobile platforms.]=],
  711. ["MOAIDialogAndroid.DIALOG_RESULT_POSITIVE"] = [=[Result code when the dialog is dismissed by pressing the positive button.]=],
  712. ["MOAIDialogAndroid.DIALOG_RESULT_NEUTRAL"] = [=[Result code when the dialog is dismissed by pressing the neutral button.]=],
  713. ["MOAIDialogAndroid.DIALOG_RESULT_NEGATIVE"] = [=[Result code when the dialog is dismissed by pressing the negative button.]=],
  714. ["MOAIDialogAndroid.DIALOG_RESULT_CANCEL"] = [=[Result code when the dialog is dismissed by pressing the cancel button.]=],
  715. ["MOAIDialogAndroid.showDialog"] = {[=[]=], [=[class_m_o_a_i_dialog_android.html#aae3cd271f8948f239f956640f1bb8eda]=]},
  716.  
  717. MOAIDialogIOS = [=[Wrapper for a simple native dialog implementation on iOS devices. Exposed to lua via MOAIDialog on all mobile platforms.]=],
  718. ["MOAIDialogIOS.DIALOG_RESULT_POSITIVE"] = [=[Result code when the dialog is dismissed by pressing the positive button.]=],
  719. ["MOAIDialogIOS.DIALOG_RESULT_NEUTRAL"] = [=[Result code when the dialog is dismissed by pressing the neutral button.]=],
  720. ["MOAIDialogIOS.DIALOG_RESULT_NEGATIVE"] = [=[Result code when the dialog is dismissed by pressing the negative button.]=],
  721. ["MOAIDialogIOS.DIALOG_RESULT_CANCEL"] = [=[Result code when the dialog is dismissed by pressing the cancel button.]=],
  722. ["MOAIDialogIOS.showDialog"] = {[=[]=], [=[class_m_o_a_i_dialog_i_o_s.html#a632ec24dd116eb8b4a0840383006c4be]=]},
  723.  
  724. MOAIDraw = [=[Singleton for performing immediate mode drawing operations. See MOAIScriptDeck]=],
  725. ["MOAIDraw.drawCircle"] = {[=[]=], [=[class_m_o_a_i_draw.html#a7c7cbb63018b36f61a9ce26a7e924921]=]},
  726. ["MOAIDraw.drawEllipse"] = {[=[]=], [=[class_m_o_a_i_draw.html#a14f943d7514f58775882330b4dcb77f0]=]},
  727. ["MOAIDraw.drawLine"] = {[=[]=], [=[class_m_o_a_i_draw.html#a77b296a0dae5d1a8c81c0e78c96c1501]=]},
  728. ["MOAIDraw.drawPoints"] = {[=[]=], [=[class_m_o_a_i_draw.html#acead1bcffb913f973cee4ccc48bccb17]=]},
  729. ["MOAIDraw.drawRay"] = {[=[]=], [=[class_m_o_a_i_draw.html#a176254e14afd9cfdbbbe9977e984f51e]=]},
  730. ["MOAIDraw.drawRect"] = {[=[]=], [=[class_m_o_a_i_draw.html#ab49fd0410c183c319ad2840dee614401]=]},
  731. ["MOAIDraw.fillCircle"] = {[=[]=], [=[class_m_o_a_i_draw.html#a1711ab5627b5d7084db3e82d41efd31f]=]},
  732. ["MOAIDraw.fillEllipse"] = {[=[]=], [=[class_m_o_a_i_draw.html#affcccf69ed229b3e54188192301ff2de]=]},
  733. ["MOAIDraw.fillFan"] = {[=[]=], [=[class_m_o_a_i_draw.html#ac094a2c8b82c441a1a9fcb40d79c72fd]=]},
  734. ["MOAIDraw.fillRect"] = {[=[]=], [=[class_m_o_a_i_draw.html#aaf800d4088c9a654d4c05f749e3361d7]=]},
  735.  
  736. MOAIEaseDriver = [=[Action that applies simple ease curves to node attributes]=],
  737. ["MOAIEaseDriver.reserveLinks"] = {[=[]=], [=[class_m_o_a_i_ease_driver.html#aebb77ac346d3a5a2841f8554086f9a8c]=]},
  738. ["MOAIEaseDriver.setLink"] = {[=[]=], [=[class_m_o_a_i_ease_driver.html#a680fd9c8e90854b1950f3b0f89cc0abd]=]},
  739.  
  740. MOAIEaseType = [=[Namespace to hold ease modes. Moai ease in/out has opposite meaning of Flash ease in/out.]=],
  741. ["MOAIEaseType.EASE_IN"] = [=[Quartic ease in - Fast start then slow when approaching value; ease into position.]=],
  742. ["MOAIEaseType.EASE_OUT"] = [=[Quartic ease out - Slow start then fast when approaching value; ease out of position.]=],
  743. ["MOAIEaseType.FLAT"] = [=[Stepped change - Maintain original value until end of ease.]=],
  744. ["MOAIEaseType.LINEAR"] = [=[Linear interpolation.]=],
  745. ["MOAIEaseType.SHARP_EASE_IN"] = [=[Octic ease in.]=],
  746. ["MOAIEaseType.SHARP_EASE_OUT"] = [=[Octic ease out.]=],
  747. ["MOAIEaseType.SHARP_SMOOTH"] = [=[Octic smooth.]=],
  748. ["MOAIEaseType.SMOOTH"] = [=[Quartic ease out then ease in.]=],
  749. ["MOAIEaseType.SOFT_EASE_IN"] = [=[Quadratic ease in.]=],
  750. ["MOAIEaseType.SOFT_EASE_OUT"] = [=[Quadratic ease out.]=],
  751. ["MOAIEaseType.SOFT_SMOOTH"] = [=[Quadratic smooth.]=],
  752.  
  753. MOAIEnvironment = [=[]=],
  754. ["MOAIEnvironment.generateGUID"] = {[=[]=], [=[class_m_o_a_i_environment.html#aebfe693f1fc8ed43364234889e794fef]=]},
  755. ["MOAIEnvironment.setValue"] = {[=[]=], [=[class_m_o_a_i_environment.html#af85559aff82568784c78979652f72b24]=]},
  756.  
  757. MOAIEventSource = [=[Base class for all Lua-bound Moai objects that emit events and have an event table]=],
  758.  
  759. MOAIFacebookAndroid = [=[Wrapper for Facebook integration on Android devices. Facebook provides social integration for sharing on www.facebook.com. Exposed to lua via MOAIFacebook on all mobile platforms.]=],
  760. ["MOAIFacebookAndroid.DIALOG_DID_COMPLETE"] = [=[Event code for a successfully completed Facebook dialog.]=],
  761. ["MOAIFacebookAndroid.DIALOG_DID_NOT_COMPLETE"] = [=[Event code for a failed (or canceled) Facebook dialog.]=],
  762. ["MOAIFacebookAndroid.SESSION_DID_LOGIN"] = [=[Event code for a successfully completed Facebook login.]=],
  763. ["MOAIFacebookAndroid.SESSION_DID_NOT_LOGIN"] = [=[Event code for a failed (or canceled) Facebook login.]=],
  764. ["MOAIFacebookAndroid.getToken"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#a23059a35658234f335377f5dee19d50f]=]},
  765. ["MOAIFacebookAndroid.init"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#aec3a8c132e55b170844a1f99da216b44]=]},
  766. ["MOAIFacebookAndroid.login"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#a38c027bee39c4eb69ff85f9d6e73add7]=]},
  767. ["MOAIFacebookAndroid.logout"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#a9306ce26f33cf5fd821a1df77eb20bda]=]},
  768. ["MOAIFacebookAndroid.postToFeed"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#aa6a18ef0e5a33e8523ea9b5b61028173]=]},
  769. ["MOAIFacebookAndroid.sendRequest"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#a62c58f710ebbfcf0bd0eabbc7495bc0d]=]},
  770. ["MOAIFacebookAndroid.sessionValid"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#ae5f4c4bf2fe77f2431252eef29ace9fa]=]},
  771. ["MOAIFacebookAndroid.setToken"] = {[=[]=], [=[class_m_o_a_i_facebook_android.html#a133ab7abc6debeb1703a5d07ad0b8614]=]},
  772.  
  773. MOAIFacebookIOS = [=[Wrapper for Facebook integration on iOS devices. Facebook provides social integration for sharing on www.facebook.com. Exposed to lua via MOAIFacebook on all mobile platforms.]=],
  774. ["MOAIFacebookIOS.DIALOG_DID_COMPLETE"] = [=[Event code for a successfully completed Facebook dialog.]=],
  775. ["MOAIFacebookIOS.DIALOG_DID_NOT_COMPLETE"] = [=[Event code for a failed (or canceled) Facebook dialog.]=],
  776. ["MOAIFacebookIOS.SESSION_DID_LOGIN"] = [=[Event code for a successfully completed Facebook login.]=],
  777. ["MOAIFacebookIOS.SESSION_DID_NOT_LOGIN"] = [=[Event code for a failed (or canceled) Facebook login.]=],
  778.  
  779. MOAIFileSystem = [=[Functions for manipulating the file system]=],
  780. ["MOAIFileSystem.affirmPath"] = {[=[]=], [=[class_m_o_a_i_file_system.html#afe92da5e145a30badddc712279c596e9]=]},
  781. ["MOAIFileSystem.checkFileExists"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a28e6bcad55ee9aeb0f3d55ab64eb89b1]=]},
  782. ["MOAIFileSystem.checkPathExists"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a0a2fdb969f1b2cb692aaa1b0418e1b7e]=]},
  783. ["MOAIFileSystem.deleteDirectory"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a8c52f95c11f8a00699eb64636364a842]=]},
  784. ["MOAIFileSystem.deleteFile"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a5e433c01d1cff90f8bb0922b370bd615]=]},
  785. ["MOAIFileSystem.getAbsoluteDirectoryPath"] = {[=[]=], [=[class_m_o_a_i_file_system.html#ace39a13df7d368726bb19f503843d092]=]},
  786. ["MOAIFileSystem.getAbsoluteFilePath"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a78f7b09414e4fa14ea4ed0af90d0b45f]=]},
  787. ["MOAIFileSystem.getRelativePath"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a1a70d3c64021696670200132c61bc0be]=]},
  788. ["MOAIFileSystem.getWorkingDirectory"] = {[=[]=], [=[class_m_o_a_i_file_system.html#ae6cc35048670a74afd8119ae67215098]=]},
  789. ["MOAIFileSystem.listDirectories"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a737daf15f649192c9b218ee9548260c3]=]},
  790. ["MOAIFileSystem.listFiles"] = {[=[]=], [=[class_m_o_a_i_file_system.html#aca39843e6b2cda2d952d95c2260ff69b]=]},
  791. ["MOAIFileSystem.mountVirtualDirectory"] = {[=[]=], [=[class_m_o_a_i_file_system.html#a7e4140eb1ed4b443402b3e35a9d40915]=]},
  792. ["MOAIFileSystem.rename"] = {[=[]=], [=[class_m_o_a_i_file_system.html#aade8cc938d101d19800165537a30b0d4]=]},
  793. ["MOAIFileSystem.setWorkingDirectory"] = {[=[]=], [=[class_m_o_a_i_file_system.html#ae4c87529b20bfd32cddb562717905461]=]},
  794.  
  795. MOAIFmod = [=[FMOD singleton. Unsupported, legacy]=],
  796. ["MOAIFmod.getMemoryStats"] = {[=[]=], [=[class_m_o_a_i_fmod.html#a9a4e610991a09ed2003ada245b8cce5e]=]},
  797. ["MOAIFmod.init"] = {[=[]=], [=[class_m_o_a_i_fmod.html#a8296c6efca0ad883e4b9549282bd2958]=]},
  798.  
  799. MOAIFmodChannel = [=[FMOD singleton. Unsupported, legacy]=],
  800. ["MOAIFmodChannel.getVolume"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#a1f0fb3006860a34517ca45e709b864de]=]},
  801. ["MOAIFmodChannel.isPlaying"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#a27f2a9c965aa7a727451977d937642be]=]},
  802. ["MOAIFmodChannel.moveVolume"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#afdc5719617222829eb04cbfc516f6e2a]=]},
  803. ["MOAIFmodChannel.play"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#ad5b6b81d57c80ebfb580dadc73d43dec]=]},
  804. ["MOAIFmodChannel.seekVolume"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#aa90a4bc93d8eed3792d1da0ff387cbbf]=]},
  805. ["MOAIFmodChannel.setLooping"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#ac851f6494dea7fb2ab53462faee54c5c]=]},
  806. ["MOAIFmodChannel.setPaused"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#a16c1ddc2b62515ef5dbc29516e970d83]=]},
  807. ["MOAIFmodChannel.setVolume"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#a9d626033df422c2b620f52dacbe435e3]=]},
  808. ["MOAIFmodChannel.stop"] = {[=[]=], [=[class_m_o_a_i_fmod_channel.html#aac8bd6c84ef9cef7e545906f65d33340]=]},
  809.  
  810. MOAIFmodSound = [=[FMOD singleton. Unsupported, legacy]=],
  811. ["MOAIFmodSound.load"] = {[=[]=], [=[class_m_o_a_i_fmod_sound.html#a2196e617c483d91008057465be75a029]=]},
  812. ["MOAIFmodSound.loadBGM"] = {[=[]=], [=[class_m_o_a_i_fmod_sound.html#a48715b7f62771f9bd91ad79550ed2091]=]},
  813. ["MOAIFmodSound.loadSFX"] = {[=[]=], [=[class_m_o_a_i_fmod_sound.html#ab6af4e3ecc06162249c9817260602c02]=]},
  814. ["MOAIFmodSound.release"] = {[=[]=], [=[class_m_o_a_i_fmod_sound.html#afc985ff5ea87f35a9d736ce1f5e279d7]=]},
  815.  
  816. MOAIFont = [=[]=],
  817. ["MOAIFont.getFilename"] = {[=[]=], [=[class_m_o_a_i_font.html#aeee1560e27c9745f1f68c5649588c4d6]=]},
  818. ["MOAIFont.getFlags"] = {[=[]=], [=[class_m_o_a_i_font.html#a5a965fdc7281884eed3855277d31c4e9]=]},
  819. ["MOAIFont.getImage"] = {[=[]=], [=[class_m_o_a_i_font.html#a20364f2ea45fe684548d08e38634f53c]=]},
  820. ["MOAIFont.load"] = {[=[]=], [=[class_m_o_a_i_font.html#aa5e14ff8c9e8ecc211b8ca8e4aaec25e]=]},
  821. ["MOAIFont.loadFromTTF"] = {[=[]=], [=[class_m_o_a_i_font.html#a5d3dee4978355be600ed692224636904]=]},
  822. ["MOAIFont.preloadGlyphs"] = {[=[]=], [=[class_m_o_a_i_font.html#aae28be9e2bbd80cc8e6dc7bba9eb4d9d]=]},
  823. ["MOAIFont.rebuildKerningTables"] = {[=[]=], [=[class_m_o_a_i_font.html#aa5ae25011bfe26fdb6a80b9d3614e8ff]=]},
  824. ["MOAIFont.setCache"] = {[=[]=], [=[class_m_o_a_i_font.html#a2f60a3c58dc4d676b808777540e680e4]=]},
  825. ["MOAIFont.setDefaultSize"] = {[=[]=], [=[class_m_o_a_i_font.html#a981bf8fc6ecc6e679bcb636d38dc6a78]=]},
  826. ["MOAIFont.setFlags"] = {[=[]=], [=[class_m_o_a_i_font.html#aa7aa31400aad64ae352e66d008bef297]=]},
  827. ["MOAIFont.setImage"] = {[=[]=], [=[class_m_o_a_i_font.html#a924d8439b95f43424e2e922e6f69a97a]=]},
  828. ["MOAIFont.setReader"] = {[=[]=], [=[class_m_o_a_i_font.html#a86317ba09fa0431c13caa3e6a2607c65]=]},
  829.  
  830. MOAIFrameBuffer = [=[This is an implementation of a frame buffer that may be attached to a MOAILayer for offscreen rendering. It is also a texture that may be bound and used like any other]=],
  831. ["MOAIFrameBuffer.getSize"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a505bce5fd64b007585642636a0fd8c12]=]},
  832. ["MOAIFrameBuffer.init"] = {[=[]=], [=[class_m_o_a_i_frame_buffer.html#ae109091639423ac20909388746fe01e4]=]},
  833. ["MOAIFrameBuffer.release"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a5f60c19774418bfe1396452ce5b94ab0]=]},
  834. ["MOAIFrameBuffer.setClearColor"] = {[=[]=], [=[class_m_o_a_i_frame_buffer.html#a8784e7c559692fcdfe0b8ad5c131767c]=]},
  835. ["MOAIFrameBuffer.setClearDepth"] = {[=[]=], [=[class_m_o_a_i_frame_buffer.html#aa11582c2b45ed014c1c99df684e19cea]=]},
  836. ["MOAIFrameBuffer.setFilter"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#ad4dc0419e9da22b238fbff6f67a0fc56]=]},
  837. ["MOAIFrameBuffer.setWrap"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a476cc37d0e794ca5abdfe7210078db39]=]},
  838.  
  839. MOAIFreeTypeFontReader = [=[Implementation of MOAIFontReader that based on FreeType 2. Can load and render TTF and OTF font files]=],
  840.  
  841. MOAIGameCenterIOS = [=[Wrapper for iOS GameCenter functionality.]=],
  842. ["MOAIGameCenterIOS.TIMESCOPE_TODAY"] = [=[Get leaderboard scores for today.]=],
  843. ["MOAIGameCenterIOS.TIMESCOPE_WEEK"] = [=[Get leaderboard scores for the week.]=],
  844. ["MOAIGameCenterIOS.TIMESCOPE_ALLTIME"] = [=[Get leaderboard scores for all time.]=],
  845. ["MOAIGameCenterIOS.PLAYERSCOPE_GLOBAL"] = [=[Get leaderboard scores for everyone.]=],
  846. ["MOAIGameCenterIOS.PLAYERSCOPE_FRIENDS"] = [=[Get leaderboard scores only for active player's friends.]=],
  847. ["MOAIGameCenterIOS.+ "] = {[=[]=], [=[]=]},
  848.  
  849. MOAIGfxDevice = [=[Interface to the graphics singleton]=],
  850. ["MOAIGfxDevice.getMaxTextureUnits"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#a194d1b3c16af404f20223979b50fac03]=]},
  851. ["MOAIGfxDevice.getViewSize"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#a214e8964982dec5ffb9bc2671a89fea5]=]},
  852. ["MOAIGfxDevice.isProgrammable"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#a2e2a98d55c577a995a809e24bb1b7a00]=]},
  853. ["MOAIGfxDevice.setClearColor"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#a9f4aa8d38a19836e029a2f2ee88b61b1]=]},
  854. ["MOAIGfxDevice.setClearDepth"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#a238ee5b4bb5905d5858b392425150cdd]=]},
  855. ["MOAIGfxDevice.setPenColor"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#a6bc4ae09569266a3abf3681ecd4b9f6c]=]},
  856. ["MOAIGfxDevice.setPenWidth"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#aad3f26a541aaa681c7851d7f4df4d43d]=]},
  857. ["MOAIGfxDevice.setPointSize"] = {[=[]=], [=[class_m_o_a_i_gfx_device.html#acec2c044543c36f668075f878c27e898]=]},
  858.  
  859. MOAIGfxQuad2D = [=[Single textured quad]=],
  860. ["MOAIGfxQuad2D.setRect"] = {[=[]=], [=[class_m_o_a_i_gfx_quad2_d.html#a9a3139b5f394c8b5b91d86bf57de0c49]=]},
  861. ["MOAIGfxQuad2D.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  862. ["MOAIGfxQuad2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  863. ["MOAIGfxQuad2D.setUVRect"] = {[=[]=], [=[class_m_o_a_i_gfx_quad2_d.html#a832e1ebb454452a7a1b54ea634744d17]=]},
  864.  
  865. MOAIGfxQuadDeck2D = [=[Deck of textured quads]=],
  866. ["MOAIGfxQuadDeck2D.reserve"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_deck2_d.html#a8db34d930f09a4e97175d8f89aa6bdce]=]},
  867. ["MOAIGfxQuadDeck2D.setQuad"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_deck2_d.html#aea0a0773c228e7a618692560905a3808]=]},
  868. ["MOAIGfxQuadDeck2D.setRect"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_deck2_d.html#afdc52d9569662baeca648893a6407536]=]},
  869. ["MOAIGfxQuadDeck2D.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  870. ["MOAIGfxQuadDeck2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  871. ["MOAIGfxQuadDeck2D.setUVQuad"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_deck2_d.html#a25a863ba25b61928d230b89c10f33b65]=]},
  872. ["MOAIGfxQuadDeck2D.setUVRect"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_deck2_d.html#aad8219013876306b42cf50db1aa065b1]=]},
  873.  
  874. MOAIGfxQuadListDeck2D = [=[Deck of lists of textured quads. UV and model space quads are specified independently and associated via pairs. Pairs are referenced by lists sequentially. There may be multiple pairs with the same UV/model quad indicices if geometry is used in multiple lists]=],
  875. ["MOAIGfxQuadListDeck2D.reserveLists"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#a96304af86cc0d485ab989aaee7851baf]=]},
  876. ["MOAIGfxQuadListDeck2D.reservePairs"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#a27cebf2d59d8d567a56ebcdaa00be470]=]},
  877. ["MOAIGfxQuadListDeck2D.reserveQuads"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#abbcdcaee193a5b70e8a95cf056b14fa2]=]},
  878. ["MOAIGfxQuadListDeck2D.reserveUVQuads"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#a6d5e135f72f680cfffc7ac3ac9f77ff1]=]},
  879. ["MOAIGfxQuadListDeck2D.setList"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#af294ee441ee1afe2a2a337aed1165492]=]},
  880. ["MOAIGfxQuadListDeck2D.setPair"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#a0703d9377b9992791bdae0f9de7c8362]=]},
  881. ["MOAIGfxQuadListDeck2D.setQuad"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#a9f21b8367fedf8d7c12469a080d97850]=]},
  882. ["MOAIGfxQuadListDeck2D.setRect"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#aba805ddba29772888499d29e50ce205e]=]},
  883. ["MOAIGfxQuadListDeck2D.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  884. ["MOAIGfxQuadListDeck2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  885. ["MOAIGfxQuadListDeck2D.setUVQuad"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#a2f0b6f2f6861d64d915fca6133abc717]=]},
  886. ["MOAIGfxQuadListDeck2D.setUVRect"] = {[=[]=], [=[class_m_o_a_i_gfx_quad_list_deck2_d.html#ac01b8da21f7bd6b0a1559ce632d4b2ab]=]},
  887.  
  888. MOAIGfxResource = [=[Base class for graphics resources owned by OpenGL. Implements resource lifecycle including restoration from a lost graphics context (if possible)]=],
  889. ["MOAIGfxResource.getAge"] = {[=[]=], [=[class_m_o_a_i_gfx_resource.html#abf9570bd80e8be839c08b646a9465b81]=]},
  890. ["MOAIGfxResource.softRelease"] = {[=[]=], [=[class_m_o_a_i_gfx_resource.html#a3746155dc9cec1fbf6804668d27e4321]=]},
  891.  
  892. MOAIGfxState = [=[Abstract base class for objects that represent changes to graphics state]=],
  893.  
  894. MOAIGlobalEventSource = [=[Derivation of MOAIEventSource for global lua objects]=],
  895. ["MOAIGlobalEventSource.setListener"] = {[=[]=], [=[class_m_o_a_i_global_event_source.html#adf4e140561b5d6b8a7d212403e926f17]=]},
  896.  
  897. MOAIGlyphCache = [=[]=],
  898. ["MOAIGlyphCache.setColorFormat"] = {[=[]=], [=[class_m_o_a_i_glyph_cache_base.html#ac6e243c4584709a481c62d49ec10c4a0]=]},
  899.  
  900. MOAIGlyphCacheBase = [=[]=],
  901. ["MOAIGlyphCacheBase.setColorFormat"] = {[=[]=], [=[class_m_o_a_i_glyph_cache_base.html#ac6e243c4584709a481c62d49ec10c4a0]=]},
  902.  
  903. MOAIGrid = [=[Grid data object. Grid cells are indexed starting and (1,1). Grid indices will wrap if out of range]=],
  904. ["MOAIGrid.cellAddrToCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a31d6f3a9d9b1e1cc95d8dbe1144a865e]=]},
  905. ["MOAIGrid.clearTileFlags"] = {[=[]=], [=[class_m_o_a_i_grid.html#a69c0b825f7ed5fcb3134da5f73c39a1e]=]},
  906. ["MOAIGrid.getCellAddr"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a8aafa4454e7bd1f39e95085a522606cf]=]},
  907. ["MOAIGrid.getCellSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a936f5acc543ca95a163b032414fea3a3]=]},
  908. ["MOAIGrid.getOffset"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a31dc0292dfcecc60a2db40bcba40faeb]=]},
  909. ["MOAIGrid.getSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#acd54e28abc1043b8215b42fce828fbb0]=]},
  910. ["MOAIGrid.getTile"] = {[=[]=], [=[class_m_o_a_i_grid.html#aa99fd3091052b2008a4a5174fa750fd2]=]},
  911. ["MOAIGrid.getTileFlags"] = {[=[]=], [=[class_m_o_a_i_grid.html#aaaaff7c2f0dda9bf4854c691c5e263eb]=]},
  912. ["MOAIGrid.getTileLoc"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a5285a7351dc6cf1cccff8c318b61b1f3]=]},
  913. ["MOAIGrid.getTileSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a372c8b767e52178dd734c3230e172ec1]=]},
  914. ["MOAIGrid.initDiamondGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a56f7888a6ecdb873e239f78b7f8593ef]=]},
  915. ["MOAIGrid.initHexGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a6d5c9d4254210b049f655b15cb76099e]=]},
  916. ["MOAIGrid.initObliqueGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#af1c1bbbe0fbe2e0f8d3794f5fe1b4298]=]},
  917. ["MOAIGrid.initRectGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#ad6bfe2d382070c8b34c1a30d09b906fa]=]},
  918. ["MOAIGrid.locToCellAddr"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a300b4feeb49b86e36f0a6bd01c4e8eb6]=]},
  919. ["MOAIGrid.locToCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#ae12e2b916882690a48795d5ae480ff03]=]},
  920. ["MOAIGrid.setRepeat"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#aec42d977becbd46485811ebff1769daf]=]},
  921. ["MOAIGrid.setRow"] = {[=[]=], [=[class_m_o_a_i_grid.html#ae108e09ee22305828077ecc53f96372a]=]},
  922. ["MOAIGrid.setShape"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a79d687c17cdaf70b05137e112f37c560]=]},
  923. ["MOAIGrid.setSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a12ff1efc2561031cd3f867c094ce6683]=]},
  924. ["MOAIGrid.setTile"] = {[=[]=], [=[class_m_o_a_i_grid.html#a39ee0019d02926f083c48aa48900772c]=]},
  925. ["MOAIGrid.setTileFlags"] = {[=[]=], [=[class_m_o_a_i_grid.html#a8078f2ef9cec045306862e16433151a0]=]},
  926. ["MOAIGrid.toggleTileFlags"] = {[=[]=], [=[class_m_o_a_i_grid.html#ae6be1da1de0d668758a432b6c91d73d0]=]},
  927. ["MOAIGrid.wrapCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a29f48017325d4318bae66b8daf747b2f]=]},
  928.  
  929. MOAIGridPathGraph = [=[Pathfinder graph adapter for MOAIGrid]=],
  930. ["MOAIGridPathGraph.setGrid"] = {[=[]=], [=[class_m_o_a_i_grid_path_graph.html#a30e1e585e9aaeab031c5f57eecb10c03]=]},
  931.  
  932. MOAIGridSpace = [=[Represents spatial configuration of a grid. The grid is made up of cells. Inside of each cell is a tile. The tile can be larger or smaller than the cell and also offset from the cell. By default, tiles are the same size of their cells and are no offset.]=],
  933. ["MOAIGridSpace.cellAddrToCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a31d6f3a9d9b1e1cc95d8dbe1144a865e]=]},
  934. ["MOAIGridSpace.getCellAddr"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a8aafa4454e7bd1f39e95085a522606cf]=]},
  935. ["MOAIGridSpace.getCellSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a936f5acc543ca95a163b032414fea3a3]=]},
  936. ["MOAIGridSpace.getOffset"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a31dc0292dfcecc60a2db40bcba40faeb]=]},
  937. ["MOAIGridSpace.getSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#acd54e28abc1043b8215b42fce828fbb0]=]},
  938. ["MOAIGridSpace.getTileLoc"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a5285a7351dc6cf1cccff8c318b61b1f3]=]},
  939. ["MOAIGridSpace.getTileSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a372c8b767e52178dd734c3230e172ec1]=]},
  940. ["MOAIGridSpace.initDiamondGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a56f7888a6ecdb873e239f78b7f8593ef]=]},
  941. ["MOAIGridSpace.initHexGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a6d5c9d4254210b049f655b15cb76099e]=]},
  942. ["MOAIGridSpace.initObliqueGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#af1c1bbbe0fbe2e0f8d3794f5fe1b4298]=]},
  943. ["MOAIGridSpace.initRectGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#ad6bfe2d382070c8b34c1a30d09b906fa]=]},
  944. ["MOAIGridSpace.locToCellAddr"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a300b4feeb49b86e36f0a6bd01c4e8eb6]=]},
  945. ["MOAIGridSpace.locToCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#ae12e2b916882690a48795d5ae480ff03]=]},
  946. ["MOAIGridSpace.setRepeat"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#aec42d977becbd46485811ebff1769daf]=]},
  947. ["MOAIGridSpace.setShape"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a79d687c17cdaf70b05137e112f37c560]=]},
  948. ["MOAIGridSpace.setSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a12ff1efc2561031cd3f867c094ce6683]=]},
  949. ["MOAIGridSpace.wrapCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a29f48017325d4318bae66b8daf747b2f]=]},
  950.  
  951. MOAIHarness = [=[Internal debugging and hooking class]=],
  952.  
  953. MOAIHttpTaskBase = [=[Object for performing asynchronous HTTP/HTTPS tasks.]=],
  954. ["MOAIHttpTaskBase.getSize"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a6f2c45bc693cbfe8d573f9cbd7293787]=]},
  955. ["MOAIHttpTaskBase.getString"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a7c883c6811d926756412a453225a8bc2]=]},
  956. ["MOAIHttpTaskBase.httpGet"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#affa86a403b18fdba973a52fe09f7a2fa]=]},
  957. ["MOAIHttpTaskBase.httpPost"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#ae25b6c77348dd478a73a2516e1baf462]=]},
  958. ["MOAIHttpTaskBase.parseXml"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#aa756667aa61c1981fd32f748e76686cd]=]},
  959. ["MOAIHttpTaskBase.performAsync"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a6efbf676605ef8cfa96c864924cccf70]=]},
  960. ["MOAIHttpTaskBase.performSync"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a244863da9b825b0a450ca5e226aa6e77]=]},
  961. ["MOAIHttpTaskBase.setBody"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#ab577090121eb986e90a770deed8adc4f]=]},
  962. ["MOAIHttpTaskBase.setCallback"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a76be83e2f5c4165e5477eb1c28a3d9b0]=]},
  963. ["MOAIHttpTaskBase.setHeader"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a5d14b0b311da084dbf59b2bf4d6785bd]=]},
  964. ["MOAIHttpTaskBase.setUrl"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a932870f936b06a6eb395d3f24c580e63]=]},
  965. ["MOAIHttpTaskBase.setUserAgent"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a24dc17ead57b471580e81adea4cdb166]=]},
  966. ["MOAIHttpTaskBase.setVerb"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a9f16b92e4661ebde2ec4193118407676]=]},
  967. ["MOAIHttpTaskBase.setVerbose"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#ad35376dcdeb3d947694d8261830d888b]=]},
  968.  
  969. MOAIHttpTaskNaCl = [=[Implementation of MOAIHttpTask based on NaCl]=],
  970. ["MOAIHttpTaskNaCl.getSize"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a6f2c45bc693cbfe8d573f9cbd7293787]=]},
  971. ["MOAIHttpTaskNaCl.getString"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a7c883c6811d926756412a453225a8bc2]=]},
  972. ["MOAIHttpTaskNaCl.httpGet"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#affa86a403b18fdba973a52fe09f7a2fa]=]},
  973. ["MOAIHttpTaskNaCl.httpPost"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#ae25b6c77348dd478a73a2516e1baf462]=]},
  974. ["MOAIHttpTaskNaCl.parseXml"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#aa756667aa61c1981fd32f748e76686cd]=]},
  975. ["MOAIHttpTaskNaCl.performAsync"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a6efbf676605ef8cfa96c864924cccf70]=]},
  976. ["MOAIHttpTaskNaCl.performSync"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a244863da9b825b0a450ca5e226aa6e77]=]},
  977. ["MOAIHttpTaskNaCl.setBody"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#ab577090121eb986e90a770deed8adc4f]=]},
  978. ["MOAIHttpTaskNaCl.setCallback"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a76be83e2f5c4165e5477eb1c28a3d9b0]=]},
  979. ["MOAIHttpTaskNaCl.setHeader"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a5d14b0b311da084dbf59b2bf4d6785bd]=]},
  980. ["MOAIHttpTaskNaCl.setUrl"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a932870f936b06a6eb395d3f24c580e63]=]},
  981. ["MOAIHttpTaskNaCl.setUserAgent"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a24dc17ead57b471580e81adea4cdb166]=]},
  982. ["MOAIHttpTaskNaCl.setVerb"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#a9f16b92e4661ebde2ec4193118407676]=]},
  983. ["MOAIHttpTaskNaCl.setVerbose"] = {[=[]=], [=[class_m_o_a_i_http_task_base.html#ad35376dcdeb3d947694d8261830d888b]=]},
  984.  
  985. MOAIImage = [=[Image/bitmap class.]=],
  986. ["MOAIImage.bleedRect"] = {[=[]=], [=[class_m_o_a_i_image.html#a4584d91c68f8eee8d2f0fc0308fac4c1]=]},
  987. ["MOAIImage.convertColors"] = {[=[]=], [=[class_m_o_a_i_image.html#a0a407819bacc3cab03391002ee0de871]=]},
  988. ["MOAIImage.copy"] = {[=[]=], [=[class_m_o_a_i_image.html#a8e1ad63ce37f84d79be305ef7e4fd1a8]=]},
  989. ["MOAIImage.copyBits"] = {[=[]=], [=[class_m_o_a_i_image.html#a343e6e56a1d0faddcf1709c3d6f1647d]=]},
  990. ["MOAIImage.copyRect"] = {[=[]=], [=[class_m_o_a_i_image.html#a85d857128ce832c73f942b7049bae86d]=]},
  991. ["MOAIImage.fillRect"] = {[=[]=], [=[class_m_o_a_i_image.html#a1fd0f744ccb8ac514e232a4f3404a893]=]},
  992. ["MOAIImage.getColor32"] = {[=[]=], [=[class_m_o_a_i_image.html#a8c84c5d3911ad05989dbb69039aa8c37]=]},
  993. ["MOAIImage.getFormat"] = {[=[]=], [=[class_m_o_a_i_image.html#a5951cd6c6bfa43c3e19d0a6beab901ff]=]},
  994. ["MOAIImage.getRGBA"] = {[=[]=], [=[class_m_o_a_i_image.html#a3f0b4059e482d9ae09e31c8d1bd8204d]=]},
  995. ["MOAIImage.getSize"] = {[=[]=], [=[class_m_o_a_i_image.html#a8bea043fd51cca261029d74e3bef9e50]=]},
  996. ["MOAIImage.init"] = {[=[]=], [=[class_m_o_a_i_image.html#a1b30ac651d035f55e3954e24bf6431d1]=]},
  997. ["MOAIImage.load"] = {[=[]=], [=[class_m_o_a_i_image.html#ae81c3bfe18c57151a8203eecdca23722]=]},
  998. ["MOAIImage.padToPow2"] = {[=[]=], [=[class_m_o_a_i_image.html#a4e93d70330c193b7fb20c9ea2be5ee31]=]},
  999. ["MOAIImage.resize"] = {[=[]=], [=[class_m_o_a_i_image.html#ac8b1c099523a2a6618c3585b6b96feb9]=]},
  1000. ["MOAIImage.resizeCanvas"] = {[=[]=], [=[class_m_o_a_i_image.html#a3cdfa18e53a8060a466e5898db482a3e]=]},
  1001. ["MOAIImage.setColor32"] = {[=[]=], [=[class_m_o_a_i_image.html#a82e76cb2a8a247c7026a1bcf4e2c61fa]=]},
  1002. ["MOAIImage.setRGBA"] = {[=[]=], [=[class_m_o_a_i_image.html#a513a6f2af7ba58c4b15b0bbf3e928409]=]},
  1003. ["MOAIImage.writePNG"] = {[=[]=], [=[class_m_o_a_i_image.html#af4f84cf214c90adfb7d4c468f9b2fcbb]=]},
  1004.  
  1005. MOAIImageTexture = [=[Binds an image (CPU memory) to a texture (GPU memory). Regions of the texture (or the entire texture) may be invalidated. Invalidated regions will be reloaded into GPU memory the next time the texture is bound]=],
  1006. ["MOAIImageTexture.MOAITextureBase::_getSize"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a505bce5fd64b007585642636a0fd8c12]=]},
  1007. ["MOAIImageTexture.invalidate"] = {[=[]=], [=[class_m_o_a_i_image_texture.html#ad31e5170588c249a6a2cf293b58ebca3]=]},
  1008. ["MOAIImageTexture.release"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a5f60c19774418bfe1396452ce5b94ab0]=]},
  1009. ["MOAIImageTexture.setFilter"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#ad4dc0419e9da22b238fbff6f67a0fc56]=]},
  1010. ["MOAIImageTexture.setWrap"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a476cc37d0e794ca5abdfe7210078db39]=]},
  1011.  
  1012. MOAIIndexBuffer = [=[Index buffer class. Unused at this time]=],
  1013. ["MOAIIndexBuffer.release"] = {[=[]=], [=[class_m_o_a_i_index_buffer.html#ac604459b9af6bca8757358bfcd21a539]=]},
  1014. ["MOAIIndexBuffer.reserve"] = {[=[]=], [=[class_m_o_a_i_index_buffer.html#a8448c4ab4a64593c574fed6957769c2a]=]},
  1015. ["MOAIIndexBuffer.setIndex"] = {[=[]=], [=[class_m_o_a_i_index_buffer.html#ad4c5c9a1b1c96f4304355ee16b9d1800]=]},
  1016.  
  1017. MOAIInputDevice = [=[Manager class for input bindings. Has no public methods]=],
  1018.  
  1019. MOAIInputMgr = [=[Input device class. Has no public methods]=],
  1020.  
  1021. MOAIInstanceEventSource = [=[Derivation of MOAIEventSource for non-global lua objects]=],
  1022. ["MOAIInstanceEventSource.setListener"] = {[=[]=], [=[class_m_o_a_i_instance_event_source.html#a8e812cbc2ef7ee7c1b052d639c91ab93]=]},
  1023.  
  1024. MOAIJoystickSensor = [=[Analog and digital joystick sensor]=],
  1025. ["MOAIJoystickSensor.getVector"] = {[=[]=], [=[class_m_o_a_i_joystick_sensor.html#a1500cf1aa1542a9fe81f4464198186e5]=]},
  1026. ["MOAIJoystickSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_joystick_sensor.html#a0e042d79120848a65b55acbc12052343]=]},
  1027.  
  1028. MOAIJsonParser = [=[Converts between Lua and JSON]=],
  1029. ["MOAIJsonParser.decode"] = {[=[]=], [=[class_m_o_a_i_json_parser.html#af504e9962a4760ed71ea64b19ffb0807]=]},
  1030. ["MOAIJsonParser.encode"] = {[=[]=], [=[class_m_o_a_i_json_parser.html#a8a54a1ba7713169274da4d22ac31690d]=]},
  1031.  
  1032. MOAIKeyboardSensor = [=[Hardware keyboard sensor]=],
  1033. ["MOAIKeyboardSensor.keyDown"] = {[=[]=], [=[class_m_o_a_i_keyboard_sensor.html#adc0460e482aa792aa6e6be3f4d852177]=]},
  1034. ["MOAIKeyboardSensor.keyIsDown"] = {[=[]=], [=[class_m_o_a_i_keyboard_sensor.html#af2840207a87f175c3ba35f25331810e0]=]},
  1035. ["MOAIKeyboardSensor.keyIsUp"] = {[=[]=], [=[class_m_o_a_i_keyboard_sensor.html#a959c251ff516f8f2122dd1c2d33600a4]=]},
  1036. ["MOAIKeyboardSensor.keyUp"] = {[=[]=], [=[class_m_o_a_i_keyboard_sensor.html#aa6d07e84d9d98554a0a97e4fa32ae7c2]=]},
  1037. ["MOAIKeyboardSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_keyboard_sensor.html#a5c301e8a0aaf30480e7904449337b5c4]=]},
  1038.  
  1039. MOAILayer = [=[Scene controls class.]=],
  1040. ["MOAILayer.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1041. ["MOAILayer.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1042. ["MOAILayer.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1043. ["MOAILayer.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1044. ["MOAILayer.clear"] = {[=[]=], [=[class_m_o_a_i_layer.html#a685a2785ebc7727fb9da8a011c3b0f43]=]},
  1045. ["MOAILayer.getFitting"] = {[=[]=], [=[class_m_o_a_i_layer.html#a731504ce8357072912c065c5c3111120]=]},
  1046. ["MOAILayer.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1047. ["MOAILayer.getPartition"] = {[=[]=], [=[class_m_o_a_i_layer.html#a507c7bf378a1327a3df9fbbd6586e8db]=]},
  1048. ["MOAILayer.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1049. ["MOAILayer.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1050. ["MOAILayer.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1051. ["MOAILayer.getSortMode"] = {[=[]=], [=[class_m_o_a_i_layer.html#aa34d97c0059a93849b7273df3314ac64]=]},
  1052. ["MOAILayer.getSortScale"] = {[=[]=], [=[class_m_o_a_i_layer.html#aa4f8c7f394e78b9ae58b2addfff95b1d]=]},
  1053. ["MOAILayer.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1054. ["MOAILayer.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1055. ["MOAILayer.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1056. ["MOAILayer.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1057. ["MOAILayer.insertProp"] = {[=[]=], [=[class_m_o_a_i_layer.html#a19ee8208e811ce0728ab218ea13cd2bb]=]},
  1058. ["MOAILayer.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1059. ["MOAILayer.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1060. ["MOAILayer.moveColor"] = {[=[]=], [=[class_m_o_a_i_color.html#a04a45c7fac26dc38ecad468b6ecb6c42]=]},
  1061. ["MOAILayer.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1062. ["MOAILayer.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1063. ["MOAILayer.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1064. ["MOAILayer.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1065. ["MOAILayer.removeProp"] = {[=[]=], [=[class_m_o_a_i_layer.html#ab936415c8be06e0406c506a1810d73c3]=]},
  1066. ["MOAILayer.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1067. ["MOAILayer.seekColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ad65bf55d287cde9961adf426d3d92fa1]=]},
  1068. ["MOAILayer.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1069. ["MOAILayer.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1070. ["MOAILayer.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1071. ["MOAILayer.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1072. ["MOAILayer.setBox2DWorld"] = {[=[]=], [=[class_m_o_a_i_layer.html#a703875f80aa363767a47451a0b420940]=]},
  1073. ["MOAILayer.setCamera"] = {[=[]=], [=[class_m_o_a_i_layer.html#a730be2c58c213798a2b6d620c5c16280]=]},
  1074. ["MOAILayer.setColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ab3634e8f57dcb7322a31fe3440b569fe]=]},
  1075. ["MOAILayer.setCpSpace"] = {[=[]=], [=[class_m_o_a_i_layer.html#aca1432c8aad43c1799b201dfb236ca14]=]},
  1076. ["MOAILayer.setFrameBuffer"] = {[=[]=], [=[class_m_o_a_i_layer.html#a54e8e806c6c635c9abd4a9e62f700524]=]},
  1077. ["MOAILayer.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1078. ["MOAILayer.setParallax"] = {[=[]=], [=[class_m_o_a_i_layer.html#a048abcf766d07b940f4733daf3a86010]=]},
  1079. ["MOAILayer.setPartition"] = {[=[]=], [=[class_m_o_a_i_layer.html#a4d680d11898476c8d198a2c4329862ec]=]},
  1080. ["MOAILayer.setPartitionCull2D"] = {[=[]=], [=[class_m_o_a_i_layer.html#ad9355b9b35c2eacfd007072a4ec1ba72]=]},
  1081. ["MOAILayer.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1082. ["MOAILayer.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1083. ["MOAILayer.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1084. ["MOAILayer.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1085. ["MOAILayer.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1086. ["MOAILayer.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1087. ["MOAILayer.setSortMode"] = {[=[]=], [=[class_m_o_a_i_layer.html#a4929d0c04c75ca2ec6ef4112f821c328]=]},
  1088. ["MOAILayer.setSortScale"] = {[=[]=], [=[class_m_o_a_i_layer.html#a50f5e62082ddf21b7cb30eb28acaf522]=]},
  1089. ["MOAILayer.setViewport"] = {[=[]=], [=[class_m_o_a_i_layer.html#af7b9573e24c4d2d78d77986734fa8cd9]=]},
  1090. ["MOAILayer.showDebugLines"] = {[=[]=], [=[class_m_o_a_i_layer.html#ae6fea5b131bdc9629ccc791ea4eef1fe]=]},
  1091. ["MOAILayer.wndToWorld"] = {[=[]=], [=[class_m_o_a_i_layer.html#a198998e3c3ee3e203c5f77cce7b92aa3]=]},
  1092. ["MOAILayer.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1093. ["MOAILayer.worldToWnd"] = {[=[]=], [=[class_m_o_a_i_layer.html#a5b2ecfb2ad9d7e86ee578fbe9cd3a5e6]=]},
  1094.  
  1095. MOAILayer2D = [=[2D layer.]=],
  1096. ["MOAILayer2D.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a34771c207808995c983bcfacb43e52e6]=]},
  1097. ["MOAILayer2D.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a986eebb850eb075f5b3eee7845d220d8]=]},
  1098. ["MOAILayer2D.addRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a12c6766cba3d4837ad2f908fc1396b24]=]},
  1099. ["MOAILayer2D.addScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#adc2004fb55aa44c9aa22a42d5a4e7edd]=]},
  1100. ["MOAILayer2D.clear"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a39acbf90b799b1f357c4bb2b36a8e1eb]=]},
  1101. ["MOAILayer2D.getFitting"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a1e15fb73a7c54ea23fbe932353816418]=]},
  1102. ["MOAILayer2D.getGrid"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a0f8ce765a8c44b4cba0a789259081faf]=]},
  1103. ["MOAILayer2D.getIndex"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#ab495e8c05c2a0c56269462e4faf7e0db]=]},
  1104. ["MOAILayer2D.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a22400e631257974bfb0b9e3c7e3d6bd5]=]},
  1105. ["MOAILayer2D.getPartition"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#adf7777c48c122919131e330090ded01a]=]},
  1106. ["MOAILayer2D.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a52fbedf1bcac8c3469b1f01aa15b54d1]=]},
  1107. ["MOAILayer2D.getPriority"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a40dd1adae2328e20e89e95a6f623b150]=]},
  1108. ["MOAILayer2D.getRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a0cbf9b7aaa273c54c5b14549081836e9]=]},
  1109. ["MOAILayer2D.getScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a08901ef30601e4f9d5f1b3dca8ef4d12]=]},
  1110. ["MOAILayer2D.getSortMode"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a5d28319e16ff663020920db160b6c2a6]=]},
  1111. ["MOAILayer2D.getSortScale"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a5c8623f81ec497b1d4673cff9fff2041]=]},
  1112. ["MOAILayer2D.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1113. ["MOAILayer2D.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1114. ["MOAILayer2D.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1115. ["MOAILayer2D.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1116. ["MOAILayer2D.insertProp"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a164c4af318302fe84384d685342cfd05]=]},
  1117. ["MOAILayer2D.inside"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a16e9fceeb76b14a91a2bf03e3e5e8815]=]},
  1118. ["MOAILayer2D.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ac97f3ef5eae9cda33dd9c2f3c2bee2ec]=]},
  1119. ["MOAILayer2D.move"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a703238a99b7ca35c859bc1fdd76a9184]=]},
  1120. ["MOAILayer2D.moveColor"] = {[=[]=], [=[class_m_o_a_i_color.html#a04a45c7fac26dc38ecad468b6ecb6c42]=]},
  1121. ["MOAILayer2D.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#acd24bff873fba8b018038ce04c9f5f88]=]},
  1122. ["MOAILayer2D.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a446e3db7377a0d2bb7e1c06bfcff7e64]=]},
  1123. ["MOAILayer2D.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ade2136ff1eae1768f3822439c0e70810]=]},
  1124. ["MOAILayer2D.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a7fe326ef7c8a4a6537edd312a1a0c2d1]=]},
  1125. ["MOAILayer2D.removeProp"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#af3e63e31e075953acf43f1609d2884a9]=]},
  1126. ["MOAILayer2D.seek"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#aa7918b8f605b9de6c14f91b62db5f409]=]},
  1127. ["MOAILayer2D.seekColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ad65bf55d287cde9961adf426d3d92fa1]=]},
  1128. ["MOAILayer2D.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ab34624ae895862c12af8090f530323ad]=]},
  1129. ["MOAILayer2D.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abe524823923ede68c87a717e7648f777]=]},
  1130. ["MOAILayer2D.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a2b6d6b49dc6d2c6c290e4bf41ec6caaf]=]},
  1131. ["MOAILayer2D.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a679e8851a6743fbcfea1df2589173b3a]=]},
  1132. ["MOAILayer2D.setBlendMode"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a9372a78d4db11ec2f7a5a21355e73511]=]},
  1133. ["MOAILayer2D.setBox2DWorld"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a19f9034bc96b1f5d440d7e6c2fa1ecd9]=]},
  1134. ["MOAILayer2D.setCamera"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a80635f1f731ccfc1de2f3f19fe1c4c95]=]},
  1135. ["MOAILayer2D.setColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ab3634e8f57dcb7322a31fe3440b569fe]=]},
  1136. ["MOAILayer2D.setCpSpace"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a2ff70b322b538950ba29bf07e6b4508f]=]},
  1137. ["MOAILayer2D.setCullMode"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a660cda22535029f153623523abf734f2]=]},
  1138. ["MOAILayer2D.setDeck"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a040a3ef000eb2b2de78b1a48337fb987]=]},
  1139. ["MOAILayer2D.setDepthMask"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#aaefd20308bed940ca37dc443e8fd97a0]=]},
  1140. ["MOAILayer2D.setDepthTest"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a87033fb204fea09b9baf45a78cdb0531]=]},
  1141. ["MOAILayer2D.setExpandForSort"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a560af68ad78fe00916a4923ccfc94cc4]=]},
  1142. ["MOAILayer2D.setFrame"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a20b7653c3a21fc2bad025c51d0db384e]=]},
  1143. ["MOAILayer2D.setFrameBuffer"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#af4b2fe7a3377822cf7918b71fef38f92]=]},
  1144. ["MOAILayer2D.setGrid"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#ad46a46aad9821d2b90978825416894cb]=]},
  1145. ["MOAILayer2D.setGridScale"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#adcd90d04875aa496265077eb14e88973]=]},
  1146. ["MOAILayer2D.setIndex"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a0f47113a8fad4c6e768cf1c36df51d17]=]},
  1147. ["MOAILayer2D.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a127e63534b8cb2f4e4039fc353f2dc51]=]},
  1148. ["MOAILayer2D.setParallax"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a62fa1905bde47977bed4645090f17851]=]},
  1149. ["MOAILayer2D.setParent"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a5f64acf881a53c2f1e1436828f570589]=]},
  1150. ["MOAILayer2D.setPartition"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a80095a7c83923935360c125578b0821c]=]},
  1151. ["MOAILayer2D.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abb6b327f54c2a9311dba6f319448d047]=]},
  1152. ["MOAILayer2D.setPriority"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a3785ab330903c3791f9729d64fa5fee2]=]},
  1153. ["MOAILayer2D.setRemapper"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#af4602263eadbd41af6cf5cbe04bf1284]=]},
  1154. ["MOAILayer2D.setRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ad1db6d6ced421380693d962192abaf9c]=]},
  1155. ["MOAILayer2D.setScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a1bfd891dd1c4421d8946d092a54d44df]=]},
  1156. ["MOAILayer2D.setShader"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a510f34f2d90c1367a54ccdee8631df59]=]},
  1157. ["MOAILayer2D.setSortMode"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#aa57b263a7c4efe4170a9ca74cf8e2641]=]},
  1158. ["MOAILayer2D.setSortScale"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a47681b9e5cc7ea846452f5754e80d1d1]=]},
  1159. ["MOAILayer2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a3b31e86e822fce97d7e1f1c3e4319001]=]},
  1160. ["MOAILayer2D.setUVTransform"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#ae6cc70aa46d3478b8ce12ad13bfd516b]=]},
  1161. ["MOAILayer2D.setViewport"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a5b8364ed9e188409de35c7f77be8455e]=]},
  1162. ["MOAILayer2D.setVisible"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#af8a9c022438d84630f671e0a668e7b21]=]},
  1163. ["MOAILayer2D.showDebugLines"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#ad2e27dc581f028fb3c7934cf036acab8]=]},
  1164. ["MOAILayer2D.wndToWorld"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#a5a3f330e8ef6f15763de4cfa2aeb952d]=]},
  1165. ["MOAILayer2D.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a813d9eaec94392b3567cfb7e811b3e48]=]},
  1166. ["MOAILayer2D.worldToWnd"] = {[=[]=], [=[class_m_o_a_i_layer2_d.html#aef3fdd34de593466f4acd4603518c6a7]=]},
  1167.  
  1168. MOAILayerBridge = [=[2D transform for connecting transforms across scenes. Useful for HUD overlay items and map pins]=],
  1169. ["MOAILayerBridge.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1170. ["MOAILayerBridge.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1171. ["MOAILayerBridge.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1172. ["MOAILayerBridge.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1173. ["MOAILayerBridge.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1174. ["MOAILayerBridge.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1175. ["MOAILayerBridge.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1176. ["MOAILayerBridge.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1177. ["MOAILayerBridge.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1178. ["MOAILayerBridge.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1179. ["MOAILayerBridge.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1180. ["MOAILayerBridge.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1181. ["MOAILayerBridge.init"] = {[=[]=], [=[class_m_o_a_i_layer_bridge.html#a7bf57b051d2906c7691ceca63978b7cf]=]},
  1182. ["MOAILayerBridge.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1183. ["MOAILayerBridge.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1184. ["MOAILayerBridge.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1185. ["MOAILayerBridge.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1186. ["MOAILayerBridge.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1187. ["MOAILayerBridge.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1188. ["MOAILayerBridge.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1189. ["MOAILayerBridge.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1190. ["MOAILayerBridge.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1191. ["MOAILayerBridge.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1192. ["MOAILayerBridge.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1193. ["MOAILayerBridge.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1194. ["MOAILayerBridge.setParent"] = {[=[]=], [=[class_m_o_a_i_transform.html#ade884083513de1ef87979cf0de5f5b89]=]},
  1195. ["MOAILayerBridge.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1196. ["MOAILayerBridge.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1197. ["MOAILayerBridge.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1198. ["MOAILayerBridge.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1199. ["MOAILayerBridge.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1200. ["MOAILayerBridge.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1201. ["MOAILayerBridge.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1202.  
  1203. MOAILocationSensor = [=[Location services sensor]=],
  1204. ["MOAILocationSensor.getLocation"] = {[=[]=], [=[class_m_o_a_i_location_sensor.html#ae1e7ec5e7ca70530d5104467bbf0552c]=]},
  1205. ["MOAILocationSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_location_sensor.html#a743c1592959aa50b52a777d668d045e4]=]},
  1206.  
  1207. MOAILogMgr = [=[Singleton for managing debug log messages and log level.]=],
  1208. ["MOAILogMgr.closeFile"] = {[=[]=], [=[class_m_o_a_i_log_mgr.html#a2de1f68d3712e9760c296f42c18611f4]=]},
  1209. ["MOAILogMgr.isDebugBuild"] = {[=[]=], [=[class_m_o_a_i_log_mgr.html#ab5ea5e77292f32b433a14f9a6172aed9]=]},
  1210. ["MOAILogMgr.log"] = {[=[]=], [=[class_m_o_a_i_log_mgr.html#a55245afce863df5eede9362c04e00861]=]},
  1211. ["MOAILogMgr.openFile"] = {[=[]=], [=[class_m_o_a_i_log_mgr.html#a548be655ff8457dac2e13d690e14b62e]=]},
  1212. ["MOAILogMgr.registerLogMessage"] = {[=[]=], [=[class_m_o_a_i_log_mgr.html#a406cb57d354cd06224def2ac96e7577c]=]},
  1213. ["MOAILogMgr.setLogLevel"] = {[=[]=], [=[class_m_o_a_i_log_mgr.html#a00c691bc75af526bc7bdf9431b336518]=]},
  1214.  
  1215. MOAIMesh = [=[Loads a texture and renders the contents of a vertex buffer. Grid drawing not supported.]=],
  1216. ["MOAIMesh.setIndexBuffer"] = {[=[]=], [=[class_m_o_a_i_mesh.html#ab702dbabd0cdeaa29e619f1343b24745]=]},
  1217. ["MOAIMesh.setPenWidth"] = {[=[]=], [=[class_m_o_a_i_mesh.html#aa2b99e6cdd4cdc18e1ee8dc934d53798]=]},
  1218. ["MOAIMesh.setPointSize"] = {[=[]=], [=[class_m_o_a_i_mesh.html#a572e08648d3d6594b596dce591befa2d]=]},
  1219. ["MOAIMesh.setPrimType"] = {[=[]=], [=[class_m_o_a_i_mesh.html#ac2f673aeaa31196b25b2ca8d6a74449f]=]},
  1220. ["MOAIMesh.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  1221. ["MOAIMesh.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  1222. ["MOAIMesh.setVertexBuffer"] = {[=[]=], [=[class_m_o_a_i_mesh.html#a22833e212e96d353d42a3ab216be9b9b]=]},
  1223.  
  1224. MOAIMotionSensor = [=[Gravity/acceleration sensor]=],
  1225. ["MOAIMotionSensor.getLevel"] = {[=[]=], [=[class_m_o_a_i_motion_sensor.html#aa0830b12cd950e07c89f30c8ed8bc1a3]=]},
  1226. ["MOAIMotionSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_motion_sensor.html#a841560d27ae36ee037f53662313c037c]=]},
  1227.  
  1228. MOAIMultiTexture = [=[Attay of textures for multi-texturing]=],
  1229. ["MOAIMultiTexture.reserve"] = {[=[]=], [=[class_m_o_a_i_multi_texture.html#aba9531e3e509edd03ce6824025698dc7]=]},
  1230. ["MOAIMultiTexture.setTexture"] = {[=[]=], [=[class_m_o_a_i_multi_texture.html#a6fd3fa49594c61bb479f2d4cbfaf4def]=]},
  1231.  
  1232. MOAINode = [=[Base for all attribute bearing Moai objects and dependency graph nodes]=],
  1233. ["MOAINode.clearAttrLink"] = {[=[]=], [=[class_m_o_a_i_node.html#ad5d7b6842ddc21f359152031643e5bf3]=]},
  1234. ["MOAINode.clearNodeLink"] = {[=[]=], [=[class_m_o_a_i_node.html#af8fd4d2738ce1bf131d3102d82743efc]=]},
  1235. ["MOAINode.forceUpdate"] = {[=[]=], [=[class_m_o_a_i_node.html#a8c014abd0ba0cb3b58258a54729ac737]=]},
  1236. ["MOAINode.getAttr"] = {[=[]=], [=[class_m_o_a_i_node.html#a9421622aae5194d4c732541d3332c135]=]},
  1237. ["MOAINode.getAttrLink"] = {[=[]=], [=[class_m_o_a_i_node.html#a5a4577abd900bfd3bee54a2d98909812]=]},
  1238. ["MOAINode.moveAttr"] = {[=[]=], [=[class_m_o_a_i_node.html#aca16ec061f5743e81d54a6262ef77eba]=]},
  1239. ["MOAINode.scheduleUpdate"] = {[=[]=], [=[class_m_o_a_i_node.html#ac3d16335cfccd3664cec93675e037a09]=]},
  1240. ["MOAINode.seekAttr"] = {[=[]=], [=[class_m_o_a_i_node.html#ad84da1eb3c8ef39139cad9d6b6419938]=]},
  1241. ["MOAINode.setAttr"] = {[=[]=], [=[class_m_o_a_i_node.html#a18b791c8b9c76985c8c50e3c0c102dbf]=]},
  1242. ["MOAINode.setAttrLink"] = {[=[]=], [=[class_m_o_a_i_node.html#a16aba4c14ec49f4ea3ea8047cf33a970]=]},
  1243. ["MOAINode.setNodeLink"] = {[=[]=], [=[class_m_o_a_i_node.html#ac6f8d378b7a065ba2af9ce73fb400262]=]},
  1244.  
  1245. MOAINotificationsAndroid = [=[Wrapper for push notification integration on Android devices. Exposed to lua via MOAINotifications on all mobile platforms.]=],
  1246. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_REGISTRATION_COMPLETE"] = [=[Event code for notification registration completion.]=],
  1247. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_MESSAGE_RECEIVED"] = [=[Event code for a push notification message receipt.]=],
  1248. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_RESULT_REGISTERED"] = [=[Error code for a successful notification registration.]=],
  1249. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_RESULT_UNREGISTERED"] = [=[Error code for a successful notification deregistration.]=],
  1250. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_RESULT_ERROR"] = [=[Error code for a failed notification registration or deregistration.]=],
  1251. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_NONE"] = [=[Notification type none. Unused.]=],
  1252. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_BADGE"] = [=[Notification type icon badges. Unused.]=],
  1253. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_SOUND"] = [=[Notification type sound. Unused.]=],
  1254. ["MOAINotificationsAndroid.REMOTE_NOTIFICATION_ALERT"] = [=[Notification type alerts. Unused.]=],
  1255. ["MOAINotificationsAndroid.getAppIconBadgeNumber"] = {[=[]=], [=[class_m_o_a_i_notifications_android.html#ac40cb769942c8f4bf46705e0d635bace]=]},
  1256. ["MOAINotificationsAndroid.registerForRemoteNotifications"] = {[=[]=], [=[class_m_o_a_i_notifications_android.html#a13663ebadee575290670e296cb4fb528]=]},
  1257. ["MOAINotificationsAndroid.setAppIconBadgeNumber"] = {[=[]=], [=[class_m_o_a_i_notifications_android.html#a83f90f7fbbc3e208b911c710f5e38c9b]=]},
  1258. ["MOAINotificationsAndroid.unregisterForRemoteNotifications"] = {[=[]=], [=[class_m_o_a_i_notifications_android.html#a90ac6fe8888f6cab359f3463f5a73334]=]},
  1259.  
  1260. MOAINotificationsIOS = [=[Wrapper for push notification integration on iOS devices. Exposed to lua via MOAINotifications on all mobile platforms.]=],
  1261. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_REGISTRATION_COMPLETE"] = [=[Event code for notification registration completion.]=],
  1262. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_MESSAGE_RECEIVED"] = [=[Event code for a push notification message receipt.]=],
  1263. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_RESULT_REGISTERED"] = [=[Error code for a successful notification registration.]=],
  1264. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_RESULT_UNREGISTERED"] = [=[Error code for a successful notification deregistration.]=],
  1265. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_RESULT_ERROR"] = [=[Error code for a failed notification registration or deregistration.]=],
  1266. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_NONE"] = [=[Notification type none.]=],
  1267. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_BADGE"] = [=[Notification type icon badges.]=],
  1268. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_SOUND"] = [=[Notification type sound.]=],
  1269. ["MOAINotificationsIOS.REMOTE_NOTIFICATION_ALERT"] = [=[Notification type alerts.]=],
  1270. ["MOAINotificationsIOS.getAppIconBadgeNumber"] = {[=[]=], [=[class_m_o_a_i_notifications_i_o_s.html#ab6fbd506e366402d91ef21b67977a63a]=]},
  1271. ["MOAINotificationsIOS.registerForRemoteNotifications"] = {[=[]=], [=[class_m_o_a_i_notifications_i_o_s.html#ab6b470fcb743b8cb1782a03b9b4ea6ba]=]},
  1272. ["MOAINotificationsIOS.setAppIconBadgeNumber"] = {[=[]=], [=[class_m_o_a_i_notifications_i_o_s.html#a5e3c084ad176f605f4f68282b247d4a8]=]},
  1273. ["MOAINotificationsIOS.unregisterForRemoteNotifications"] = {[=[]=], [=[class_m_o_a_i_notifications_i_o_s.html#a02cede09431d00438bddb4f4f35779bb]=]},
  1274.  
  1275. MOAIParser = [=[Parses strings using a LALR parser. Generates an abstract syntax tree that may then be traversed in Lua. To use, load a CGT file generated by GOLD Parser Builder. Thanks to Devin Cook: http://www.devincook.com/goldparser]=],
  1276. ["MOAIParser.loadFile"] = {[=[]=], [=[class_m_o_a_i_parser.html#a3d23734f413ad57d0c11bf02bac00370]=]},
  1277. ["MOAIParser.loadRules"] = {[=[]=], [=[class_m_o_a_i_parser.html#aba6dce9153c613b8b759d13d51ec33d5]=]},
  1278. ["MOAIParser.loadString"] = {[=[]=], [=[class_m_o_a_i_parser.html#a19543ef5d1fd87afbdfe893866b5f7f4]=]},
  1279. ["MOAIParser.setCallbacks"] = {[=[]=], [=[class_m_o_a_i_parser.html#a2ef3fdb71baf79c3a10809a1b5f31dff]=]},
  1280. ["MOAIParser.traverse"] = {[=[]=], [=[class_m_o_a_i_parser.html#ac8b75d48852c96926347e9185db0901d]=]},
  1281.  
  1282. MOAIParticleDistanceEmitter = [=[Particle emitter]=],
  1283. ["MOAIParticleDistanceEmitter.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1284. ["MOAIParticleDistanceEmitter.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1285. ["MOAIParticleDistanceEmitter.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1286. ["MOAIParticleDistanceEmitter.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1287. ["MOAIParticleDistanceEmitter.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1288. ["MOAIParticleDistanceEmitter.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1289. ["MOAIParticleDistanceEmitter.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1290. ["MOAIParticleDistanceEmitter.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1291. ["MOAIParticleDistanceEmitter.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1292. ["MOAIParticleDistanceEmitter.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1293. ["MOAIParticleDistanceEmitter.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1294. ["MOAIParticleDistanceEmitter.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1295. ["MOAIParticleDistanceEmitter.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1296. ["MOAIParticleDistanceEmitter.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1297. ["MOAIParticleDistanceEmitter.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1298. ["MOAIParticleDistanceEmitter.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1299. ["MOAIParticleDistanceEmitter.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1300. ["MOAIParticleDistanceEmitter.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1301. ["MOAIParticleDistanceEmitter.reset"] = {[=[]=], [=[class_m_o_a_i_particle_distance_emitter.html#ae5f07477182905d7264f8945f9666661]=]},
  1302. ["MOAIParticleDistanceEmitter.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1303. ["MOAIParticleDistanceEmitter.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1304. ["MOAIParticleDistanceEmitter.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1305. ["MOAIParticleDistanceEmitter.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1306. ["MOAIParticleDistanceEmitter.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1307. ["MOAIParticleDistanceEmitter.setAngle"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a53a31e1fc59cca342dde41b2c179ccfa]=]},
  1308. ["MOAIParticleDistanceEmitter.setDistance"] = {[=[]=], [=[class_m_o_a_i_particle_distance_emitter.html#a4b96a02fcf6d9ad05ffcd350cd4efdfe]=]},
  1309. ["MOAIParticleDistanceEmitter.setEmission"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a04faf568f79711def9979bfbf29e3815]=]},
  1310. ["MOAIParticleDistanceEmitter.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1311. ["MOAIParticleDistanceEmitter.setMagnitude"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a92238fc77234c796278773a0ac05a09a]=]},
  1312. ["MOAIParticleDistanceEmitter.setParent"] = {[=[]=], [=[class_m_o_a_i_transform.html#ade884083513de1ef87979cf0de5f5b89]=]},
  1313. ["MOAIParticleDistanceEmitter.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1314. ["MOAIParticleDistanceEmitter.setRadius"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a5d8816a5b2d208e6d90b3bcb1c8c03ce]=]},
  1315. ["MOAIParticleDistanceEmitter.setRect"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a228cda63a81c2cc65fa2660e8a18515b]=]},
  1316. ["MOAIParticleDistanceEmitter.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1317. ["MOAIParticleDistanceEmitter.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1318. ["MOAIParticleDistanceEmitter.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1319. ["MOAIParticleDistanceEmitter.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1320. ["MOAIParticleDistanceEmitter.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1321. ["MOAIParticleDistanceEmitter.setSystem"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a41f0565d1c4b539602d5cf61decf0344]=]},
  1322. ["MOAIParticleDistanceEmitter.surge"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a58141b7cfffa972b3576b71b21efc9b5]=]},
  1323. ["MOAIParticleDistanceEmitter.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1324.  
  1325. MOAIParticleEmitter = [=[Particle emitter]=],
  1326. ["MOAIParticleEmitter.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1327. ["MOAIParticleEmitter.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1328. ["MOAIParticleEmitter.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1329. ["MOAIParticleEmitter.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1330. ["MOAIParticleEmitter.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1331. ["MOAIParticleEmitter.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1332. ["MOAIParticleEmitter.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1333. ["MOAIParticleEmitter.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1334. ["MOAIParticleEmitter.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1335. ["MOAIParticleEmitter.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1336. ["MOAIParticleEmitter.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1337. ["MOAIParticleEmitter.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1338. ["MOAIParticleEmitter.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1339. ["MOAIParticleEmitter.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1340. ["MOAIParticleEmitter.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1341. ["MOAIParticleEmitter.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1342. ["MOAIParticleEmitter.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1343. ["MOAIParticleEmitter.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1344. ["MOAIParticleEmitter.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1345. ["MOAIParticleEmitter.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1346. ["MOAIParticleEmitter.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1347. ["MOAIParticleEmitter.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1348. ["MOAIParticleEmitter.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1349. ["MOAIParticleEmitter.setAngle"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a53a31e1fc59cca342dde41b2c179ccfa]=]},
  1350. ["MOAIParticleEmitter.setEmission"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a04faf568f79711def9979bfbf29e3815]=]},
  1351. ["MOAIParticleEmitter.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1352. ["MOAIParticleEmitter.setMagnitude"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a92238fc77234c796278773a0ac05a09a]=]},
  1353. ["MOAIParticleEmitter.setParent"] = {[=[]=], [=[class_m_o_a_i_transform.html#ade884083513de1ef87979cf0de5f5b89]=]},
  1354. ["MOAIParticleEmitter.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1355. ["MOAIParticleEmitter.setRadius"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a5d8816a5b2d208e6d90b3bcb1c8c03ce]=]},
  1356. ["MOAIParticleEmitter.setRect"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a228cda63a81c2cc65fa2660e8a18515b]=]},
  1357. ["MOAIParticleEmitter.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1358. ["MOAIParticleEmitter.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1359. ["MOAIParticleEmitter.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1360. ["MOAIParticleEmitter.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1361. ["MOAIParticleEmitter.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1362. ["MOAIParticleEmitter.setSystem"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a41f0565d1c4b539602d5cf61decf0344]=]},
  1363. ["MOAIParticleEmitter.surge"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a58141b7cfffa972b3576b71b21efc9b5]=]},
  1364. ["MOAIParticleEmitter.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1365.  
  1366. MOAIParticleForce = [=[Particle force.]=],
  1367. ["MOAIParticleForce.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1368. ["MOAIParticleForce.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1369. ["MOAIParticleForce.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1370. ["MOAIParticleForce.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1371. ["MOAIParticleForce.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1372. ["MOAIParticleForce.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1373. ["MOAIParticleForce.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1374. ["MOAIParticleForce.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1375. ["MOAIParticleForce.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1376. ["MOAIParticleForce.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1377. ["MOAIParticleForce.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1378. ["MOAIParticleForce.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1379. ["MOAIParticleForce.initAttractor"] = {[=[]=], [=[class_m_o_a_i_particle_force.html#ad7b8c90a5cf354aa6abb79ee89a98f03]=]},
  1380. ["MOAIParticleForce.initBasin"] = {[=[]=], [=[class_m_o_a_i_particle_force.html#a5268cf8468c39e27e795a7dd37576c9a]=]},
  1381. ["MOAIParticleForce.initLinear"] = {[=[]=], [=[class_m_o_a_i_particle_force.html#a6b761d38256d239e708f720f685566dd]=]},
  1382. ["MOAIParticleForce.initRadial"] = {[=[]=], [=[class_m_o_a_i_particle_force.html#a68ba8f6e6c7cccf57ccc4f8c367f2207]=]},
  1383. ["MOAIParticleForce.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1384. ["MOAIParticleForce.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1385. ["MOAIParticleForce.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1386. ["MOAIParticleForce.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1387. ["MOAIParticleForce.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1388. ["MOAIParticleForce.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1389. ["MOAIParticleForce.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1390. ["MOAIParticleForce.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1391. ["MOAIParticleForce.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1392. ["MOAIParticleForce.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1393. ["MOAIParticleForce.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1394. ["MOAIParticleForce.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1395. ["MOAIParticleForce.setParent"] = {[=[]=], [=[class_m_o_a_i_transform.html#ade884083513de1ef87979cf0de5f5b89]=]},
  1396. ["MOAIParticleForce.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1397. ["MOAIParticleForce.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1398. ["MOAIParticleForce.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1399. ["MOAIParticleForce.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1400. ["MOAIParticleForce.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1401. ["MOAIParticleForce.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1402. ["MOAIParticleForce.setType"] = {[=[]=], [=[class_m_o_a_i_particle_force.html#a484973f4269a6e119b4b9f8b0c0f5a9c]=]},
  1403. ["MOAIParticleForce.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1404.  
  1405. MOAIParticlePlugin = [=[Allows custom particle processing via C language callbacks]=],
  1406. ["MOAIParticlePlugin.getSize"] = {[=[]=], [=[class_m_o_a_i_particle_plugin.html#a122280c4a200233ddd87d91501e0505b]=]},
  1407.  
  1408. MOAIParticleScript = [=[Particle script.]=],
  1409. ["MOAIParticleScript.add"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a3b113a9772248eb038fa46f7434f0336]=]},
  1410. ["MOAIParticleScript.cos"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a3a92b889775390a90d91f21668d1afe0]=]},
  1411. ["MOAIParticleScript.cycle"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a87d5adbda54bb908f3e22659553a0c70]=]},
  1412. ["MOAIParticleScript.div"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a5aea0591e1664c43d75236eb500b3941]=]},
  1413. ["MOAIParticleScript.ease"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a38a0d9ebfac509b9e70b4e4b3c58bd01]=]},
  1414. ["MOAIParticleScript.easeDelta"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a61132a551ee62705fd738048f6ea7271]=]},
  1415. ["MOAIParticleScript.mul"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a061ec6090c08e2d3508d82cd431df165]=]},
  1416. ["MOAIParticleScript.packConst"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a7895252c08b8664e1bb1edfe60890670]=]},
  1417. ["MOAIParticleScript.packReg"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a42e329401ac41f99bf900366266c45ff]=]},
  1418. ["MOAIParticleScript.rand"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#aa9103ed0deaa9399369f58724214e158]=]},
  1419. ["MOAIParticleScript.randVec"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a0368d96f37c15356cf14b9b4af606737]=]},
  1420. ["MOAIParticleScript.set"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a475e635745ffdb9269fb1183317e8ecb]=]},
  1421. ["MOAIParticleScript.sin"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#ad21c2028cdac8f906581b2bf12a4cb48]=]},
  1422. ["MOAIParticleScript.sprite"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a4041a9aa7798a1ddf9750e8feffa7a2b]=]},
  1423. ["MOAIParticleScript.sub"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#ac54ccbe059d4c6dd4a8bd7d19c04bed8]=]},
  1424. ["MOAIParticleScript.tan"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a029328cf29ae48a4a93854fc03b9386f]=]},
  1425. ["MOAIParticleScript.time"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#aeb8ef98cc3d0fc3da291433f3edbfe57]=]},
  1426. ["MOAIParticleScript.vecAngle"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a969bf92eca680459473f2a7a4b148ee7]=]},
  1427. ["MOAIParticleScript.wrap"] = {[=[]=], [=[class_m_o_a_i_particle_script.html#a455884682de95ad0d49a233b4e73a330]=]},
  1428.  
  1429. MOAIParticleState = [=[Particle state]=],
  1430. ["MOAIParticleState.clearForces"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#a1f8dfd060b557070e5a7081f00f0d1bc]=]},
  1431. ["MOAIParticleState.pushForce"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#a6136d728d5b42e9a9c5ef80f1e54c629]=]},
  1432. ["MOAIParticleState.setDamping"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#aaaa8da6f463c09a654a999b01ac00e51]=]},
  1433. ["MOAIParticleState.setInitScript"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#acb3f6989250725c79518b3f52dba63ea]=]},
  1434. ["MOAIParticleState.setMass"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#aaa6701f078c9b14397c229ff22694049]=]},
  1435. ["MOAIParticleState.setNext"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#a2aea88092ebba614ac4518a31019ea8b]=]},
  1436. ["MOAIParticleState.setPlugin"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#a0d89a22662f95c2104f2a2c75245527c]=]},
  1437. ["MOAIParticleState.setRenderScript"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#a42c4e76728a24bbf2bbceddf2d58dd5a]=]},
  1438. ["MOAIParticleState.setTerm"] = {[=[]=], [=[class_m_o_a_i_particle_state.html#a4b293a683e931306e69b1b16591bb4ee]=]},
  1439.  
  1440. MOAIParticleSystem = [=[Particle system]=],
  1441. ["MOAIParticleSystem.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1442. ["MOAIParticleSystem.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1443. ["MOAIParticleSystem.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1444. ["MOAIParticleSystem.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1445. ["MOAIParticleSystem.capParticles"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a4cf57696fa40fc85a6f0c64caf47f2ac]=]},
  1446. ["MOAIParticleSystem.capSprites"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a8d55e337c425cb69ba6220d48c080331]=]},
  1447. ["MOAIParticleSystem.clearSprites"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#ae4c7020a9c5a38f7715039dac11e6baf]=]},
  1448. ["MOAIParticleSystem.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1449. ["MOAIParticleSystem.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1450. ["MOAIParticleSystem.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1451. ["MOAIParticleSystem.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1452. ["MOAIParticleSystem.getState"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#ae0485666f2d4502e229b69b81b6b1e4c]=]},
  1453. ["MOAIParticleSystem.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1454. ["MOAIParticleSystem.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1455. ["MOAIParticleSystem.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1456. ["MOAIParticleSystem.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1457. ["MOAIParticleSystem.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1458. ["MOAIParticleSystem.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1459. ["MOAIParticleSystem.moveColor"] = {[=[]=], [=[class_m_o_a_i_color.html#a04a45c7fac26dc38ecad468b6ecb6c42]=]},
  1460. ["MOAIParticleSystem.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1461. ["MOAIParticleSystem.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1462. ["MOAIParticleSystem.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1463. ["MOAIParticleSystem.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1464. ["MOAIParticleSystem.pushParticle"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a892b4b9e2cbde1a9b24d155493525668]=]},
  1465. ["MOAIParticleSystem.pushSprite"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#ab3222ae0c57210a6262c578d062403c8]=]},
  1466. ["MOAIParticleSystem.reserveParticles"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a9b8e1a8df0c39397d7eaa6ed79212519]=]},
  1467. ["MOAIParticleSystem.reserveSprites"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a82cfa734cc756db85ab2dd25219cfe70]=]},
  1468. ["MOAIParticleSystem.reserveStates"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a90dfd1eeb5c59d2fcc192af2ce00fc07]=]},
  1469. ["MOAIParticleSystem.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1470. ["MOAIParticleSystem.seekColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ad65bf55d287cde9961adf426d3d92fa1]=]},
  1471. ["MOAIParticleSystem.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1472. ["MOAIParticleSystem.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1473. ["MOAIParticleSystem.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1474. ["MOAIParticleSystem.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1475. ["MOAIParticleSystem.setColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ab3634e8f57dcb7322a31fe3440b569fe]=]},
  1476. ["MOAIParticleSystem.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1477. ["MOAIParticleSystem.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1478. ["MOAIParticleSystem.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1479. ["MOAIParticleSystem.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1480. ["MOAIParticleSystem.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1481. ["MOAIParticleSystem.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1482. ["MOAIParticleSystem.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1483. ["MOAIParticleSystem.setSpriteColor"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a4085bc62e420635a9006129411dc85dc]=]},
  1484. ["MOAIParticleSystem.setSpriteDeckIdx"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a6bebceb752fb625ac67cd39b3466661e]=]},
  1485. ["MOAIParticleSystem.setState"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#a153d25f41718a5e32fee01022b568a98]=]},
  1486. ["MOAIParticleSystem.surge"] = {[=[]=], [=[class_m_o_a_i_particle_system.html#af51c68be2e5bf5f2d89739119fc21f0f]=]},
  1487. ["MOAIParticleSystem.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1488.  
  1489. MOAIParticleTimedEmitter = [=[Particle emitter]=],
  1490. ["MOAIParticleTimedEmitter.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1491. ["MOAIParticleTimedEmitter.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1492. ["MOAIParticleTimedEmitter.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1493. ["MOAIParticleTimedEmitter.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1494. ["MOAIParticleTimedEmitter.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1495. ["MOAIParticleTimedEmitter.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1496. ["MOAIParticleTimedEmitter.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1497. ["MOAIParticleTimedEmitter.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1498. ["MOAIParticleTimedEmitter.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1499. ["MOAIParticleTimedEmitter.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1500. ["MOAIParticleTimedEmitter.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1501. ["MOAIParticleTimedEmitter.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1502. ["MOAIParticleTimedEmitter.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1503. ["MOAIParticleTimedEmitter.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1504. ["MOAIParticleTimedEmitter.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1505. ["MOAIParticleTimedEmitter.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1506. ["MOAIParticleTimedEmitter.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1507. ["MOAIParticleTimedEmitter.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1508. ["MOAIParticleTimedEmitter.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1509. ["MOAIParticleTimedEmitter.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1510. ["MOAIParticleTimedEmitter.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1511. ["MOAIParticleTimedEmitter.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1512. ["MOAIParticleTimedEmitter.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1513. ["MOAIParticleTimedEmitter.setAngle"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a53a31e1fc59cca342dde41b2c179ccfa]=]},
  1514. ["MOAIParticleTimedEmitter.setEmission"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a04faf568f79711def9979bfbf29e3815]=]},
  1515. ["MOAIParticleTimedEmitter.setFrequency"] = {[=[]=], [=[class_m_o_a_i_particle_timed_emitter.html#a8b2e37c1fc6bb500adb3b06c8843230a]=]},
  1516. ["MOAIParticleTimedEmitter.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1517. ["MOAIParticleTimedEmitter.setMagnitude"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a92238fc77234c796278773a0ac05a09a]=]},
  1518. ["MOAIParticleTimedEmitter.setParent"] = {[=[]=], [=[class_m_o_a_i_transform.html#ade884083513de1ef87979cf0de5f5b89]=]},
  1519. ["MOAIParticleTimedEmitter.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1520. ["MOAIParticleTimedEmitter.setRadius"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a5d8816a5b2d208e6d90b3bcb1c8c03ce]=]},
  1521. ["MOAIParticleTimedEmitter.setRect"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a228cda63a81c2cc65fa2660e8a18515b]=]},
  1522. ["MOAIParticleTimedEmitter.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1523. ["MOAIParticleTimedEmitter.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1524. ["MOAIParticleTimedEmitter.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1525. ["MOAIParticleTimedEmitter.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1526. ["MOAIParticleTimedEmitter.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1527. ["MOAIParticleTimedEmitter.setSystem"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a41f0565d1c4b539602d5cf61decf0344]=]},
  1528. ["MOAIParticleTimedEmitter.surge"] = {[=[]=], [=[class_m_o_a_i_particle_emitter.html#a58141b7cfffa972b3576b71b21efc9b5]=]},
  1529. ["MOAIParticleTimedEmitter.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1530.  
  1531. MOAIPartition = [=[Class for optimizing spatial queries against sets of primitives. Configure for performance; default behavior is a simple list.]=],
  1532. ["MOAIPartition.clear"] = {[=[]=], [=[class_m_o_a_i_partition.html#aeb75777b95f23e02127b85153a24720a]=]},
  1533. ["MOAIPartition.insertProp"] = {[=[]=], [=[class_m_o_a_i_partition.html#a3f2f5aab28774133bf9984fce1f43790]=]},
  1534. ["MOAIPartition.propForPoint"] = {[=[]=], [=[class_m_o_a_i_partition.html#adf0046e0c3d8ce69522b30a40485bb1c]=]},
  1535. ["MOAIPartition.propListForPoint"] = {[=[]=], [=[class_m_o_a_i_partition.html#a9d2e1a3c96320e22782350347f9625e9]=]},
  1536. ["MOAIPartition.propListForRect"] = {[=[]=], [=[class_m_o_a_i_partition.html#adc05f3a49f5bccc7b6a8be630bee6ecd]=]},
  1537. ["MOAIPartition.removeProp"] = {[=[]=], [=[class_m_o_a_i_partition.html#a0c5acfa11b59f1e71256406ef9c2d21d]=]},
  1538. ["MOAIPartition.reserveLevels"] = {[=[]=], [=[class_m_o_a_i_partition.html#a0fee1c6441222d4d52e3f189a0a97cb8]=]},
  1539. ["MOAIPartition.setLevel"] = {[=[]=], [=[class_m_o_a_i_partition.html#aceacb6ea7f5b4ac7b8eac6884aeb185c]=]},
  1540. ["MOAIPartition.setPlane"] = {[=[]=], [=[class_m_o_a_i_partition.html#ac7a6a02b740f2d3e4eb8f1d5d4584c91]=]},
  1541.  
  1542. MOAIPartitionResultBuffer = [=[Class for optimizing spatial queries against sets of primitives. Configure for performance; default behavior is a simple list]=],
  1543.  
  1544. MOAIPathFinder = [=[Object for maintaining pathfinding state]=],
  1545. ["MOAIPathFinder.findPath"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#aef87bf10bf04ce55a55721cd02a11196]=]},
  1546. ["MOAIPathFinder.getGraph"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#a999275e7c922b7d2ab98604633b2c957]=]},
  1547. ["MOAIPathFinder.getPathEntry"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#a128aac0ca87e8427d3af65b698eb3cb8]=]},
  1548. ["MOAIPathFinder.getPathSize"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#a24029a4acf7ef03d7f830f88ab306532]=]},
  1549. ["MOAIPathFinder.init"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#ac3808037743ece4f39868fe922094622]=]},
  1550. ["MOAIPathFinder.reserveTerrainWeights"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#a91a9d1b1895a2fd8ccacff03479290a5]=]},
  1551. ["MOAIPathFinder.setFlags"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#ac7e008bbccaaf4f8dc31c524debffaf2]=]},
  1552. ["MOAIPathFinder.setGraph"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#a7943bdac42c985092cecc67e91bd061c]=]},
  1553. ["MOAIPathFinder.setHeuristic"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#aed0492f8a933e10cb21aadf003d5e3d3]=]},
  1554. ["MOAIPathFinder.setTerrainDeck"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#aad5ef0e75b68c6d07943beb8d57a3ddc]=]},
  1555. ["MOAIPathFinder.setTerrainScale"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#a1c0f20fce87fad415b2822807a8c02e2]=]},
  1556. ["MOAIPathFinder.setWeight"] = {[=[]=], [=[class_m_o_a_i_path_finder.html#ae24605df10047313a05cf11f0b823a85]=]},
  1557.  
  1558. MOAIPathTerrainDeck = [=[Terrain specifications for use with pathfinding graphs. Contains indexed terrain types for graph nodes]=],
  1559. ["MOAIPathTerrainDeck.getMask"] = {[=[]=], [=[class_m_o_a_i_path_terrain_deck.html#a178df7431ddfddf396a97faf48ff8148]=]},
  1560. ["MOAIPathTerrainDeck.getTerrainVec"] = {[=[]=], [=[class_m_o_a_i_path_terrain_deck.html#a0381d0a3d792e64984e1961a597293a9]=]},
  1561. ["MOAIPathTerrainDeck.reserve"] = {[=[]=], [=[class_m_o_a_i_path_terrain_deck.html#a8cd0f542f3f59fa6e0c18e55008e9298]=]},
  1562. ["MOAIPathTerrainDeck.setMask"] = {[=[]=], [=[class_m_o_a_i_path_terrain_deck.html#ae6dfa8c0dc5f6c7a8850c41df686c468]=]},
  1563. ["MOAIPathTerrainDeck.setTerrainVec"] = {[=[]=], [=[class_m_o_a_i_path_terrain_deck.html#a259bba957bdd525af1a51c337d936899]=]},
  1564.  
  1565. MOAIPointerSensor = [=[Pointer sensor]=],
  1566. ["MOAIPointerSensor.getLoc"] = {[=[]=], [=[class_m_o_a_i_pointer_sensor.html#a91dabfd4086a1083120695313ff30031]=]},
  1567. ["MOAIPointerSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_pointer_sensor.html#aabab289960e52223c807339a7a3d6b62]=]},
  1568.  
  1569. MOAIProp = [=[Base class for props.]=],
  1570. ["MOAIProp.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1571. ["MOAIProp.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1572. ["MOAIProp.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1573. ["MOAIProp.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1574. ["MOAIProp.getBounds"] = {[=[]=], [=[class_m_o_a_i_prop.html#a306522f83c72d0190161e6c9979bc0d1]=]},
  1575. ["MOAIProp.getGrid"] = {[=[]=], [=[class_m_o_a_i_prop.html#a3cbd5da7234e3b01f02cf074247c2509]=]},
  1576. ["MOAIProp.getIndex"] = {[=[]=], [=[class_m_o_a_i_prop.html#a3ea8f54a01cd57cad486947a7e290655]=]},
  1577. ["MOAIProp.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1578. ["MOAIProp.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1579. ["MOAIProp.getPriority"] = {[=[]=], [=[class_m_o_a_i_prop.html#a4a91d8dcc4bde0dc856cd728bad72288]=]},
  1580. ["MOAIProp.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1581. ["MOAIProp.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1582. ["MOAIProp.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1583. ["MOAIProp.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1584. ["MOAIProp.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1585. ["MOAIProp.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1586. ["MOAIProp.inside"] = {[=[]=], [=[class_m_o_a_i_prop.html#a806d685c99695a9efee7ee2466baea37]=]},
  1587. ["MOAIProp.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1588. ["MOAIProp.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1589. ["MOAIProp.moveColor"] = {[=[]=], [=[class_m_o_a_i_color.html#a04a45c7fac26dc38ecad468b6ecb6c42]=]},
  1590. ["MOAIProp.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1591. ["MOAIProp.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1592. ["MOAIProp.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1593. ["MOAIProp.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1594. ["MOAIProp.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1595. ["MOAIProp.seekColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ad65bf55d287cde9961adf426d3d92fa1]=]},
  1596. ["MOAIProp.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1597. ["MOAIProp.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1598. ["MOAIProp.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1599. ["MOAIProp.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1600. ["MOAIProp.setBlendMode"] = {[=[]=], [=[class_m_o_a_i_prop.html#a347e1bb5aaf6007bb89cfc400d3409b1]=]},
  1601. ["MOAIProp.setColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ab3634e8f57dcb7322a31fe3440b569fe]=]},
  1602. ["MOAIProp.setCullMode"] = {[=[]=], [=[class_m_o_a_i_prop.html#a753ac848f14017d4c4893e571ce5ade7]=]},
  1603. ["MOAIProp.setDeck"] = {[=[]=], [=[class_m_o_a_i_prop.html#a335401e8cc89a58604526c4a9f7da0d3]=]},
  1604. ["MOAIProp.setDepthMask"] = {[=[]=], [=[class_m_o_a_i_prop.html#a2be3116f1a2614bfcd188dad64d33c61]=]},
  1605. ["MOAIProp.setDepthTest"] = {[=[]=], [=[class_m_o_a_i_prop.html#acb62f205d63436a2c9d38e2aff14ab1d]=]},
  1606. ["MOAIProp.setExpandForSort"] = {[=[]=], [=[class_m_o_a_i_prop.html#ad131ba80c7773f91627d553386709fb2]=]},
  1607. ["MOAIProp.setFrame"] = {[=[]=], [=[class_m_o_a_i_prop.html#a0e427ac907b368daff6fedf82a3769df]=]},
  1608. ["MOAIProp.setGrid"] = {[=[]=], [=[class_m_o_a_i_prop.html#ace27286845654750b71820108f4d9840]=]},
  1609. ["MOAIProp.setGridScale"] = {[=[]=], [=[class_m_o_a_i_prop.html#a2151d680b9a4e60300fa248ec9c03c4f]=]},
  1610. ["MOAIProp.setIndex"] = {[=[]=], [=[class_m_o_a_i_prop.html#ad6c82fdd0d1b02df787b31a4f7fe0738]=]},
  1611. ["MOAIProp.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1612. ["MOAIProp.setParent"] = {[=[]=], [=[class_m_o_a_i_prop.html#a432e4c2721b6498bc4db347269e52d3c]=]},
  1613. ["MOAIProp.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1614. ["MOAIProp.setPriority"] = {[=[]=], [=[class_m_o_a_i_prop.html#a83459f7f57a8a58059336104cd7e3bf3]=]},
  1615. ["MOAIProp.setRemapper"] = {[=[]=], [=[class_m_o_a_i_prop.html#aacf0e403ca90c6ae40afb90b2fd5ea85]=]},
  1616. ["MOAIProp.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1617. ["MOAIProp.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1618. ["MOAIProp.setShader"] = {[=[]=], [=[class_m_o_a_i_prop.html#acc9eaebd0d48c548994b2a0f2cd7d138]=]},
  1619. ["MOAIProp.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1620. ["MOAIProp.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1621. ["MOAIProp.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1622. ["MOAIProp.setTexture"] = {[=[]=], [=[class_m_o_a_i_prop.html#a1b20d65127cb462158ba381660284ee5]=]},
  1623. ["MOAIProp.setUVTransform"] = {[=[]=], [=[class_m_o_a_i_prop.html#a380b73241446cd0d2c6d2af19f66ec72]=]},
  1624. ["MOAIProp.setVisible"] = {[=[]=], [=[class_m_o_a_i_prop.html#a2172da2d6cbe05c96872eb0b7db9be44]=]},
  1625. ["MOAIProp.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1626.  
  1627. MOAIProp2D = [=[2D prop]=],
  1628. ["MOAIProp2D.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a34771c207808995c983bcfacb43e52e6]=]},
  1629. ["MOAIProp2D.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a986eebb850eb075f5b3eee7845d220d8]=]},
  1630. ["MOAIProp2D.addRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a12c6766cba3d4837ad2f908fc1396b24]=]},
  1631. ["MOAIProp2D.addScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#adc2004fb55aa44c9aa22a42d5a4e7edd]=]},
  1632. ["MOAIProp2D.getGrid"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a0f8ce765a8c44b4cba0a789259081faf]=]},
  1633. ["MOAIProp2D.getIndex"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#ab495e8c05c2a0c56269462e4faf7e0db]=]},
  1634. ["MOAIProp2D.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a22400e631257974bfb0b9e3c7e3d6bd5]=]},
  1635. ["MOAIProp2D.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a52fbedf1bcac8c3469b1f01aa15b54d1]=]},
  1636. ["MOAIProp2D.getPriority"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a40dd1adae2328e20e89e95a6f623b150]=]},
  1637. ["MOAIProp2D.getRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a0cbf9b7aaa273c54c5b14549081836e9]=]},
  1638. ["MOAIProp2D.getScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a08901ef30601e4f9d5f1b3dca8ef4d12]=]},
  1639. ["MOAIProp2D.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1640. ["MOAIProp2D.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1641. ["MOAIProp2D.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1642. ["MOAIProp2D.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1643. ["MOAIProp2D.inside"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a16e9fceeb76b14a91a2bf03e3e5e8815]=]},
  1644. ["MOAIProp2D.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ac97f3ef5eae9cda33dd9c2f3c2bee2ec]=]},
  1645. ["MOAIProp2D.move"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a703238a99b7ca35c859bc1fdd76a9184]=]},
  1646. ["MOAIProp2D.moveColor"] = {[=[]=], [=[class_m_o_a_i_color.html#a04a45c7fac26dc38ecad468b6ecb6c42]=]},
  1647. ["MOAIProp2D.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#acd24bff873fba8b018038ce04c9f5f88]=]},
  1648. ["MOAIProp2D.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a446e3db7377a0d2bb7e1c06bfcff7e64]=]},
  1649. ["MOAIProp2D.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ade2136ff1eae1768f3822439c0e70810]=]},
  1650. ["MOAIProp2D.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a7fe326ef7c8a4a6537edd312a1a0c2d1]=]},
  1651. ["MOAIProp2D.seek"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#aa7918b8f605b9de6c14f91b62db5f409]=]},
  1652. ["MOAIProp2D.seekColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ad65bf55d287cde9961adf426d3d92fa1]=]},
  1653. ["MOAIProp2D.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ab34624ae895862c12af8090f530323ad]=]},
  1654. ["MOAIProp2D.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abe524823923ede68c87a717e7648f777]=]},
  1655. ["MOAIProp2D.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a2b6d6b49dc6d2c6c290e4bf41ec6caaf]=]},
  1656. ["MOAIProp2D.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a679e8851a6743fbcfea1df2589173b3a]=]},
  1657. ["MOAIProp2D.setBlendMode"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a9372a78d4db11ec2f7a5a21355e73511]=]},
  1658. ["MOAIProp2D.setColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ab3634e8f57dcb7322a31fe3440b569fe]=]},
  1659. ["MOAIProp2D.setCullMode"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a660cda22535029f153623523abf734f2]=]},
  1660. ["MOAIProp2D.setDeck"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a040a3ef000eb2b2de78b1a48337fb987]=]},
  1661. ["MOAIProp2D.setDepthMask"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#aaefd20308bed940ca37dc443e8fd97a0]=]},
  1662. ["MOAIProp2D.setDepthTest"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a87033fb204fea09b9baf45a78cdb0531]=]},
  1663. ["MOAIProp2D.setExpandForSort"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a560af68ad78fe00916a4923ccfc94cc4]=]},
  1664. ["MOAIProp2D.setFrame"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a20b7653c3a21fc2bad025c51d0db384e]=]},
  1665. ["MOAIProp2D.setGrid"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#ad46a46aad9821d2b90978825416894cb]=]},
  1666. ["MOAIProp2D.setGridScale"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#adcd90d04875aa496265077eb14e88973]=]},
  1667. ["MOAIProp2D.setIndex"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a0f47113a8fad4c6e768cf1c36df51d17]=]},
  1668. ["MOAIProp2D.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a127e63534b8cb2f4e4039fc353f2dc51]=]},
  1669. ["MOAIProp2D.setParent"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a5f64acf881a53c2f1e1436828f570589]=]},
  1670. ["MOAIProp2D.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abb6b327f54c2a9311dba6f319448d047]=]},
  1671. ["MOAIProp2D.setPriority"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a3785ab330903c3791f9729d64fa5fee2]=]},
  1672. ["MOAIProp2D.setRemapper"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#af4602263eadbd41af6cf5cbe04bf1284]=]},
  1673. ["MOAIProp2D.setRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ad1db6d6ced421380693d962192abaf9c]=]},
  1674. ["MOAIProp2D.setScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a1bfd891dd1c4421d8946d092a54d44df]=]},
  1675. ["MOAIProp2D.setShader"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a510f34f2d90c1367a54ccdee8631df59]=]},
  1676. ["MOAIProp2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#a3b31e86e822fce97d7e1f1c3e4319001]=]},
  1677. ["MOAIProp2D.setUVTransform"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#ae6cc70aa46d3478b8ce12ad13bfd516b]=]},
  1678. ["MOAIProp2D.setVisible"] = {[=[]=], [=[class_m_o_a_i_prop2_d.html#af8a9c022438d84630f671e0a668e7b21]=]},
  1679. ["MOAIProp2D.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a813d9eaec94392b3567cfb7e811b3e48]=]},
  1680.  
  1681. MOAIRenderable = [=[Abstract base class for objects that can be rendered by MOAIRenderMgr]=],
  1682.  
  1683. MOAIRenderMgr = [=[MOAIRenderMgr is responsible for drawing a list of MOAIRenderable objects. MOAIRenderable is the base class for any object that can be drawn. This includes MOAIProp and MOAILayer. To use MOAIRenderMgr pass a table of MOAIRenderable objects to MOAIRenderMgr.setRenderTable (). The table will usually be a stack of MOAILayer objects. The contents of the table will be rendered the next time a frame is drawn. Note that the table must be an array starting with index 1. Objects will be rendered counting from the base index until 'nil' is encountered. The render table may include other tables as entries. These must also be arrays indexed from 1]=],
  1684. ["MOAIRenderMgr.clearRenderStack"] = {[=[]=], [=[class_m_o_a_i_render_mgr.html#ad3f6417a34623df280a78ffbc5336052]=]},
  1685. ["MOAIRenderMgr.getRenderTable"] = {[=[]=], [=[class_m_o_a_i_render_mgr.html#a4baf52c7cb5f615f97937b6660d4e854]=]},
  1686. ["MOAIRenderMgr.popRenderPass"] = {[=[]=], [=[class_m_o_a_i_render_mgr.html#aad197f9f548903f0575e2bd274398854]=]},
  1687. ["MOAIRenderMgr.pushRenderPass"] = {[=[]=], [=[class_m_o_a_i_render_mgr.html#a52f2cc01c4ebf696db55d9471bff1c1b]=]},
  1688. ["MOAIRenderMgr.removeRenderPass"] = {[=[]=], [=[class_m_o_a_i_render_mgr.html#a3eb753746ceaa6927e9192f9ab66a82d]=]},
  1689. ["MOAIRenderMgr.setRenderTable"] = {[=[]=], [=[class_m_o_a_i_render_mgr.html#aa0bcf801b2935d71f2e09ed61d7e584b]=]},
  1690.  
  1691. MOAISafariIOS = [=[Wrapper for access to the native web browser]=],
  1692. ["MOAISafariIOS.openURL"] = {[=[]=], [=[class_m_o_a_i_safari_i_o_s.html#ae099502798f4360175d13c100266f665]=]},
  1693. ["MOAISafariIOS.openURLWithParams"] = {[=[]=], [=[class_m_o_a_i_safari_i_o_s.html#acb1ea50cf366b23f8adb6f2a2acb0129]=]},
  1694.  
  1695. MOAIScriptDeck = [=[Scriptable deck object]=],
  1696. ["MOAIScriptDeck.setDrawCallback"] = {[=[]=], [=[class_m_o_a_i_script_deck.html#a609d1c8d4b7548aa758cf10b099b3f5c]=]},
  1697. ["MOAIScriptDeck.setRect"] = {[=[]=], [=[class_m_o_a_i_script_deck.html#a91c6af013567b2ce45d8ab06eba79205]=]},
  1698. ["MOAIScriptDeck.setRectCallback"] = {[=[]=], [=[class_m_o_a_i_script_deck.html#a0b9bc0f06674a0d795ab84cf7bd7410d]=]},
  1699. ["MOAIScriptDeck.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  1700. ["MOAIScriptDeck.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  1701. ["MOAIScriptDeck.setTotalRectCallback"] = {[=[]=], [=[class_m_o_a_i_script_deck.html#acb16d8b36b01d052ebc68569c0a68d0e]=]},
  1702.  
  1703. MOAIScriptNode = [=[User scriptable dependency node. User may specify Lua callback to handle node updating as well as custom floating point attributes]=],
  1704. ["MOAIScriptNode.reserveAttrs"] = {[=[]=], [=[class_m_o_a_i_script_node.html#a25f8b1fcfec4573cae575cc41cd32b3a]=]},
  1705. ["MOAIScriptNode.setCallback"] = {[=[]=], [=[class_m_o_a_i_script_node.html#ac47d63b85fd4da3ca7bcaa5687ec680e]=]},
  1706.  
  1707. MOAISensor = [=[Base class for sensors]=],
  1708.  
  1709. MOAISerializer = [=[Manages serialization state of Lua tables and Moai objects. The serializer will produce a Lua script that, when executed, will return the ordered list of objects added to it using the serialize () function]=],
  1710. ["MOAISerializer.exportToFile"] = {[=[]=], [=[class_m_o_a_i_serializer.html#aaa84c58fe719ad9462dcacc40a24a654]=]},
  1711. ["MOAISerializer.exportToString"] = {[=[]=], [=[class_m_o_a_i_serializer.html#a48442b6b814f3d1927658f199eb2c699]=]},
  1712. ["MOAISerializer.serialize"] = {[=[]=], [=[class_m_o_a_i_serializer.html#af910f777327f220b27558a9b4136964f]=]},
  1713. ["MOAISerializer.serializeToFile"] = {[=[]=], [=[class_m_o_a_i_serializer.html#af8eb114a1b51bcf00a5de8ec406ab33f]=]},
  1714. ["MOAISerializer.serializeToString"] = {[=[]=], [=[class_m_o_a_i_serializer.html#a34645d54503fade09c51d39d62a1505c]=]},
  1715.  
  1716. MOAIShader = [=[Programmable shader class.]=],
  1717. ["MOAIShader.clearUniform"] = {[=[]=], [=[class_m_o_a_i_shader.html#afcb367410282eb79f1926397afd9b0dc]=]},
  1718. ["MOAIShader.declareUniform"] = {[=[]=], [=[class_m_o_a_i_shader.html#a395c45dd31d2141d391c7b6f55d64b36]=]},
  1719. ["MOAIShader.declareUniformFloat"] = {[=[]=], [=[class_m_o_a_i_shader.html#a0abad8e9060b1c2f67dc5b48100e1e13]=]},
  1720. ["MOAIShader.declareUniformInt"] = {[=[]=], [=[class_m_o_a_i_shader.html#a8902c9b2c68e05bd9e24e0b252233209]=]},
  1721. ["MOAIShader.declareUniformSampler"] = {[=[]=], [=[class_m_o_a_i_shader.html#ad2b270de55decb9668d84ee96e02ce89]=]},
  1722. ["MOAIShader.load"] = {[=[]=], [=[class_m_o_a_i_shader.html#a835eb4267ba3830cf50f4440f3292449]=]},
  1723. ["MOAIShader.reserveUniforms"] = {[=[]=], [=[class_m_o_a_i_shader.html#a7c1437a45659f27dedb66f69da49bb46]=]},
  1724. ["MOAIShader.setVertexAttribute"] = {[=[]=], [=[class_m_o_a_i_shader.html#a738c4de9a415b3c01788c40b6bc014a2]=]},
  1725.  
  1726. MOAIShaderMgr = [=[Shader presets. const DECK2D_SHADER const DECK2D_TEX_ONLY_SHADER const FONT_SHADER const LINE_SHADER const MESH_SHADER]=],
  1727. ["MOAIShaderMgr.getShader"] = {[=[]=], [=[class_m_o_a_i_shader_mgr.html#abb6859a8e578a87b56e3ffa13d2d7bfa]=]},
  1728.  
  1729. MOAISim = [=[Sim timing and settings class.]=],
  1730. ["MOAISim.EVENT_FINALIZE"] = [=[const SIM_LOOP_FORCE_STEP const SIM_LOOP_ALLOW_BOOST const SIM_LOOP_ALLOW_SPIN const SIM_LOOP_NO_DEFICIT const SIM_LOOP_NO_SURPLUS const SIM_LOOP_RESET_CLOCK const SIM_LOOP_ALLOW_SOAK const LOOP_FLAGS_DEFAULT const LOOP_FLAGS_FIXED const LOOP_FLAGS_MULTISTEP const DEFAULT_STEPS_PER_SECOND Value is 60 const DEFAULT_BOOST_THRESHOLD Value is 3 const DEFAULT_LONG_DELAY_THRESHOLD Value is 10 const DEFAULT_CPU_BUDGET Value is 2 const DEFAULT_STEP_MULTIPLIER Value is 1]=],
  1731. ["MOAISim.clearLoopFlags"] = {[=[]=], [=[class_m_o_a_i_sim.html#a6c9f29730492a000ed774d169c0eab6a]=]},
  1732. ["MOAISim.clearRenderStack"] = {[=[]=], [=[class_m_o_a_i_sim.html#ae548fbdfaa734a86de3b0c6f62ccddf6]=]},
  1733. ["MOAISim.enterFullscreenMode"] = {[=[]=], [=[class_m_o_a_i_sim.html#a2eac207fb5d15475af22ac56e5a2154a]=]},
  1734. ["MOAISim.exitFullscreenMode"] = {[=[]=], [=[class_m_o_a_i_sim.html#ad52f67095fa749b00a48367c3dc8a887]=]},
  1735. ["MOAISim.forceGarbageCollection"] = {[=[]=], [=[class_m_o_a_i_sim.html#a68c8298729457a936d7b35e2466def09]=]},
  1736. ["MOAISim.framesToTime"] = {[=[]=], [=[class_m_o_a_i_sim.html#a26a272aa426f3bc4a170ef604825ebc5]=]},
  1737. ["MOAISim.getDeviceTime"] = {[=[]=], [=[class_m_o_a_i_sim.html#a6887f368ff3fb3c5c26115943b7ce684]=]},
  1738. ["MOAISim.getElapsedFrames"] = {[=[]=], [=[class_m_o_a_i_sim.html#abc23714e3f6746f14427219a6f192dcc]=]},
  1739. ["MOAISim.getElapsedTime"] = {[=[]=], [=[class_m_o_a_i_sim.html#ac6239557c337014922ee1c375a362a8b]=]},
  1740. ["MOAISim.getLoopFlags"] = {[=[]=], [=[class_m_o_a_i_sim.html#a61f26685aac6137b5d09933333da2eee]=]},
  1741. ["MOAISim.getLuaObjectCount"] = {[=[]=], [=[class_m_o_a_i_sim.html#a01e3c6f6792e2053f8ac3b7cc9d7e844]=]},
  1742. ["MOAISim.getMemoryUsage"] = {[=[]=], [=[class_m_o_a_i_sim.html#a16a289996b961bff3c471fefe60e45c9]=]},
  1743. ["MOAISim.getPerformance"] = {[=[]=], [=[class_m_o_a_i_sim.html#ae5ae5c63b9bcafda0b7005104db1c581]=]},
  1744. ["MOAISim.getStep"] = {[=[]=], [=[class_m_o_a_i_sim.html#a1ca8a97ad301c2df2593a6a6622f26ad]=]},
  1745. ["MOAISim.openWindow"] = {[=[]=], [=[class_m_o_a_i_sim.html#aa182c08fe9c2ab1bccf4efc3bfa9589a]=]},
  1746. ["MOAISim.pauseTimer"] = {[=[]=], [=[class_m_o_a_i_sim.html#a626cb484e373ae9fb29681283d2daa80]=]},
  1747. ["MOAISim.popRenderPass"] = {[=[]=], [=[class_m_o_a_i_sim.html#af34ba8352dbd5e1f44bd62ec6ef3ccfa]=]},
  1748. ["MOAISim.pushRenderPass"] = {[=[]=], [=[class_m_o_a_i_sim.html#a563f28410be8bc1ba9ac0e4751b9cf97]=]},
  1749. ["MOAISim.removeRenderPass"] = {[=[]=], [=[class_m_o_a_i_sim.html#ae944df407df29664c411eab23a1ceea6]=]},
  1750. ["MOAISim.reportHistogram"] = {[=[]=], [=[class_m_o_a_i_sim.html#a9567149a3dc0c33f12b93f168f215bb9]=]},
  1751. ["MOAISim.reportLeaks"] = {[=[]=], [=[class_m_o_a_i_sim.html#acadf84e9e85b571fa3b4822fe69743a1]=]},
  1752. ["MOAISim.setBoostThreshold"] = {[=[]=], [=[class_m_o_a_i_sim.html#a8f7695311cd6f59ba8a1a9c6f9b07c2f]=]},
  1753. ["MOAISim.setCpuBudget"] = {[=[]=], [=[class_m_o_a_i_sim.html#abcee7f91a2e3390c137e423183f0a660]=]},
  1754. ["MOAISim.setHistogramEnabled"] = {[=[]=], [=[class_m_o_a_i_sim.html#a2e9fdcbb9b54354a2a49ab92b120f287]=]},
  1755. ["MOAISim.setLeakTrackingEnabled"] = {[=[]=], [=[class_m_o_a_i_sim.html#a6dc53c04e7169b407ff02bd4fc3f876e]=]},
  1756. ["MOAISim.setLongDelayThreshold"] = {[=[]=], [=[class_m_o_a_i_sim.html#ab8d1c76122f20409ee6b9f10d3660693]=]},
  1757. ["MOAISim.setLoopFlags"] = {[=[]=], [=[class_m_o_a_i_sim.html#a53cd16bafe66e6c6d0867b6cab996f72]=]},
  1758. ["MOAISim.setLuaAllocLogEnabled"] = {[=[]=], [=[class_m_o_a_i_sim.html#ace603170eb573145eb534d55cc10b18f]=]},
  1759. ["MOAISim.setStep"] = {[=[]=], [=[class_m_o_a_i_sim.html#ae864c88e384d1f4c01ee2feac35d7e08]=]},
  1760. ["MOAISim.setStepMultiplier"] = {[=[]=], [=[class_m_o_a_i_sim.html#acc1212c2024012a828f9c4aa462c4908]=]},
  1761. ["MOAISim.setTimerError"] = {[=[]=], [=[class_m_o_a_i_sim.html#abe6f113e6018de3970c8550daaf056a3]=]},
  1762. ["MOAISim.timeToFrames"] = {[=[]=], [=[class_m_o_a_i_sim.html#a58436d8a8b4083514daa7b7d7c4c1769]=]},
  1763.  
  1764. MOAIStaticGlyphCache = [=[This is the default implementation of a static glyph cache. All is does is accept an image via setImage () and create a set of textures from that image. It does not implement getImage ()]=],
  1765. ["MOAIStaticGlyphCache.setColorFormat"] = {[=[]=], [=[class_m_o_a_i_glyph_cache_base.html#ac6e243c4584709a481c62d49ec10c4a0]=]},
  1766.  
  1767. MOAIStretchPatch2D = [=[Moai implementation of a 9-patch. Textured quad with any number of stretchable and non-stretchable 'bands.' Grid drawing not supported]=],
  1768. ["MOAIStretchPatch2D.reserveColumns"] = {[=[]=], [=[class_m_o_a_i_stretch_patch2_d.html#a486277a17c3aa4a8e4ccf9933f5faf51]=]},
  1769. ["MOAIStretchPatch2D.reserveRows"] = {[=[]=], [=[class_m_o_a_i_stretch_patch2_d.html#add10514ffe95ba76d7be3b724466a1c3]=]},
  1770. ["MOAIStretchPatch2D.reserveUVRects"] = {[=[]=], [=[class_m_o_a_i_stretch_patch2_d.html#a1663598f2554afbe54eab6f03a99fcd7]=]},
  1771. ["MOAIStretchPatch2D.setColumn"] = {[=[]=], [=[class_m_o_a_i_stretch_patch2_d.html#a68447cd095ca1f7edd65fb3376b2b30f]=]},
  1772. ["MOAIStretchPatch2D.setRect"] = {[=[]=], [=[class_m_o_a_i_stretch_patch2_d.html#a743ceb8c187e819519bfc37f87ea57e3]=]},
  1773. ["MOAIStretchPatch2D.setRow"] = {[=[]=], [=[class_m_o_a_i_stretch_patch2_d.html#a195a78c672c5f8bf53bb9dbaaac1d353]=]},
  1774. ["MOAIStretchPatch2D.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  1775. ["MOAIStretchPatch2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  1776. ["MOAIStretchPatch2D.setUVRect"] = {[=[]=], [=[class_m_o_a_i_stretch_patch2_d.html#ad41492a9fce06018a49823e8673ac4c2]=]},
  1777.  
  1778. MOAISurfaceDeck2D = [=[Deck of surface edge lists. Unused in this version of Moai]=],
  1779. ["MOAISurfaceDeck2D.reserveSurfaceLists"] = {[=[]=], [=[class_m_o_a_i_surface_deck2_d.html#a0e444b1b1d5f98cfc37cde918e01bbdb]=]},
  1780. ["MOAISurfaceDeck2D.reserveSurfaces"] = {[=[]=], [=[class_m_o_a_i_surface_deck2_d.html#a6ea143ca7af94f635a26fdc53f536920]=]},
  1781. ["MOAISurfaceDeck2D.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  1782. ["MOAISurfaceDeck2D.setSurface"] = {[=[]=], [=[class_m_o_a_i_surface_deck2_d.html#a2372e0b28eea61fcf69d61e225e33061]=]},
  1783. ["MOAISurfaceDeck2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  1784.  
  1785. MOAITapjoyAndroid = [=[Wrapper for Tapjoy integration on Android devices. Tapjoy provides a turnkey advertising platform that delivers cost-effective, high-value new users and helps apps make money. Exposed to lua via MOAITapjoy on all mobile platforms.]=],
  1786. ["MOAITapjoyAndroid.TAPJOY_VIDEO_AD_BEGIN"] = [=[Event code for Tapjoy video ad playback begin. Unused.]=],
  1787. ["MOAITapjoyAndroid.TAPJOY_VIDEO_AD_CLOSE"] = [=[Event code for Tapjoy video ad playback completion.]=],
  1788. ["MOAITapjoyAndroid.TAPJOY_VIDEO_AD_ERROR"] = [=[Event code for Tapjoy video ad playback errors.]=],
  1789. ["MOAITapjoyAndroid.TAPJOY_VIDEO_AD_READY"] = [=[Event code for Tapjoy video ad playback availability.]=],
  1790. ["MOAITapjoyAndroid.TAPJOY_VIDEO_STATUS_NO_ERROR"] = [=[Error code for success.]=],
  1791. ["MOAITapjoyAndroid.TAPJOY_VIDEO_STATUS_MEDIA_STORAGE_UNAVAILABLE"] = [=[Error code for inadequate storage for video ad.]=],
  1792. ["MOAITapjoyAndroid.TAPJOY_VIDEO_STATUS_NETWORK_ERROR_ON_INIT_VIDEOS"] = [=[Error code for network error.]=],
  1793. ["MOAITapjoyAndroid.TAPJOY_VIDEO_STATUS_UNABLE_TO_PLAY_VIDEO"] = [=[Error code for playback error.]=],
  1794. ["MOAITapjoyAndroid.getUserId"] = {[=[]=], [=[class_m_o_a_i_tapjoy_android.html#a41a37c7363a813538c2dd1e0e24c09f4]=]},
  1795. ["MOAITapjoyAndroid.init"] = {[=[]=], [=[class_m_o_a_i_tapjoy_android.html#a6a6eb017a903d146521f554e7479f138]=]},
  1796. ["MOAITapjoyAndroid.initVideoAds"] = {[=[]=], [=[class_m_o_a_i_tapjoy_android.html#aabd28c86c9c582f2346bfea0399df54f]=]},
  1797. ["MOAITapjoyAndroid.showOffers"] = {[=[]=], [=[class_m_o_a_i_tapjoy_android.html#a99ecf12bddceab23facb05c8edfd62bb]=]},
  1798.  
  1799. MOAITapjoyIOS = [=[Wrapper for Tapjoy integration on iOS devices. Tapjoy provides a turnkey advertising platform that delivers cost-effective, high-value new users and helps apps make money. Exposed to lua via MOAITapjoy on all mobile platforms.]=],
  1800. ["MOAITapjoyIOS.TAPJOY_VIDEO_AD_BEGIN"] = [=[Event code for Tapjoy video ad playback begin.]=],
  1801. ["MOAITapjoyIOS.TAPJOY_VIDEO_AD_CLOSE"] = [=[Event code for Tapjoy video ad playback completion.]=],
  1802. ["MOAITapjoyIOS.TAPJOY_VIDEO_AD_ERROR"] = [=[Event code for Tapjoy video ad playback errors. Unused.]=],
  1803. ["MOAITapjoyIOS.TAPJOY_VIDEO_AD_READY"] = [=[Event code for Tapjoy video ad playback availability. Unused.]=],
  1804. ["MOAITapjoyIOS.TAPJOY_VIDEO_STATUS_NO_ERROR"] = [=[Error code for success. Unused.]=],
  1805. ["MOAITapjoyIOS.TAPJOY_VIDEO_STATUS_MEDIA_STORAGE_UNAVAILABLE"] = [=[Error code for inadequate storage for video ad. Unused.]=],
  1806. ["MOAITapjoyIOS.TAPJOY_VIDEO_STATUS_NETWORK_ERROR_ON_INIT_VIDEOS"] = [=[Error code for network error. Unused.]=],
  1807. ["MOAITapjoyIOS.TAPJOY_VIDEO_STATUS_UNABLE_TO_PLAY_VIDEO"] = [=[Error code for playback error. Unused.]=],
  1808. ["MOAITapjoyIOS.+ "] = {[=[]=], [=[]=]},
  1809.  
  1810. MOAITextBox = [=[]=],
  1811. ["MOAITextBox.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1812. ["MOAITextBox.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1813. ["MOAITextBox.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1814. ["MOAITextBox.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1815. ["MOAITextBox.affirmStyle"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a1480c875e15f60c0620743788bf9a4c9]=]},
  1816. ["MOAITextBox.clearHighlights"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a075c257e62574883f4492ebd8623f2cb]=]},
  1817. ["MOAITextBox.getGlyphScale"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a8a82943b39a689f51ccb2f801707071e]=]},
  1818. ["MOAITextBox.getLineSpacing"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a6ace829cbbe802b8387ba50082352c52]=]},
  1819. ["MOAITextBox.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1820. ["MOAITextBox.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1821. ["MOAITextBox.getRect"] = {[=[]=], [=[class_m_o_a_i_text_box.html#aeb681aa7013391bdafafbf9bcbe848cb]=]},
  1822. ["MOAITextBox.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1823. ["MOAITextBox.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1824. ["MOAITextBox.getStringBounds"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a491d748bed2d7524e07e72b137e497e7]=]},
  1825. ["MOAITextBox.getStyle"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a9ccc4e085e69e91e2f06b3c3e0eafb43]=]},
  1826. ["MOAITextBox.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1827. ["MOAITextBox.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1828. ["MOAITextBox.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1829. ["MOAITextBox.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1830. ["MOAITextBox.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1831. ["MOAITextBox.more"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a110ac085a5ba626d5372a0d51e336481]=]},
  1832. ["MOAITextBox.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1833. ["MOAITextBox.moveColor"] = {[=[]=], [=[class_m_o_a_i_color.html#a04a45c7fac26dc38ecad468b6ecb6c42]=]},
  1834. ["MOAITextBox.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1835. ["MOAITextBox.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1836. ["MOAITextBox.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1837. ["MOAITextBox.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1838. ["MOAITextBox.nextPage"] = {[=[]=], [=[class_m_o_a_i_text_box.html#abbc492a9aba1ef5aa08210d728abad2b]=]},
  1839. ["MOAITextBox.reserveCurves"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a1adabfa26ba83c7d9c42ed55a24cf04a]=]},
  1840. ["MOAITextBox.revealAll"] = {[=[]=], [=[class_m_o_a_i_text_box.html#aa5a09c956b6ed40fc4a8548c0c5d83c2]=]},
  1841. ["MOAITextBox.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1842. ["MOAITextBox.seekColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ad65bf55d287cde9961adf426d3d92fa1]=]},
  1843. ["MOAITextBox.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1844. ["MOAITextBox.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1845. ["MOAITextBox.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1846. ["MOAITextBox.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1847. ["MOAITextBox.setAlignment"] = {[=[]=], [=[class_m_o_a_i_text_box.html#aa19a721b6e006e132f18625d388cabc0]=]},
  1848. ["MOAITextBox.setColor"] = {[=[]=], [=[class_m_o_a_i_color.html#ab3634e8f57dcb7322a31fe3440b569fe]=]},
  1849. ["MOAITextBox.setCurve"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a0d334a633d430375e2bd88e1b0a8bd43]=]},
  1850. ["MOAITextBox.setFont"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a4e45276564ba8982d3b9ce76f54caab6]=]},
  1851. ["MOAITextBox.setGlyphScale"] = {[=[]=], [=[class_m_o_a_i_text_box.html#ab2dafee1dd873685bc8f3605d8a274e4]=]},
  1852. ["MOAITextBox.setHighlight"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a30ff72a83f78caf3e6a79aa5a15dafb5]=]},
  1853. ["MOAITextBox.setLineSpacing"] = {[=[]=], [=[class_m_o_a_i_text_box.html#ac32ca9b560190225a4b3c4980f764d92]=]},
  1854. ["MOAITextBox.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1855. ["MOAITextBox.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1856. ["MOAITextBox.setRect"] = {[=[]=], [=[class_m_o_a_i_text_box.html#af8aa76808ca8cae8f00d39d7f422cc4d]=]},
  1857. ["MOAITextBox.setReveal"] = {[=[]=], [=[class_m_o_a_i_text_box.html#addc5d15a3ec4b2ff4001a3ee1c0c0361]=]},
  1858. ["MOAITextBox.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1859. ["MOAITextBox.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1860. ["MOAITextBox.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1861. ["MOAITextBox.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1862. ["MOAITextBox.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1863. ["MOAITextBox.setSpeed"] = {[=[]=], [=[class_m_o_a_i_text_box.html#ab64f31b5431d1db2b4e6a6be989e6c19]=]},
  1864. ["MOAITextBox.setString"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a774e28c1457e560efbf233c99712b7e1]=]},
  1865. ["MOAITextBox.setStyle"] = {[=[]=], [=[class_m_o_a_i_text_box.html#ab0c23e6f24796b96386e8d787c239516]=]},
  1866. ["MOAITextBox.setTextSize"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a51e591ec73460da510082feb6442d05b]=]},
  1867. ["MOAITextBox.setYFlip"] = {[=[]=], [=[class_m_o_a_i_text_box.html#ab355a4f6886ed2bac32b871b7be08bc2]=]},
  1868. ["MOAITextBox.spool"] = {[=[]=], [=[class_m_o_a_i_text_box.html#a992e940aa2dab7319a19775e018d28bd]=]},
  1869. ["MOAITextBox.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1870.  
  1871. MOAITextStyle = [=[Represents a style that may be applied to a text box or a secion of text in a text box using a style escape]=],
  1872. ["MOAITextStyle.getColor"] = {[=[]=], [=[class_m_o_a_i_text_style.html#a01340fb94f949c32219484fff8233f57]=]},
  1873. ["MOAITextStyle.getFont"] = {[=[]=], [=[class_m_o_a_i_text_style.html#ae6d7b50488ea899cb94f9d1257cb53ae]=]},
  1874. ["MOAITextStyle.getScale"] = {[=[]=], [=[class_m_o_a_i_text_style.html#a0b3f4523e7012bbe8b1a317751648e30]=]},
  1875. ["MOAITextStyle.getSize"] = {[=[]=], [=[class_m_o_a_i_text_style.html#a8f8e657d322c7b88cc30ce15caacbddc]=]},
  1876. ["MOAITextStyle.setColor"] = {[=[]=], [=[class_m_o_a_i_text_style.html#a5b01ed0bfdbeb3e823c2be8198acd57c]=]},
  1877. ["MOAITextStyle.setFont"] = {[=[]=], [=[class_m_o_a_i_text_style.html#adee28cc7b072fce46d4cb01573557e6e]=]},
  1878. ["MOAITextStyle.setScale"] = {[=[]=], [=[class_m_o_a_i_text_style.html#ab8fee8e7d124faafa7572c28789ae525]=]},
  1879. ["MOAITextStyle.setSize"] = {[=[]=], [=[class_m_o_a_i_text_style.html#aedcd221a634ee922ef62ec36f003df2e]=]},
  1880.  
  1881. MOAITexture = [=[Texture class]=],
  1882. ["MOAITexture.getSize"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a505bce5fd64b007585642636a0fd8c12]=]},
  1883. ["MOAITexture.load"] = {[=[]=], [=[class_m_o_a_i_texture.html#a2581d746627396c3922fab3c36c6439a]=]},
  1884. ["MOAITexture.release"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a5f60c19774418bfe1396452ce5b94ab0]=]},
  1885. ["MOAITexture.setFilter"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#ad4dc0419e9da22b238fbff6f67a0fc56]=]},
  1886. ["MOAITexture.setWrap"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a476cc37d0e794ca5abdfe7210078db39]=]},
  1887.  
  1888. MOAITextureBase = [=[Base class for texture resources.]=],
  1889. ["MOAITextureBase.getSize"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a505bce5fd64b007585642636a0fd8c12]=]},
  1890. ["MOAITextureBase.release"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a5f60c19774418bfe1396452ce5b94ab0]=]},
  1891. ["MOAITextureBase.setFilter"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#ad4dc0419e9da22b238fbff6f67a0fc56]=]},
  1892. ["MOAITextureBase.setWrap"] = {[=[]=], [=[class_m_o_a_i_texture_base.html#a476cc37d0e794ca5abdfe7210078db39]=]},
  1893.  
  1894. MOAITileDeck2D = [=[Subdivides a single texture into uniform tiles enumerated from the texture's left top to right bottom]=],
  1895. ["MOAITileDeck2D.cellAddrToCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a31d6f3a9d9b1e1cc95d8dbe1144a865e]=]},
  1896. ["MOAITileDeck2D.getCellAddr"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a8aafa4454e7bd1f39e95085a522606cf]=]},
  1897. ["MOAITileDeck2D.getCellSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a936f5acc543ca95a163b032414fea3a3]=]},
  1898. ["MOAITileDeck2D.getOffset"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a31dc0292dfcecc60a2db40bcba40faeb]=]},
  1899. ["MOAITileDeck2D.getSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#acd54e28abc1043b8215b42fce828fbb0]=]},
  1900. ["MOAITileDeck2D.getTileLoc"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a5285a7351dc6cf1cccff8c318b61b1f3]=]},
  1901. ["MOAITileDeck2D.getTileSize"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a372c8b767e52178dd734c3230e172ec1]=]},
  1902. ["MOAITileDeck2D.initDiamondGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a56f7888a6ecdb873e239f78b7f8593ef]=]},
  1903. ["MOAITileDeck2D.initHexGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a6d5c9d4254210b049f655b15cb76099e]=]},
  1904. ["MOAITileDeck2D.initObliqueGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#af1c1bbbe0fbe2e0f8d3794f5fe1b4298]=]},
  1905. ["MOAITileDeck2D.initRectGrid"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#ad6bfe2d382070c8b34c1a30d09b906fa]=]},
  1906. ["MOAITileDeck2D.locToCellAddr"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a300b4feeb49b86e36f0a6bd01c4e8eb6]=]},
  1907. ["MOAITileDeck2D.locToCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#ae12e2b916882690a48795d5ae480ff03]=]},
  1908. ["MOAITileDeck2D.setRect"] = {[=[]=], [=[class_m_o_a_i_tile_deck2_d.html#a504da8814f74038af9d453ebbc7fd5ae]=]},
  1909. ["MOAITileDeck2D.setRepeat"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#aec42d977becbd46485811ebff1769daf]=]},
  1910. ["MOAITileDeck2D.setShader"] = {[=[]=], [=[class_m_o_a_i_deck.html#a0c31aac0b41ff6c294976c21cd5a2f44]=]},
  1911. ["MOAITileDeck2D.setShape"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a79d687c17cdaf70b05137e112f37c560]=]},
  1912. ["MOAITileDeck2D.setSize"] = {[=[]=], [=[class_m_o_a_i_tile_deck2_d.html#a5a6509e7e7e70ef33ec60fa1211108e9]=]},
  1913. ["MOAITileDeck2D.setTexture"] = {[=[]=], [=[class_m_o_a_i_deck.html#aacd9a174a58a75d313b99f7b505a178f]=]},
  1914. ["MOAITileDeck2D.wrapCoord"] = {[=[]=], [=[class_m_o_a_i_grid_space.html#a29f48017325d4318bae66b8daf747b2f]=]},
  1915.  
  1916. MOAITimer = [=[Timer class for driving curves and animations.]=],
  1917. ["MOAITimer.EVENT_TIMER_KEYFRAME"] = [=[ID of event stop callback. Signature is: nil onKeyframe ( MOAITimer self, number keyframe, number timesExecuted, number time, number value )]=],
  1918. ["MOAITimer.EVENT_TIMER_LOOP"] = [=[ID of event loop callback. Signature is: nil onLoop ( MOAITimer self, number timesExecuted )]=],
  1919. ["MOAITimer.getTime"] = {[=[]=], [=[class_m_o_a_i_timer.html#a0f6c8d1f95b7c0af524c8fd4ea28fd0d]=]},
  1920. ["MOAITimer.getTimesExecuted"] = {[=[]=], [=[class_m_o_a_i_timer.html#a90e98a2c7111427dd8d600f225039a50]=]},
  1921. ["MOAITimer.setCurve"] = {[=[]=], [=[class_m_o_a_i_timer.html#a6b9f50acaac03efd5a59ff2d1037fe9d]=]},
  1922. ["MOAITimer.setMode"] = {[=[]=], [=[class_m_o_a_i_timer.html#a8aa60ef42e2203af4b7b0d6e39fc45a6]=]},
  1923. ["MOAITimer.setSpan"] = {[=[]=], [=[class_m_o_a_i_timer.html#a3d0f0b14caf888b8ae611584a28b5b45]=]},
  1924. ["MOAITimer.setSpeed"] = {[=[]=], [=[class_m_o_a_i_timer.html#a4c41c17b9ba810665098018e6458e9d0]=]},
  1925. ["MOAITimer.setTime"] = {[=[]=], [=[class_m_o_a_i_timer.html#a6a908acf6db933d6a5e699725f9703c5]=]},
  1926.  
  1927. MOAITouchSensor = [=[Multitouch sensor. Tracks up to 16 simultaneous touches.]=],
  1928. ["MOAITouchSensor.down"] = {[=[]=], [=[class_m_o_a_i_touch_sensor.html#ad45b7fa98205d676476088e184f55d47]=]},
  1929. ["MOAITouchSensor.getActiveTouches"] = {[=[]=], [=[class_m_o_a_i_touch_sensor.html#a80c85956d4f3997cbfc4aa75dba3672c]=]},
  1930. ["MOAITouchSensor.getTouch"] = {[=[]=], [=[class_m_o_a_i_touch_sensor.html#a044886eeac2ccef0791daabbf7dd20e1]=]},
  1931. ["MOAITouchSensor.hasTouches"] = {[=[]=], [=[class_m_o_a_i_touch_sensor.html#ac3856d8f59309180b0d94de466159aa9]=]},
  1932. ["MOAITouchSensor.isDown"] = {[=[]=], [=[class_m_o_a_i_touch_sensor.html#abb611143c60a9779f93297b8fb98ce0f]=]},
  1933. ["MOAITouchSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_touch_sensor.html#aa43823ba9da91d4bcd6baa64f6d6dc01]=]},
  1934. ["MOAITouchSensor.up"] = {[=[]=], [=[class_m_o_a_i_touch_sensor.html#a3159e27a7f49d12adc50095bbf9e7fe7]=]},
  1935.  
  1936. MOAITransform = [=[Transformation hierarchy node.]=],
  1937. ["MOAITransform.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1d95ecd8b324fb998dd6280da33eae8c]=]},
  1938. ["MOAITransform.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#ad7bbbf6dbda8efbd1ce6a89b4d344d53]=]},
  1939. ["MOAITransform.addRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e0e6f3a9d3086571bc2bec41cd67fea]=]},
  1940. ["MOAITransform.addScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aab03b4bc84ff1da7018ba669836b06e5]=]},
  1941. ["MOAITransform.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a2a84c9a30de57ba6904779ece1dd7883]=]},
  1942. ["MOAITransform.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#aedf30c9d6792bc2731ec1a5dffb8118f]=]},
  1943. ["MOAITransform.getRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a552429b6a3a9437e4107818559d2dcfd]=]},
  1944. ["MOAITransform.getScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#afbb907313b3f161417d11046e122c644]=]},
  1945. ["MOAITransform.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1946. ["MOAITransform.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1947. ["MOAITransform.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1948. ["MOAITransform.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1949. ["MOAITransform.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa4ccc1ce2c967ec0849705e7a431d608]=]},
  1950. ["MOAITransform.move"] = {[=[]=], [=[class_m_o_a_i_transform.html#a5f0a181010b242cd53fe9c50a068f8df]=]},
  1951. ["MOAITransform.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#aa742fa3239c5dcfa9592b896da44fb70]=]},
  1952. ["MOAITransform.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a80fe4650dcc02139c9bdd329e8f08ea0]=]},
  1953. ["MOAITransform.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6c61741169479f546159360ab41b7180]=]},
  1954. ["MOAITransform.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae6a727e19767c253ed4d2ed5a6ceabff]=]},
  1955. ["MOAITransform.seek"] = {[=[]=], [=[class_m_o_a_i_transform.html#acaee6f1a5cea3ca57d6e7594023cf718]=]},
  1956. ["MOAITransform.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#ae2aaa51c0e673b34d3e0b9d8e81071cb]=]},
  1957. ["MOAITransform.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a014ad564f7406986eec7f55c1dada4bb]=]},
  1958. ["MOAITransform.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#aecf206995242a1a00ab7a826df78db44]=]},
  1959. ["MOAITransform.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#aed613116af8f1e1d40e45737cb032312]=]},
  1960. ["MOAITransform.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0a26e965fea3ac4d7fb9e8245e8dbbca]=]},
  1961. ["MOAITransform.setParent"] = {[=[]=], [=[class_m_o_a_i_transform.html#ade884083513de1ef87979cf0de5f5b89]=]},
  1962. ["MOAITransform.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform.html#a0ab70d88711062ae74fa60f1a59b4f21]=]},
  1963. ["MOAITransform.setRot"] = {[=[]=], [=[class_m_o_a_i_transform.html#a45cffdb38ba2028c1ba036f6e40bbc8e]=]},
  1964. ["MOAITransform.setScl"] = {[=[]=], [=[class_m_o_a_i_transform.html#a1daf277717539ea6a5d061fa616eb0bb]=]},
  1965. ["MOAITransform.setShearByX"] = {[=[]=], [=[class_m_o_a_i_transform.html#a7e322ebebd418731855eeffa337295ef]=]},
  1966. ["MOAITransform.setShearByY"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6751452434926bd5421eff24b8ff6a42]=]},
  1967. ["MOAITransform.setShearByZ"] = {[=[]=], [=[class_m_o_a_i_transform.html#aacfbff64fe4e5eb4245d7598582fbb0c]=]},
  1968. ["MOAITransform.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform.html#a6684f042aae150e821dfa50c35c097f0]=]},
  1969.  
  1970. MOAITransform2D = [=[2D transformation hierarchy node.]=],
  1971. ["MOAITransform2D.addLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a34771c207808995c983bcfacb43e52e6]=]},
  1972. ["MOAITransform2D.addPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a986eebb850eb075f5b3eee7845d220d8]=]},
  1973. ["MOAITransform2D.addRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a12c6766cba3d4837ad2f908fc1396b24]=]},
  1974. ["MOAITransform2D.addScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#adc2004fb55aa44c9aa22a42d5a4e7edd]=]},
  1975. ["MOAITransform2D.getLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a22400e631257974bfb0b9e3c7e3d6bd5]=]},
  1976. ["MOAITransform2D.getPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a52fbedf1bcac8c3469b1f01aa15b54d1]=]},
  1977. ["MOAITransform2D.getRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a0cbf9b7aaa273c54c5b14549081836e9]=]},
  1978. ["MOAITransform2D.getScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a08901ef30601e4f9d5f1b3dca8ef4d12]=]},
  1979. ["MOAITransform2D.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  1980. ["MOAITransform2D.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  1981. ["MOAITransform2D.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  1982. ["MOAITransform2D.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  1983. ["MOAITransform2D.modelToWorld"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ac97f3ef5eae9cda33dd9c2f3c2bee2ec]=]},
  1984. ["MOAITransform2D.move"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a703238a99b7ca35c859bc1fdd76a9184]=]},
  1985. ["MOAITransform2D.moveLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#acd24bff873fba8b018038ce04c9f5f88]=]},
  1986. ["MOAITransform2D.movePiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a446e3db7377a0d2bb7e1c06bfcff7e64]=]},
  1987. ["MOAITransform2D.moveRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ade2136ff1eae1768f3822439c0e70810]=]},
  1988. ["MOAITransform2D.moveScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a7fe326ef7c8a4a6537edd312a1a0c2d1]=]},
  1989. ["MOAITransform2D.seek"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#aa7918b8f605b9de6c14f91b62db5f409]=]},
  1990. ["MOAITransform2D.seekLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ab34624ae895862c12af8090f530323ad]=]},
  1991. ["MOAITransform2D.seekPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abe524823923ede68c87a717e7648f777]=]},
  1992. ["MOAITransform2D.seekRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a2b6d6b49dc6d2c6c290e4bf41ec6caaf]=]},
  1993. ["MOAITransform2D.seekScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a679e8851a6743fbcfea1df2589173b3a]=]},
  1994. ["MOAITransform2D.setLoc"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a127e63534b8cb2f4e4039fc353f2dc51]=]},
  1995. ["MOAITransform2D.setParent"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#aa0cb5639ac6bed8e1c74677930055d98]=]},
  1996. ["MOAITransform2D.setPiv"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#abb6b327f54c2a9311dba6f319448d047]=]},
  1997. ["MOAITransform2D.setRot"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#ad1db6d6ced421380693d962192abaf9c]=]},
  1998. ["MOAITransform2D.setScl"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a1bfd891dd1c4421d8946d092a54d44df]=]},
  1999. ["MOAITransform2D.worldToModel"] = {[=[]=], [=[class_m_o_a_i_transform2_d.html#a813d9eaec94392b3567cfb7e811b3e48]=]},
  2000.  
  2001. MOAITransformBase = [=[Base class for 2D affine transforms.]=],
  2002. ["MOAITransformBase.getWorldDir"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#aa74f8dd96ec1b9831e4e83bac2d14589]=]},
  2003. ["MOAITransformBase.getWorldLoc"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#a7146339798a8adb67462ac7bea87e4e3]=]},
  2004. ["MOAITransformBase.getWorldRot"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#abd51e63670b76ec86eecb973afafae2a]=]},
  2005. ["MOAITransformBase.getWorldScl"] = {[=[]=], [=[class_m_o_a_i_transform_base.html#ab4ff07495fe7bcfea00e5f2e503889ef]=]},
  2006.  
  2007. MOAITwitterIOS = [=[Wrapper for Twitter interaction on iOS devices. Only available on iOS 5.0 and above.]=],
  2008. ["MOAITwitterIOS.TWEET_SUCCESSFUL"] = [=[Event indicating a successful Tweet.]=],
  2009. ["MOAITwitterIOS.TWEET_CANCELLED"] = [=[Event indicating an unsuccessful Tweet.]=],
  2010. ["MOAITwitterIOS.canTweet"] = {[=[]=], [=[class_m_o_a_i_twitter_i_o_s.html#ab8bba6567f2dc606308c0eb536b08b04]=]},
  2011. ["MOAITwitterIOS.composeTweet"] = {[=[]=], [=[class_m_o_a_i_twitter_i_o_s.html#acb990737feec740f67548d6b08f0479b]=]},
  2012.  
  2013. MOAIUntzSampleBuffer = [=[Uncompressed WAV data held in memory. May be shared between multiple MOAIUntzSound objects]=],
  2014. ["MOAIUntzSampleBuffer.getData"] = {[=[]=], [=[class_m_o_a_i_untz_sample_buffer.html#a79a967bc72867a07ae31f8dba9c9d2b4]=]},
  2015. ["MOAIUntzSampleBuffer.getInfo"] = {[=[]=], [=[class_m_o_a_i_untz_sample_buffer.html#a0b190dfeba1d2c40e5f305ae824c6e71]=]},
  2016. ["MOAIUntzSampleBuffer.load"] = {[=[]=], [=[class_m_o_a_i_untz_sample_buffer.html#a9c1542210854d7d281d42c4b447257cf]=]},
  2017. ["MOAIUntzSampleBuffer.prepareBuffer"] = {[=[]=], [=[class_m_o_a_i_untz_sample_buffer.html#a26b724dc675a41bc1462403e05c2425a]=]},
  2018. ["MOAIUntzSampleBuffer.setData"] = {[=[]=], [=[class_m_o_a_i_untz_sample_buffer.html#ac3349f215b02bdfeb36251c73b27e2c2]=]},
  2019. ["MOAIUntzSampleBuffer.setRawData"] = {[=[]=], [=[class_m_o_a_i_untz_sample_buffer.html#ae2d9020cf4fb4d4a31dfaf1157fb4e0c]=]},
  2020.  
  2021. MOAIUntzSound = [=[Untz sound object.]=],
  2022. ["MOAIUntzSound.getPosition"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#aab14a7f335d8b568ae303c62533c599c]=]},
  2023. ["MOAIUntzSound.getVolume"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a4de8890ae52f58682d4d251d6595d17d]=]},
  2024. ["MOAIUntzSound.isLooping"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a6173a70243f41f5b60ab288270b4290b]=]},
  2025. ["MOAIUntzSound.isPaused"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#abd0af21dd4b8b4f260b9898b2dbef0bc]=]},
  2026. ["MOAIUntzSound.isPlaying"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#aba500e5a49c00ee10a8c27cb06ac9b75]=]},
  2027. ["MOAIUntzSound.load"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#acfe01f2fb609415736e8e8e1dd3fe69f]=]},
  2028. ["MOAIUntzSound.moveVolume"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#ace0a4a49964f5c9d7f1e6acb1f496d3a]=]},
  2029. ["MOAIUntzSound.pause"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a0c4cbe61361fc8524101fd3fa9ae8542]=]},
  2030. ["MOAIUntzSound.play"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#aaa027efefea911b7469598d139d883ac]=]},
  2031. ["MOAIUntzSound.seekVolume"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a485ed59e0c76b7598c3bb240beb3d8c5]=]},
  2032. ["MOAIUntzSound.setLooping"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a60b715cfe2bba1230cfa2948b24c6a59]=]},
  2033. ["MOAIUntzSound.setLoopPoints"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a3effda2bd3c20db49f889e737f9bacae]=]},
  2034. ["MOAIUntzSound.setPosition"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a03956fae464dd9c782c8916df84bda92]=]},
  2035. ["MOAIUntzSound.setVolume"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a84454e5faa9a777ccaabcda3a9aee81b]=]},
  2036. ["MOAIUntzSound.stop"] = {[=[]=], [=[class_m_o_a_i_untz_sound.html#a216324f989cae42ce468d0bd1eb6b2ea]=]},
  2037.  
  2038. MOAIUntzSystem = [=[Untz system singleton]=],
  2039. ["MOAIUntzSystem.getSampleRate"] = {[=[]=], [=[class_m_o_a_i_untz_system.html#a9cd17e2406f3cafb72c47dba063643a1]=]},
  2040. ["MOAIUntzSystem.getVolume"] = {[=[]=], [=[class_m_o_a_i_untz_system.html#a5ccef8840327fec0a7d57b6c9179ba5a]=]},
  2041. ["MOAIUntzSystem.initialize"] = {[=[]=], [=[class_m_o_a_i_untz_system.html#a9fb864095967d223556347c7f3e7b0e7]=]},
  2042. ["MOAIUntzSystem.setSampleRate"] = {[=[]=], [=[class_m_o_a_i_untz_system.html#aacc65e485d130bb260afc0f1091cc605]=]},
  2043. ["MOAIUntzSystem.setVolume"] = {[=[]=], [=[class_m_o_a_i_untz_system.html#a8f1e65c7fed431905c8202a90a8dbe16]=]},
  2044.  
  2045. MOAIVertexBuffer = [=[Vertex buffer class]=],
  2046. ["MOAIVertexBuffer.bless"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#ad5a6c399937a0095fa1df0e5409eacae]=]},
  2047. ["MOAIVertexBuffer.release"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#af30ee3f0e2c1be6ba4c8772f17276044]=]},
  2048. ["MOAIVertexBuffer.reserve"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#a4f2a9f9cd4436ef36675716c5bd442ac]=]},
  2049. ["MOAIVertexBuffer.reserveVerts"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#a9db2544caf530eb053c1bd97cd79e7dc]=]},
  2050. ["MOAIVertexBuffer.reset"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#a45aa27ab0b9c44eb39ab800675cadaab]=]},
  2051. ["MOAIVertexBuffer.setFormat"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#ac847309222cb760ac0f6504898382efb]=]},
  2052. ["MOAIVertexBuffer.writeColor32"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#a6cff459a4f8973dcd1a294a7b7bf46ae]=]},
  2053. ["MOAIVertexBuffer.writeFloat"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#abe059a82c0403596c19fa6338274a354]=]},
  2054. ["MOAIVertexBuffer.writeInt16"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#a08317ca851ec0888ccadd98302efa985]=]},
  2055. ["MOAIVertexBuffer.writeInt32"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#a4fa65a4726bbd20c7b2f78beb73c8461]=]},
  2056. ["MOAIVertexBuffer.writeInt8"] = {[=[]=], [=[class_m_o_a_i_vertex_buffer.html#ae6c8977f0af29c5c549c99135923aee6]=]},
  2057.  
  2058. MOAIVertexFormat = [=[Vertex format class]=],
  2059. ["MOAIVertexFormat.declareAttribute"] = {[=[]=], [=[class_m_o_a_i_vertex_format.html#a19894adbd16cd5506888b1ec4270c770]=]},
  2060. ["MOAIVertexFormat.declareColor"] = {[=[]=], [=[class_m_o_a_i_vertex_format.html#a7e2d1ba88c2757ae0b345d0ae7fcdd2b]=]},
  2061. ["MOAIVertexFormat.declareCoord"] = {[=[]=], [=[class_m_o_a_i_vertex_format.html#abffeb51cbae8d4b5181b599dbe82817a]=]},
  2062. ["MOAIVertexFormat.declareNormal"] = {[=[]=], [=[class_m_o_a_i_vertex_format.html#ad7b11897d72838887897b8bc172b9ef0]=]},
  2063. ["MOAIVertexFormat.declareUV"] = {[=[]=], [=[class_m_o_a_i_vertex_format.html#a98959aa4ebcaf7750e51432242b07a76]=]},
  2064.  
  2065. MOAIViewport = [=[Viewport object]=],
  2066. ["MOAIViewport.setOffset"] = {[=[]=], [=[class_m_o_a_i_viewport.html#acda54cc11e0e2e036b75b17bd0078f5d]=]},
  2067. ["MOAIViewport.setRotation"] = {[=[]=], [=[class_m_o_a_i_viewport.html#a1168970d19ec37cee927ae0f56dfd5ae]=]},
  2068. ["MOAIViewport.setScale"] = {[=[]=], [=[class_m_o_a_i_viewport.html#a61903dcb6d6aed2852c36d5dc98e7558]=]},
  2069. ["MOAIViewport.setSize"] = {[=[]=], [=[class_m_o_a_i_viewport.html#a53a466e46af0377a54d58f6d0eb88db0]=]},
  2070.  
  2071. MOAIWheelSensor = [=[Hardware wheel sensor]=],
  2072. ["MOAIWheelSensor.getDelta"] = {[=[]=], [=[class_m_o_a_i_wheel_sensor.html#ae44759d6e8d1ab21ead8754dcbb951d3]=]},
  2073. ["MOAIWheelSensor.getValue"] = {[=[]=], [=[class_m_o_a_i_wheel_sensor.html#aa3ca8660e0374bba3832d5fdeca1c864]=]},
  2074. ["MOAIWheelSensor.setCallback"] = {[=[]=], [=[class_m_o_a_i_wheel_sensor.html#ad408700e81a46e1adb970dc7cce0d9d5]=]},
  2075.  
  2076. MOAIXmlParser = [=[Converts XML DOM to Lua trees. Provided as a convenience; not advised for parsing very large XML documents. (Use of XML not advised at all - use JSON or Lua.)]=],
  2077. ["MOAIXmlParser.parseFile"] = {[=[]=], [=[class_m_o_a_i_xml_parser.html#a3af50779a61ea3e490e57c6453d9f0ab]=]},
  2078. ["MOAIXmlParser.parseString"] = {[=[]=], [=[class_m_o_a_i_xml_parser.html#a7c0a7e9b487b3619e6647f5dd9bfbcfb]=]},
  2079.  
  2080. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement