You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

45619 lines
2.4 MiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>GodotSharp</name>
  5. </assembly>
  6. <members>
  7. <member name="P:Godot.Basis.x">
  8. <summary>
  9. Returns the basis matrix’s x vector.
  10. This is equivalent to <see cref="P:Godot.Basis.Column0"/>.
  11. </summary>
  12. </member>
  13. <member name="P:Godot.Basis.y">
  14. <summary>
  15. Returns the basis matrix’s y vector.
  16. This is equivalent to <see cref="P:Godot.Basis.Column1"/>.
  17. </summary>
  18. </member>
  19. <member name="P:Godot.Basis.z">
  20. <summary>
  21. Returns the basis matrix’s z vector.
  22. This is equivalent to <see cref="P:Godot.Basis.Column2"/>.
  23. </summary>
  24. </member>
  25. <member name="P:Godot.Basis.Item(System.Int32)">
  26. <summary>
  27. Access whole columns in the form of Vector3.
  28. </summary>
  29. <param name="column">Which column vector.</param>
  30. </member>
  31. <member name="P:Godot.Basis.Item(System.Int32,System.Int32)">
  32. <summary>
  33. Access matrix elements in column-major order.
  34. </summary>
  35. <param name="column">Which column, the matrix horizontal position.</param>
  36. <param name="row">Which row, the matrix vertical position.</param>
  37. </member>
  38. <member name="T:Godot.DynamicGodotObject">
  39. <summary>
  40. Represents an <see cref="T:Godot.Object"/> whose members can be dynamically accessed at runtime through the Variant API.
  41. </summary>
  42. <remarks>
  43. <para>
  44. The <see cref="T:Godot.DynamicGodotObject"/> class enables access to the Variant
  45. members of a <see cref="T:Godot.Object"/> instance at runtime.
  46. </para>
  47. <para>
  48. This allows accessing the class members using their original names in the engine as well as the members from the
  49. script attached to the <see cref="T:Godot.Object"/>, regardless of the scripting language it was written in.
  50. </para>
  51. </remarks>
  52. <example>
  53. This sample shows how to use <see cref="T:Godot.DynamicGodotObject"/> to dynamically access the engine members of a <see cref="T:Godot.Object"/>.
  54. <code>
  55. dynamic sprite = GetNode("Sprite").DynamicGodotObject;
  56. sprite.add_child(this);
  57. if ((sprite.hframes * sprite.vframes) &gt; 0)
  58. sprite.frame = 0;
  59. </code>
  60. </example>
  61. <example>
  62. This sample shows how to use <see cref="T:Godot.DynamicGodotObject"/> to dynamically access the members of the script attached to a <see cref="T:Godot.Object"/>.
  63. <code>
  64. dynamic childNode = GetNode("ChildNode").DynamicGodotObject;
  65. if (childNode.print_allowed)
  66. {
  67. childNode.message = "Hello from C#";
  68. childNode.print_message(3);
  69. }
  70. </code>
  71. The <c>ChildNode</c> node has the following GDScript script attached:
  72. <code>
  73. // # ChildNode.gd
  74. // var print_allowed = true
  75. // var message = ""
  76. //
  77. // func print_message(times):
  78. // for i in times:
  79. // print(message)
  80. </code>
  81. </example>
  82. </member>
  83. <member name="P:Godot.DynamicGodotObject.Value">
  84. <summary>
  85. Gets the <see cref="T:Godot.Object"/> associated with this <see cref="T:Godot.DynamicGodotObject"/>.
  86. </summary>
  87. </member>
  88. <member name="M:Godot.DynamicGodotObject.#ctor(Godot.Object)">
  89. <summary>
  90. Initializes a new instance of the <see cref="T:Godot.DynamicGodotObject"/> class.
  91. </summary>
  92. <param name="godotObject">
  93. The <see cref="T:Godot.Object"/> that will be associated with this <see cref="T:Godot.DynamicGodotObject"/>.
  94. </param>
  95. <exception cref="T:System.ArgumentNullException">
  96. Thrown when the <paramref name="godotObject"/> parameter is null.
  97. </exception>
  98. </member>
  99. <member name="T:Godot.Node">
  100. <summary>
  101. <para>Nodes are Godot's building blocks. They can be assigned as the child of another node, resulting in a tree arrangement. A given node can contain any number of nodes as children with the requirement that all siblings (direct children of a node) should have unique names.</para>
  102. <para>A tree of nodes is called a scene. Scenes can be saved to the disk and then instanced into other scenes. This allows for very high flexibility in the architecture and data model of Godot projects.</para>
  103. <para>Scene tree: The <see cref="T:Godot.SceneTree"/> contains the active tree of nodes. When a node is added to the scene tree, it receives the notification and its <see cref="M:Godot.Node._EnterTree"/> callback is triggered. Child nodes are always added after their parent node, i.e. the <see cref="M:Godot.Node._EnterTree"/> callback of a parent node will be triggered before its child's.</para>
  104. <para>Once all nodes have been added in the scene tree, they receive the notification and their respective <see cref="M:Godot.Node._Ready"/> callbacks are triggered. For groups of nodes, the <see cref="M:Godot.Node._Ready"/> callback is called in reverse order, starting with the children and moving up to the parent nodes.</para>
  105. <para>This means that when adding a node to the scene tree, the following order will be used for the callbacks: <see cref="M:Godot.Node._EnterTree"/> of the parent, <see cref="M:Godot.Node._EnterTree"/> of the children, <see cref="M:Godot.Node._Ready"/> of the children and finally <see cref="M:Godot.Node._Ready"/> of the parent (recursively for the entire scene tree).</para>
  106. <para>Processing: Nodes can override the "process" state, so that they receive a callback on each frame requesting them to process (do something). Normal processing (callback <see cref="M:Godot.Node._Process(System.Single)"/>, toggled with <see cref="M:Godot.Node.SetProcess(System.Boolean)"/>) happens as fast as possible and is dependent on the frame rate, so the processing time delta is passed as an argument. Physics processing (callback <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/>, toggled with <see cref="M:Godot.Node.SetPhysicsProcess(System.Boolean)"/>) happens a fixed number of times per second (60 by default) and is useful for code related to the physics engine.</para>
  107. <para>Nodes can also process input events. When present, the <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> function will be called for each input that the program receives. In many cases, this can be overkill (unless used for simple projects), and the <see cref="M:Godot.Node._UnhandledInput(Godot.InputEvent)"/> function might be preferred; it is called when the input event was not handled by anyone else (typically, GUI <see cref="T:Godot.Control"/> nodes), ensuring that the node only receives the events that were meant for it.</para>
  108. <para>To keep track of the scene hierarchy (especially when instancing scenes into other scenes), an "owner" can be set for the node with the <see cref="P:Godot.Node.Owner"/> property. This keeps track of who instanced what. This is mostly useful when writing editors and tools, though.</para>
  109. <para>Finally, when a node is freed with <see cref="M:Godot.Object.Free"/> or <see cref="M:Godot.Node.QueueFree"/>, it will also free all its children.</para>
  110. <para>Groups: Nodes can be added to as many groups as you want to be easy to manage, you could create groups like "enemies" or "collectables" for example, depending on your game. See <see cref="M:Godot.Node.AddToGroup(System.String,System.Boolean)"/>, <see cref="M:Godot.Node.IsInGroup(System.String)"/> and <see cref="M:Godot.Node.RemoveFromGroup(System.String)"/>. You can then retrieve all nodes in these groups, iterate them and even call methods on groups via the methods on <see cref="T:Godot.SceneTree"/>.</para>
  111. <para>Networking with nodes: After connecting to a server (or making one, see <see cref="T:Godot.NetworkedMultiplayerENet"/>), it is possible to use the built-in RPC (remote procedure call) system to communicate over the network. By calling <see cref="M:Godot.Node.Rpc(System.String,System.Object[])"/> with a method name, it will be called locally and in all connected peers (peers = clients and the server that accepts connections). To identify which node receives the RPC call, Godot will use its <see cref="T:Godot.NodePath"/> (make sure node names are the same on all peers). Also, take a look at the high-level networking tutorial and corresponding demos.</para>
  112. </summary>
  113. </member>
  114. <member name="F:Godot.Node.NotificationEnterTree">
  115. <summary>
  116. <para>Notification received when the node enters a <see cref="T:Godot.SceneTree"/>.</para>
  117. </summary>
  118. </member>
  119. <member name="F:Godot.Node.NotificationExitTree">
  120. <summary>
  121. <para>Notification received when the node is about to exit a <see cref="T:Godot.SceneTree"/>.</para>
  122. </summary>
  123. </member>
  124. <member name="F:Godot.Node.NotificationMovedInParent">
  125. <summary>
  126. <para>Notification received when the node is moved in the parent.</para>
  127. </summary>
  128. </member>
  129. <member name="F:Godot.Node.NotificationReady">
  130. <summary>
  131. <para>Notification received when the node is ready. See <see cref="M:Godot.Node._Ready"/>.</para>
  132. </summary>
  133. </member>
  134. <member name="F:Godot.Node.NotificationPaused">
  135. <summary>
  136. <para>Notification received when the node is paused.</para>
  137. </summary>
  138. </member>
  139. <member name="F:Godot.Node.NotificationUnpaused">
  140. <summary>
  141. <para>Notification received when the node is unpaused.</para>
  142. </summary>
  143. </member>
  144. <member name="F:Godot.Node.NotificationPhysicsProcess">
  145. <summary>
  146. <para>Notification received every frame when the physics process flag is set (see <see cref="M:Godot.Node.SetPhysicsProcess(System.Boolean)"/>).</para>
  147. </summary>
  148. </member>
  149. <member name="F:Godot.Node.NotificationProcess">
  150. <summary>
  151. <para>Notification received every frame when the process flag is set (see <see cref="M:Godot.Node.SetProcess(System.Boolean)"/>).</para>
  152. </summary>
  153. </member>
  154. <member name="F:Godot.Node.NotificationParented">
  155. <summary>
  156. <para>Notification received when a node is set as a child of another node.</para>
  157. <para>Note: This doesn't mean that a node entered the <see cref="T:Godot.SceneTree"/>.</para>
  158. </summary>
  159. </member>
  160. <member name="F:Godot.Node.NotificationUnparented">
  161. <summary>
  162. <para>Notification received when a node is unparented (parent removed it from the list of children).</para>
  163. </summary>
  164. </member>
  165. <member name="F:Godot.Node.NotificationInstanced">
  166. <summary>
  167. <para>Notification received when the node is instanced.</para>
  168. </summary>
  169. </member>
  170. <member name="F:Godot.Node.NotificationDragBegin">
  171. <summary>
  172. <para>Notification received when a drag begins.</para>
  173. </summary>
  174. </member>
  175. <member name="F:Godot.Node.NotificationDragEnd">
  176. <summary>
  177. <para>Notification received when a drag ends.</para>
  178. </summary>
  179. </member>
  180. <member name="F:Godot.Node.NotificationPathChanged">
  181. <summary>
  182. <para>Notification received when the node's <see cref="T:Godot.NodePath"/> changed.</para>
  183. </summary>
  184. </member>
  185. <member name="F:Godot.Node.NotificationInternalProcess">
  186. <summary>
  187. <para>Notification received every frame when the internal process flag is set (see <see cref="M:Godot.Node.SetProcessInternal(System.Boolean)"/>).</para>
  188. </summary>
  189. </member>
  190. <member name="F:Godot.Node.NotificationInternalPhysicsProcess">
  191. <summary>
  192. <para>Notification received every frame when the internal physics process flag is set (see <see cref="M:Godot.Node.SetPhysicsProcessInternal(System.Boolean)"/>).</para>
  193. </summary>
  194. </member>
  195. <member name="F:Godot.Node.NotificationWmMouseEnter">
  196. <summary>
  197. <para>Notification received from the OS when the mouse enters the game window.</para>
  198. <para>Implemented on desktop and web platforms.</para>
  199. </summary>
  200. </member>
  201. <member name="F:Godot.Node.NotificationWmMouseExit">
  202. <summary>
  203. <para>Notification received from the OS when the mouse leaves the game window.</para>
  204. <para>Implemented on desktop and web platforms.</para>
  205. </summary>
  206. </member>
  207. <member name="F:Godot.Node.NotificationWmFocusIn">
  208. <summary>
  209. <para>Notification received from the OS when the game window is focused.</para>
  210. <para>Implemented on all platforms.</para>
  211. </summary>
  212. </member>
  213. <member name="F:Godot.Node.NotificationWmFocusOut">
  214. <summary>
  215. <para>Notification received from the OS when the game window is unfocused.</para>
  216. <para>Implemented on all platforms.</para>
  217. </summary>
  218. </member>
  219. <member name="F:Godot.Node.NotificationWmQuitRequest">
  220. <summary>
  221. <para>Notification received from the OS when a quit request is sent (e.g. closing the window with a "Close" button or Alt+F4).</para>
  222. <para>Implemented on desktop platforms.</para>
  223. </summary>
  224. </member>
  225. <member name="F:Godot.Node.NotificationWmGoBackRequest">
  226. <summary>
  227. <para>Notification received from the OS when a go back request is sent (e.g. pressing the "Back" button on Android).</para>
  228. <para>Specific to the Android platform.</para>
  229. </summary>
  230. </member>
  231. <member name="F:Godot.Node.NotificationWmUnfocusRequest">
  232. <summary>
  233. <para>Notification received from the OS when an unfocus request is sent (e.g. another OS window wants to take the focus).</para>
  234. <para>No supported platforms currently send this notification.</para>
  235. </summary>
  236. </member>
  237. <member name="F:Godot.Node.NotificationOsMemoryWarning">
  238. <summary>
  239. <para>Notification received from the OS when the application is exceeding its allocated memory.</para>
  240. <para>Specific to the iOS platform.</para>
  241. </summary>
  242. </member>
  243. <member name="F:Godot.Node.NotificationTranslationChanged">
  244. <summary>
  245. <para>Notification received when translations may have changed. Can be triggered by the user changing the locale. Can be used to respond to language changes, for example to change the UI strings on the fly. Useful when working with the built-in translation support, like <see cref="M:Godot.Object.Tr(System.String)"/>.</para>
  246. </summary>
  247. </member>
  248. <member name="F:Godot.Node.NotificationWmAbout">
  249. <summary>
  250. <para>Notification received from the OS when a request for "About" information is sent.</para>
  251. <para>Specific to the macOS platform.</para>
  252. </summary>
  253. </member>
  254. <member name="F:Godot.Node.NotificationCrash">
  255. <summary>
  256. <para>Notification received from Godot's crash handler when the engine is about to crash.</para>
  257. <para>Implemented on desktop platforms if the crash handler is enabled.</para>
  258. </summary>
  259. </member>
  260. <member name="F:Godot.Node.NotificationOsImeUpdate">
  261. <summary>
  262. <para>Notification received from the OS when an update of the Input Method Engine occurs (e.g. change of IME cursor position or composition string).</para>
  263. <para>Specific to the macOS platform.</para>
  264. </summary>
  265. </member>
  266. <member name="F:Godot.Node.NotificationAppResumed">
  267. <summary>
  268. <para>Notification received from the OS when the app is resumed.</para>
  269. <para>Specific to the Android platform.</para>
  270. </summary>
  271. </member>
  272. <member name="F:Godot.Node.NotificationAppPaused">
  273. <summary>
  274. <para>Notification received from the OS when the app is paused.</para>
  275. <para>Specific to the Android platform.</para>
  276. </summary>
  277. </member>
  278. <member name="F:Godot.Node.PauseModeEnum.Inherit">
  279. <summary>
  280. <para>Inherits pause mode from the node's parent. For the root node, it is equivalent to . Default.</para>
  281. </summary>
  282. </member>
  283. <member name="F:Godot.Node.PauseModeEnum.Stop">
  284. <summary>
  285. <para>Stops processing when the <see cref="T:Godot.SceneTree"/> is paused.</para>
  286. </summary>
  287. </member>
  288. <member name="F:Godot.Node.PauseModeEnum.Process">
  289. <summary>
  290. <para>Continue to process regardless of the <see cref="T:Godot.SceneTree"/> pause state.</para>
  291. </summary>
  292. </member>
  293. <member name="F:Godot.Node.DuplicateFlags.Signals">
  294. <summary>
  295. <para>Duplicate the node's signals.</para>
  296. </summary>
  297. </member>
  298. <member name="F:Godot.Node.DuplicateFlags.Groups">
  299. <summary>
  300. <para>Duplicate the node's groups.</para>
  301. </summary>
  302. </member>
  303. <member name="F:Godot.Node.DuplicateFlags.Scripts">
  304. <summary>
  305. <para>Duplicate the node's scripts.</para>
  306. </summary>
  307. </member>
  308. <member name="F:Godot.Node.DuplicateFlags.UseInstancing">
  309. <summary>
  310. <para>Duplicate using instancing.</para>
  311. <para>An instance stays linked to the original so when the original changes, the instance changes too.</para>
  312. </summary>
  313. </member>
  314. <member name="P:Godot.Node.PauseMode">
  315. <summary>
  316. <para>Pause mode. How the node will behave if the <see cref="T:Godot.SceneTree"/> is paused.</para>
  317. </summary>
  318. </member>
  319. <member name="P:Godot.Node.Name">
  320. <summary>
  321. <para>The name of the node. This name is unique among the siblings (other child nodes from the same parent). When set to an existing name, the node will be automatically renamed.</para>
  322. </summary>
  323. </member>
  324. <member name="P:Godot.Node.Filename">
  325. <summary>
  326. <para>When a scene is instanced from a file, its topmost node contains the filename from which it was loaded.</para>
  327. </summary>
  328. </member>
  329. <member name="P:Godot.Node.Owner">
  330. <summary>
  331. <para>The node owner. A node can have any other node as owner (as long as it is a valid parent, grandparent, etc. ascending in the tree). When saving a node (using <see cref="T:Godot.PackedScene"/>), all the nodes it owns will be saved with it. This allows for the creation of complex <see cref="T:Godot.SceneTree"/>s, with instancing and subinstancing.</para>
  332. </summary>
  333. </member>
  334. <member name="P:Godot.Node.Multiplayer">
  335. <summary>
  336. <para>The <see cref="T:Godot.MultiplayerAPI"/> instance associated with this node. Either the <see cref="P:Godot.Node.CustomMultiplayer"/>, or the default SceneTree one (if inside tree).</para>
  337. </summary>
  338. </member>
  339. <member name="P:Godot.Node.CustomMultiplayer">
  340. <summary>
  341. <para>The override to the default <see cref="T:Godot.MultiplayerAPI"/>. Set to <c>null</c> to use the default <see cref="T:Godot.SceneTree"/> one.</para>
  342. </summary>
  343. </member>
  344. <member name="P:Godot.Node.ProcessPriority">
  345. <summary>
  346. <para>The node's priority in the execution order of the enabled processing callbacks (i.e. , and their internal counterparts). Nodes whose process priority value is lower will have their processing callbacks executed first.</para>
  347. </summary>
  348. </member>
  349. <member name="M:Godot.Node._EnterTree">
  350. <summary>
  351. <para>Called when the node enters the <see cref="T:Godot.SceneTree"/> (e.g. upon instancing, scene changing, or after calling <see cref="M:Godot.Node.AddChild(Godot.Node,System.Boolean)"/> in a script). If the node has children, its <see cref="M:Godot.Node._EnterTree"/> callback will be called first, and then that of the children.</para>
  352. <para>Corresponds to the notification in <see cref="M:Godot.Object._Notification(System.Int32)"/>.</para>
  353. </summary>
  354. </member>
  355. <member name="M:Godot.Node._ExitTree">
  356. <summary>
  357. <para>Called when the node is about to leave the <see cref="T:Godot.SceneTree"/> (e.g. upon freeing, scene changing, or after calling <see cref="M:Godot.Node.RemoveChild(Godot.Node)"/> in a script). If the node has children, its <see cref="M:Godot.Node._ExitTree"/> callback will be called last, after all its children have left the tree.</para>
  358. <para>Corresponds to the notification in <see cref="M:Godot.Object._Notification(System.Int32)"/> and signal <c>tree_exiting</c>. To get notified when the node has already left the active tree, connect to the <c>tree_exited</c>.</para>
  359. </summary>
  360. </member>
  361. <member name="M:Godot.Node._GetConfigurationWarning">
  362. <summary>
  363. <para>The string returned from this method is displayed as a warning in the Scene Dock if the script that overrides it is a <c>tool</c> script.</para>
  364. <para>Returning an empty string produces no warning.</para>
  365. <para>Call <see cref="M:Godot.Node.UpdateConfigurationWarning"/> when the warning needs to be updated for this node.</para>
  366. </summary>
  367. </member>
  368. <member name="M:Godot.Node._Input(Godot.InputEvent)">
  369. <summary>
  370. <para>Called when there is an input event. The input event propagates up through the node tree until a node consumes it.</para>
  371. <para>It is only called if input processing is enabled, which is done automatically if this method is overridden, and can be toggled with <see cref="M:Godot.Node.SetProcessInput(System.Boolean)"/>.</para>
  372. <para>To consume the input event and stop it propagating further to other nodes, <see cref="M:Godot.SceneTree.SetInputAsHandled"/> can be called.</para>
  373. <para>For gameplay input, <see cref="M:Godot.Node._UnhandledInput(Godot.InputEvent)"/> and <see cref="M:Godot.Node._UnhandledKeyInput(Godot.InputEventKey)"/> are usually a better fit as they allow the GUI to intercept the events first.</para>
  374. <para>Note: This method is only called if the node is present in the scene tree (i.e. if it's not orphan).</para>
  375. </summary>
  376. </member>
  377. <member name="M:Godot.Node._PhysicsProcess(System.Single)">
  378. <summary>
  379. <para>Called during the physics processing step of the main loop. Physics processing means that the frame rate is synced to the physics, i.e. the <c>delta</c> variable should be constant.</para>
  380. <para>It is only called if physics processing is enabled, which is done automatically if this method is overridden, and can be toggled with <see cref="M:Godot.Node.SetPhysicsProcess(System.Boolean)"/>.</para>
  381. <para>Corresponds to the notification in <see cref="M:Godot.Object._Notification(System.Int32)"/>.</para>
  382. <para>Note: This method is only called if the node is present in the scene tree (i.e. if it's not orphan).</para>
  383. </summary>
  384. </member>
  385. <member name="M:Godot.Node._Process(System.Single)">
  386. <summary>
  387. <para>Called during the processing step of the main loop. Processing happens at every frame and as fast as possible, so the <c>delta</c> time since the previous frame is not constant.</para>
  388. <para>It is only called if processing is enabled, which is done automatically if this method is overridden, and can be toggled with <see cref="M:Godot.Node.SetProcess(System.Boolean)"/>.</para>
  389. <para>Corresponds to the notification in <see cref="M:Godot.Object._Notification(System.Int32)"/>.</para>
  390. <para>Note: This method is only called if the node is present in the scene tree (i.e. if it's not orphan).</para>
  391. </summary>
  392. </member>
  393. <member name="M:Godot.Node._Ready">
  394. <summary>
  395. <para>Called when the node is "ready", i.e. when both the node and its children have entered the scene tree. If the node has children, their <see cref="M:Godot.Node._Ready"/> callbacks get triggered first, and the parent node will receive the ready notification afterwards.</para>
  396. <para>Corresponds to the notification in <see cref="M:Godot.Object._Notification(System.Int32)"/>. See also the <c>onready</c> keyword for variables.</para>
  397. <para>Usually used for initialization. For even earlier initialization, may be used. See also <see cref="M:Godot.Node._EnterTree"/>.</para>
  398. <para>Note: <see cref="M:Godot.Node._Ready"/> may be called only once for each node. After removing a node from the scene tree and adding again, <c>_ready</c> will not be called for the second time. This can be bypassed with requesting another call with <see cref="M:Godot.Node.RequestReady"/>, which may be called anywhere before adding the node again.</para>
  399. </summary>
  400. </member>
  401. <member name="M:Godot.Node._UnhandledInput(Godot.InputEvent)">
  402. <summary>
  403. <para>Called when an <see cref="T:Godot.InputEvent"/> hasn't been consumed by <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> or any GUI. The input event propagates up through the node tree until a node consumes it.</para>
  404. <para>It is only called if unhandled input processing is enabled, which is done automatically if this method is overridden, and can be toggled with <see cref="M:Godot.Node.SetProcessUnhandledInput(System.Boolean)"/>.</para>
  405. <para>To consume the input event and stop it propagating further to other nodes, <see cref="M:Godot.SceneTree.SetInputAsHandled"/> can be called.</para>
  406. <para>For gameplay input, this and <see cref="M:Godot.Node._UnhandledKeyInput(Godot.InputEventKey)"/> are usually a better fit than <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> as they allow the GUI to intercept the events first.</para>
  407. <para>Note: This method is only called if the node is present in the scene tree (i.e. if it's not orphan).</para>
  408. </summary>
  409. </member>
  410. <member name="M:Godot.Node._UnhandledKeyInput(Godot.InputEventKey)">
  411. <summary>
  412. <para>Called when an <see cref="T:Godot.InputEventKey"/> hasn't been consumed by <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> or any GUI. The input event propagates up through the node tree until a node consumes it.</para>
  413. <para>It is only called if unhandled key input processing is enabled, which is done automatically if this method is overridden, and can be toggled with <see cref="M:Godot.Node.SetProcessUnhandledKeyInput(System.Boolean)"/>.</para>
  414. <para>To consume the input event and stop it propagating further to other nodes, <see cref="M:Godot.SceneTree.SetInputAsHandled"/> can be called.</para>
  415. <para>For gameplay input, this and <see cref="M:Godot.Node._UnhandledInput(Godot.InputEvent)"/> are usually a better fit than <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> as they allow the GUI to intercept the events first.</para>
  416. <para>Note: This method is only called if the node is present in the scene tree (i.e. if it's not orphan).</para>
  417. </summary>
  418. </member>
  419. <member name="M:Godot.Node.AddChildBelowNode(Godot.Node,Godot.Node,System.Boolean)">
  420. <summary>
  421. <para>Adds a child node. The child is placed below the given node in the list of children.</para>
  422. <para>If <c>legible_unique_name</c> is <c>true</c>, the child node will have an human-readable name based on the name of the node being instanced instead of its type.</para>
  423. </summary>
  424. </member>
  425. <member name="M:Godot.Node.AddChild(Godot.Node,System.Boolean)">
  426. <summary>
  427. <para>Adds a child node. Nodes can have any number of children, but every child must have a unique name. Child nodes are automatically deleted when the parent node is deleted, so an entire scene can be removed by deleting its topmost node.</para>
  428. <para>If <c>legible_unique_name</c> is <c>true</c>, the child node will have an human-readable name based on the name of the node being instanced instead of its type.</para>
  429. <para>Note: If the child node already has a parent, the function will fail. Use <see cref="M:Godot.Node.RemoveChild(Godot.Node)"/> first to remove the node from its current parent. For example:</para>
  430. <para><code>
  431. if child_node.get_parent():
  432. child_node.get_parent().remove_child(child_node)
  433. add_child(child_node)
  434. </code></para>
  435. <para>Note: If you want a child to be persisted to a <see cref="T:Godot.PackedScene"/>, you must set <see cref="P:Godot.Node.Owner"/> in addition to calling <see cref="M:Godot.Node.AddChild(Godot.Node,System.Boolean)"/>. This is typically relevant for <a href="https://godot.readthedocs.io/en/latest/tutorials/misc/running_code_in_the_editor.html">tool scripts</a> and <a href="https://godot.readthedocs.io/en/latest/tutorials/plugins/editor/index.html">editor plugins</a>. If <see cref="M:Godot.Node.AddChild(Godot.Node,System.Boolean)"/> is called without setting <see cref="P:Godot.Node.Owner"/>, the newly added <see cref="T:Godot.Node"/> will not be visible in the scene tree, though it will be visible in the 2D/3D view.</para>
  436. </summary>
  437. </member>
  438. <member name="M:Godot.Node.RemoveChild(Godot.Node)">
  439. <summary>
  440. <para>Removes a child node. The node is NOT deleted and must be deleted manually.</para>
  441. </summary>
  442. </member>
  443. <member name="M:Godot.Node.GetChildCount">
  444. <summary>
  445. <para>Returns the number of child nodes.</para>
  446. </summary>
  447. </member>
  448. <member name="M:Godot.Node.GetChildren">
  449. <summary>
  450. <para>Returns an array of references to node's children.</para>
  451. </summary>
  452. </member>
  453. <member name="M:Godot.Node.GetChild(System.Int32)">
  454. <summary>
  455. <para>Returns a child node by its index (see <see cref="M:Godot.Node.GetChildCount"/>). This method is often used for iterating all children of a node.</para>
  456. <para>To access a child node via its name, use <see cref="M:Godot.Node.GetNode(Godot.NodePath)"/>.</para>
  457. </summary>
  458. </member>
  459. <member name="M:Godot.Node.HasNode(Godot.NodePath)">
  460. <summary>
  461. <para>Returns <c>true</c> if the node that the <see cref="T:Godot.NodePath"/> points to exists.</para>
  462. </summary>
  463. </member>
  464. <member name="M:Godot.Node.GetNode(Godot.NodePath)">
  465. <summary>
  466. <para>Fetches a node. The <see cref="T:Godot.NodePath"/> can be either a relative path (from the current node) or an absolute path (in the scene tree) to a node. If the path does not exist, a <c>null instance</c> is returned and an error is logged. Attempts to access methods on the return value will result in an "Attempt to call &lt;method&gt; on a null instance." error.</para>
  467. <para>Note: Fetching absolute paths only works when the node is inside the scene tree (see <see cref="M:Godot.Node.IsInsideTree"/>).</para>
  468. <para>Example: Assume your current node is Character and the following tree:</para>
  469. <para><code>
  470. /root
  471. /root/Character
  472. /root/Character/Sword
  473. /root/Character/Backpack/Dagger
  474. /root/MyGame
  475. /root/Swamp/Alligator
  476. /root/Swamp/Mosquito
  477. /root/Swamp/Goblin
  478. </code></para>
  479. <para>Possible paths are:</para>
  480. <para><code>
  481. get_node("Sword")
  482. get_node("Backpack/Dagger")
  483. get_node("../Swamp/Alligator")
  484. get_node("/root/MyGame")
  485. </code></para>
  486. </summary>
  487. </member>
  488. <member name="M:Godot.Node.GetNodeOrNull(Godot.NodePath)">
  489. <summary>
  490. <para>Similar to <see cref="M:Godot.Node.GetNode(Godot.NodePath)"/>, but does not log an error if <c>path</c> does not point to a valid <see cref="T:Godot.Node"/>.</para>
  491. </summary>
  492. </member>
  493. <member name="M:Godot.Node.GetParent">
  494. <summary>
  495. <para>Returns the parent node of the current node, or a <c>null instance</c> if the node lacks a parent.</para>
  496. </summary>
  497. </member>
  498. <member name="M:Godot.Node.FindNode(System.String,System.Boolean,System.Boolean)">
  499. <summary>
  500. <para>Finds a descendant of this node whose name matches <c>mask</c> as in <c>String.match</c> (i.e. case-sensitive, but <c>"*"</c> matches zero or more characters and <c>"?"</c> matches any single character except <c>"."</c>).</para>
  501. <para>Note: It does not match against the full path, just against individual node names.</para>
  502. <para>If <c>owned</c> is <c>true</c>, this method only finds nodes whose owner is this node. This is especially important for scenes instantiated through a script, because those scenes don't have an owner.</para>
  503. </summary>
  504. </member>
  505. <member name="M:Godot.Node.FindParent(System.String)">
  506. <summary>
  507. <para>Finds the first parent of the current node whose name matches <c>mask</c> as in <c>String.match</c> (i.e. case-sensitive, but <c>"*"</c> matches zero or more characters and <c>"?"</c> matches any single character except <c>"."</c>).</para>
  508. <para>Note: It does not match against the full path, just against individual node names.</para>
  509. </summary>
  510. </member>
  511. <member name="M:Godot.Node.HasNodeAndResource(Godot.NodePath)">
  512. <summary>
  513. <para>Returns <c>true</c> if the <see cref="T:Godot.NodePath"/> points to a valid node and its subname points to a valid resource, e.g. <c>Area2D/CollisionShape2D:shape</c>. Properties with a non-<see cref="T:Godot.Resource"/> type (e.g. nodes or primitive math types) are not considered resources.</para>
  514. </summary>
  515. </member>
  516. <member name="M:Godot.Node.GetNodeAndResource(Godot.NodePath)">
  517. <summary>
  518. <para>Fetches a node and one of its resources as specified by the <see cref="T:Godot.NodePath"/>'s subname (e.g. <c>Area2D/CollisionShape2D:shape</c>). If several nested resources are specified in the <see cref="T:Godot.NodePath"/>, the last one will be fetched.</para>
  519. <para>The return value is an array of size 3: the first index points to the <see cref="T:Godot.Node"/> (or <c>null</c> if not found), the second index points to the <see cref="T:Godot.Resource"/> (or <c>null</c> if not found), and the third index is the remaining <see cref="T:Godot.NodePath"/>, if any.</para>
  520. <para>For example, assuming that <c>Area2D/CollisionShape2D</c> is a valid node and that its <c>shape</c> property has been assigned a <see cref="T:Godot.RectangleShape2D"/> resource, one could have this kind of output:</para>
  521. <para><code>
  522. print(get_node_and_resource("Area2D/CollisionShape2D")) # [[CollisionShape2D:1161], Null, ]
  523. print(get_node_and_resource("Area2D/CollisionShape2D:shape")) # [[CollisionShape2D:1161], [RectangleShape2D:1156], ]
  524. print(get_node_and_resource("Area2D/CollisionShape2D:shape:extents")) # [[CollisionShape2D:1161], [RectangleShape2D:1156], :extents]
  525. </code></para>
  526. </summary>
  527. </member>
  528. <member name="M:Godot.Node.IsInsideTree">
  529. <summary>
  530. <para>Returns <c>true</c> if this node is currently inside a <see cref="T:Godot.SceneTree"/>.</para>
  531. </summary>
  532. </member>
  533. <member name="M:Godot.Node.IsAParentOf(Godot.Node)">
  534. <summary>
  535. <para>Returns <c>true</c> if the given node is a direct or indirect child of the current node.</para>
  536. </summary>
  537. </member>
  538. <member name="M:Godot.Node.IsGreaterThan(Godot.Node)">
  539. <summary>
  540. <para>Returns <c>true</c> if the given node occurs later in the scene hierarchy than the current node.</para>
  541. </summary>
  542. </member>
  543. <member name="M:Godot.Node.GetPath">
  544. <summary>
  545. <para>Returns the absolute path of the current node. This only works if the current node is inside the scene tree (see <see cref="M:Godot.Node.IsInsideTree"/>).</para>
  546. </summary>
  547. </member>
  548. <member name="M:Godot.Node.GetPathTo(Godot.Node)">
  549. <summary>
  550. <para>Returns the relative <see cref="T:Godot.NodePath"/> from this node to the specified <c>node</c>. Both nodes must be in the same scene or the function will fail.</para>
  551. </summary>
  552. </member>
  553. <member name="M:Godot.Node.AddToGroup(System.String,System.Boolean)">
  554. <summary>
  555. <para>Adds the node to a group. Groups are helpers to name and organize a subset of nodes, for example "enemies" or "collectables". A node can be in any number of groups. Nodes can be assigned a group at any time, but will not be added until they are inside the scene tree (see <see cref="M:Godot.Node.IsInsideTree"/>). See notes in the description, and the group methods in <see cref="T:Godot.SceneTree"/>.</para>
  556. <para>The <c>persistent</c> option is used when packing node to <see cref="T:Godot.PackedScene"/> and saving to file. Non-persistent groups aren't stored.</para>
  557. </summary>
  558. </member>
  559. <member name="M:Godot.Node.RemoveFromGroup(System.String)">
  560. <summary>
  561. <para>Removes a node from a group. See notes in the description, and the group methods in <see cref="T:Godot.SceneTree"/>.</para>
  562. </summary>
  563. </member>
  564. <member name="M:Godot.Node.IsInGroup(System.String)">
  565. <summary>
  566. <para>Returns <c>true</c> if this node is in the specified group. See notes in the description, and the group methods in <see cref="T:Godot.SceneTree"/>.</para>
  567. </summary>
  568. </member>
  569. <member name="M:Godot.Node.MoveChild(Godot.Node,System.Int32)">
  570. <summary>
  571. <para>Moves a child node to a different position (order) among the other children. Since calls, signals, etc are performed by tree order, changing the order of children nodes may be useful.</para>
  572. </summary>
  573. </member>
  574. <member name="M:Godot.Node.GetGroups">
  575. <summary>
  576. <para>Returns an array listing the groups that the node is a member of.</para>
  577. </summary>
  578. </member>
  579. <member name="M:Godot.Node.Raise">
  580. <summary>
  581. <para>Moves this node to the bottom of parent node's children hierarchy. This is often useful in GUIs (<see cref="T:Godot.Control"/> nodes), because their order of drawing depends on their order in the tree, i.e. the further they are on the node list, the higher they are drawn. After using <c>raise</c>, a Control will be drawn on top of their siblings.</para>
  582. </summary>
  583. </member>
  584. <member name="M:Godot.Node.RemoveAndSkip">
  585. <summary>
  586. <para>Removes a node and sets all its children as children of the parent node (if it exists). All event subscriptions that pass by the removed node will be unsubscribed.</para>
  587. </summary>
  588. </member>
  589. <member name="M:Godot.Node.GetIndex">
  590. <summary>
  591. <para>Returns the node's index, i.e. its position among the siblings of its parent.</para>
  592. </summary>
  593. </member>
  594. <member name="M:Godot.Node.PrintTree">
  595. <summary>
  596. <para>Prints the tree to stdout. Used mainly for debugging purposes. This version displays the path relative to the current node, and is good for copy/pasting into the <see cref="M:Godot.Node.GetNode(Godot.NodePath)"/> function.</para>
  597. <para>Example output:</para>
  598. <para><code>
  599. TheGame
  600. TheGame/Menu
  601. TheGame/Menu/Label
  602. TheGame/Menu/Camera2D
  603. TheGame/SplashScreen
  604. TheGame/SplashScreen/Camera2D
  605. </code></para>
  606. </summary>
  607. </member>
  608. <member name="M:Godot.Node.PrintTreePretty">
  609. <summary>
  610. <para>Similar to <see cref="M:Godot.Node.PrintTree"/>, this prints the tree to stdout. This version displays a more graphical representation similar to what is displayed in the scene inspector. It is useful for inspecting larger trees.</para>
  611. <para>Example output:</para>
  612. <para><code>
  613. ┖╴TheGame
  614. ┠╴Menu
  615. ┃ ┠╴Label
  616. ┃ ┖╴Camera2D
  617. ┖-SplashScreen
  618. ┖╴Camera2D
  619. </code></para>
  620. </summary>
  621. </member>
  622. <member name="M:Godot.Node.PropagateNotification(System.Int32)">
  623. <summary>
  624. <para>Notifies the current node and all its children recursively by calling <see cref="M:Godot.Object.Notification(System.Int32,System.Boolean)"/> on all of them.</para>
  625. </summary>
  626. </member>
  627. <member name="M:Godot.Node.PropagateCall(System.String,Godot.Collections.Array,System.Boolean)">
  628. <summary>
  629. <para>Calls the given method (if present) with the arguments given in <c>args</c> on this node and recursively on all its children. If the <c>parent_first</c> argument is <c>true</c>, the method will be called on the current node first, then on all its children. If <c>parent_first</c> is <c>false</c>, the children will be called first.</para>
  630. </summary>
  631. <param name="args">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  632. </member>
  633. <member name="M:Godot.Node.SetPhysicsProcess(System.Boolean)">
  634. <summary>
  635. <para>Enables or disables physics (i.e. fixed framerate) processing. When a node is being processed, it will receive a at a fixed (usually 60 FPS, see <see cref="P:Godot.Engine.IterationsPerSecond"/> to change) interval (and the <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> callback will be called if exists). Enabled automatically if <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> is overridden. Any calls to this before <see cref="M:Godot.Node._Ready"/> will be ignored.</para>
  636. </summary>
  637. </member>
  638. <member name="M:Godot.Node.GetPhysicsProcessDeltaTime">
  639. <summary>
  640. <para>Returns the time elapsed since the last physics-bound frame (see <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/>). This is always a constant value in physics processing unless the frames per second is changed via <see cref="P:Godot.Engine.IterationsPerSecond"/>.</para>
  641. </summary>
  642. </member>
  643. <member name="M:Godot.Node.IsPhysicsProcessing">
  644. <summary>
  645. <para>Returns <c>true</c> if physics processing is enabled (see <see cref="M:Godot.Node.SetPhysicsProcess(System.Boolean)"/>).</para>
  646. </summary>
  647. </member>
  648. <member name="M:Godot.Node.GetProcessDeltaTime">
  649. <summary>
  650. <para>Returns the time elapsed (in seconds) since the last process callback. This value may vary from frame to frame.</para>
  651. </summary>
  652. </member>
  653. <member name="M:Godot.Node.SetProcess(System.Boolean)">
  654. <summary>
  655. <para>Enables or disables processing. When a node is being processed, it will receive a on every drawn frame (and the <see cref="M:Godot.Node._Process(System.Single)"/> callback will be called if exists). Enabled automatically if <see cref="M:Godot.Node._Process(System.Single)"/> is overridden. Any calls to this before <see cref="M:Godot.Node._Ready"/> will be ignored.</para>
  656. </summary>
  657. </member>
  658. <member name="M:Godot.Node.IsProcessing">
  659. <summary>
  660. <para>Returns <c>true</c> if processing is enabled (see <see cref="M:Godot.Node.SetProcess(System.Boolean)"/>).</para>
  661. </summary>
  662. </member>
  663. <member name="M:Godot.Node.SetProcessInput(System.Boolean)">
  664. <summary>
  665. <para>Enables or disables input processing. This is not required for GUI controls! Enabled automatically if <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> is overridden. Any calls to this before <see cref="M:Godot.Node._Ready"/> will be ignored.</para>
  666. </summary>
  667. </member>
  668. <member name="M:Godot.Node.IsProcessingInput">
  669. <summary>
  670. <para>Returns <c>true</c> if the node is processing input (see <see cref="M:Godot.Node.SetProcessInput(System.Boolean)"/>).</para>
  671. </summary>
  672. </member>
  673. <member name="M:Godot.Node.SetProcessUnhandledInput(System.Boolean)">
  674. <summary>
  675. <para>Enables unhandled input processing. This is not required for GUI controls! It enables the node to receive all input that was not previously handled (usually by a <see cref="T:Godot.Control"/>). Enabled automatically if <see cref="M:Godot.Node._UnhandledInput(Godot.InputEvent)"/> is overridden. Any calls to this before <see cref="M:Godot.Node._Ready"/> will be ignored.</para>
  676. </summary>
  677. </member>
  678. <member name="M:Godot.Node.IsProcessingUnhandledInput">
  679. <summary>
  680. <para>Returns <c>true</c> if the node is processing unhandled input (see <see cref="M:Godot.Node.SetProcessUnhandledInput(System.Boolean)"/>).</para>
  681. </summary>
  682. </member>
  683. <member name="M:Godot.Node.SetProcessUnhandledKeyInput(System.Boolean)">
  684. <summary>
  685. <para>Enables unhandled key input processing. Enabled automatically if <see cref="M:Godot.Node._UnhandledKeyInput(Godot.InputEventKey)"/> is overridden. Any calls to this before <see cref="M:Godot.Node._Ready"/> will be ignored.</para>
  686. </summary>
  687. </member>
  688. <member name="M:Godot.Node.IsProcessingUnhandledKeyInput">
  689. <summary>
  690. <para>Returns <c>true</c> if the node is processing unhandled key input (see <see cref="M:Godot.Node.SetProcessUnhandledKeyInput(System.Boolean)"/>).</para>
  691. </summary>
  692. </member>
  693. <member name="M:Godot.Node.CanProcess">
  694. <summary>
  695. <para>Returns <c>true</c> if the node can process while the scene tree is paused (see <see cref="P:Godot.Node.PauseMode"/>). Always returns <c>true</c> if the scene tree is not paused, and <c>false</c> if the node is not in the tree.</para>
  696. </summary>
  697. </member>
  698. <member name="M:Godot.Node.PrintStrayNodes">
  699. <summary>
  700. <para>Prints all stray nodes (nodes outside the <see cref="T:Godot.SceneTree"/>). Used for debugging. Works only in debug builds.</para>
  701. </summary>
  702. </member>
  703. <member name="M:Godot.Node.GetPositionInParent">
  704. <summary>
  705. <para>Returns the node's order in the scene tree branch. For example, if called on the first child node the position is <c>0</c>.</para>
  706. </summary>
  707. </member>
  708. <member name="M:Godot.Node.SetDisplayFolded(System.Boolean)">
  709. <summary>
  710. <para>Sets the folded state of the node in the Scene dock.</para>
  711. </summary>
  712. </member>
  713. <member name="M:Godot.Node.IsDisplayedFolded">
  714. <summary>
  715. <para>Returns <c>true</c> if the node is folded (collapsed) in the Scene dock.</para>
  716. </summary>
  717. </member>
  718. <member name="M:Godot.Node.SetProcessInternal(System.Boolean)">
  719. <summary>
  720. <para>Enables or disabled internal processing for this node. Internal processing happens in isolation from the normal <see cref="M:Godot.Node._Process(System.Single)"/> calls and is used by some nodes internally to guarantee proper functioning even if the node is paused or processing is disabled for scripting (<see cref="M:Godot.Node.SetProcess(System.Boolean)"/>). Only useful for advanced uses to manipulate built-in nodes' behaviour.</para>
  721. </summary>
  722. </member>
  723. <member name="M:Godot.Node.IsProcessingInternal">
  724. <summary>
  725. <para>Returns <c>true</c> if internal processing is enabled (see <see cref="M:Godot.Node.SetProcessInternal(System.Boolean)"/>).</para>
  726. </summary>
  727. </member>
  728. <member name="M:Godot.Node.SetPhysicsProcessInternal(System.Boolean)">
  729. <summary>
  730. <para>Enables or disables internal physics for this node. Internal physics processing happens in isolation from the normal <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> calls and is used by some nodes internally to guarantee proper functioning even if the node is paused or physics processing is disabled for scripting (<see cref="M:Godot.Node.SetPhysicsProcess(System.Boolean)"/>). Only useful for advanced uses to manipulate built-in nodes' behaviour.</para>
  731. </summary>
  732. </member>
  733. <member name="M:Godot.Node.IsPhysicsProcessingInternal">
  734. <summary>
  735. <para>Returns <c>true</c> if internal physics processing is enabled (see <see cref="M:Godot.Node.SetPhysicsProcessInternal(System.Boolean)"/>).</para>
  736. </summary>
  737. </member>
  738. <member name="M:Godot.Node.GetTree">
  739. <summary>
  740. <para>Returns the <see cref="T:Godot.SceneTree"/> that contains this node.</para>
  741. </summary>
  742. </member>
  743. <member name="M:Godot.Node.Duplicate(System.Int32)">
  744. <summary>
  745. <para>Duplicates the node, returning a new node.</para>
  746. <para>You can fine-tune the behavior using the <c>flags</c> (see <see cref="T:Godot.Node.DuplicateFlags"/>).</para>
  747. <para>Note: It will not work properly if the node contains a script with constructor arguments (i.e. needs to supply arguments to method). In that case, the node will be duplicated without a script.</para>
  748. </summary>
  749. </member>
  750. <member name="M:Godot.Node.ReplaceBy(Godot.Node,System.Boolean)">
  751. <summary>
  752. <para>Replaces a node in a scene by the given one. Subscriptions that pass through this node will be lost.</para>
  753. </summary>
  754. </member>
  755. <member name="M:Godot.Node.SetSceneInstanceLoadPlaceholder(System.Boolean)">
  756. <summary>
  757. <para>Sets whether this is an instance load placeholder. See <see cref="T:Godot.InstancePlaceholder"/>.</para>
  758. </summary>
  759. </member>
  760. <member name="M:Godot.Node.GetSceneInstanceLoadPlaceholder">
  761. <summary>
  762. <para>Returns <c>true</c> if this is an instance load placeholder. See <see cref="T:Godot.InstancePlaceholder"/>.</para>
  763. </summary>
  764. </member>
  765. <member name="M:Godot.Node.GetViewport">
  766. <summary>
  767. <para>Returns the node's <see cref="T:Godot.Viewport"/>.</para>
  768. </summary>
  769. </member>
  770. <member name="M:Godot.Node.QueueFree">
  771. <summary>
  772. <para>Queues a node for deletion at the end of the current frame. When deleted, all of its child nodes will be deleted as well. This method ensures it's safe to delete the node, contrary to <see cref="M:Godot.Object.Free"/>. Use <see cref="M:Godot.Object.IsQueuedForDeletion"/> to check whether a node will be deleted at the end of the frame.</para>
  773. </summary>
  774. </member>
  775. <member name="M:Godot.Node.RequestReady">
  776. <summary>
  777. <para>Requests that <c>_ready</c> be called again. Note that the method won't be called immediately, but is scheduled for when the node is added to the scene tree again (see <see cref="M:Godot.Node._Ready"/>). <c>_ready</c> is called only for the node which requested it, which means that you need to request ready for each child if you want them to call <c>_ready</c> too (in which case, <c>_ready</c> will be called in the same order as it would normally).</para>
  778. </summary>
  779. </member>
  780. <member name="M:Godot.Node.SetNetworkMaster(System.Int32,System.Boolean)">
  781. <summary>
  782. <para>Sets the node's network master to the peer with the given peer ID. The network master is the peer that has authority over the node on the network. Useful in conjunction with the <c>master</c> and <c>puppet</c> keywords. Inherited from the parent node by default, which ultimately defaults to peer ID 1 (the server). If <c>recursive</c>, the given peer is recursively set as the master for all children of this node.</para>
  783. </summary>
  784. </member>
  785. <member name="M:Godot.Node.GetNetworkMaster">
  786. <summary>
  787. <para>Returns the peer ID of the network master for this node. See <see cref="M:Godot.Node.SetNetworkMaster(System.Int32,System.Boolean)"/>.</para>
  788. </summary>
  789. </member>
  790. <member name="M:Godot.Node.IsNetworkMaster">
  791. <summary>
  792. <para>Returns <c>true</c> if the local system is the master of this node.</para>
  793. </summary>
  794. </member>
  795. <member name="M:Godot.Node.RpcConfig(System.String,Godot.MultiplayerAPI.RPCMode)">
  796. <summary>
  797. <para>Changes the RPC mode for the given <c>method</c> to the given <c>mode</c>. See <see cref="T:Godot.MultiplayerAPI.RPCMode"/>. An alternative is annotating methods and properties with the corresponding keywords (<c>remote</c>, <c>master</c>, <c>puppet</c>, <c>remotesync</c>, <c>mastersync</c>, <c>puppetsync</c>). By default, methods are not exposed to networking (and RPCs). See also <see cref="M:Godot.Node.Rset(System.String,System.Object)"/> and <see cref="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> for properties.</para>
  798. </summary>
  799. </member>
  800. <member name="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)">
  801. <summary>
  802. <para>Changes the RPC mode for the given <c>property</c> to the given <c>mode</c>. See <see cref="T:Godot.MultiplayerAPI.RPCMode"/>. An alternative is annotating methods and properties with the corresponding keywords (<c>remote</c>, <c>master</c>, <c>puppet</c>, <c>remotesync</c>, <c>mastersync</c>, <c>puppetsync</c>). By default, properties are not exposed to networking (and RPCs). See also <see cref="M:Godot.Node.Rpc(System.String,System.Object[])"/> and <see cref="M:Godot.Node.RpcConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> for methods.</para>
  803. </summary>
  804. </member>
  805. <member name="M:Godot.Node.Rpc(System.String,System.Object[])">
  806. <summary>
  807. <para>Sends a remote procedure call request for the given <c>method</c> to peers on the network (and locally), optionally sending all additional arguments as arguments to the method called by the RPC. The call request will only be received by nodes with the same <see cref="T:Godot.NodePath"/>, including the exact same node name. Behaviour depends on the RPC configuration for the given method, see <see cref="M:Godot.Node.RpcConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/>. Methods are not exposed to RPCs by default. See also <see cref="M:Godot.Node.Rset(System.String,System.Object)"/> and <see cref="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> for properties. Returns an empty <c>Variant</c>.</para>
  808. <para>Note: You can only safely use RPCs on clients after you received the <c>connected_to_server</c> signal from the <see cref="T:Godot.SceneTree"/>. You also need to keep track of the connection state, either by the <see cref="T:Godot.SceneTree"/> signals like <c>server_disconnected</c> or by checking <c>SceneTree.network_peer.get_connection_status() == CONNECTION_CONNECTED</c>.</para>
  809. </summary>
  810. </member>
  811. <member name="M:Godot.Node.RpcUnreliable(System.String,System.Object[])">
  812. <summary>
  813. <para>Sends a <see cref="M:Godot.Node.Rpc(System.String,System.Object[])"/> using an unreliable protocol. Returns an empty <c>Variant</c>.</para>
  814. </summary>
  815. </member>
  816. <member name="M:Godot.Node.RpcId(System.Int32,System.String,System.Object[])">
  817. <summary>
  818. <para>Sends a <see cref="M:Godot.Node.Rpc(System.String,System.Object[])"/> to a specific peer identified by <c>peer_id</c> (see <see cref="M:Godot.NetworkedMultiplayerPeer.SetTargetPeer(System.Int32)"/>). Returns an empty <c>Variant</c>.</para>
  819. </summary>
  820. </member>
  821. <member name="M:Godot.Node.RpcUnreliableId(System.Int32,System.String,System.Object[])">
  822. <summary>
  823. <para>Sends a <see cref="M:Godot.Node.Rpc(System.String,System.Object[])"/> to a specific peer identified by <c>peer_id</c> using an unreliable protocol (see <see cref="M:Godot.NetworkedMultiplayerPeer.SetTargetPeer(System.Int32)"/>). Returns an empty <c>Variant</c>.</para>
  824. </summary>
  825. </member>
  826. <member name="M:Godot.Node.Rset(System.String,System.Object)">
  827. <summary>
  828. <para>Remotely changes a property's value on other peers (and locally). Behaviour depends on the RPC configuration for the given property, see <see cref="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/>. See also <see cref="M:Godot.Node.Rpc(System.String,System.Object[])"/> for RPCs for methods, most information applies to this method as well.</para>
  829. </summary>
  830. </member>
  831. <member name="M:Godot.Node.RsetId(System.Int32,System.String,System.Object)">
  832. <summary>
  833. <para>Remotely changes the property's value on a specific peer identified by <c>peer_id</c> (see <see cref="M:Godot.NetworkedMultiplayerPeer.SetTargetPeer(System.Int32)"/>).</para>
  834. </summary>
  835. </member>
  836. <member name="M:Godot.Node.RsetUnreliable(System.String,System.Object)">
  837. <summary>
  838. <para>Remotely changes the property's value on other peers (and locally) using an unreliable protocol.</para>
  839. </summary>
  840. </member>
  841. <member name="M:Godot.Node.RsetUnreliableId(System.Int32,System.String,System.Object)">
  842. <summary>
  843. <para>Remotely changes property's value on a specific peer identified by <c>peer_id</c> using an unreliable protocol (see <see cref="M:Godot.NetworkedMultiplayerPeer.SetTargetPeer(System.Int32)"/>).</para>
  844. </summary>
  845. </member>
  846. <member name="M:Godot.Node.UpdateConfigurationWarning">
  847. <summary>
  848. <para>Updates the warning displayed for this node in the Scene Dock.</para>
  849. <para>Use <see cref="M:Godot.Node._GetConfigurationWarning"/> to setup the warning message to display.</para>
  850. </summary>
  851. </member>
  852. <member name="T:Godot.Object">
  853. <summary>
  854. <para>Every class which is not a built-in type inherits from this class.</para>
  855. <para>You can construct Objects from scripting languages, using <c>Object.new()</c> in GDScript, <c>new Object</c> in C#, or the "Construct Object" node in VisualScript.</para>
  856. <para>Objects do not manage memory. If a class inherits from Object, you will have to delete instances of it manually. To do so, call the <see cref="M:Godot.Object.Free"/> method from your script or delete the instance from C++.</para>
  857. <para>Some classes that extend Object add memory management. This is the case of <see cref="T:Godot.Reference"/>, which counts references and deletes itself automatically when no longer referenced. <see cref="T:Godot.Node"/>, another fundamental type, deletes all its children when freed from memory.</para>
  858. <para>Objects export properties, which are mainly useful for storage and editing, but not really so much in programming. Properties are exported in <see cref="M:Godot.Object._GetPropertyList"/> and handled in <see cref="M:Godot.Object._Get(System.String)"/> and <see cref="M:Godot.Object._Set(System.String,System.Object)"/>. However, scripting languages and C++ have simpler means to export them.</para>
  859. <para>Property membership can be tested directly in GDScript using <c>in</c>:</para>
  860. <para><code>
  861. var n = Node2D.new()
  862. print("position" in n) # Prints "True".
  863. print("other_property" in n) # Prints "False".
  864. </code></para>
  865. <para>The <c>in</c> operator will evaluate to <c>true</c> as long as the key exists, even if the value is <c>null</c>.</para>
  866. <para>Objects also receive notifications. Notifications are a simple way to notify the object about different events, so they can all be handled together. See <see cref="M:Godot.Object._Notification(System.Int32)"/>.</para>
  867. </summary>
  868. </member>
  869. <member name="M:Godot.Object.ToSignal(Godot.Object,System.String)">
  870. <summary>
  871. Returns a new <see cref="T:Godot.SignalAwaiter"/> awaiter configured to complete when the instance
  872. <paramref name="source"/> emits the signal specified by the <paramref name="signal"/> parameter.
  873. </summary>
  874. <param name="source">
  875. The instance the awaiter will be listening to.
  876. </param>
  877. <param name="signal">
  878. The signal the awaiter will be waiting for.
  879. </param>
  880. <example>
  881. This sample prints a message once every frame up to 100 times.
  882. <code>
  883. public override void _Ready()
  884. {
  885. for (int i = 0; i &lt; 100; i++)
  886. {
  887. await ToSignal(GetTree(), "idle_frame");
  888. GD.Print($"Frame {i}");
  889. }
  890. }
  891. </code>
  892. </example>
  893. </member>
  894. <member name="P:Godot.Object.DynamicObject">
  895. <summary>
  896. Gets a new <see cref="T:Godot.DynamicGodotObject"/> associated with this instance.
  897. </summary>
  898. </member>
  899. <member name="F:Godot.Object.NotificationPostinitialize">
  900. <summary>
  901. <para>Called right when the object is initialized. Not available in script.</para>
  902. </summary>
  903. </member>
  904. <member name="F:Godot.Object.NotificationPredelete">
  905. <summary>
  906. <para>Called before the object is about to be deleted.</para>
  907. </summary>
  908. </member>
  909. <member name="F:Godot.Object.ConnectFlags.Deferred">
  910. <summary>
  911. <para>Connects a signal in deferred mode. This way, signal emissions are stored in a queue, then set on idle time.</para>
  912. </summary>
  913. </member>
  914. <member name="F:Godot.Object.ConnectFlags.Persist">
  915. <summary>
  916. <para>Persisting connections are saved when the object is serialized to file.</para>
  917. </summary>
  918. </member>
  919. <member name="F:Godot.Object.ConnectFlags.Oneshot">
  920. <summary>
  921. <para>One-shot connections disconnect themselves after emission.</para>
  922. </summary>
  923. </member>
  924. <member name="F:Godot.Object.ConnectFlags.ReferenceCounted">
  925. <summary>
  926. <para>Connect a signal as reference counted. This means that a given signal can be connected several times to the same target, and will only be fully disconnected once no references are left.</para>
  927. </summary>
  928. </member>
  929. <member name="M:Godot.Object._Get(System.String)">
  930. <summary>
  931. <para>Virtual method which can be overridden to customize the return value of <see cref="M:Godot.Object.Get(System.String)"/>.</para>
  932. <para>Returns the given property. Returns <c>null</c> if the <c>property</c> does not exist.</para>
  933. </summary>
  934. </member>
  935. <member name="M:Godot.Object._GetPropertyList">
  936. <summary>
  937. <para>Virtual method which can be overridden to customize the return value of <see cref="M:Godot.Object.GetPropertyList"/>.</para>
  938. <para>Returns the object's property list as an <see cref="T:Godot.Collections.Array"/> of dictionaries.</para>
  939. <para>Each property's <see cref="T:Godot.Collections.Dictionary"/> must contain at least <c>name: String</c> and <c>type: int</c> (see <see cref="T:Godot.Variant.Type"/>) entries. Optionally, it can also include <c>hint: int</c> (see <see cref="T:Godot.PropertyHint"/>), <c>hint_string: String</c>, and <c>usage: int</c> (see <see cref="T:Godot.PropertyUsageFlags"/>).</para>
  940. </summary>
  941. </member>
  942. <member name="M:Godot.Object._Notification(System.Int32)">
  943. <summary>
  944. <para>Called whenever the object receives a notification, which is identified in <c>what</c> by a constant. The base <see cref="T:Godot.Object"/> has two constants and , but subclasses such as <see cref="T:Godot.Node"/> define a lot more notifications which are also received by this method.</para>
  945. </summary>
  946. </member>
  947. <member name="M:Godot.Object._Set(System.String,System.Object)">
  948. <summary>
  949. <para>Virtual method which can be overridden to customize the return value of <see cref="M:Godot.Object.Set(System.String,System.Object)"/>.</para>
  950. <para>Sets a property. Returns <c>true</c> if the <c>property</c> exists.</para>
  951. </summary>
  952. </member>
  953. <member name="M:Godot.Object.Free">
  954. <summary>
  955. <para>Deletes the object from memory. Any pre-existing reference to the freed object will become invalid, e.g. <c>is_instance_valid(object)</c> will return <c>false</c>.</para>
  956. </summary>
  957. </member>
  958. <member name="M:Godot.Object.GetClass">
  959. <summary>
  960. <para>Returns the object's class as a <see cref="T:System.String"/>.</para>
  961. </summary>
  962. </member>
  963. <member name="M:Godot.Object.IsClass(System.String)">
  964. <summary>
  965. <para>Returns <c>true</c> if the object inherits from the given <c>class</c>.</para>
  966. </summary>
  967. </member>
  968. <member name="M:Godot.Object.Set(System.String,System.Object)">
  969. <summary>
  970. <para>Assigns a new value to the given property. If the <c>property</c> does not exist, nothing will happen.</para>
  971. </summary>
  972. </member>
  973. <member name="M:Godot.Object.Get(System.String)">
  974. <summary>
  975. <para>Returns the <c>Variant</c> value of the given <c>property</c>. If the <c>property</c> doesn't exist, this will return <c>null</c>.</para>
  976. </summary>
  977. </member>
  978. <member name="M:Godot.Object.SetIndexed(Godot.NodePath,System.Object)">
  979. <summary>
  980. <para>Assigns a new value to the property identified by the <see cref="T:Godot.NodePath"/>. The node path should be relative to the current object and can use the colon character (<c>:</c>) to access nested properties. Example:</para>
  981. <para><code>
  982. set_indexed("position", Vector2(42, 0))
  983. set_indexed("position:y", -10)
  984. print(position) # (42, -10)
  985. </code></para>
  986. </summary>
  987. </member>
  988. <member name="M:Godot.Object.GetIndexed(Godot.NodePath)">
  989. <summary>
  990. <para>Gets the object's property indexed by the given <see cref="T:Godot.NodePath"/>. The node path should be relative to the current object and can use the colon character (<c>:</c>) to access nested properties. Examples: <c>"position:x"</c> or <c>"material:next_pass:blend_mode"</c>.</para>
  991. </summary>
  992. </member>
  993. <member name="M:Godot.Object.GetPropertyList">
  994. <summary>
  995. <para>Returns the object's property list as an <see cref="T:Godot.Collections.Array"/> of dictionaries.</para>
  996. <para>Each property's <see cref="T:Godot.Collections.Dictionary"/> contain at least <c>name: String</c> and <c>type: int</c> (see <see cref="T:Godot.Variant.Type"/>) entries. Optionally, it can also include <c>hint: int</c> (see <see cref="T:Godot.PropertyHint"/>), <c>hint_string: String</c>, and <c>usage: int</c> (see <see cref="T:Godot.PropertyUsageFlags"/>).</para>
  997. </summary>
  998. </member>
  999. <member name="M:Godot.Object.GetMethodList">
  1000. <summary>
  1001. <para>Returns the object's methods and their signatures as an <see cref="T:Godot.Collections.Array"/>.</para>
  1002. </summary>
  1003. </member>
  1004. <member name="M:Godot.Object.Notification(System.Int32,System.Boolean)">
  1005. <summary>
  1006. <para>Send a given notification to the object, which will also trigger a call to the <see cref="M:Godot.Object._Notification(System.Int32)"/> method of all classes that the object inherits from.</para>
  1007. <para>If <c>reversed</c> is <c>true</c>, <see cref="M:Godot.Object._Notification(System.Int32)"/> is called first on the object's own class, and then up to its successive parent classes. If <c>reversed</c> is <c>false</c>, <see cref="M:Godot.Object._Notification(System.Int32)"/> is called first on the highest ancestor (<see cref="T:Godot.Object"/> itself), and then down to its successive inheriting classes.</para>
  1008. </summary>
  1009. </member>
  1010. <member name="M:Godot.Object.GetInstanceId">
  1011. <summary>
  1012. <para>Returns the object's unique instance ID.</para>
  1013. <para>This ID can be saved in <see cref="T:Godot.EncodedObjectAsID"/>, and can be used to retrieve the object instance with <c>@GDScript.instance_from_id</c>.</para>
  1014. </summary>
  1015. </member>
  1016. <member name="M:Godot.Object.SetScript(Godot.Reference)">
  1017. <summary>
  1018. <para>Assigns a script to the object. Each object can have a single script assigned to it, which are used to extend its functionality.</para>
  1019. <para>If the object already had a script, the previous script instance will be freed and its variables and state will be lost. The new script's method will be called.</para>
  1020. </summary>
  1021. </member>
  1022. <member name="M:Godot.Object.GetScript">
  1023. <summary>
  1024. <para>Returns the object's <see cref="T:Godot.Script"/> instance, or <c>null</c> if none is assigned.</para>
  1025. </summary>
  1026. </member>
  1027. <member name="M:Godot.Object.SetMeta(System.String,System.Object)">
  1028. <summary>
  1029. <para>Adds or changes a given entry in the object's metadata. Metadata are serialized, and can take any <c>Variant</c> value.</para>
  1030. </summary>
  1031. </member>
  1032. <member name="M:Godot.Object.RemoveMeta(System.String)">
  1033. <summary>
  1034. <para>Removes a given entry from the object's metadata.</para>
  1035. </summary>
  1036. </member>
  1037. <member name="M:Godot.Object.GetMeta(System.String)">
  1038. <summary>
  1039. <para>Returns the object's metadata entry for the given <c>name</c>.</para>
  1040. </summary>
  1041. </member>
  1042. <member name="M:Godot.Object.HasMeta(System.String)">
  1043. <summary>
  1044. <para>Returns <c>true</c> if a metadata entry is found with the given <c>name</c>.</para>
  1045. </summary>
  1046. </member>
  1047. <member name="M:Godot.Object.GetMetaList">
  1048. <summary>
  1049. <para>Returns the object's metadata as a <see cref="T:System.String"/>.</para>
  1050. </summary>
  1051. </member>
  1052. <member name="M:Godot.Object.AddUserSignal(System.String,Godot.Collections.Array)">
  1053. <summary>
  1054. <para>Adds a user-defined <c>signal</c>. Arguments are optional, but can be added as an <see cref="T:Godot.Collections.Array"/> of dictionaries, each containing <c>name: String</c> and <c>type: int</c> (see <see cref="T:Godot.Variant.Type"/>) entries.</para>
  1055. </summary>
  1056. <param name="arguments">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  1057. </member>
  1058. <member name="M:Godot.Object.HasUserSignal(System.String)">
  1059. <summary>
  1060. <para>Returns <c>true</c> if the given user-defined <c>signal</c> exists. Only signals added using <see cref="M:Godot.Object.AddUserSignal(System.String,Godot.Collections.Array)"/> are taken into account.</para>
  1061. </summary>
  1062. </member>
  1063. <member name="M:Godot.Object.EmitSignal(System.String,System.Object[])">
  1064. <summary>
  1065. <para>Emits the given <c>signal</c>. The signal must exist, so it should be a built-in signal of this class or one of its parent classes, or a user-defined signal. This method supports a variable number of arguments, so parameters are passed as a comma separated list. Example:</para>
  1066. <para><code>
  1067. emit_signal("hit", weapon_type, damage)
  1068. emit_signal("game_over")
  1069. </code></para>
  1070. </summary>
  1071. </member>
  1072. <member name="M:Godot.Object.Call(System.String,System.Object[])">
  1073. <summary>
  1074. <para>Calls the <c>method</c> on the object and returns the result. This method supports a variable number of arguments, so parameters are passed as a comma separated list. Example:</para>
  1075. <para><code>
  1076. call("set", "position", Vector2(42.0, 0.0))
  1077. </code></para>
  1078. </summary>
  1079. </member>
  1080. <member name="M:Godot.Object.CallDeferred(System.String,System.Object[])">
  1081. <summary>
  1082. <para>Calls the <c>method</c> on the object during idle time. This method supports a variable number of arguments, so parameters are passed as a comma separated list. Example:</para>
  1083. <para><code>
  1084. call_deferred("set", "position", Vector2(42.0, 0.0))
  1085. </code></para>
  1086. </summary>
  1087. </member>
  1088. <member name="M:Godot.Object.SetDeferred(System.String,System.Object)">
  1089. <summary>
  1090. <para>Assigns a new value to the given property, after the current frame's physics step. This is equivalent to calling <see cref="M:Godot.Object.Set(System.String,System.Object)"/> via <see cref="M:Godot.Object.CallDeferred(System.String,System.Object[])"/>, i.e. <c>call_deferred("set", property, value)</c>.</para>
  1091. </summary>
  1092. </member>
  1093. <member name="M:Godot.Object.Callv(System.String,Godot.Collections.Array)">
  1094. <summary>
  1095. <para>Calls the <c>method</c> on the object and returns the result. Contrarily to <see cref="M:Godot.Object.Call(System.String,System.Object[])"/>, this method does not support a variable number of arguments but expects all parameters to be via a single <see cref="T:Godot.Collections.Array"/>.</para>
  1096. <para><code>
  1097. callv("set", [ "position", Vector2(42.0, 0.0) ])
  1098. </code></para>
  1099. </summary>
  1100. </member>
  1101. <member name="M:Godot.Object.HasMethod(System.String)">
  1102. <summary>
  1103. <para>Returns <c>true</c> if the object contains the given <c>method</c>.</para>
  1104. </summary>
  1105. </member>
  1106. <member name="M:Godot.Object.HasSignal(System.String)">
  1107. <summary>
  1108. <para>Returns <c>true</c> if the given <c>signal</c> exists.</para>
  1109. </summary>
  1110. </member>
  1111. <member name="M:Godot.Object.GetSignalList">
  1112. <summary>
  1113. <para>Returns the list of signals as an <see cref="T:Godot.Collections.Array"/> of dictionaries.</para>
  1114. </summary>
  1115. </member>
  1116. <member name="M:Godot.Object.GetSignalConnectionList(System.String)">
  1117. <summary>
  1118. <para>Returns an <see cref="T:Godot.Collections.Array"/> of connections for the given <c>signal</c>.</para>
  1119. </summary>
  1120. </member>
  1121. <member name="M:Godot.Object.GetIncomingConnections">
  1122. <summary>
  1123. <para>Returns an <see cref="T:Godot.Collections.Array"/> of dictionaries with information about signals that are connected to the object.</para>
  1124. <para>Each <see cref="T:Godot.Collections.Dictionary"/> contains three String entries:</para>
  1125. <para>- <c>source</c> is a reference to the signal emitter.</para>
  1126. <para>- <c>signal_name</c> is the name of the connected signal.</para>
  1127. <para>- <c>method_name</c> is the name of the method to which the signal is connected.</para>
  1128. </summary>
  1129. </member>
  1130. <member name="M:Godot.Object.Connect(System.String,Godot.Object,System.String,Godot.Collections.Array,System.UInt32)">
  1131. <summary>
  1132. <para>Connects a <c>signal</c> to a <c>method</c> on a <c>target</c> object. Pass optional <c>binds</c> to the call as an <see cref="T:Godot.Collections.Array"/> of parameters. These parameters will be passed to the method after any parameter used in the call to <see cref="M:Godot.Object.EmitSignal(System.String,System.Object[])"/>. Use <c>flags</c> to set deferred or one-shot connections. See <see cref="T:Godot.Object.ConnectFlags"/> constants.</para>
  1133. <para>A <c>signal</c> can only be connected once to a <c>method</c>. It will throw an error if already connected, unless the signal was connected with . To avoid this, first, use <see cref="M:Godot.Object.IsConnected(System.String,Godot.Object,System.String)"/> to check for existing connections.</para>
  1134. <para>If the <c>target</c> is destroyed in the game's lifecycle, the connection will be lost.</para>
  1135. <para>Examples:</para>
  1136. <para><code>
  1137. connect("pressed", self, "_on_Button_pressed") # BaseButton signal
  1138. connect("text_entered", self, "_on_LineEdit_text_entered") # LineEdit signal
  1139. connect("hit", self, "_on_Player_hit", [ weapon_type, damage ]) # User-defined signal
  1140. </code></para>
  1141. <para>An example of the relationship between <c>binds</c> passed to <see cref="M:Godot.Object.Connect(System.String,Godot.Object,System.String,Godot.Collections.Array,System.UInt32)"/> and parameters used when calling <see cref="M:Godot.Object.EmitSignal(System.String,System.Object[])"/>:</para>
  1142. <para><code>
  1143. connect("hit", self, "_on_Player_hit", [ weapon_type, damage ]) # weapon_type and damage are passed last
  1144. emit_signal("hit", "Dark lord", 5) # "Dark lord" and 5 are passed first
  1145. func _on_Player_hit(hit_by, level, weapon_type, damage):
  1146. print("Hit by %s (lvl %d) with weapon %s for %d damage" % [hit_by, level, weapon_type, damage])
  1147. </code></para>
  1148. </summary>
  1149. <param name="binds">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  1150. </member>
  1151. <member name="M:Godot.Object.Disconnect(System.String,Godot.Object,System.String)">
  1152. <summary>
  1153. <para>Disconnects a <c>signal</c> from a <c>method</c> on the given <c>target</c>.</para>
  1154. <para>If you try to disconnect a connection that does not exist, the method will throw an error. Use <see cref="M:Godot.Object.IsConnected(System.String,Godot.Object,System.String)"/> to ensure that the connection exists.</para>
  1155. </summary>
  1156. </member>
  1157. <member name="M:Godot.Object.IsConnected(System.String,Godot.Object,System.String)">
  1158. <summary>
  1159. <para>Returns <c>true</c> if a connection exists for a given <c>signal</c>, <c>target</c>, and <c>method</c>.</para>
  1160. </summary>
  1161. </member>
  1162. <member name="M:Godot.Object.SetBlockSignals(System.Boolean)">
  1163. <summary>
  1164. <para>If set to <c>true</c>, signal emission is blocked.</para>
  1165. </summary>
  1166. </member>
  1167. <member name="M:Godot.Object.IsBlockingSignals">
  1168. <summary>
  1169. <para>Returns <c>true</c> if signal emission blocking is enabled.</para>
  1170. </summary>
  1171. </member>
  1172. <member name="M:Godot.Object.PropertyListChangedNotify">
  1173. <summary>
  1174. <para>Notify the editor that the property list has changed, so that editor plugins can take the new values into account. Does nothing on export builds.</para>
  1175. </summary>
  1176. </member>
  1177. <member name="M:Godot.Object.SetMessageTranslation(System.Boolean)">
  1178. <summary>
  1179. <para>Defines whether the object can translate strings (with calls to <see cref="M:Godot.Object.Tr(System.String)"/>). Enabled by default.</para>
  1180. </summary>
  1181. </member>
  1182. <member name="M:Godot.Object.CanTranslateMessages">
  1183. <summary>
  1184. <para>Returns <c>true</c> if the object can translate strings. See <see cref="M:Godot.Object.SetMessageTranslation(System.Boolean)"/> and <see cref="M:Godot.Object.Tr(System.String)"/>.</para>
  1185. </summary>
  1186. </member>
  1187. <member name="M:Godot.Object.Tr(System.String)">
  1188. <summary>
  1189. <para>Translates a message using translation catalogs configured in the Project Settings.</para>
  1190. <para>Only works if message translation is enabled (which it is by default), otherwise it returns the <c>message</c> unchanged. See <see cref="M:Godot.Object.SetMessageTranslation(System.Boolean)"/>.</para>
  1191. </summary>
  1192. </member>
  1193. <member name="M:Godot.Object.IsQueuedForDeletion">
  1194. <summary>
  1195. <para>Returns <c>true</c> if the <see cref="M:Godot.Node.QueueFree"/> method was called for the object.</para>
  1196. </summary>
  1197. </member>
  1198. <member name="T:Godot.ResourceLoader">
  1199. <summary>
  1200. <para>Singleton used to load resource files from the filesystem.</para>
  1201. <para>It uses the many <see cref="T:Godot.ResourceFormatLoader"/> classes registered in the engine (either built-in or from a plugin) to load files into memory and convert them to a format that can be used by the engine.</para>
  1202. <para>GDScript has a simplified <c>@GDScript.load</c> built-in method which can be used in most situations, leaving the use of <see cref="T:Godot.ResourceLoader"/> for more advanced scenarios.</para>
  1203. </summary>
  1204. </member>
  1205. <member name="M:Godot.ResourceLoader.LoadInteractive(System.String,System.String)">
  1206. <summary>
  1207. <para>Starts loading a resource interactively. The returned <see cref="T:Godot.ResourceInteractiveLoader"/> object allows to load with high granularity, calling its <see cref="M:Godot.ResourceInteractiveLoader.Poll"/> method successively to load chunks.</para>
  1208. <para>An optional <c>type_hint</c> can be used to further specify the <see cref="T:Godot.Resource"/> type that should be handled by the <see cref="T:Godot.ResourceFormatLoader"/>.</para>
  1209. </summary>
  1210. </member>
  1211. <member name="M:Godot.ResourceLoader.Load(System.String,System.String,System.Boolean)">
  1212. <summary>
  1213. <para>Loads a resource at the given <c>path</c>, caching the result for further access.</para>
  1214. <para>The registered <see cref="T:Godot.ResourceFormatLoader"/>s are queried sequentially to find the first one which can handle the file's extension, and then attempt loading. If loading fails, the remaining ResourceFormatLoaders are also attempted.</para>
  1215. <para>An optional <c>type_hint</c> can be used to further specify the <see cref="T:Godot.Resource"/> type that should be handled by the <see cref="T:Godot.ResourceFormatLoader"/>.</para>
  1216. <para>If <c>no_cache</c> is <c>true</c>, the resource cache will be bypassed and the resource will be loaded anew. Otherwise, the cached resource will be returned if it exists.</para>
  1217. <para>Returns an empty resource if no ResourceFormatLoader could handle the file.</para>
  1218. </summary>
  1219. </member>
  1220. <member name="M:Godot.ResourceLoader.GetRecognizedExtensionsForType(System.String)">
  1221. <summary>
  1222. <para>Returns the list of recognized extensions for a resource type.</para>
  1223. </summary>
  1224. </member>
  1225. <member name="M:Godot.ResourceLoader.SetAbortOnMissingResources(System.Boolean)">
  1226. <summary>
  1227. <para>Changes the behavior on missing sub-resources. The default behavior is to abort loading.</para>
  1228. </summary>
  1229. </member>
  1230. <member name="M:Godot.ResourceLoader.GetDependencies(System.String)">
  1231. <summary>
  1232. <para>Returns the dependencies for the resource at the given <c>path</c>.</para>
  1233. </summary>
  1234. </member>
  1235. <member name="M:Godot.ResourceLoader.HasCached(System.String)">
  1236. <summary>
  1237. <para>Returns whether a cached resource is available for the given <c>path</c>.</para>
  1238. <para>Once a resource has been loaded by the engine, it is cached in memory for faster access, and future calls to the <see cref="M:Godot.ResourceLoader.Load(System.String,System.String,System.Boolean)"/> or <see cref="M:Godot.ResourceLoader.LoadInteractive(System.String,System.String)"/> methods will use the cached version. The cached resource can be overridden by using <see cref="M:Godot.Resource.TakeOverPath(System.String)"/> on a new resource for that same path.</para>
  1239. </summary>
  1240. </member>
  1241. <member name="M:Godot.ResourceLoader.Exists(System.String,System.String)">
  1242. <summary>
  1243. <para>Returns whether a recognized resource exists for the given <c>path</c>.</para>
  1244. <para>An optional <c>type_hint</c> can be used to further specify the <see cref="T:Godot.Resource"/> type that should be handled by the <see cref="T:Godot.ResourceFormatLoader"/>.</para>
  1245. </summary>
  1246. </member>
  1247. <member name="M:Godot.ResourceLoader.Has(System.String)">
  1248. <summary>
  1249. <para>Deprecated method. Use <see cref="M:Godot.ResourceLoader.HasCached(System.String)"/> or <see cref="M:Godot.ResourceLoader.Exists(System.String,System.String)"/> instead.</para>
  1250. </summary>
  1251. </member>
  1252. <member name="F:Godot.GD.Spkey">
  1253. <summary>
  1254. <para>Scancodes with this bit applied are non-printable.</para>
  1255. </summary>
  1256. </member>
  1257. <member name="M:Godot.MarshalUtils.TypeIsGenericArray(System.Type)">
  1258. <summary>
  1259. Returns <see langword="true"/> if the generic type definition of <paramref name="type"/>
  1260. is <see cref="T:Godot.Collections.Array`1"/>; otherwise returns <see langword="false"/>.
  1261. </summary>
  1262. <exception cref="T:System.InvalidOperationException">
  1263. <paramref name="type"/> is not a generic type. That is, IsGenericType returns false.
  1264. </exception>
  1265. </member>
  1266. <member name="M:Godot.MarshalUtils.TypeIsGenericDictionary(System.Type)">
  1267. <summary>
  1268. Returns <see langword="true"/> if the generic type definition of <paramref name="type"/>
  1269. is <see cref="T:Godot.Collections.Dictionary`2"/>; otherwise returns <see langword="false"/>.
  1270. </summary>
  1271. <exception cref="T:System.InvalidOperationException">
  1272. <paramref name="type"/> is not a generic type. That is, IsGenericType returns false.
  1273. </exception>
  1274. </member>
  1275. <member name="M:Godot.Mathf.PosMod(System.Int32,System.Int32)">
  1276. <summary>
  1277. Performs a canonical Modulus operation, where the output is on the range [0, b).
  1278. </summary>
  1279. </member>
  1280. <member name="M:Godot.Mathf.PosMod(System.Single,System.Single)">
  1281. <summary>
  1282. Performs a canonical Modulus operation, where the output is on the range [0, b).
  1283. </summary>
  1284. </member>
  1285. <member name="M:Godot.StringExtensions.Find(System.String,System.String,System.Int32,System.Boolean)">
  1286. <summary>Find the first occurrence of a substring. Optionally, the search starting position can be passed.</summary>
  1287. <returns>The starting position of the substring, or -1 if not found.</returns>
  1288. </member>
  1289. <member name="M:Godot.StringExtensions.FindLast(System.String,System.String,System.Boolean)">
  1290. <summary>Find the last occurrence of a substring.</summary>
  1291. <returns>The starting position of the substring, or -1 if not found.</returns>
  1292. </member>
  1293. <member name="M:Godot.StringExtensions.FindLast(System.String,System.String,System.Int32,System.Boolean)">
  1294. <summary>Find the last occurrence of a substring specifying the search starting position.</summary>
  1295. <returns>The starting position of the substring, or -1 if not found.</returns>
  1296. </member>
  1297. <member name="M:Godot.StringExtensions.FindN(System.String,System.String,System.Int32)">
  1298. <summary>Find the first occurrence of a substring but search as case-insensitive. Optionally, the search starting position can be passed.</summary>
  1299. <returns>The starting position of the substring, or -1 if not found.</returns>
  1300. </member>
  1301. <member name="M:Godot.StringExtensions.Length(System.String)">
  1302. <summary>
  1303. Return the length of the string in characters.
  1304. </summary>
  1305. </member>
  1306. <member name="P:Godot.Transform.Item(System.Int32)">
  1307. <summary>
  1308. Access whole columns in the form of Vector3. The fourth column is the origin vector.
  1309. </summary>
  1310. <param name="column">Which column vector.</param>
  1311. </member>
  1312. <member name="P:Godot.Transform.Item(System.Int32,System.Int32)">
  1313. <summary>
  1314. Access matrix elements in column-major order. The fourth column is the origin vector.
  1315. </summary>
  1316. <param name="column">Which column, the matrix horizontal position.</param>
  1317. <param name="row">Which row, the matrix vertical position.</param>
  1318. </member>
  1319. <member name="P:Godot.Transform2D.Item(System.Int32)">
  1320. <summary>
  1321. Access whole columns in the form of Vector2. The third column is the origin vector.
  1322. </summary>
  1323. <param name="column">Which column vector.</param>
  1324. </member>
  1325. <member name="P:Godot.Transform2D.Item(System.Int32,System.Int32)">
  1326. <summary>
  1327. Access matrix elements in column-major order. The third column is the origin vector.
  1328. </summary>
  1329. <param name="column">Which column, the matrix horizontal position.</param>
  1330. <param name="row">Which row, the matrix vertical position.</param>
  1331. </member>
  1332. <member name="T:Godot.Vector2">
  1333. <summary>
  1334. 2-element structure that can be used to represent positions in 2D space or any other pair of numeric values.
  1335. </summary>
  1336. </member>
  1337. <member name="T:Godot.Vector3">
  1338. <summary>
  1339. 3-element structure that can be used to represent positions in 3D space or any other pair of numeric values.
  1340. </summary>
  1341. </member>
  1342. <member name="F:Godot.Margin.Left">
  1343. <summary>
  1344. <para>Left margin, usually used for <see cref="T:Godot.Control"/> or <see cref="T:Godot.StyleBox"/>-derived classes.</para>
  1345. </summary>
  1346. </member>
  1347. <member name="F:Godot.Margin.Top">
  1348. <summary>
  1349. <para>Top margin, usually used for <see cref="T:Godot.Control"/> or <see cref="T:Godot.StyleBox"/>-derived classes.</para>
  1350. </summary>
  1351. </member>
  1352. <member name="F:Godot.Margin.Right">
  1353. <summary>
  1354. <para>Right margin, usually used for <see cref="T:Godot.Control"/> or <see cref="T:Godot.StyleBox"/>-derived classes.</para>
  1355. </summary>
  1356. </member>
  1357. <member name="F:Godot.Margin.Bottom">
  1358. <summary>
  1359. <para>Bottom margin, usually used for <see cref="T:Godot.Control"/> or <see cref="T:Godot.StyleBox"/>-derived classes.</para>
  1360. </summary>
  1361. </member>
  1362. <member name="F:Godot.Corner.TopLeft">
  1363. <summary>
  1364. <para>Top-left corner.</para>
  1365. </summary>
  1366. </member>
  1367. <member name="F:Godot.Corner.TopRight">
  1368. <summary>
  1369. <para>Top-right corner.</para>
  1370. </summary>
  1371. </member>
  1372. <member name="F:Godot.Corner.BottomRight">
  1373. <summary>
  1374. <para>Bottom-right corner.</para>
  1375. </summary>
  1376. </member>
  1377. <member name="F:Godot.Corner.BottomLeft">
  1378. <summary>
  1379. <para>Bottom-left corner.</para>
  1380. </summary>
  1381. </member>
  1382. <member name="F:Godot.Orientation.Vertical">
  1383. <summary>
  1384. <para>General vertical alignment, usually used for <see cref="T:Godot.Separator"/>, <see cref="T:Godot.ScrollBar"/>, <see cref="T:Godot.Slider"/>, etc.</para>
  1385. </summary>
  1386. </member>
  1387. <member name="F:Godot.Orientation.Horizontal">
  1388. <summary>
  1389. <para>General horizontal alignment, usually used for <see cref="T:Godot.Separator"/>, <see cref="T:Godot.ScrollBar"/>, <see cref="T:Godot.Slider"/>, etc.</para>
  1390. </summary>
  1391. </member>
  1392. <member name="F:Godot.HAlign.Left">
  1393. <summary>
  1394. <para>Horizontal left alignment, usually for text-derived classes.</para>
  1395. </summary>
  1396. </member>
  1397. <member name="F:Godot.HAlign.Center">
  1398. <summary>
  1399. <para>Horizontal center alignment, usually for text-derived classes.</para>
  1400. </summary>
  1401. </member>
  1402. <member name="F:Godot.HAlign.Right">
  1403. <summary>
  1404. <para>Horizontal right alignment, usually for text-derived classes.</para>
  1405. </summary>
  1406. </member>
  1407. <member name="F:Godot.VAlign.Top">
  1408. <summary>
  1409. <para>Vertical top alignment, usually for text-derived classes.</para>
  1410. </summary>
  1411. </member>
  1412. <member name="F:Godot.VAlign.Center">
  1413. <summary>
  1414. <para>Vertical center alignment, usually for text-derived classes.</para>
  1415. </summary>
  1416. </member>
  1417. <member name="F:Godot.VAlign.Bottom">
  1418. <summary>
  1419. <para>Vertical bottom alignment, usually for text-derived classes.</para>
  1420. </summary>
  1421. </member>
  1422. <member name="F:Godot.KeyList.Escape">
  1423. <summary>
  1424. <para>Escape key.</para>
  1425. </summary>
  1426. </member>
  1427. <member name="F:Godot.KeyList.Tab">
  1428. <summary>
  1429. <para>Tab key.</para>
  1430. </summary>
  1431. </member>
  1432. <member name="F:Godot.KeyList.Backtab">
  1433. <summary>
  1434. <para>Shift+Tab key.</para>
  1435. </summary>
  1436. </member>
  1437. <member name="F:Godot.KeyList.Backspace">
  1438. <summary>
  1439. <para>Backspace key.</para>
  1440. </summary>
  1441. </member>
  1442. <member name="F:Godot.KeyList.Enter">
  1443. <summary>
  1444. <para>Return key (on the main keyboard).</para>
  1445. </summary>
  1446. </member>
  1447. <member name="F:Godot.KeyList.KpEnter">
  1448. <summary>
  1449. <para>Enter key on the numeric keypad.</para>
  1450. </summary>
  1451. </member>
  1452. <member name="F:Godot.KeyList.Insert">
  1453. <summary>
  1454. <para>Insert key.</para>
  1455. </summary>
  1456. </member>
  1457. <member name="F:Godot.KeyList.Delete">
  1458. <summary>
  1459. <para>Delete key.</para>
  1460. </summary>
  1461. </member>
  1462. <member name="F:Godot.KeyList.Pause">
  1463. <summary>
  1464. <para>Pause key.</para>
  1465. </summary>
  1466. </member>
  1467. <member name="F:Godot.KeyList.Print">
  1468. <summary>
  1469. <para>Print Screen key.</para>
  1470. </summary>
  1471. </member>
  1472. <member name="F:Godot.KeyList.Sysreq">
  1473. <summary>
  1474. <para>System Request key.</para>
  1475. </summary>
  1476. </member>
  1477. <member name="F:Godot.KeyList.Clear">
  1478. <summary>
  1479. <para>Clear key.</para>
  1480. </summary>
  1481. </member>
  1482. <member name="F:Godot.KeyList.Home">
  1483. <summary>
  1484. <para>Home key.</para>
  1485. </summary>
  1486. </member>
  1487. <member name="F:Godot.KeyList.End">
  1488. <summary>
  1489. <para>End key.</para>
  1490. </summary>
  1491. </member>
  1492. <member name="F:Godot.KeyList.Left">
  1493. <summary>
  1494. <para>Left arrow key.</para>
  1495. </summary>
  1496. </member>
  1497. <member name="F:Godot.KeyList.Up">
  1498. <summary>
  1499. <para>Up arrow key.</para>
  1500. </summary>
  1501. </member>
  1502. <member name="F:Godot.KeyList.Right">
  1503. <summary>
  1504. <para>Right arrow key.</para>
  1505. </summary>
  1506. </member>
  1507. <member name="F:Godot.KeyList.Down">
  1508. <summary>
  1509. <para>Down arrow key.</para>
  1510. </summary>
  1511. </member>
  1512. <member name="F:Godot.KeyList.Pageup">
  1513. <summary>
  1514. <para>Page Up key.</para>
  1515. </summary>
  1516. </member>
  1517. <member name="F:Godot.KeyList.Pagedown">
  1518. <summary>
  1519. <para>Page Down key.</para>
  1520. </summary>
  1521. </member>
  1522. <member name="F:Godot.KeyList.Shift">
  1523. <summary>
  1524. <para>Shift key.</para>
  1525. </summary>
  1526. </member>
  1527. <member name="F:Godot.KeyList.Control">
  1528. <summary>
  1529. <para>Control key.</para>
  1530. </summary>
  1531. </member>
  1532. <member name="F:Godot.KeyList.Meta">
  1533. <summary>
  1534. <para>Meta key.</para>
  1535. </summary>
  1536. </member>
  1537. <member name="F:Godot.KeyList.Alt">
  1538. <summary>
  1539. <para>Alt key.</para>
  1540. </summary>
  1541. </member>
  1542. <member name="F:Godot.KeyList.Capslock">
  1543. <summary>
  1544. <para>Caps Lock key.</para>
  1545. </summary>
  1546. </member>
  1547. <member name="F:Godot.KeyList.Numlock">
  1548. <summary>
  1549. <para>Num Lock key.</para>
  1550. </summary>
  1551. </member>
  1552. <member name="F:Godot.KeyList.Scrolllock">
  1553. <summary>
  1554. <para>Scroll Lock key.</para>
  1555. </summary>
  1556. </member>
  1557. <member name="F:Godot.KeyList.F1">
  1558. <summary>
  1559. <para>F1 key.</para>
  1560. </summary>
  1561. </member>
  1562. <member name="F:Godot.KeyList.F2">
  1563. <summary>
  1564. <para>F2 key.</para>
  1565. </summary>
  1566. </member>
  1567. <member name="F:Godot.KeyList.F3">
  1568. <summary>
  1569. <para>F3 key.</para>
  1570. </summary>
  1571. </member>
  1572. <member name="F:Godot.KeyList.F4">
  1573. <summary>
  1574. <para>F4 key.</para>
  1575. </summary>
  1576. </member>
  1577. <member name="F:Godot.KeyList.F5">
  1578. <summary>
  1579. <para>F5 key.</para>
  1580. </summary>
  1581. </member>
  1582. <member name="F:Godot.KeyList.F6">
  1583. <summary>
  1584. <para>F6 key.</para>
  1585. </summary>
  1586. </member>
  1587. <member name="F:Godot.KeyList.F7">
  1588. <summary>
  1589. <para>F7 key.</para>
  1590. </summary>
  1591. </member>
  1592. <member name="F:Godot.KeyList.F8">
  1593. <summary>
  1594. <para>F8 key.</para>
  1595. </summary>
  1596. </member>
  1597. <member name="F:Godot.KeyList.F9">
  1598. <summary>
  1599. <para>F9 key.</para>
  1600. </summary>
  1601. </member>
  1602. <member name="F:Godot.KeyList.F10">
  1603. <summary>
  1604. <para>F10 key.</para>
  1605. </summary>
  1606. </member>
  1607. <member name="F:Godot.KeyList.F11">
  1608. <summary>
  1609. <para>F11 key.</para>
  1610. </summary>
  1611. </member>
  1612. <member name="F:Godot.KeyList.F12">
  1613. <summary>
  1614. <para>F12 key.</para>
  1615. </summary>
  1616. </member>
  1617. <member name="F:Godot.KeyList.F13">
  1618. <summary>
  1619. <para>F13 key.</para>
  1620. </summary>
  1621. </member>
  1622. <member name="F:Godot.KeyList.F14">
  1623. <summary>
  1624. <para>F14 key.</para>
  1625. </summary>
  1626. </member>
  1627. <member name="F:Godot.KeyList.F15">
  1628. <summary>
  1629. <para>F15 key.</para>
  1630. </summary>
  1631. </member>
  1632. <member name="F:Godot.KeyList.F16">
  1633. <summary>
  1634. <para>F16 key.</para>
  1635. </summary>
  1636. </member>
  1637. <member name="F:Godot.KeyList.KpMultiply">
  1638. <summary>
  1639. <para>Multiply (*) key on the numeric keypad.</para>
  1640. </summary>
  1641. </member>
  1642. <member name="F:Godot.KeyList.KpDivide">
  1643. <summary>
  1644. <para>Divide (/) key on the numeric keypad.</para>
  1645. </summary>
  1646. </member>
  1647. <member name="F:Godot.KeyList.KpSubtract">
  1648. <summary>
  1649. <para>Subtract (-) key on the numeric keypad.</para>
  1650. </summary>
  1651. </member>
  1652. <member name="F:Godot.KeyList.KpPeriod">
  1653. <summary>
  1654. <para>Period (.) key on the numeric keypad.</para>
  1655. </summary>
  1656. </member>
  1657. <member name="F:Godot.KeyList.KpAdd">
  1658. <summary>
  1659. <para>Add (+) key on the numeric keypad.</para>
  1660. </summary>
  1661. </member>
  1662. <member name="F:Godot.KeyList.Kp0">
  1663. <summary>
  1664. <para>Number 0 on the numeric keypad.</para>
  1665. </summary>
  1666. </member>
  1667. <member name="F:Godot.KeyList.Kp1">
  1668. <summary>
  1669. <para>Number 1 on the numeric keypad.</para>
  1670. </summary>
  1671. </member>
  1672. <member name="F:Godot.KeyList.Kp2">
  1673. <summary>
  1674. <para>Number 2 on the numeric keypad.</para>
  1675. </summary>
  1676. </member>
  1677. <member name="F:Godot.KeyList.Kp3">
  1678. <summary>
  1679. <para>Number 3 on the numeric keypad.</para>
  1680. </summary>
  1681. </member>
  1682. <member name="F:Godot.KeyList.Kp4">
  1683. <summary>
  1684. <para>Number 4 on the numeric keypad.</para>
  1685. </summary>
  1686. </member>
  1687. <member name="F:Godot.KeyList.Kp5">
  1688. <summary>
  1689. <para>Number 5 on the numeric keypad.</para>
  1690. </summary>
  1691. </member>
  1692. <member name="F:Godot.KeyList.Kp6">
  1693. <summary>
  1694. <para>Number 6 on the numeric keypad.</para>
  1695. </summary>
  1696. </member>
  1697. <member name="F:Godot.KeyList.Kp7">
  1698. <summary>
  1699. <para>Number 7 on the numeric keypad.</para>
  1700. </summary>
  1701. </member>
  1702. <member name="F:Godot.KeyList.Kp8">
  1703. <summary>
  1704. <para>Number 8 on the numeric keypad.</para>
  1705. </summary>
  1706. </member>
  1707. <member name="F:Godot.KeyList.Kp9">
  1708. <summary>
  1709. <para>Number 9 on the numeric keypad.</para>
  1710. </summary>
  1711. </member>
  1712. <member name="F:Godot.KeyList.SuperL">
  1713. <summary>
  1714. <para>Left Super key (Windows key).</para>
  1715. </summary>
  1716. </member>
  1717. <member name="F:Godot.KeyList.SuperR">
  1718. <summary>
  1719. <para>Right Super key (Windows key).</para>
  1720. </summary>
  1721. </member>
  1722. <member name="F:Godot.KeyList.Menu">
  1723. <summary>
  1724. <para>Context menu key.</para>
  1725. </summary>
  1726. </member>
  1727. <member name="F:Godot.KeyList.HyperL">
  1728. <summary>
  1729. <para>Left Hyper key.</para>
  1730. </summary>
  1731. </member>
  1732. <member name="F:Godot.KeyList.HyperR">
  1733. <summary>
  1734. <para>Right Hyper key.</para>
  1735. </summary>
  1736. </member>
  1737. <member name="F:Godot.KeyList.Help">
  1738. <summary>
  1739. <para>Help key.</para>
  1740. </summary>
  1741. </member>
  1742. <member name="F:Godot.KeyList.DirectionL">
  1743. <summary>
  1744. <para>Left Direction key.</para>
  1745. </summary>
  1746. </member>
  1747. <member name="F:Godot.KeyList.DirectionR">
  1748. <summary>
  1749. <para>Right Direction key.</para>
  1750. </summary>
  1751. </member>
  1752. <member name="F:Godot.KeyList.Back">
  1753. <summary>
  1754. <para>Back key.</para>
  1755. </summary>
  1756. </member>
  1757. <member name="F:Godot.KeyList.Forward">
  1758. <summary>
  1759. <para>Forward key.</para>
  1760. </summary>
  1761. </member>
  1762. <member name="F:Godot.KeyList.Stop">
  1763. <summary>
  1764. <para>Stop key.</para>
  1765. </summary>
  1766. </member>
  1767. <member name="F:Godot.KeyList.Refresh">
  1768. <summary>
  1769. <para>Refresh key.</para>
  1770. </summary>
  1771. </member>
  1772. <member name="F:Godot.KeyList.Volumedown">
  1773. <summary>
  1774. <para>Volume down key.</para>
  1775. </summary>
  1776. </member>
  1777. <member name="F:Godot.KeyList.Volumemute">
  1778. <summary>
  1779. <para>Mute volume key.</para>
  1780. </summary>
  1781. </member>
  1782. <member name="F:Godot.KeyList.Volumeup">
  1783. <summary>
  1784. <para>Volume up key.</para>
  1785. </summary>
  1786. </member>
  1787. <member name="F:Godot.KeyList.Bassboost">
  1788. <summary>
  1789. <para>Bass Boost key.</para>
  1790. </summary>
  1791. </member>
  1792. <member name="F:Godot.KeyList.Bassup">
  1793. <summary>
  1794. <para>Bass up key.</para>
  1795. </summary>
  1796. </member>
  1797. <member name="F:Godot.KeyList.Bassdown">
  1798. <summary>
  1799. <para>Bass down key.</para>
  1800. </summary>
  1801. </member>
  1802. <member name="F:Godot.KeyList.Trebleup">
  1803. <summary>
  1804. <para>Treble up key.</para>
  1805. </summary>
  1806. </member>
  1807. <member name="F:Godot.KeyList.Trebledown">
  1808. <summary>
  1809. <para>Treble down key.</para>
  1810. </summary>
  1811. </member>
  1812. <member name="F:Godot.KeyList.Mediaplay">
  1813. <summary>
  1814. <para>Media play key.</para>
  1815. </summary>
  1816. </member>
  1817. <member name="F:Godot.KeyList.Mediastop">
  1818. <summary>
  1819. <para>Media stop key.</para>
  1820. </summary>
  1821. </member>
  1822. <member name="F:Godot.KeyList.Mediaprevious">
  1823. <summary>
  1824. <para>Previous song key.</para>
  1825. </summary>
  1826. </member>
  1827. <member name="F:Godot.KeyList.Medianext">
  1828. <summary>
  1829. <para>Next song key.</para>
  1830. </summary>
  1831. </member>
  1832. <member name="F:Godot.KeyList.Mediarecord">
  1833. <summary>
  1834. <para>Media record key.</para>
  1835. </summary>
  1836. </member>
  1837. <member name="F:Godot.KeyList.Homepage">
  1838. <summary>
  1839. <para>Home page key.</para>
  1840. </summary>
  1841. </member>
  1842. <member name="F:Godot.KeyList.Favorites">
  1843. <summary>
  1844. <para>Favorites key.</para>
  1845. </summary>
  1846. </member>
  1847. <member name="F:Godot.KeyList.Search">
  1848. <summary>
  1849. <para>Search key.</para>
  1850. </summary>
  1851. </member>
  1852. <member name="F:Godot.KeyList.Standby">
  1853. <summary>
  1854. <para>Standby key.</para>
  1855. </summary>
  1856. </member>
  1857. <member name="F:Godot.KeyList.Openurl">
  1858. <summary>
  1859. <para>Open URL / Launch Browser key.</para>
  1860. </summary>
  1861. </member>
  1862. <member name="F:Godot.KeyList.Launchmail">
  1863. <summary>
  1864. <para>Launch Mail key.</para>
  1865. </summary>
  1866. </member>
  1867. <member name="F:Godot.KeyList.Launchmedia">
  1868. <summary>
  1869. <para>Launch Media key.</para>
  1870. </summary>
  1871. </member>
  1872. <member name="F:Godot.KeyList.Launch0">
  1873. <summary>
  1874. <para>Launch Shortcut 0 key.</para>
  1875. </summary>
  1876. </member>
  1877. <member name="F:Godot.KeyList.Launch1">
  1878. <summary>
  1879. <para>Launch Shortcut 1 key.</para>
  1880. </summary>
  1881. </member>
  1882. <member name="F:Godot.KeyList.Launch2">
  1883. <summary>
  1884. <para>Launch Shortcut 2 key.</para>
  1885. </summary>
  1886. </member>
  1887. <member name="F:Godot.KeyList.Launch3">
  1888. <summary>
  1889. <para>Launch Shortcut 3 key.</para>
  1890. </summary>
  1891. </member>
  1892. <member name="F:Godot.KeyList.Launch4">
  1893. <summary>
  1894. <para>Launch Shortcut 4 key.</para>
  1895. </summary>
  1896. </member>
  1897. <member name="F:Godot.KeyList.Launch5">
  1898. <summary>
  1899. <para>Launch Shortcut 5 key.</para>
  1900. </summary>
  1901. </member>
  1902. <member name="F:Godot.KeyList.Launch6">
  1903. <summary>
  1904. <para>Launch Shortcut 6 key.</para>
  1905. </summary>
  1906. </member>
  1907. <member name="F:Godot.KeyList.Launch7">
  1908. <summary>
  1909. <para>Launch Shortcut 7 key.</para>
  1910. </summary>
  1911. </member>
  1912. <member name="F:Godot.KeyList.Launch8">
  1913. <summary>
  1914. <para>Launch Shortcut 8 key.</para>
  1915. </summary>
  1916. </member>
  1917. <member name="F:Godot.KeyList.Launch9">
  1918. <summary>
  1919. <para>Launch Shortcut 9 key.</para>
  1920. </summary>
  1921. </member>
  1922. <member name="F:Godot.KeyList.Launcha">
  1923. <summary>
  1924. <para>Launch Shortcut A key.</para>
  1925. </summary>
  1926. </member>
  1927. <member name="F:Godot.KeyList.Launchb">
  1928. <summary>
  1929. <para>Launch Shortcut B key.</para>
  1930. </summary>
  1931. </member>
  1932. <member name="F:Godot.KeyList.Launchc">
  1933. <summary>
  1934. <para>Launch Shortcut C key.</para>
  1935. </summary>
  1936. </member>
  1937. <member name="F:Godot.KeyList.Launchd">
  1938. <summary>
  1939. <para>Launch Shortcut D key.</para>
  1940. </summary>
  1941. </member>
  1942. <member name="F:Godot.KeyList.Launche">
  1943. <summary>
  1944. <para>Launch Shortcut E key.</para>
  1945. </summary>
  1946. </member>
  1947. <member name="F:Godot.KeyList.Launchf">
  1948. <summary>
  1949. <para>Launch Shortcut F key.</para>
  1950. </summary>
  1951. </member>
  1952. <member name="F:Godot.KeyList.Unknown">
  1953. <summary>
  1954. <para>Unknown key.</para>
  1955. </summary>
  1956. </member>
  1957. <member name="F:Godot.KeyList.Space">
  1958. <summary>
  1959. <para>Space key.</para>
  1960. </summary>
  1961. </member>
  1962. <member name="F:Godot.KeyList.Exclam">
  1963. <summary>
  1964. <para>! key.</para>
  1965. </summary>
  1966. </member>
  1967. <member name="F:Godot.KeyList.Quotedbl">
  1968. <summary>
  1969. <para>" key.</para>
  1970. </summary>
  1971. </member>
  1972. <member name="F:Godot.KeyList.Numbersign">
  1973. <summary>
  1974. <para># key.</para>
  1975. </summary>
  1976. </member>
  1977. <member name="F:Godot.KeyList.Dollar">
  1978. <summary>
  1979. <para>$ key.</para>
  1980. </summary>
  1981. </member>
  1982. <member name="F:Godot.KeyList.Percent">
  1983. <summary>
  1984. <para>% key.</para>
  1985. </summary>
  1986. </member>
  1987. <member name="F:Godot.KeyList.Ampersand">
  1988. <summary>
  1989. <para>&amp; key.</para>
  1990. </summary>
  1991. </member>
  1992. <member name="F:Godot.KeyList.Apostrophe">
  1993. <summary>
  1994. <para>' key.</para>
  1995. </summary>
  1996. </member>
  1997. <member name="F:Godot.KeyList.Parenleft">
  1998. <summary>
  1999. <para>( key.</para>
  2000. </summary>
  2001. </member>
  2002. <member name="F:Godot.KeyList.Parenright">
  2003. <summary>
  2004. <para>) key.</para>
  2005. </summary>
  2006. </member>
  2007. <member name="F:Godot.KeyList.Asterisk">
  2008. <summary>
  2009. <para>* key.</para>
  2010. </summary>
  2011. </member>
  2012. <member name="F:Godot.KeyList.Plus">
  2013. <summary>
  2014. <para>+ key.</para>
  2015. </summary>
  2016. </member>
  2017. <member name="F:Godot.KeyList.Comma">
  2018. <summary>
  2019. <para>, key.</para>
  2020. </summary>
  2021. </member>
  2022. <member name="F:Godot.KeyList.Minus">
  2023. <summary>
  2024. <para>- key.</para>
  2025. </summary>
  2026. </member>
  2027. <member name="F:Godot.KeyList.Period">
  2028. <summary>
  2029. <para>. key.</para>
  2030. </summary>
  2031. </member>
  2032. <member name="F:Godot.KeyList.Slash">
  2033. <summary>
  2034. <para>/ key.</para>
  2035. </summary>
  2036. </member>
  2037. <member name="F:Godot.KeyList.Key0">
  2038. <summary>
  2039. <para>Number 0.</para>
  2040. </summary>
  2041. </member>
  2042. <member name="F:Godot.KeyList.Key1">
  2043. <summary>
  2044. <para>Number 1.</para>
  2045. </summary>
  2046. </member>
  2047. <member name="F:Godot.KeyList.Key2">
  2048. <summary>
  2049. <para>Number 2.</para>
  2050. </summary>
  2051. </member>
  2052. <member name="F:Godot.KeyList.Key3">
  2053. <summary>
  2054. <para>Number 3.</para>
  2055. </summary>
  2056. </member>
  2057. <member name="F:Godot.KeyList.Key4">
  2058. <summary>
  2059. <para>Number 4.</para>
  2060. </summary>
  2061. </member>
  2062. <member name="F:Godot.KeyList.Key5">
  2063. <summary>
  2064. <para>Number 5.</para>
  2065. </summary>
  2066. </member>
  2067. <member name="F:Godot.KeyList.Key6">
  2068. <summary>
  2069. <para>Number 6.</para>
  2070. </summary>
  2071. </member>
  2072. <member name="F:Godot.KeyList.Key7">
  2073. <summary>
  2074. <para>Number 7.</para>
  2075. </summary>
  2076. </member>
  2077. <member name="F:Godot.KeyList.Key8">
  2078. <summary>
  2079. <para>Number 8.</para>
  2080. </summary>
  2081. </member>
  2082. <member name="F:Godot.KeyList.Key9">
  2083. <summary>
  2084. <para>Number 9.</para>
  2085. </summary>
  2086. </member>
  2087. <member name="F:Godot.KeyList.Colon">
  2088. <summary>
  2089. <para>: key.</para>
  2090. </summary>
  2091. </member>
  2092. <member name="F:Godot.KeyList.Semicolon">
  2093. <summary>
  2094. <para>; key.</para>
  2095. </summary>
  2096. </member>
  2097. <member name="F:Godot.KeyList.Less">
  2098. <summary>
  2099. <para>&lt; key.</para>
  2100. </summary>
  2101. </member>
  2102. <member name="F:Godot.KeyList.Equal">
  2103. <summary>
  2104. <para>= key.</para>
  2105. </summary>
  2106. </member>
  2107. <member name="F:Godot.KeyList.Greater">
  2108. <summary>
  2109. <para>&gt; key.</para>
  2110. </summary>
  2111. </member>
  2112. <member name="F:Godot.KeyList.Question">
  2113. <summary>
  2114. <para>? key.</para>
  2115. </summary>
  2116. </member>
  2117. <member name="F:Godot.KeyList.At">
  2118. <summary>
  2119. <para>@ key.</para>
  2120. </summary>
  2121. </member>
  2122. <member name="F:Godot.KeyList.A">
  2123. <summary>
  2124. <para>A key.</para>
  2125. </summary>
  2126. </member>
  2127. <member name="F:Godot.KeyList.B">
  2128. <summary>
  2129. <para>B key.</para>
  2130. </summary>
  2131. </member>
  2132. <member name="F:Godot.KeyList.C">
  2133. <summary>
  2134. <para>C key.</para>
  2135. </summary>
  2136. </member>
  2137. <member name="F:Godot.KeyList.D">
  2138. <summary>
  2139. <para>D key.</para>
  2140. </summary>
  2141. </member>
  2142. <member name="F:Godot.KeyList.E">
  2143. <summary>
  2144. <para>E key.</para>
  2145. </summary>
  2146. </member>
  2147. <member name="F:Godot.KeyList.F">
  2148. <summary>
  2149. <para>F key.</para>
  2150. </summary>
  2151. </member>
  2152. <member name="F:Godot.KeyList.G">
  2153. <summary>
  2154. <para>G key.</para>
  2155. </summary>
  2156. </member>
  2157. <member name="F:Godot.KeyList.H">
  2158. <summary>
  2159. <para>H key.</para>
  2160. </summary>
  2161. </member>
  2162. <member name="F:Godot.KeyList.I">
  2163. <summary>
  2164. <para>I key.</para>
  2165. </summary>
  2166. </member>
  2167. <member name="F:Godot.KeyList.J">
  2168. <summary>
  2169. <para>J key.</para>
  2170. </summary>
  2171. </member>
  2172. <member name="F:Godot.KeyList.K">
  2173. <summary>
  2174. <para>K key.</para>
  2175. </summary>
  2176. </member>
  2177. <member name="F:Godot.KeyList.L">
  2178. <summary>
  2179. <para>L key.</para>
  2180. </summary>
  2181. </member>
  2182. <member name="F:Godot.KeyList.M">
  2183. <summary>
  2184. <para>M key.</para>
  2185. </summary>
  2186. </member>
  2187. <member name="F:Godot.KeyList.N">
  2188. <summary>
  2189. <para>N key.</para>
  2190. </summary>
  2191. </member>
  2192. <member name="F:Godot.KeyList.O">
  2193. <summary>
  2194. <para>O key.</para>
  2195. </summary>
  2196. </member>
  2197. <member name="F:Godot.KeyList.P">
  2198. <summary>
  2199. <para>P key.</para>
  2200. </summary>
  2201. </member>
  2202. <member name="F:Godot.KeyList.Q">
  2203. <summary>
  2204. <para>Q key.</para>
  2205. </summary>
  2206. </member>
  2207. <member name="F:Godot.KeyList.R">
  2208. <summary>
  2209. <para>R key.</para>
  2210. </summary>
  2211. </member>
  2212. <member name="F:Godot.KeyList.S">
  2213. <summary>
  2214. <para>S key.</para>
  2215. </summary>
  2216. </member>
  2217. <member name="F:Godot.KeyList.T">
  2218. <summary>
  2219. <para>T key.</para>
  2220. </summary>
  2221. </member>
  2222. <member name="F:Godot.KeyList.U">
  2223. <summary>
  2224. <para>U key.</para>
  2225. </summary>
  2226. </member>
  2227. <member name="F:Godot.KeyList.V">
  2228. <summary>
  2229. <para>V key.</para>
  2230. </summary>
  2231. </member>
  2232. <member name="F:Godot.KeyList.W">
  2233. <summary>
  2234. <para>W key.</para>
  2235. </summary>
  2236. </member>
  2237. <member name="F:Godot.KeyList.X">
  2238. <summary>
  2239. <para>X key.</para>
  2240. </summary>
  2241. </member>
  2242. <member name="F:Godot.KeyList.Y">
  2243. <summary>
  2244. <para>Y key.</para>
  2245. </summary>
  2246. </member>
  2247. <member name="F:Godot.KeyList.Z">
  2248. <summary>
  2249. <para>Z key.</para>
  2250. </summary>
  2251. </member>
  2252. <member name="F:Godot.KeyList.Bracketleft">
  2253. <summary>
  2254. <para>[ key.</para>
  2255. </summary>
  2256. </member>
  2257. <member name="F:Godot.KeyList.Backslash">
  2258. <summary>
  2259. <para>\ key.</para>
  2260. </summary>
  2261. </member>
  2262. <member name="F:Godot.KeyList.Bracketright">
  2263. <summary>
  2264. <para>] key.</para>
  2265. </summary>
  2266. </member>
  2267. <member name="F:Godot.KeyList.Asciicircum">
  2268. <summary>
  2269. <para>^ key.</para>
  2270. </summary>
  2271. </member>
  2272. <member name="F:Godot.KeyList.Underscore">
  2273. <summary>
  2274. <para>_ key.</para>
  2275. </summary>
  2276. </member>
  2277. <member name="F:Godot.KeyList.Quoteleft">
  2278. <summary>
  2279. <para>` key.</para>
  2280. </summary>
  2281. </member>
  2282. <member name="F:Godot.KeyList.Braceleft">
  2283. <summary>
  2284. <para>{ key.</para>
  2285. </summary>
  2286. </member>
  2287. <member name="F:Godot.KeyList.Bar">
  2288. <summary>
  2289. <para>| key.</para>
  2290. </summary>
  2291. </member>
  2292. <member name="F:Godot.KeyList.Braceright">
  2293. <summary>
  2294. <para>} key.</para>
  2295. </summary>
  2296. </member>
  2297. <member name="F:Godot.KeyList.Asciitilde">
  2298. <summary>
  2299. <para>~ key.</para>
  2300. </summary>
  2301. </member>
  2302. <member name="F:Godot.KeyList.Nobreakspace">
  2303. <summary>
  2304. <para>Non-breakable space key.</para>
  2305. </summary>
  2306. </member>
  2307. <member name="F:Godot.KeyList.Exclamdown">
  2308. <summary>
  2309. <para>¡ key.</para>
  2310. </summary>
  2311. </member>
  2312. <member name="F:Godot.KeyList.Cent">
  2313. <summary>
  2314. <para>¢ key.</para>
  2315. </summary>
  2316. </member>
  2317. <member name="F:Godot.KeyList.Sterling">
  2318. <summary>
  2319. <para>£ key.</para>
  2320. </summary>
  2321. </member>
  2322. <member name="F:Godot.KeyList.Currency">
  2323. <summary>
  2324. <para>¤ key.</para>
  2325. </summary>
  2326. </member>
  2327. <member name="F:Godot.KeyList.Yen">
  2328. <summary>
  2329. <para>¥ key.</para>
  2330. </summary>
  2331. </member>
  2332. <member name="F:Godot.KeyList.Brokenbar">
  2333. <summary>
  2334. <para>¦ key.</para>
  2335. </summary>
  2336. </member>
  2337. <member name="F:Godot.KeyList.Section">
  2338. <summary>
  2339. <para>§ key.</para>
  2340. </summary>
  2341. </member>
  2342. <member name="F:Godot.KeyList.Diaeresis">
  2343. <summary>
  2344. <para>¨ key.</para>
  2345. </summary>
  2346. </member>
  2347. <member name="F:Godot.KeyList.Copyright">
  2348. <summary>
  2349. <para>© key.</para>
  2350. </summary>
  2351. </member>
  2352. <member name="F:Godot.KeyList.Ordfeminine">
  2353. <summary>
  2354. <para>ª key.</para>
  2355. </summary>
  2356. </member>
  2357. <member name="F:Godot.KeyList.Guillemotleft">
  2358. <summary>
  2359. <para>« key.</para>
  2360. </summary>
  2361. </member>
  2362. <member name="F:Godot.KeyList.Notsign">
  2363. <summary>
  2364. <para>¬ key.</para>
  2365. </summary>
  2366. </member>
  2367. <member name="F:Godot.KeyList.Hyphen">
  2368. <summary>
  2369. <para>Soft hyphen key.</para>
  2370. </summary>
  2371. </member>
  2372. <member name="F:Godot.KeyList.Registered">
  2373. <summary>
  2374. <para>® key.</para>
  2375. </summary>
  2376. </member>
  2377. <member name="F:Godot.KeyList.Macron">
  2378. <summary>
  2379. <para>¯ key.</para>
  2380. </summary>
  2381. </member>
  2382. <member name="F:Godot.KeyList.Degree">
  2383. <summary>
  2384. <para>° key.</para>
  2385. </summary>
  2386. </member>
  2387. <member name="F:Godot.KeyList.Plusminus">
  2388. <summary>
  2389. <para>± key.</para>
  2390. </summary>
  2391. </member>
  2392. <member name="F:Godot.KeyList.Twosuperior">
  2393. <summary>
  2394. <para>² key.</para>
  2395. </summary>
  2396. </member>
  2397. <member name="F:Godot.KeyList.Threesuperior">
  2398. <summary>
  2399. <para>³ key.</para>
  2400. </summary>
  2401. </member>
  2402. <member name="F:Godot.KeyList.Acute">
  2403. <summary>
  2404. <para>´ key.</para>
  2405. </summary>
  2406. </member>
  2407. <member name="F:Godot.KeyList.Mu">
  2408. <summary>
  2409. <para>µ key.</para>
  2410. </summary>
  2411. </member>
  2412. <member name="F:Godot.KeyList.Paragraph">
  2413. <summary>
  2414. <para>¶ key.</para>
  2415. </summary>
  2416. </member>
  2417. <member name="F:Godot.KeyList.Periodcentered">
  2418. <summary>
  2419. <para>· key.</para>
  2420. </summary>
  2421. </member>
  2422. <member name="F:Godot.KeyList.Cedilla">
  2423. <summary>
  2424. <para>¸ key.</para>
  2425. </summary>
  2426. </member>
  2427. <member name="F:Godot.KeyList.Onesuperior">
  2428. <summary>
  2429. <para>¹ key.</para>
  2430. </summary>
  2431. </member>
  2432. <member name="F:Godot.KeyList.Masculine">
  2433. <summary>
  2434. <para>º key.</para>
  2435. </summary>
  2436. </member>
  2437. <member name="F:Godot.KeyList.Guillemotright">
  2438. <summary>
  2439. <para>» key.</para>
  2440. </summary>
  2441. </member>
  2442. <member name="F:Godot.KeyList.Onequarter">
  2443. <summary>
  2444. <para>¼ key.</para>
  2445. </summary>
  2446. </member>
  2447. <member name="F:Godot.KeyList.Onehalf">
  2448. <summary>
  2449. <para>½ key.</para>
  2450. </summary>
  2451. </member>
  2452. <member name="F:Godot.KeyList.Threequarters">
  2453. <summary>
  2454. <para>¾ key.</para>
  2455. </summary>
  2456. </member>
  2457. <member name="F:Godot.KeyList.Questiondown">
  2458. <summary>
  2459. <para>¿ key.</para>
  2460. </summary>
  2461. </member>
  2462. <member name="F:Godot.KeyList.Agrave">
  2463. <summary>
  2464. <para>À key.</para>
  2465. </summary>
  2466. </member>
  2467. <member name="F:Godot.KeyList.Aacute">
  2468. <summary>
  2469. <para>Á key.</para>
  2470. </summary>
  2471. </member>
  2472. <member name="F:Godot.KeyList.Acircumflex">
  2473. <summary>
  2474. <para>Â key.</para>
  2475. </summary>
  2476. </member>
  2477. <member name="F:Godot.KeyList.Atilde">
  2478. <summary>
  2479. <para>Ã key.</para>
  2480. </summary>
  2481. </member>
  2482. <member name="F:Godot.KeyList.Adiaeresis">
  2483. <summary>
  2484. <para>Ä key.</para>
  2485. </summary>
  2486. </member>
  2487. <member name="F:Godot.KeyList.Aring">
  2488. <summary>
  2489. <para>Å key.</para>
  2490. </summary>
  2491. </member>
  2492. <member name="F:Godot.KeyList.Ae">
  2493. <summary>
  2494. <para>Æ key.</para>
  2495. </summary>
  2496. </member>
  2497. <member name="F:Godot.KeyList.Ccedilla">
  2498. <summary>
  2499. <para>Ç key.</para>
  2500. </summary>
  2501. </member>
  2502. <member name="F:Godot.KeyList.Egrave">
  2503. <summary>
  2504. <para>È key.</para>
  2505. </summary>
  2506. </member>
  2507. <member name="F:Godot.KeyList.Eacute">
  2508. <summary>
  2509. <para>É key.</para>
  2510. </summary>
  2511. </member>
  2512. <member name="F:Godot.KeyList.Ecircumflex">
  2513. <summary>
  2514. <para>Ê key.</para>
  2515. </summary>
  2516. </member>
  2517. <member name="F:Godot.KeyList.Ediaeresis">
  2518. <summary>
  2519. <para>Ë key.</para>
  2520. </summary>
  2521. </member>
  2522. <member name="F:Godot.KeyList.Igrave">
  2523. <summary>
  2524. <para>Ì key.</para>
  2525. </summary>
  2526. </member>
  2527. <member name="F:Godot.KeyList.Iacute">
  2528. <summary>
  2529. <para>Í key.</para>
  2530. </summary>
  2531. </member>
  2532. <member name="F:Godot.KeyList.Icircumflex">
  2533. <summary>
  2534. <para>Î key.</para>
  2535. </summary>
  2536. </member>
  2537. <member name="F:Godot.KeyList.Idiaeresis">
  2538. <summary>
  2539. <para>Ï key.</para>
  2540. </summary>
  2541. </member>
  2542. <member name="F:Godot.KeyList.Eth">
  2543. <summary>
  2544. <para>Ð key.</para>
  2545. </summary>
  2546. </member>
  2547. <member name="F:Godot.KeyList.Ntilde">
  2548. <summary>
  2549. <para>Ñ key.</para>
  2550. </summary>
  2551. </member>
  2552. <member name="F:Godot.KeyList.Ograve">
  2553. <summary>
  2554. <para>Ò key.</para>
  2555. </summary>
  2556. </member>
  2557. <member name="F:Godot.KeyList.Oacute">
  2558. <summary>
  2559. <para>Ó key.</para>
  2560. </summary>
  2561. </member>
  2562. <member name="F:Godot.KeyList.Ocircumflex">
  2563. <summary>
  2564. <para>Ô key.</para>
  2565. </summary>
  2566. </member>
  2567. <member name="F:Godot.KeyList.Otilde">
  2568. <summary>
  2569. <para>Õ key.</para>
  2570. </summary>
  2571. </member>
  2572. <member name="F:Godot.KeyList.Odiaeresis">
  2573. <summary>
  2574. <para>Ö key.</para>
  2575. </summary>
  2576. </member>
  2577. <member name="F:Godot.KeyList.Multiply">
  2578. <summary>
  2579. <para>× key.</para>
  2580. </summary>
  2581. </member>
  2582. <member name="F:Godot.KeyList.Ooblique">
  2583. <summary>
  2584. <para>Ø key.</para>
  2585. </summary>
  2586. </member>
  2587. <member name="F:Godot.KeyList.Ugrave">
  2588. <summary>
  2589. <para>Ù key.</para>
  2590. </summary>
  2591. </member>
  2592. <member name="F:Godot.KeyList.Uacute">
  2593. <summary>
  2594. <para>Ú key.</para>
  2595. </summary>
  2596. </member>
  2597. <member name="F:Godot.KeyList.Ucircumflex">
  2598. <summary>
  2599. <para>Û key.</para>
  2600. </summary>
  2601. </member>
  2602. <member name="F:Godot.KeyList.Udiaeresis">
  2603. <summary>
  2604. <para>Ü key.</para>
  2605. </summary>
  2606. </member>
  2607. <member name="F:Godot.KeyList.Yacute">
  2608. <summary>
  2609. <para>Ý key.</para>
  2610. </summary>
  2611. </member>
  2612. <member name="F:Godot.KeyList.Thorn">
  2613. <summary>
  2614. <para>Þ key.</para>
  2615. </summary>
  2616. </member>
  2617. <member name="F:Godot.KeyList.Ssharp">
  2618. <summary>
  2619. <para>ß key.</para>
  2620. </summary>
  2621. </member>
  2622. <member name="F:Godot.KeyList.Division">
  2623. <summary>
  2624. <para>÷ key.</para>
  2625. </summary>
  2626. </member>
  2627. <member name="F:Godot.KeyList.Ydiaeresis">
  2628. <summary>
  2629. <para>ÿ key.</para>
  2630. </summary>
  2631. </member>
  2632. <member name="F:Godot.KeyModifierMask.CodeMask">
  2633. <summary>
  2634. <para>Key Code mask.</para>
  2635. </summary>
  2636. </member>
  2637. <member name="F:Godot.KeyModifierMask.ModifierMask">
  2638. <summary>
  2639. <para>Modifier key mask.</para>
  2640. </summary>
  2641. </member>
  2642. <member name="F:Godot.KeyModifierMask.MaskShift">
  2643. <summary>
  2644. <para>Shift key mask.</para>
  2645. </summary>
  2646. </member>
  2647. <member name="F:Godot.KeyModifierMask.MaskAlt">
  2648. <summary>
  2649. <para>Alt key mask.</para>
  2650. </summary>
  2651. </member>
  2652. <member name="F:Godot.KeyModifierMask.MaskMeta">
  2653. <summary>
  2654. <para>Meta key mask.</para>
  2655. </summary>
  2656. </member>
  2657. <member name="F:Godot.KeyModifierMask.MaskCtrl">
  2658. <summary>
  2659. <para>Ctrl key mask.</para>
  2660. </summary>
  2661. </member>
  2662. <member name="F:Godot.KeyModifierMask.MaskCmd">
  2663. <summary>
  2664. <para>Command key mask. On macOS, this is equivalent to . On other platforms, this is equivalent to . This mask should be preferred to or for system shortcuts as it handles all platforms correctly.</para>
  2665. </summary>
  2666. </member>
  2667. <member name="F:Godot.KeyModifierMask.MaskKpad">
  2668. <summary>
  2669. <para>Keypad key mask.</para>
  2670. </summary>
  2671. </member>
  2672. <member name="F:Godot.KeyModifierMask.MaskGroupSwitch">
  2673. <summary>
  2674. <para>Group Switch key mask.</para>
  2675. </summary>
  2676. </member>
  2677. <member name="F:Godot.ButtonList.Left">
  2678. <summary>
  2679. <para>Left mouse button.</para>
  2680. </summary>
  2681. </member>
  2682. <member name="F:Godot.ButtonList.Right">
  2683. <summary>
  2684. <para>Right mouse button.</para>
  2685. </summary>
  2686. </member>
  2687. <member name="F:Godot.ButtonList.Middle">
  2688. <summary>
  2689. <para>Middle mouse button.</para>
  2690. </summary>
  2691. </member>
  2692. <member name="F:Godot.ButtonList.Xbutton1">
  2693. <summary>
  2694. <para>Extra mouse button 1 (only present on some mice).</para>
  2695. </summary>
  2696. </member>
  2697. <member name="F:Godot.ButtonList.Xbutton2">
  2698. <summary>
  2699. <para>Extra mouse button 2 (only present on some mice).</para>
  2700. </summary>
  2701. </member>
  2702. <member name="F:Godot.ButtonList.WheelUp">
  2703. <summary>
  2704. <para>Mouse wheel up.</para>
  2705. </summary>
  2706. </member>
  2707. <member name="F:Godot.ButtonList.WheelDown">
  2708. <summary>
  2709. <para>Mouse wheel down.</para>
  2710. </summary>
  2711. </member>
  2712. <member name="F:Godot.ButtonList.WheelLeft">
  2713. <summary>
  2714. <para>Mouse wheel left button (only present on some mice).</para>
  2715. </summary>
  2716. </member>
  2717. <member name="F:Godot.ButtonList.WheelRight">
  2718. <summary>
  2719. <para>Mouse wheel right button (only present on some mice).</para>
  2720. </summary>
  2721. </member>
  2722. <member name="F:Godot.ButtonList.MaskLeft">
  2723. <summary>
  2724. <para>Left mouse button mask.</para>
  2725. </summary>
  2726. </member>
  2727. <member name="F:Godot.ButtonList.MaskRight">
  2728. <summary>
  2729. <para>Right mouse button mask.</para>
  2730. </summary>
  2731. </member>
  2732. <member name="F:Godot.ButtonList.MaskMiddle">
  2733. <summary>
  2734. <para>Middle mouse button mask.</para>
  2735. </summary>
  2736. </member>
  2737. <member name="F:Godot.ButtonList.MaskXbutton1">
  2738. <summary>
  2739. <para>Extra mouse button 1 mask.</para>
  2740. </summary>
  2741. </member>
  2742. <member name="F:Godot.ButtonList.MaskXbutton2">
  2743. <summary>
  2744. <para>Extra mouse button 2 mask.</para>
  2745. </summary>
  2746. </member>
  2747. <member name="F:Godot.JoystickList.Button0">
  2748. <summary>
  2749. <para>Gamepad button 0.</para>
  2750. </summary>
  2751. </member>
  2752. <member name="F:Godot.JoystickList.Button1">
  2753. <summary>
  2754. <para>Gamepad button 1.</para>
  2755. </summary>
  2756. </member>
  2757. <member name="F:Godot.JoystickList.Button2">
  2758. <summary>
  2759. <para>Gamepad button 2.</para>
  2760. </summary>
  2761. </member>
  2762. <member name="F:Godot.JoystickList.Button3">
  2763. <summary>
  2764. <para>Gamepad button 3.</para>
  2765. </summary>
  2766. </member>
  2767. <member name="F:Godot.JoystickList.Button4">
  2768. <summary>
  2769. <para>Gamepad button 4.</para>
  2770. </summary>
  2771. </member>
  2772. <member name="F:Godot.JoystickList.Button5">
  2773. <summary>
  2774. <para>Gamepad button 5.</para>
  2775. </summary>
  2776. </member>
  2777. <member name="F:Godot.JoystickList.Button6">
  2778. <summary>
  2779. <para>Gamepad button 6.</para>
  2780. </summary>
  2781. </member>
  2782. <member name="F:Godot.JoystickList.Button7">
  2783. <summary>
  2784. <para>Gamepad button 7.</para>
  2785. </summary>
  2786. </member>
  2787. <member name="F:Godot.JoystickList.Button8">
  2788. <summary>
  2789. <para>Gamepad button 8.</para>
  2790. </summary>
  2791. </member>
  2792. <member name="F:Godot.JoystickList.Button9">
  2793. <summary>
  2794. <para>Gamepad button 9.</para>
  2795. </summary>
  2796. </member>
  2797. <member name="F:Godot.JoystickList.Button10">
  2798. <summary>
  2799. <para>Gamepad button 10.</para>
  2800. </summary>
  2801. </member>
  2802. <member name="F:Godot.JoystickList.Button11">
  2803. <summary>
  2804. <para>Gamepad button 11.</para>
  2805. </summary>
  2806. </member>
  2807. <member name="F:Godot.JoystickList.Button12">
  2808. <summary>
  2809. <para>Gamepad button 12.</para>
  2810. </summary>
  2811. </member>
  2812. <member name="F:Godot.JoystickList.Button13">
  2813. <summary>
  2814. <para>Gamepad button 13.</para>
  2815. </summary>
  2816. </member>
  2817. <member name="F:Godot.JoystickList.Button14">
  2818. <summary>
  2819. <para>Gamepad button 14.</para>
  2820. </summary>
  2821. </member>
  2822. <member name="F:Godot.JoystickList.Button15">
  2823. <summary>
  2824. <para>Gamepad button 15.</para>
  2825. </summary>
  2826. </member>
  2827. <member name="F:Godot.JoystickList.ButtonMax">
  2828. <summary>
  2829. <para>Represents the maximum number of joystick buttons supported.</para>
  2830. </summary>
  2831. </member>
  2832. <member name="F:Godot.JoystickList.SonyCircle">
  2833. <summary>
  2834. <para>DualShock circle button.</para>
  2835. </summary>
  2836. </member>
  2837. <member name="F:Godot.JoystickList.SonyX">
  2838. <summary>
  2839. <para>DualShock X button.</para>
  2840. </summary>
  2841. </member>
  2842. <member name="F:Godot.JoystickList.SonySquare">
  2843. <summary>
  2844. <para>DualShock square button.</para>
  2845. </summary>
  2846. </member>
  2847. <member name="F:Godot.JoystickList.SonyTriangle">
  2848. <summary>
  2849. <para>DualShock triangle button.</para>
  2850. </summary>
  2851. </member>
  2852. <member name="F:Godot.JoystickList.XboxB">
  2853. <summary>
  2854. <para>Xbox controller B button.</para>
  2855. </summary>
  2856. </member>
  2857. <member name="F:Godot.JoystickList.XboxA">
  2858. <summary>
  2859. <para>Xbox controller A button.</para>
  2860. </summary>
  2861. </member>
  2862. <member name="F:Godot.JoystickList.XboxX">
  2863. <summary>
  2864. <para>Xbox controller X button.</para>
  2865. </summary>
  2866. </member>
  2867. <member name="F:Godot.JoystickList.XboxY">
  2868. <summary>
  2869. <para>Xbox controller Y button.</para>
  2870. </summary>
  2871. </member>
  2872. <member name="F:Godot.JoystickList.DsA">
  2873. <summary>
  2874. <para>Nintendo controller A button.</para>
  2875. </summary>
  2876. </member>
  2877. <member name="F:Godot.JoystickList.DsB">
  2878. <summary>
  2879. <para>Nintendo controller B button.</para>
  2880. </summary>
  2881. </member>
  2882. <member name="F:Godot.JoystickList.DsX">
  2883. <summary>
  2884. <para>Nintendo controller X button.</para>
  2885. </summary>
  2886. </member>
  2887. <member name="F:Godot.JoystickList.DsY">
  2888. <summary>
  2889. <para>Nintendo controller Y button.</para>
  2890. </summary>
  2891. </member>
  2892. <member name="F:Godot.JoystickList.VrGrip">
  2893. <summary>
  2894. <para>Grip (side) buttons on a VR controller.</para>
  2895. </summary>
  2896. </member>
  2897. <member name="F:Godot.JoystickList.VrPad">
  2898. <summary>
  2899. <para>Push down on the touchpad or main joystick on a VR controller.</para>
  2900. </summary>
  2901. </member>
  2902. <member name="F:Godot.JoystickList.VrTrigger">
  2903. <summary>
  2904. <para>Trigger on a VR controller.</para>
  2905. </summary>
  2906. </member>
  2907. <member name="F:Godot.JoystickList.OculusAx">
  2908. <summary>
  2909. <para>A button on the right Oculus Touch controller, X button on the left controller (also when used in OpenVR).</para>
  2910. </summary>
  2911. </member>
  2912. <member name="F:Godot.JoystickList.OculusBy">
  2913. <summary>
  2914. <para>B button on the right Oculus Touch controller, Y button on the left controller (also when used in OpenVR).</para>
  2915. </summary>
  2916. </member>
  2917. <member name="F:Godot.JoystickList.OculusMenu">
  2918. <summary>
  2919. <para>Menu button on either Oculus Touch controller.</para>
  2920. </summary>
  2921. </member>
  2922. <member name="F:Godot.JoystickList.OpenvrMenu">
  2923. <summary>
  2924. <para>Menu button in OpenVR (Except when Oculus Touch controllers are used).</para>
  2925. </summary>
  2926. </member>
  2927. <member name="F:Godot.JoystickList.Select">
  2928. <summary>
  2929. <para>Gamepad button Select.</para>
  2930. </summary>
  2931. </member>
  2932. <member name="F:Godot.JoystickList.Start">
  2933. <summary>
  2934. <para>Gamepad button Start.</para>
  2935. </summary>
  2936. </member>
  2937. <member name="F:Godot.JoystickList.DpadUp">
  2938. <summary>
  2939. <para>Gamepad DPad up.</para>
  2940. </summary>
  2941. </member>
  2942. <member name="F:Godot.JoystickList.DpadDown">
  2943. <summary>
  2944. <para>Gamepad DPad down.</para>
  2945. </summary>
  2946. </member>
  2947. <member name="F:Godot.JoystickList.DpadLeft">
  2948. <summary>
  2949. <para>Gamepad DPad left.</para>
  2950. </summary>
  2951. </member>
  2952. <member name="F:Godot.JoystickList.DpadRight">
  2953. <summary>
  2954. <para>Gamepad DPad right.</para>
  2955. </summary>
  2956. </member>
  2957. <member name="F:Godot.JoystickList.L">
  2958. <summary>
  2959. <para>Gamepad left Shoulder button.</para>
  2960. </summary>
  2961. </member>
  2962. <member name="F:Godot.JoystickList.L2">
  2963. <summary>
  2964. <para>Gamepad left trigger.</para>
  2965. </summary>
  2966. </member>
  2967. <member name="F:Godot.JoystickList.L3">
  2968. <summary>
  2969. <para>Gamepad left stick click.</para>
  2970. </summary>
  2971. </member>
  2972. <member name="F:Godot.JoystickList.R">
  2973. <summary>
  2974. <para>Gamepad right Shoulder button.</para>
  2975. </summary>
  2976. </member>
  2977. <member name="F:Godot.JoystickList.R2">
  2978. <summary>
  2979. <para>Gamepad right trigger.</para>
  2980. </summary>
  2981. </member>
  2982. <member name="F:Godot.JoystickList.R3">
  2983. <summary>
  2984. <para>Gamepad right stick click.</para>
  2985. </summary>
  2986. </member>
  2987. <member name="F:Godot.JoystickList.Axis0">
  2988. <summary>
  2989. <para>Gamepad left stick horizontal axis.</para>
  2990. </summary>
  2991. </member>
  2992. <member name="F:Godot.JoystickList.Axis1">
  2993. <summary>
  2994. <para>Gamepad left stick vertical axis.</para>
  2995. </summary>
  2996. </member>
  2997. <member name="F:Godot.JoystickList.Axis2">
  2998. <summary>
  2999. <para>Gamepad right stick horizontal axis.</para>
  3000. </summary>
  3001. </member>
  3002. <member name="F:Godot.JoystickList.Axis3">
  3003. <summary>
  3004. <para>Gamepad right stick vertical axis.</para>
  3005. </summary>
  3006. </member>
  3007. <member name="F:Godot.JoystickList.Axis4">
  3008. <summary>
  3009. <para>Generic gamepad axis 4.</para>
  3010. </summary>
  3011. </member>
  3012. <member name="F:Godot.JoystickList.Axis5">
  3013. <summary>
  3014. <para>Generic gamepad axis 5.</para>
  3015. </summary>
  3016. </member>
  3017. <member name="F:Godot.JoystickList.Axis6">
  3018. <summary>
  3019. <para>Gamepad left trigger analog axis.</para>
  3020. </summary>
  3021. </member>
  3022. <member name="F:Godot.JoystickList.Axis7">
  3023. <summary>
  3024. <para>Gamepad right trigger analog axis.</para>
  3025. </summary>
  3026. </member>
  3027. <member name="F:Godot.JoystickList.Axis8">
  3028. <summary>
  3029. <para>Generic gamepad axis 8.</para>
  3030. </summary>
  3031. </member>
  3032. <member name="F:Godot.JoystickList.Axis9">
  3033. <summary>
  3034. <para>Generic gamepad axis 9.</para>
  3035. </summary>
  3036. </member>
  3037. <member name="F:Godot.JoystickList.AxisMax">
  3038. <summary>
  3039. <para>Represents the maximum number of joystick axes supported.</para>
  3040. </summary>
  3041. </member>
  3042. <member name="F:Godot.JoystickList.AnalogLx">
  3043. <summary>
  3044. <para>Gamepad left stick horizontal axis.</para>
  3045. </summary>
  3046. </member>
  3047. <member name="F:Godot.JoystickList.AnalogLy">
  3048. <summary>
  3049. <para>Gamepad left stick vertical axis.</para>
  3050. </summary>
  3051. </member>
  3052. <member name="F:Godot.JoystickList.AnalogRx">
  3053. <summary>
  3054. <para>Gamepad right stick horizontal axis.</para>
  3055. </summary>
  3056. </member>
  3057. <member name="F:Godot.JoystickList.AnalogRy">
  3058. <summary>
  3059. <para>Gamepad right stick vertical axis.</para>
  3060. </summary>
  3061. </member>
  3062. <member name="F:Godot.JoystickList.AnalogL2">
  3063. <summary>
  3064. <para>Gamepad left analog trigger.</para>
  3065. </summary>
  3066. </member>
  3067. <member name="F:Godot.JoystickList.AnalogR2">
  3068. <summary>
  3069. <para>Gamepad right analog trigger.</para>
  3070. </summary>
  3071. </member>
  3072. <member name="F:Godot.JoystickList.VrAnalogTrigger">
  3073. <summary>
  3074. <para>VR Controller analog trigger.</para>
  3075. </summary>
  3076. </member>
  3077. <member name="F:Godot.JoystickList.VrAnalogGrip">
  3078. <summary>
  3079. <para>VR Controller analog grip (side buttons).</para>
  3080. </summary>
  3081. </member>
  3082. <member name="F:Godot.JoystickList.OpenvrTouchpadx">
  3083. <summary>
  3084. <para>OpenVR touchpad X axis (Joystick axis on Oculus Touch and Windows MR controllers).</para>
  3085. </summary>
  3086. </member>
  3087. <member name="F:Godot.JoystickList.OpenvrTouchpady">
  3088. <summary>
  3089. <para>OpenVR touchpad Y axis (Joystick axis on Oculus Touch and Windows MR controllers).</para>
  3090. </summary>
  3091. </member>
  3092. <member name="F:Godot.MidiMessageList.NoteOff">
  3093. <summary>
  3094. <para>MIDI note OFF message.</para>
  3095. </summary>
  3096. </member>
  3097. <member name="F:Godot.MidiMessageList.NoteOn">
  3098. <summary>
  3099. <para>MIDI note ON message.</para>
  3100. </summary>
  3101. </member>
  3102. <member name="F:Godot.MidiMessageList.Aftertouch">
  3103. <summary>
  3104. <para>MIDI aftertouch message.</para>
  3105. </summary>
  3106. </member>
  3107. <member name="F:Godot.MidiMessageList.ControlChange">
  3108. <summary>
  3109. <para>MIDI control change message.</para>
  3110. </summary>
  3111. </member>
  3112. <member name="F:Godot.MidiMessageList.ProgramChange">
  3113. <summary>
  3114. <para>MIDI program change message.</para>
  3115. </summary>
  3116. </member>
  3117. <member name="F:Godot.MidiMessageList.ChannelPressure">
  3118. <summary>
  3119. <para>MIDI channel pressure message.</para>
  3120. </summary>
  3121. </member>
  3122. <member name="F:Godot.MidiMessageList.PitchBend">
  3123. <summary>
  3124. <para>MIDI pitch bend message.</para>
  3125. </summary>
  3126. </member>
  3127. <member name="F:Godot.Error.Ok">
  3128. <summary>
  3129. <para>Methods that return <see cref="T:Godot.Error"/> return when no error occurred. Note that many functions don't return an error code but will print error messages to standard output.</para>
  3130. <para>Since has value 0, and all other failure codes are positive integers, it can also be used in boolean checks, e.g.:</para>
  3131. <para><code>
  3132. var err = method_that_returns_error()
  3133. if err != OK:
  3134. print("Failure!)
  3135. # Or, equivalent:
  3136. if err:
  3137. print("Still failing!)
  3138. </code></para>
  3139. </summary>
  3140. </member>
  3141. <member name="F:Godot.Error.Failed">
  3142. <summary>
  3143. <para>Generic error.</para>
  3144. </summary>
  3145. </member>
  3146. <member name="F:Godot.Error.Unavailable">
  3147. <summary>
  3148. <para>Unavailable error.</para>
  3149. </summary>
  3150. </member>
  3151. <member name="F:Godot.Error.Unconfigured">
  3152. <summary>
  3153. <para>Unconfigured error.</para>
  3154. </summary>
  3155. </member>
  3156. <member name="F:Godot.Error.Unauthorized">
  3157. <summary>
  3158. <para>Unauthorized error.</para>
  3159. </summary>
  3160. </member>
  3161. <member name="F:Godot.Error.ParameterRangeError">
  3162. <summary>
  3163. <para>Parameter range error.</para>
  3164. </summary>
  3165. </member>
  3166. <member name="F:Godot.Error.OutOfMemory">
  3167. <summary>
  3168. <para>Out of memory (OOM) error.</para>
  3169. </summary>
  3170. </member>
  3171. <member name="F:Godot.Error.FileNotFound">
  3172. <summary>
  3173. <para>File: Not found error.</para>
  3174. </summary>
  3175. </member>
  3176. <member name="F:Godot.Error.FileBadDrive">
  3177. <summary>
  3178. <para>File: Bad drive error.</para>
  3179. </summary>
  3180. </member>
  3181. <member name="F:Godot.Error.FileBadPath">
  3182. <summary>
  3183. <para>File: Bad path error.</para>
  3184. </summary>
  3185. </member>
  3186. <member name="F:Godot.Error.FileNoPermission">
  3187. <summary>
  3188. <para>File: No permission error.</para>
  3189. </summary>
  3190. </member>
  3191. <member name="F:Godot.Error.FileAlreadyInUse">
  3192. <summary>
  3193. <para>File: Already in use error.</para>
  3194. </summary>
  3195. </member>
  3196. <member name="F:Godot.Error.FileCantOpen">
  3197. <summary>
  3198. <para>File: Can't open error.</para>
  3199. </summary>
  3200. </member>
  3201. <member name="F:Godot.Error.FileCantWrite">
  3202. <summary>
  3203. <para>File: Can't write error.</para>
  3204. </summary>
  3205. </member>
  3206. <member name="F:Godot.Error.FileCantRead">
  3207. <summary>
  3208. <para>File: Can't read error.</para>
  3209. </summary>
  3210. </member>
  3211. <member name="F:Godot.Error.FileUnrecognized">
  3212. <summary>
  3213. <para>File: Unrecognized error.</para>
  3214. </summary>
  3215. </member>
  3216. <member name="F:Godot.Error.FileCorrupt">
  3217. <summary>
  3218. <para>File: Corrupt error.</para>
  3219. </summary>
  3220. </member>
  3221. <member name="F:Godot.Error.FileMissingDependencies">
  3222. <summary>
  3223. <para>File: Missing dependencies error.</para>
  3224. </summary>
  3225. </member>
  3226. <member name="F:Godot.Error.FileEof">
  3227. <summary>
  3228. <para>File: End of file (EOF) error.</para>
  3229. </summary>
  3230. </member>
  3231. <member name="F:Godot.Error.CantOpen">
  3232. <summary>
  3233. <para>Can't open error.</para>
  3234. </summary>
  3235. </member>
  3236. <member name="F:Godot.Error.CantCreate">
  3237. <summary>
  3238. <para>Can't create error.</para>
  3239. </summary>
  3240. </member>
  3241. <member name="F:Godot.Error.QueryFailed">
  3242. <summary>
  3243. <para>Query failed error.</para>
  3244. </summary>
  3245. </member>
  3246. <member name="F:Godot.Error.AlreadyInUse">
  3247. <summary>
  3248. <para>Already in use error.</para>
  3249. </summary>
  3250. </member>
  3251. <member name="F:Godot.Error.Locked">
  3252. <summary>
  3253. <para>Locked error.</para>
  3254. </summary>
  3255. </member>
  3256. <member name="F:Godot.Error.Timeout">
  3257. <summary>
  3258. <para>Timeout error.</para>
  3259. </summary>
  3260. </member>
  3261. <member name="F:Godot.Error.CantConnect">
  3262. <summary>
  3263. <para>Can't connect error.</para>
  3264. </summary>
  3265. </member>
  3266. <member name="F:Godot.Error.CantResolve">
  3267. <summary>
  3268. <para>Can't resolve error.</para>
  3269. </summary>
  3270. </member>
  3271. <member name="F:Godot.Error.ConnectionError">
  3272. <summary>
  3273. <para>Connection error.</para>
  3274. </summary>
  3275. </member>
  3276. <member name="F:Godot.Error.CantAcquireResource">
  3277. <summary>
  3278. <para>Can't acquire resource error.</para>
  3279. </summary>
  3280. </member>
  3281. <member name="F:Godot.Error.CantFork">
  3282. <summary>
  3283. <para>Can't fork process error.</para>
  3284. </summary>
  3285. </member>
  3286. <member name="F:Godot.Error.InvalidData">
  3287. <summary>
  3288. <para>Invalid data error.</para>
  3289. </summary>
  3290. </member>
  3291. <member name="F:Godot.Error.InvalidParameter">
  3292. <summary>
  3293. <para>Invalid parameter error.</para>
  3294. </summary>
  3295. </member>
  3296. <member name="F:Godot.Error.AlreadyExists">
  3297. <summary>
  3298. <para>Already exists error.</para>
  3299. </summary>
  3300. </member>
  3301. <member name="F:Godot.Error.DoesNotExist">
  3302. <summary>
  3303. <para>Does not exist error.</para>
  3304. </summary>
  3305. </member>
  3306. <member name="F:Godot.Error.DatabaseCantRead">
  3307. <summary>
  3308. <para>Database: Read error.</para>
  3309. </summary>
  3310. </member>
  3311. <member name="F:Godot.Error.DatabaseCantWrite">
  3312. <summary>
  3313. <para>Database: Write error.</para>
  3314. </summary>
  3315. </member>
  3316. <member name="F:Godot.Error.CompilationFailed">
  3317. <summary>
  3318. <para>Compilation failed error.</para>
  3319. </summary>
  3320. </member>
  3321. <member name="F:Godot.Error.MethodNotFound">
  3322. <summary>
  3323. <para>Method not found error.</para>
  3324. </summary>
  3325. </member>
  3326. <member name="F:Godot.Error.LinkFailed">
  3327. <summary>
  3328. <para>Linking failed error.</para>
  3329. </summary>
  3330. </member>
  3331. <member name="F:Godot.Error.ScriptFailed">
  3332. <summary>
  3333. <para>Script failed error.</para>
  3334. </summary>
  3335. </member>
  3336. <member name="F:Godot.Error.CyclicLink">
  3337. <summary>
  3338. <para>Cycling link (import cycle) error.</para>
  3339. </summary>
  3340. </member>
  3341. <member name="F:Godot.Error.InvalidDeclaration">
  3342. <summary>
  3343. <para>Invalid declaration error.</para>
  3344. </summary>
  3345. </member>
  3346. <member name="F:Godot.Error.DuplicateSymbol">
  3347. <summary>
  3348. <para>Duplicate symbol error.</para>
  3349. </summary>
  3350. </member>
  3351. <member name="F:Godot.Error.ParseError">
  3352. <summary>
  3353. <para>Parse error.</para>
  3354. </summary>
  3355. </member>
  3356. <member name="F:Godot.Error.Busy">
  3357. <summary>
  3358. <para>Busy error.</para>
  3359. </summary>
  3360. </member>
  3361. <member name="F:Godot.Error.Skip">
  3362. <summary>
  3363. <para>Skip error.</para>
  3364. </summary>
  3365. </member>
  3366. <member name="F:Godot.Error.Help">
  3367. <summary>
  3368. <para>Help error.</para>
  3369. </summary>
  3370. </member>
  3371. <member name="F:Godot.Error.Bug">
  3372. <summary>
  3373. <para>Bug error.</para>
  3374. </summary>
  3375. </member>
  3376. <member name="F:Godot.Error.PrinterOnFire">
  3377. <summary>
  3378. <para>Printer on fire error. (This is an easter egg, no engine methods return this error code.)</para>
  3379. </summary>
  3380. </member>
  3381. <member name="F:Godot.PropertyHint.None">
  3382. <summary>
  3383. <para>No hint for the edited property.</para>
  3384. </summary>
  3385. </member>
  3386. <member name="F:Godot.PropertyHint.Range">
  3387. <summary>
  3388. <para>Hints that an integer or float property should be within a range specified via the hint string <c>"min,max"</c> or <c>"min,max,step"</c>. The hint string can optionally include <c>"or_greater"</c> and/or <c>"or_lesser"</c> to allow manual input going respectively above the max or below the min values. Example: <c>"-360,360,1,or_greater,or_lesser"</c>.</para>
  3389. </summary>
  3390. </member>
  3391. <member name="F:Godot.PropertyHint.ExpRange">
  3392. <summary>
  3393. <para>Hints that an integer or float property should be within an exponential range specified via the hint string <c>"min,max"</c> or <c>"min,max,step"</c>. The hint string can optionally include <c>"or_greater"</c> and/or <c>"or_lesser"</c> to allow manual input going respectively above the max or below the min values. Example: <c>"0.01,100,0.01,or_greater"</c>.</para>
  3394. </summary>
  3395. </member>
  3396. <member name="F:Godot.PropertyHint.Enum">
  3397. <summary>
  3398. <para>Hints that an integer, float or string property is an enumerated value to pick in a list specified via a hint string such as <c>"Hello,Something,Else"</c>.</para>
  3399. </summary>
  3400. </member>
  3401. <member name="F:Godot.PropertyHint.ExpEasing">
  3402. <summary>
  3403. <para>Hints that a float property should be edited via an exponential easing function. The hint string can include <c>"attenuation"</c> to flip the curve horizontally and/or <c>"inout"</c> to also include in/out easing.</para>
  3404. </summary>
  3405. </member>
  3406. <member name="F:Godot.PropertyHint.Length">
  3407. <summary>
  3408. <para>Deprecated hint, unused.</para>
  3409. </summary>
  3410. </member>
  3411. <member name="F:Godot.PropertyHint.KeyAccel">
  3412. <summary>
  3413. <para>Deprecated hint, unused.</para>
  3414. </summary>
  3415. </member>
  3416. <member name="F:Godot.PropertyHint.Flags">
  3417. <summary>
  3418. <para>Hints that an integer property is a bitmask with named bit flags. For example, to allow toggling bits 0, 1, 2 and 4, the hint could be something like <c>"Bit0,Bit1,Bit2,,Bit4"</c>.</para>
  3419. </summary>
  3420. </member>
  3421. <member name="F:Godot.PropertyHint.Layers2dRender">
  3422. <summary>
  3423. <para>Hints that an integer property is a bitmask using the optionally named 2D render layers.</para>
  3424. </summary>
  3425. </member>
  3426. <member name="F:Godot.PropertyHint.Layers2dPhysics">
  3427. <summary>
  3428. <para>Hints that an integer property is a bitmask using the optionally named 2D physics layers.</para>
  3429. </summary>
  3430. </member>
  3431. <member name="F:Godot.PropertyHint.Layers3dRender">
  3432. <summary>
  3433. <para>Hints that an integer property is a bitmask using the optionally named 3D render layers.</para>
  3434. </summary>
  3435. </member>
  3436. <member name="F:Godot.PropertyHint.Layers3dPhysics">
  3437. <summary>
  3438. <para>Hints that an integer property is a bitmask using the optionally named 3D physics layers.</para>
  3439. </summary>
  3440. </member>
  3441. <member name="F:Godot.PropertyHint.File">
  3442. <summary>
  3443. <para>Hints that a string property is a path to a file. Editing it will show a file dialog for picking the path. The hint string can be a set of filters with wildcards like <c>"*.png,*.jpg"</c>.</para>
  3444. </summary>
  3445. </member>
  3446. <member name="F:Godot.PropertyHint.Dir">
  3447. <summary>
  3448. <para>Hints that a string property is a path to a directory. Editing it will show a file dialog for picking the path.</para>
  3449. </summary>
  3450. </member>
  3451. <member name="F:Godot.PropertyHint.GlobalFile">
  3452. <summary>
  3453. <para>Hints that a string property is an absolute path to a file outside the project folder. Editing it will show a file dialog for picking the path. The hint string can be a set of filters with wildcards like <c>"*.png,*.jpg"</c>.</para>
  3454. </summary>
  3455. </member>
  3456. <member name="F:Godot.PropertyHint.GlobalDir">
  3457. <summary>
  3458. <para>Hints that a string property is an absolute path to a directory outside the project folder. Editing it will show a file dialog for picking the path.</para>
  3459. </summary>
  3460. </member>
  3461. <member name="F:Godot.PropertyHint.ResourceType">
  3462. <summary>
  3463. <para>Hints that a property is an instance of a <see cref="T:Godot.Resource"/>-derived type, optionally specified via the hint string (e.g. <c>"Texture"</c>). Editing it will show a popup menu of valid resource types to instantiate.</para>
  3464. </summary>
  3465. </member>
  3466. <member name="F:Godot.PropertyHint.MultilineText">
  3467. <summary>
  3468. <para>Hints that a string property is text with line breaks. Editing it will show a text input field where line breaks can be typed.</para>
  3469. </summary>
  3470. </member>
  3471. <member name="F:Godot.PropertyHint.PlaceholderText">
  3472. <summary>
  3473. <para>Hints that a string property should have a placeholder text visible on its input field, whenever the property is empty. The hint string is the placeholder text to use.</para>
  3474. </summary>
  3475. </member>
  3476. <member name="F:Godot.PropertyHint.ColorNoAlpha">
  3477. <summary>
  3478. <para>Hints that a color property should be edited without changing its alpha component, i.e. only R, G and B channels are edited.</para>
  3479. </summary>
  3480. </member>
  3481. <member name="F:Godot.PropertyHint.ImageCompressLossy">
  3482. <summary>
  3483. <para>Hints that an image is compressed using lossy compression.</para>
  3484. </summary>
  3485. </member>
  3486. <member name="F:Godot.PropertyHint.ImageCompressLossless">
  3487. <summary>
  3488. <para>Hints that an image is compressed using lossless compression.</para>
  3489. </summary>
  3490. </member>
  3491. <member name="F:Godot.PropertyUsageFlags.Storage">
  3492. <summary>
  3493. <para>The property is serialized and saved in the scene file (default).</para>
  3494. </summary>
  3495. </member>
  3496. <member name="F:Godot.PropertyUsageFlags.Editor">
  3497. <summary>
  3498. <para>The property is shown in the editor inspector (default).</para>
  3499. </summary>
  3500. </member>
  3501. <member name="F:Godot.PropertyUsageFlags.Network">
  3502. <summary>
  3503. <para>Deprecated usage flag, unused.</para>
  3504. </summary>
  3505. </member>
  3506. <member name="F:Godot.PropertyUsageFlags.EditorHelper">
  3507. <summary>
  3508. <para>Deprecated usage flag, unused.</para>
  3509. </summary>
  3510. </member>
  3511. <member name="F:Godot.PropertyUsageFlags.Checkable">
  3512. <summary>
  3513. <para>The property can be checked in the editor inspector.</para>
  3514. </summary>
  3515. </member>
  3516. <member name="F:Godot.PropertyUsageFlags.Checked">
  3517. <summary>
  3518. <para>The property is checked in the editor inspector.</para>
  3519. </summary>
  3520. </member>
  3521. <member name="F:Godot.PropertyUsageFlags.Internationalized">
  3522. <summary>
  3523. <para>The property is a translatable string.</para>
  3524. </summary>
  3525. </member>
  3526. <member name="F:Godot.PropertyUsageFlags.Group">
  3527. <summary>
  3528. <para>Used to group properties together in the editor.</para>
  3529. </summary>
  3530. </member>
  3531. <member name="F:Godot.PropertyUsageFlags.Category">
  3532. <summary>
  3533. <para>Used to categorize properties together in the editor.</para>
  3534. </summary>
  3535. </member>
  3536. <member name="F:Godot.PropertyUsageFlags.NoInstanceState">
  3537. <summary>
  3538. <para>The property does not save its state in <see cref="T:Godot.PackedScene"/>.</para>
  3539. </summary>
  3540. </member>
  3541. <member name="F:Godot.PropertyUsageFlags.RestartIfChanged">
  3542. <summary>
  3543. <para>Editing the property prompts the user for restarting the editor.</para>
  3544. </summary>
  3545. </member>
  3546. <member name="F:Godot.PropertyUsageFlags.ScriptVariable">
  3547. <summary>
  3548. <para>The property is a script variable which should be serialized and saved in the scene file.</para>
  3549. </summary>
  3550. </member>
  3551. <member name="F:Godot.PropertyUsageFlags.Default">
  3552. <summary>
  3553. <para>Default usage (storage, editor and network).</para>
  3554. </summary>
  3555. </member>
  3556. <member name="F:Godot.PropertyUsageFlags.DefaultIntl">
  3557. <summary>
  3558. <para>Default usage for translatable strings (storage, editor, network and internationalized).</para>
  3559. </summary>
  3560. </member>
  3561. <member name="F:Godot.PropertyUsageFlags.Noeditor">
  3562. <summary>
  3563. <para>Default usage but without showing the property in the editor (storage, network).</para>
  3564. </summary>
  3565. </member>
  3566. <member name="F:Godot.MethodFlags.Normal">
  3567. <summary>
  3568. <para>Flag for a normal method.</para>
  3569. </summary>
  3570. </member>
  3571. <member name="F:Godot.MethodFlags.Editor">
  3572. <summary>
  3573. <para>Flag for an editor method.</para>
  3574. </summary>
  3575. </member>
  3576. <member name="F:Godot.MethodFlags.Noscript">
  3577. <summary>
  3578. <para>Deprecated method flag, unused.</para>
  3579. </summary>
  3580. </member>
  3581. <member name="F:Godot.MethodFlags.Const">
  3582. <summary>
  3583. <para>Flag for a constant method.</para>
  3584. </summary>
  3585. </member>
  3586. <member name="F:Godot.MethodFlags.Reverse">
  3587. <summary>
  3588. <para>Deprecated method flag, unused.</para>
  3589. </summary>
  3590. </member>
  3591. <member name="F:Godot.MethodFlags.Virtual">
  3592. <summary>
  3593. <para>Flag for a virtual method.</para>
  3594. </summary>
  3595. </member>
  3596. <member name="F:Godot.MethodFlags.FromScript">
  3597. <summary>
  3598. <para>Deprecated method flag, unused.</para>
  3599. </summary>
  3600. </member>
  3601. <member name="F:Godot.MethodFlags.Default">
  3602. <summary>
  3603. <para>Default method flags.</para>
  3604. </summary>
  3605. </member>
  3606. <member name="F:Godot.Variant.Type.Nil">
  3607. <summary>
  3608. <para>Variable is <c>null</c>.</para>
  3609. </summary>
  3610. </member>
  3611. <member name="F:Godot.Variant.Type.Bool">
  3612. <summary>
  3613. <para>Variable is of type <see cref="T:System.Boolean"/>.</para>
  3614. </summary>
  3615. </member>
  3616. <member name="F:Godot.Variant.Type.Int">
  3617. <summary>
  3618. <para>Variable is of type <see cref="T:System.Int32"/>.</para>
  3619. </summary>
  3620. </member>
  3621. <member name="F:Godot.Variant.Type.Real">
  3622. <summary>
  3623. <para>Variable is of type <see cref="T:System.Single"/> (real).</para>
  3624. </summary>
  3625. </member>
  3626. <member name="F:Godot.Variant.Type.String">
  3627. <summary>
  3628. <para>Variable is of type <see cref="T:System.String"/>.</para>
  3629. </summary>
  3630. </member>
  3631. <member name="F:Godot.Variant.Type.Vector2">
  3632. <summary>
  3633. <para>Variable is of type <see cref="T:Godot.Vector2"/>.</para>
  3634. </summary>
  3635. </member>
  3636. <member name="F:Godot.Variant.Type.Rect2">
  3637. <summary>
  3638. <para>Variable is of type <see cref="T:Godot.Rect2"/>.</para>
  3639. </summary>
  3640. </member>
  3641. <member name="F:Godot.Variant.Type.Vector3">
  3642. <summary>
  3643. <para>Variable is of type <see cref="T:Godot.Vector3"/>.</para>
  3644. </summary>
  3645. </member>
  3646. <member name="F:Godot.Variant.Type.Transform2d">
  3647. <summary>
  3648. <para>Variable is of type <see cref="T:Godot.Transform2D"/>.</para>
  3649. </summary>
  3650. </member>
  3651. <member name="F:Godot.Variant.Type.Plane">
  3652. <summary>
  3653. <para>Variable is of type <see cref="T:Godot.Plane"/>.</para>
  3654. </summary>
  3655. </member>
  3656. <member name="F:Godot.Variant.Type.Quat">
  3657. <summary>
  3658. <para>Variable is of type <see cref="T:Godot.Quat"/>.</para>
  3659. </summary>
  3660. </member>
  3661. <member name="F:Godot.Variant.Type.Aabb">
  3662. <summary>
  3663. <para>Variable is of type <see cref="T:Godot.AABB"/>.</para>
  3664. </summary>
  3665. </member>
  3666. <member name="F:Godot.Variant.Type.Basis">
  3667. <summary>
  3668. <para>Variable is of type <see cref="T:Godot.Basis"/>.</para>
  3669. </summary>
  3670. </member>
  3671. <member name="F:Godot.Variant.Type.Transform">
  3672. <summary>
  3673. <para>Variable is of type <see cref="T:Godot.Transform"/>.</para>
  3674. </summary>
  3675. </member>
  3676. <member name="F:Godot.Variant.Type.Color">
  3677. <summary>
  3678. <para>Variable is of type <see cref="T:Godot.Color"/>.</para>
  3679. </summary>
  3680. </member>
  3681. <member name="F:Godot.Variant.Type.NodePath">
  3682. <summary>
  3683. <para>Variable is of type <see cref="T:Godot.NodePath"/>.</para>
  3684. </summary>
  3685. </member>
  3686. <member name="F:Godot.Variant.Type.Rid">
  3687. <summary>
  3688. <para>Variable is of type <see cref="T:Godot.RID"/>.</para>
  3689. </summary>
  3690. </member>
  3691. <member name="F:Godot.Variant.Type.Object">
  3692. <summary>
  3693. <para>Variable is of type <see cref="T:Godot.Object"/>.</para>
  3694. </summary>
  3695. </member>
  3696. <member name="F:Godot.Variant.Type.Dictionary">
  3697. <summary>
  3698. <para>Variable is of type <see cref="T:Godot.Collections.Dictionary"/>.</para>
  3699. </summary>
  3700. </member>
  3701. <member name="F:Godot.Variant.Type.Array">
  3702. <summary>
  3703. <para>Variable is of type <see cref="T:Godot.Collections.Array"/>.</para>
  3704. </summary>
  3705. </member>
  3706. <member name="F:Godot.Variant.Type.RawArray">
  3707. <summary>
  3708. <para>Variable is of type <see cref="T:System.Byte"/>.</para>
  3709. </summary>
  3710. </member>
  3711. <member name="F:Godot.Variant.Type.IntArray">
  3712. <summary>
  3713. <para>Variable is of type <see cref="T:System.Int32"/>.</para>
  3714. </summary>
  3715. </member>
  3716. <member name="F:Godot.Variant.Type.RealArray">
  3717. <summary>
  3718. <para>Variable is of type <see cref="T:System.Single"/>.</para>
  3719. </summary>
  3720. </member>
  3721. <member name="F:Godot.Variant.Type.StringArray">
  3722. <summary>
  3723. <para>Variable is of type <see cref="T:System.String"/>.</para>
  3724. </summary>
  3725. </member>
  3726. <member name="F:Godot.Variant.Type.Vector2Array">
  3727. <summary>
  3728. <para>Variable is of type <see cref="T:Godot.Vector2"/>.</para>
  3729. </summary>
  3730. </member>
  3731. <member name="F:Godot.Variant.Type.Vector3Array">
  3732. <summary>
  3733. <para>Variable is of type <see cref="T:Godot.Vector3"/>.</para>
  3734. </summary>
  3735. </member>
  3736. <member name="F:Godot.Variant.Type.ColorArray">
  3737. <summary>
  3738. <para>Variable is of type <see cref="T:Godot.Color"/>.</para>
  3739. </summary>
  3740. </member>
  3741. <member name="F:Godot.Variant.Type.Max">
  3742. <summary>
  3743. <para>Represents the size of the <see cref="T:Godot.Variant.Type"/> enum.</para>
  3744. </summary>
  3745. </member>
  3746. <member name="F:Godot.Variant.Operator.Equal">
  3747. <summary>
  3748. <para>Equality operator (<c>==</c>).</para>
  3749. </summary>
  3750. </member>
  3751. <member name="F:Godot.Variant.Operator.NotEqual">
  3752. <summary>
  3753. <para>Inequality operator (<c>!=</c>).</para>
  3754. </summary>
  3755. </member>
  3756. <member name="F:Godot.Variant.Operator.Less">
  3757. <summary>
  3758. <para>Less than operator (<c>&lt;</c>).</para>
  3759. </summary>
  3760. </member>
  3761. <member name="F:Godot.Variant.Operator.LessEqual">
  3762. <summary>
  3763. <para>Less than or equal operator (<c>&lt;=</c>).</para>
  3764. </summary>
  3765. </member>
  3766. <member name="F:Godot.Variant.Operator.Greater">
  3767. <summary>
  3768. <para>Greater than operator (<c>&gt;</c>).</para>
  3769. </summary>
  3770. </member>
  3771. <member name="F:Godot.Variant.Operator.GreaterEqual">
  3772. <summary>
  3773. <para>Greater than or equal operator (<c>&gt;=</c>).</para>
  3774. </summary>
  3775. </member>
  3776. <member name="F:Godot.Variant.Operator.Add">
  3777. <summary>
  3778. <para>Addition operator (<c>+</c>).</para>
  3779. </summary>
  3780. </member>
  3781. <member name="F:Godot.Variant.Operator.Subtract">
  3782. <summary>
  3783. <para>Subtraction operator (<c>-</c>).</para>
  3784. </summary>
  3785. </member>
  3786. <member name="F:Godot.Variant.Operator.Multiply">
  3787. <summary>
  3788. <para>Multiplication operator (<c>*</c>).</para>
  3789. </summary>
  3790. </member>
  3791. <member name="F:Godot.Variant.Operator.Divide">
  3792. <summary>
  3793. <para>Division operator (<c>/</c>).</para>
  3794. </summary>
  3795. </member>
  3796. <member name="F:Godot.Variant.Operator.Negate">
  3797. <summary>
  3798. <para>Unary negation operator (<c>-</c>).</para>
  3799. </summary>
  3800. </member>
  3801. <member name="F:Godot.Variant.Operator.Positive">
  3802. <summary>
  3803. <para>Unary plus operator (<c>+</c>).</para>
  3804. </summary>
  3805. </member>
  3806. <member name="F:Godot.Variant.Operator.Module">
  3807. <summary>
  3808. <para>Remainder/modulo operator (<c>%</c>).</para>
  3809. </summary>
  3810. </member>
  3811. <member name="F:Godot.Variant.Operator.StringConcat">
  3812. <summary>
  3813. <para>String concatenation operator (<c>+</c>).</para>
  3814. </summary>
  3815. </member>
  3816. <member name="F:Godot.Variant.Operator.ShiftLeft">
  3817. <summary>
  3818. <para>Left shift operator (<c>&lt;&lt;</c>).</para>
  3819. </summary>
  3820. </member>
  3821. <member name="F:Godot.Variant.Operator.ShiftRight">
  3822. <summary>
  3823. <para>Right shift operator (<c>&gt;&gt;</c>).</para>
  3824. </summary>
  3825. </member>
  3826. <member name="F:Godot.Variant.Operator.BitAnd">
  3827. <summary>
  3828. <para>Bitwise AND operator (<c>&amp;</c>).</para>
  3829. </summary>
  3830. </member>
  3831. <member name="F:Godot.Variant.Operator.BitOr">
  3832. <summary>
  3833. <para>Bitwise OR operator (<c>|</c>).</para>
  3834. </summary>
  3835. </member>
  3836. <member name="F:Godot.Variant.Operator.BitXor">
  3837. <summary>
  3838. <para>Bitwise XOR operator (<c>^</c>).</para>
  3839. </summary>
  3840. </member>
  3841. <member name="F:Godot.Variant.Operator.BitNegate">
  3842. <summary>
  3843. <para>Bitwise NOT operator (<c>~</c>).</para>
  3844. </summary>
  3845. </member>
  3846. <member name="F:Godot.Variant.Operator.And">
  3847. <summary>
  3848. <para>Logical AND operator (<c>and</c> or <c>&amp;&amp;</c>).</para>
  3849. </summary>
  3850. </member>
  3851. <member name="F:Godot.Variant.Operator.Or">
  3852. <summary>
  3853. <para>Logical OR operator (<c>or</c> or <c>||</c>).</para>
  3854. </summary>
  3855. </member>
  3856. <member name="F:Godot.Variant.Operator.Xor">
  3857. <summary>
  3858. <para>Logical XOR operator (not implemented in GDScript).</para>
  3859. </summary>
  3860. </member>
  3861. <member name="F:Godot.Variant.Operator.Not">
  3862. <summary>
  3863. <para>Logical NOT operator (<c>not</c> or <c>!</c>).</para>
  3864. </summary>
  3865. </member>
  3866. <member name="F:Godot.Variant.Operator.In">
  3867. <summary>
  3868. <para>Logical IN operator (<c>in</c>).</para>
  3869. </summary>
  3870. </member>
  3871. <member name="F:Godot.Variant.Operator.Max">
  3872. <summary>
  3873. <para>Represents the size of the <see cref="T:Godot.Variant.Operator"/> enum.</para>
  3874. </summary>
  3875. </member>
  3876. <member name="T:Godot.ARVRAnchor">
  3877. <summary>
  3878. <para>The <see cref="T:Godot.ARVRAnchor"/> point is a spatial node that maps a real world location identified by the AR platform to a position within the game world. For example, as long as plane detection in ARKit is on, ARKit will identify and update the position of planes (tables, floors, etc) and create anchors for them.</para>
  3879. <para>This node is mapped to one of the anchors through its unique ID. When you receive a signal that a new anchor is available, you should add this node to your scene for that anchor. You can predefine nodes and set the ID; the nodes will simply remain on 0,0,0 until a plane is recognized.</para>
  3880. <para>Keep in mind that, as long as plane detection is enabled, the size, placing and orientation of an anchor will be updated as the detection logic learns more about the real world out there especially if only part of the surface is in view.</para>
  3881. </summary>
  3882. </member>
  3883. <member name="P:Godot.ARVRAnchor.AnchorId">
  3884. <summary>
  3885. <para>The anchor's ID. You can set this before the anchor itself exists. The first anchor gets an ID of <c>1</c>, the second an ID of <c>2</c>, etc. When anchors get removed, the engine can then assign the corresponding ID to new anchors. The most common situation where anchors "disappear" is when the AR server identifies that two anchors represent different parts of the same plane and merges them.</para>
  3886. </summary>
  3887. </member>
  3888. <member name="M:Godot.ARVRAnchor.GetAnchorName">
  3889. <summary>
  3890. <para>Returns the name given to this anchor.</para>
  3891. </summary>
  3892. </member>
  3893. <member name="M:Godot.ARVRAnchor.GetIsActive">
  3894. <summary>
  3895. <para>Returns <c>true</c> if the anchor is being tracked and <c>false</c> if no anchor with this ID is currently known.</para>
  3896. </summary>
  3897. </member>
  3898. <member name="M:Godot.ARVRAnchor.GetSize">
  3899. <summary>
  3900. <para>Returns the estimated size of the plane that was detected. Say when the anchor relates to a table in the real world, this is the estimated size of the surface of that table.</para>
  3901. </summary>
  3902. </member>
  3903. <member name="M:Godot.ARVRAnchor.GetPlane">
  3904. <summary>
  3905. <para>Returns a plane aligned with our anchor; handy for intersection testing.</para>
  3906. </summary>
  3907. </member>
  3908. <member name="M:Godot.ARVRAnchor.GetMesh">
  3909. <summary>
  3910. <para>If provided by the <see cref="T:Godot.ARVRInterface"/>, this returns a mesh object for the anchor. For an anchor, this can be a shape related to the object being tracked or it can be a mesh that provides topology related to the anchor and can be used to create shadows/reflections on surfaces or for generating collision shapes.</para>
  3911. </summary>
  3912. </member>
  3913. <member name="T:Godot.ARVRCamera">
  3914. <summary>
  3915. <para>This is a helper spatial node for our camera; note that, if stereoscopic rendering is applicable (VR-HMD), most of the camera properties are ignored, as the HMD information overrides them. The only properties that can be trusted are the near and far planes.</para>
  3916. <para>The position and orientation of this node is automatically updated by the ARVR Server to represent the location of the HMD if such tracking is available and can thus be used by game logic. Note that, in contrast to the ARVR Controller, the render thread has access to the most up-to-date tracking data of the HMD and the location of the ARVRCamera can lag a few milliseconds behind what is used for rendering as a result.</para>
  3917. </summary>
  3918. </member>
  3919. <member name="T:Godot.ARVRController">
  3920. <summary>
  3921. <para>This is a helper spatial node that is linked to the tracking of controllers. It also offers several handy passthroughs to the state of buttons and such on the controllers.</para>
  3922. <para>Controllers are linked by their ID. You can create controller nodes before the controllers are available. If your game always uses two controllers (one for each hand), you can predefine the controllers with ID 1 and 2; they will become active as soon as the controllers are identified. If you expect additional controllers to be used, you should react to the signals and add ARVRController nodes to your scene.</para>
  3923. <para>The position of the controller node is automatically updated by the <see cref="T:Godot.ARVRServer"/>. This makes this node ideal to add child nodes to visualize the controller.</para>
  3924. </summary>
  3925. </member>
  3926. <member name="P:Godot.ARVRController.ControllerId">
  3927. <summary>
  3928. <para>The controller's ID.</para>
  3929. <para>A controller ID of 0 is unbound and will always result in an inactive node. Controller ID 1 is reserved for the first controller that identifies itself as the left-hand controller and ID 2 is reserved for the first controller that identifies itself as the right-hand controller.</para>
  3930. <para>For any other controller that the <see cref="T:Godot.ARVRServer"/> detects, we continue with controller ID 3.</para>
  3931. <para>When a controller is turned off, its slot is freed. This ensures controllers will keep the same ID even when controllers with lower IDs are turned off.</para>
  3932. </summary>
  3933. </member>
  3934. <member name="P:Godot.ARVRController.Rumble">
  3935. <summary>
  3936. <para>The degree to which the controller vibrates. Ranges from <c>0.0</c> to <c>1.0</c> with precision <c>.01</c>. If changed, updates <see cref="P:Godot.ARVRPositionalTracker.Rumble"/> accordingly.</para>
  3937. <para>This is a useful property to animate if you want the controller to vibrate for a limited duration.</para>
  3938. </summary>
  3939. </member>
  3940. <member name="M:Godot.ARVRController.GetControllerName">
  3941. <summary>
  3942. <para>If active, returns the name of the associated controller if provided by the AR/VR SDK used.</para>
  3943. </summary>
  3944. </member>
  3945. <member name="M:Godot.ARVRController.GetJoystickId">
  3946. <summary>
  3947. <para>Returns the ID of the joystick object bound to this. Every controller tracked by the <see cref="T:Godot.ARVRServer"/> that has buttons and axis will also be registered as a joystick within Godot. This means that all the normal joystick tracking and input mapping will work for buttons and axis found on the AR/VR controllers. This ID is purely offered as information so you can link up the controller with its joystick entry.</para>
  3948. </summary>
  3949. </member>
  3950. <member name="M:Godot.ARVRController.IsButtonPressed(System.Int32)">
  3951. <summary>
  3952. <para>Returns <c>true</c> if the button at index <c>button</c> is pressed. See <see cref="T:Godot.JoystickList"/>, in particular the <c>JOY_VR_*</c> constants.</para>
  3953. </summary>
  3954. </member>
  3955. <member name="M:Godot.ARVRController.GetJoystickAxis(System.Int32)">
  3956. <summary>
  3957. <para>Returns the value of the given axis for things like triggers, touchpads, etc. that are embedded into the controller.</para>
  3958. </summary>
  3959. </member>
  3960. <member name="M:Godot.ARVRController.GetIsActive">
  3961. <summary>
  3962. <para>Returns <c>true</c> if the bound controller is active. ARVR systems attempt to track active controllers.</para>
  3963. </summary>
  3964. </member>
  3965. <member name="M:Godot.ARVRController.GetHand">
  3966. <summary>
  3967. <para>Returns the hand holding this controller, if known. See <see cref="T:Godot.ARVRPositionalTracker.TrackerHand"/>.</para>
  3968. </summary>
  3969. </member>
  3970. <member name="M:Godot.ARVRController.GetMesh">
  3971. <summary>
  3972. <para>If provided by the <see cref="T:Godot.ARVRInterface"/>, this returns a mesh associated with the controller. This can be used to visualize the controller.</para>
  3973. </summary>
  3974. </member>
  3975. <member name="T:Godot.ARVRInterface">
  3976. <summary>
  3977. <para>This class needs to be implemented to make an AR or VR platform available to Godot and these should be implemented as C++ modules or GDNative modules (note that for GDNative the subclass ARVRScriptInterface should be used). Part of the interface is exposed to GDScript so you can detect, enable and configure an AR or VR platform.</para>
  3978. <para>Interfaces should be written in such a way that simply enabling them will give us a working setup. You can query the available interfaces through <see cref="T:Godot.ARVRServer"/>.</para>
  3979. </summary>
  3980. </member>
  3981. <member name="F:Godot.ARVRInterface.Tracking_status.NormalTracking">
  3982. <summary>
  3983. <para>Tracking is behaving as expected.</para>
  3984. </summary>
  3985. </member>
  3986. <member name="F:Godot.ARVRInterface.Tracking_status.ExcessiveMotion">
  3987. <summary>
  3988. <para>Tracking is hindered by excessive motion (the player is moving faster than tracking can keep up).</para>
  3989. </summary>
  3990. </member>
  3991. <member name="F:Godot.ARVRInterface.Tracking_status.InsufficientFeatures">
  3992. <summary>
  3993. <para>Tracking is hindered by insufficient features, it's too dark (for camera-based tracking), player is blocked, etc.</para>
  3994. </summary>
  3995. </member>
  3996. <member name="F:Godot.ARVRInterface.Tracking_status.UnknownTracking">
  3997. <summary>
  3998. <para>We don't know the status of the tracking or this interface does not provide feedback.</para>
  3999. </summary>
  4000. </member>
  4001. <member name="F:Godot.ARVRInterface.Tracking_status.NotTracking">
  4002. <summary>
  4003. <para>Tracking is not functional (camera not plugged in or obscured, lighthouses turned off, etc.).</para>
  4004. </summary>
  4005. </member>
  4006. <member name="F:Godot.ARVRInterface.Eyes.Mono">
  4007. <summary>
  4008. <para>Mono output, this is mostly used internally when retrieving positioning information for our camera node or when stereo scopic rendering is not supported.</para>
  4009. </summary>
  4010. </member>
  4011. <member name="F:Godot.ARVRInterface.Eyes.Left">
  4012. <summary>
  4013. <para>Left eye output, this is mostly used internally when rendering the image for the left eye and obtaining positioning and projection information.</para>
  4014. </summary>
  4015. </member>
  4016. <member name="F:Godot.ARVRInterface.Eyes.Right">
  4017. <summary>
  4018. <para>Right eye output, this is mostly used internally when rendering the image for the right eye and obtaining positioning and projection information.</para>
  4019. </summary>
  4020. </member>
  4021. <member name="F:Godot.ARVRInterface.Capabilities.None">
  4022. <summary>
  4023. <para>No ARVR capabilities.</para>
  4024. </summary>
  4025. </member>
  4026. <member name="F:Godot.ARVRInterface.Capabilities.Mono">
  4027. <summary>
  4028. <para>This interface can work with normal rendering output (non-HMD based AR).</para>
  4029. </summary>
  4030. </member>
  4031. <member name="F:Godot.ARVRInterface.Capabilities.Stereo">
  4032. <summary>
  4033. <para>This interface supports stereoscopic rendering.</para>
  4034. </summary>
  4035. </member>
  4036. <member name="F:Godot.ARVRInterface.Capabilities.Ar">
  4037. <summary>
  4038. <para>This interface supports AR (video background and real world tracking).</para>
  4039. </summary>
  4040. </member>
  4041. <member name="F:Godot.ARVRInterface.Capabilities.External">
  4042. <summary>
  4043. <para>This interface outputs to an external device. If the main viewport is used, the on screen output is an unmodified buffer of either the left or right eye (stretched if the viewport size is not changed to the same aspect ratio of <see cref="M:Godot.ARVRInterface.GetRenderTargetsize"/>). Using a separate viewport node frees up the main viewport for other purposes.</para>
  4044. </summary>
  4045. </member>
  4046. <member name="P:Godot.ARVRInterface.InterfaceIsPrimary">
  4047. <summary>
  4048. <para><c>true</c> if this is the primary interface.</para>
  4049. </summary>
  4050. </member>
  4051. <member name="P:Godot.ARVRInterface.InterfaceIsInitialized">
  4052. <summary>
  4053. <para><c>true</c> if this interface been initialized.</para>
  4054. </summary>
  4055. </member>
  4056. <member name="P:Godot.ARVRInterface.ArIsAnchorDetectionEnabled">
  4057. <summary>
  4058. <para>On an AR interface, <c>true</c> if anchor detection is enabled.</para>
  4059. </summary>
  4060. </member>
  4061. <member name="M:Godot.ARVRInterface.GetName">
  4062. <summary>
  4063. <para>Returns the name of this interface (OpenVR, OpenHMD, ARKit, etc).</para>
  4064. </summary>
  4065. </member>
  4066. <member name="M:Godot.ARVRInterface.GetCapabilities">
  4067. <summary>
  4068. <para>Returns a combination of <see cref="T:Godot.ARVRInterface.Capabilities"/> flags providing information about the capabilities of this interface.</para>
  4069. </summary>
  4070. </member>
  4071. <member name="M:Godot.ARVRInterface.Initialize">
  4072. <summary>
  4073. <para>Call this to initialize this interface. The first interface that is initialized is identified as the primary interface and it will be used for rendering output.</para>
  4074. <para>After initializing the interface you want to use you then need to enable the AR/VR mode of a viewport and rendering should commence.</para>
  4075. <para>Note: You must enable the AR/VR mode on the main viewport for any device that uses the main output of Godot, such as for mobile VR.</para>
  4076. <para>If you do this for a platform that handles its own output (such as OpenVR) Godot will show just one eye without distortion on screen. Alternatively, you can add a separate viewport node to your scene and enable AR/VR on that viewport. It will be used to output to the HMD, leaving you free to do anything you like in the main window, such as using a separate camera as a spectator camera or rendering something completely different.</para>
  4077. <para>While currently not used, you can activate additional interfaces. You may wish to do this if you want to track controllers from other platforms. However, at this point in time only one interface can render to an HMD.</para>
  4078. </summary>
  4079. </member>
  4080. <member name="M:Godot.ARVRInterface.Uninitialize">
  4081. <summary>
  4082. <para>Turns the interface off.</para>
  4083. </summary>
  4084. </member>
  4085. <member name="M:Godot.ARVRInterface.GetTrackingStatus">
  4086. <summary>
  4087. <para>If supported, returns the status of our tracking. This will allow you to provide feedback to the user whether there are issues with positional tracking.</para>
  4088. </summary>
  4089. </member>
  4090. <member name="M:Godot.ARVRInterface.GetRenderTargetsize">
  4091. <summary>
  4092. <para>Returns the resolution at which we should render our intermediate results before things like lens distortion are applied by the VR platform.</para>
  4093. </summary>
  4094. </member>
  4095. <member name="M:Godot.ARVRInterface.IsStereo">
  4096. <summary>
  4097. <para>Returns <c>true</c> if the current output of this interface is in stereo.</para>
  4098. </summary>
  4099. </member>
  4100. <member name="M:Godot.ARVRInterface.GetCameraFeedId">
  4101. <summary>
  4102. <para>If this is an AR interface that requires displaying a camera feed as the background, this method returns the feed ID in the <see cref="T:Godot.CameraServer"/> for this interface.</para>
  4103. </summary>
  4104. </member>
  4105. <member name="T:Godot.ARVRInterfaceGDNative">
  4106. <summary>
  4107. <para>This is a wrapper class for GDNative implementations of the ARVR interface. To use a GDNative ARVR interface, simply instantiate this object and set your GDNative library containing the ARVR interface implementation.</para>
  4108. </summary>
  4109. </member>
  4110. <member name="T:Godot.ARVROrigin">
  4111. <summary>
  4112. <para>This is a special node within the AR/VR system that maps the physical location of the center of our tracking space to the virtual location within our game world.</para>
  4113. <para>There should be only one of these nodes in your scene and you must have one. All the ARVRCamera, ARVRController and ARVRAnchor nodes should be direct children of this node for spatial tracking to work correctly.</para>
  4114. <para>It is the position of this node that you update when your character needs to move through your game world while we're not moving in the real world. Movement in the real world is always in relation to this origin point.</para>
  4115. <para>For example, if your character is driving a car, the ARVROrigin node should be a child node of this car. Or, if you're implementing a teleport system to move your character, you should change the position of this node.</para>
  4116. </summary>
  4117. </member>
  4118. <member name="P:Godot.ARVROrigin.WorldScale">
  4119. <summary>
  4120. <para>Allows you to adjust the scale to your game's units. Most AR/VR platforms assume a scale of 1 game world unit = 1 real world meter.</para>
  4121. <para>Note: This method is a passthrough to the <see cref="T:Godot.ARVRServer"/> itself.</para>
  4122. </summary>
  4123. </member>
  4124. <member name="T:Godot.ARVRPositionalTracker">
  4125. <summary>
  4126. <para>An instance of this object represents a device that is tracked, such as a controller or anchor point. HMDs aren't represented here as they are handled internally.</para>
  4127. <para>As controllers are turned on and the AR/VR interface detects them, instances of this object are automatically added to this list of active tracking objects accessible through the <see cref="T:Godot.ARVRServer"/>.</para>
  4128. <para>The <see cref="T:Godot.ARVRController"/> and <see cref="T:Godot.ARVRAnchor"/> both consume objects of this type and should be used in your project. The positional trackers are just under-the-hood objects that make this all work. These are mostly exposed so that GDNative-based interfaces can interact with them.</para>
  4129. </summary>
  4130. </member>
  4131. <member name="F:Godot.ARVRPositionalTracker.TrackerHand.HandUnknown">
  4132. <summary>
  4133. <para>The hand this tracker is held in is unknown or not applicable.</para>
  4134. </summary>
  4135. </member>
  4136. <member name="F:Godot.ARVRPositionalTracker.TrackerHand.LeftHand">
  4137. <summary>
  4138. <para>This tracker is the left hand controller.</para>
  4139. </summary>
  4140. </member>
  4141. <member name="F:Godot.ARVRPositionalTracker.TrackerHand.RightHand">
  4142. <summary>
  4143. <para>This tracker is the right hand controller.</para>
  4144. </summary>
  4145. </member>
  4146. <member name="P:Godot.ARVRPositionalTracker.Rumble">
  4147. <summary>
  4148. <para>The degree to which the tracker rumbles. Ranges from <c>0.0</c> to <c>1.0</c> with precision <c>.01</c>.</para>
  4149. </summary>
  4150. </member>
  4151. <member name="M:Godot.ARVRPositionalTracker.GetType">
  4152. <summary>
  4153. <para>Returns the tracker's type.</para>
  4154. </summary>
  4155. </member>
  4156. <member name="M:Godot.ARVRPositionalTracker.GetTrackerId">
  4157. <summary>
  4158. <para>Returns the internal tracker ID. This uniquely identifies the tracker per tracker type and matches the ID you need to specify for nodes such as the <see cref="T:Godot.ARVRController"/> and <see cref="T:Godot.ARVRAnchor"/> nodes.</para>
  4159. </summary>
  4160. </member>
  4161. <member name="M:Godot.ARVRPositionalTracker.GetName">
  4162. <summary>
  4163. <para>Returns the controller or anchor point's name if available.</para>
  4164. </summary>
  4165. </member>
  4166. <member name="M:Godot.ARVRPositionalTracker.GetJoyId">
  4167. <summary>
  4168. <para>If this is a controller that is being tracked, the controller will also be represented by a joystick entry with this ID.</para>
  4169. </summary>
  4170. </member>
  4171. <member name="M:Godot.ARVRPositionalTracker.GetTracksOrientation">
  4172. <summary>
  4173. <para>Returns <c>true</c> if this device tracks orientation.</para>
  4174. </summary>
  4175. </member>
  4176. <member name="M:Godot.ARVRPositionalTracker.GetOrientation">
  4177. <summary>
  4178. <para>Returns the controller's orientation matrix.</para>
  4179. </summary>
  4180. </member>
  4181. <member name="M:Godot.ARVRPositionalTracker.GetTracksPosition">
  4182. <summary>
  4183. <para>Returns <c>true</c> if this device tracks position.</para>
  4184. </summary>
  4185. </member>
  4186. <member name="M:Godot.ARVRPositionalTracker.GetPosition">
  4187. <summary>
  4188. <para>Returns the world-space controller position.</para>
  4189. </summary>
  4190. </member>
  4191. <member name="M:Godot.ARVRPositionalTracker.GetHand">
  4192. <summary>
  4193. <para>Returns the hand holding this tracker, if known. See <see cref="T:Godot.ARVRPositionalTracker.TrackerHand"/> constants.</para>
  4194. </summary>
  4195. </member>
  4196. <member name="M:Godot.ARVRPositionalTracker.GetTransform(System.Boolean)">
  4197. <summary>
  4198. <para>Returns the transform combining this device's orientation and position.</para>
  4199. </summary>
  4200. </member>
  4201. <member name="M:Godot.ARVRPositionalTracker.GetMesh">
  4202. <summary>
  4203. <para>Returns the mesh related to a controller or anchor point if one is available.</para>
  4204. </summary>
  4205. </member>
  4206. <member name="T:Godot.ARVRServer">
  4207. <summary>
  4208. <para>The AR/VR server is the heart of our Advanced and Virtual Reality solution and handles all the processing.</para>
  4209. </summary>
  4210. </member>
  4211. <member name="F:Godot.ARVRServer.RotationMode.ResetFullRotation">
  4212. <summary>
  4213. <para>Fully reset the orientation of the HMD. Regardless of what direction the user is looking to in the real world. The user will look dead ahead in the virtual world.</para>
  4214. </summary>
  4215. </member>
  4216. <member name="F:Godot.ARVRServer.RotationMode.ResetButKeepTilt">
  4217. <summary>
  4218. <para>Resets the orientation but keeps the tilt of the device. So if we're looking down, we keep looking down but heading will be reset.</para>
  4219. </summary>
  4220. </member>
  4221. <member name="F:Godot.ARVRServer.RotationMode.DontResetRotation">
  4222. <summary>
  4223. <para>Does not reset the orientation of the HMD, only the position of the player gets centered.</para>
  4224. </summary>
  4225. </member>
  4226. <member name="F:Godot.ARVRServer.TrackerType.Controller">
  4227. <summary>
  4228. <para>The tracker tracks the location of a controller.</para>
  4229. </summary>
  4230. </member>
  4231. <member name="F:Godot.ARVRServer.TrackerType.Basestation">
  4232. <summary>
  4233. <para>The tracker tracks the location of a base station.</para>
  4234. </summary>
  4235. </member>
  4236. <member name="F:Godot.ARVRServer.TrackerType.Anchor">
  4237. <summary>
  4238. <para>The tracker tracks the location and size of an AR anchor.</para>
  4239. </summary>
  4240. </member>
  4241. <member name="F:Godot.ARVRServer.TrackerType.AnyKnown">
  4242. <summary>
  4243. <para>Used internally to filter trackers of any known type.</para>
  4244. </summary>
  4245. </member>
  4246. <member name="F:Godot.ARVRServer.TrackerType.Unknown">
  4247. <summary>
  4248. <para>Used internally if we haven't set the tracker type yet.</para>
  4249. </summary>
  4250. </member>
  4251. <member name="F:Godot.ARVRServer.TrackerType.Any">
  4252. <summary>
  4253. <para>Used internally to select all trackers.</para>
  4254. </summary>
  4255. </member>
  4256. <member name="P:Godot.ARVRServer.WorldScale">
  4257. <summary>
  4258. <para>Allows you to adjust the scale to your game's units. Most AR/VR platforms assume a scale of 1 game world unit = 1 real world meter.</para>
  4259. </summary>
  4260. </member>
  4261. <member name="P:Godot.ARVRServer.PrimaryInterface">
  4262. <summary>
  4263. <para>The primary <see cref="T:Godot.ARVRInterface"/> currently bound to the <see cref="T:Godot.ARVRServer"/>.</para>
  4264. </summary>
  4265. </member>
  4266. <member name="M:Godot.ARVRServer.GetReferenceFrame">
  4267. <summary>
  4268. <para>Returns the reference frame transform. Mostly used internally and exposed for GDNative build interfaces.</para>
  4269. </summary>
  4270. </member>
  4271. <member name="M:Godot.ARVRServer.CenterOnHmd(Godot.ARVRServer.RotationMode,System.Boolean)">
  4272. <summary>
  4273. <para>This is an important function to understand correctly. AR and VR platforms all handle positioning slightly differently.</para>
  4274. <para>For platforms that do not offer spatial tracking, our origin point (0,0,0) is the location of our HMD, but you have little control over the direction the player is facing in the real world.</para>
  4275. <para>For platforms that do offer spatial tracking, our origin point depends very much on the system. For OpenVR, our origin point is usually the center of the tracking space, on the ground. For other platforms, it's often the location of the tracking camera.</para>
  4276. <para>This method allows you to center your tracker on the location of the HMD. It will take the current location of the HMD and use that to adjust all your tracking data; in essence, realigning the real world to your player's current position in the game world.</para>
  4277. <para>For this method to produce usable results, tracking information must be available. This often takes a few frames after starting your game.</para>
  4278. <para>You should call this method after a few seconds have passed. For instance, when the user requests a realignment of the display holding a designated button on a controller for a short period of time, or when implementing a teleport mechanism.</para>
  4279. </summary>
  4280. </member>
  4281. <member name="M:Godot.ARVRServer.GetHmdTransform">
  4282. <summary>
  4283. <para>Returns the primary interface's transformation.</para>
  4284. </summary>
  4285. </member>
  4286. <member name="M:Godot.ARVRServer.GetInterfaceCount">
  4287. <summary>
  4288. <para>Returns the number of interfaces currently registered with the AR/VR server. If your project supports multiple AR/VR platforms, you can look through the available interface, and either present the user with a selection or simply try to initialize each interface and use the first one that returns <c>true</c>.</para>
  4289. </summary>
  4290. </member>
  4291. <member name="M:Godot.ARVRServer.GetInterface(System.Int32)">
  4292. <summary>
  4293. <para>Returns the interface registered at a given index in our list of interfaces.</para>
  4294. </summary>
  4295. </member>
  4296. <member name="M:Godot.ARVRServer.GetInterfaces">
  4297. <summary>
  4298. <para>Returns a list of available interfaces the ID and name of each interface.</para>
  4299. </summary>
  4300. </member>
  4301. <member name="M:Godot.ARVRServer.FindInterface(System.String)">
  4302. <summary>
  4303. <para>Finds an interface by its name. For instance, if your project uses capabilities of an AR/VR platform, you can find the interface for that platform by name and initialize it.</para>
  4304. </summary>
  4305. </member>
  4306. <member name="M:Godot.ARVRServer.GetTrackerCount">
  4307. <summary>
  4308. <para>Returns the number of trackers currently registered.</para>
  4309. </summary>
  4310. </member>
  4311. <member name="M:Godot.ARVRServer.GetTracker(System.Int32)">
  4312. <summary>
  4313. <para>Returns the positional tracker at the given ID.</para>
  4314. </summary>
  4315. </member>
  4316. <member name="M:Godot.ARVRServer.GetLastProcessUsec">
  4317. <summary>
  4318. <para>Returns the absolute timestamp (in μs) of the last <see cref="T:Godot.ARVRServer"/> process callback. The value comes from an internal call to <see cref="M:Godot.OS.GetTicksUsec"/>.</para>
  4319. </summary>
  4320. </member>
  4321. <member name="M:Godot.ARVRServer.GetLastCommitUsec">
  4322. <summary>
  4323. <para>Returns the absolute timestamp (in μs) of the last <see cref="T:Godot.ARVRServer"/> commit of the AR/VR eyes to <see cref="T:Godot.VisualServer"/>. The value comes from an internal call to <see cref="M:Godot.OS.GetTicksUsec"/>.</para>
  4324. </summary>
  4325. </member>
  4326. <member name="M:Godot.ARVRServer.GetLastFrameUsec">
  4327. <summary>
  4328. <para>Returns the duration (in μs) of the last frame. This is computed as the difference between <see cref="M:Godot.ARVRServer.GetLastCommitUsec"/> and <see cref="M:Godot.ARVRServer.GetLastProcessUsec"/> when committing.</para>
  4329. </summary>
  4330. </member>
  4331. <member name="T:Godot.AStar">
  4332. <summary>
  4333. <para>A* (A star) is a computer algorithm that is widely used in pathfinding and graph traversal, the process of plotting short paths among vertices (points), passing through a given set of edges (segments). It enjoys widespread use due to its performance and accuracy. Godot's A* implementation uses points in three-dimensional space and Euclidean distances by default.</para>
  4334. <para>You must add points manually with <see cref="M:Godot.AStar.AddPoint(System.Int32,Godot.Vector3,System.Single)"/> and create segments manually with <see cref="M:Godot.AStar.ConnectPoints(System.Int32,System.Int32,System.Boolean)"/>. Then you can test if there is a path between two points with the <see cref="M:Godot.AStar.ArePointsConnected(System.Int32,System.Int32,System.Boolean)"/> function, get a path containing indices by <see cref="M:Godot.AStar.GetIdPath(System.Int32,System.Int32)"/>, or one containing actual coordinates with <see cref="M:Godot.AStar.GetPointPath(System.Int32,System.Int32)"/>.</para>
  4335. <para>It is also possible to use non-Euclidean distances. To do so, create a class that extends <c>AStar</c> and override methods <see cref="M:Godot.AStar._ComputeCost(System.Int32,System.Int32)"/> and <see cref="M:Godot.AStar._EstimateCost(System.Int32,System.Int32)"/>. Both take two indices and return a length, as is shown in the following example.</para>
  4336. <para><code>
  4337. class MyAStar:
  4338. extends AStar
  4339. func _compute_cost(u, v):
  4340. return abs(u - v)
  4341. func _estimate_cost(u, v):
  4342. return min(0, abs(u - v) - 1)
  4343. </code></para>
  4344. <para><see cref="M:Godot.AStar._EstimateCost(System.Int32,System.Int32)"/> should return a lower bound of the distance, i.e. <c>_estimate_cost(u, v) &lt;= _compute_cost(u, v)</c>. This serves as a hint to the algorithm because the custom <c>_compute_cost</c> might be computation-heavy. If this is not the case, make <see cref="M:Godot.AStar._EstimateCost(System.Int32,System.Int32)"/> return the same value as <see cref="M:Godot.AStar._ComputeCost(System.Int32,System.Int32)"/> to provide the algorithm with the most accurate information.</para>
  4345. </summary>
  4346. </member>
  4347. <member name="M:Godot.AStar._ComputeCost(System.Int32,System.Int32)">
  4348. <summary>
  4349. <para>Called when computing the cost between two connected points.</para>
  4350. <para>Note that this function is hidden in the default <c>AStar</c> class.</para>
  4351. </summary>
  4352. </member>
  4353. <member name="M:Godot.AStar._EstimateCost(System.Int32,System.Int32)">
  4354. <summary>
  4355. <para>Called when estimating the cost between a point and the path's ending point.</para>
  4356. <para>Note that this function is hidden in the default <c>AStar</c> class.</para>
  4357. </summary>
  4358. </member>
  4359. <member name="M:Godot.AStar.GetAvailablePointId">
  4360. <summary>
  4361. <para>Returns the next available point ID with no point associated to it.</para>
  4362. </summary>
  4363. </member>
  4364. <member name="M:Godot.AStar.AddPoint(System.Int32,Godot.Vector3,System.Single)">
  4365. <summary>
  4366. <para>Adds a new point at the given position with the given identifier. The algorithm prefers points with lower <c>weight_scale</c> to form a path. The <c>id</c> must be 0 or larger, and the <c>weight_scale</c> must be 1 or larger.</para>
  4367. <para><code>
  4368. var astar = AStar.new()
  4369. astar.add_point(1, Vector3(1, 0, 0), 4) # Adds the point (1, 0, 0) with weight_scale 4 and id 1
  4370. </code></para>
  4371. <para>If there already exists a point for the given <c>id</c>, its position and weight scale are updated to the given values.</para>
  4372. </summary>
  4373. </member>
  4374. <member name="M:Godot.AStar.GetPointPosition(System.Int32)">
  4375. <summary>
  4376. <para>Returns the position of the point associated with the given <c>id</c>.</para>
  4377. </summary>
  4378. </member>
  4379. <member name="M:Godot.AStar.SetPointPosition(System.Int32,Godot.Vector3)">
  4380. <summary>
  4381. <para>Sets the <c>position</c> for the point with the given <c>id</c>.</para>
  4382. </summary>
  4383. </member>
  4384. <member name="M:Godot.AStar.GetPointWeightScale(System.Int32)">
  4385. <summary>
  4386. <para>Returns the weight scale of the point associated with the given <c>id</c>.</para>
  4387. </summary>
  4388. </member>
  4389. <member name="M:Godot.AStar.SetPointWeightScale(System.Int32,System.Single)">
  4390. <summary>
  4391. <para>Sets the <c>weight_scale</c> for the point with the given <c>id</c>.</para>
  4392. </summary>
  4393. </member>
  4394. <member name="M:Godot.AStar.RemovePoint(System.Int32)">
  4395. <summary>
  4396. <para>Removes the point associated with the given <c>id</c> from the points pool.</para>
  4397. </summary>
  4398. </member>
  4399. <member name="M:Godot.AStar.HasPoint(System.Int32)">
  4400. <summary>
  4401. <para>Returns whether a point associated with the given <c>id</c> exists.</para>
  4402. </summary>
  4403. </member>
  4404. <member name="M:Godot.AStar.GetPointConnections(System.Int32)">
  4405. <summary>
  4406. <para>Returns an array with the IDs of the points that form the connection with the given point.</para>
  4407. <para><code>
  4408. var astar = AStar.new()
  4409. astar.add_point(1, Vector3(0, 0, 0))
  4410. astar.add_point(2, Vector3(0, 1, 0))
  4411. astar.add_point(3, Vector3(1, 1, 0))
  4412. astar.add_point(4, Vector3(2, 0, 0))
  4413. astar.connect_points(1, 2, true)
  4414. astar.connect_points(1, 3, true)
  4415. var neighbors = astar.get_point_connections(1) # Returns [2, 3]
  4416. </code></para>
  4417. </summary>
  4418. </member>
  4419. <member name="M:Godot.AStar.GetPoints">
  4420. <summary>
  4421. <para>Returns an array of all points.</para>
  4422. </summary>
  4423. </member>
  4424. <member name="M:Godot.AStar.SetPointDisabled(System.Int32,System.Boolean)">
  4425. <summary>
  4426. <para>Disables or enables the specified point for pathfinding. Useful for making a temporary obstacle.</para>
  4427. </summary>
  4428. </member>
  4429. <member name="M:Godot.AStar.IsPointDisabled(System.Int32)">
  4430. <summary>
  4431. <para>Returns whether a point is disabled or not for pathfinding. By default, all points are enabled.</para>
  4432. </summary>
  4433. </member>
  4434. <member name="M:Godot.AStar.ConnectPoints(System.Int32,System.Int32,System.Boolean)">
  4435. <summary>
  4436. <para>Creates a segment between the given points. If <c>bidirectional</c> is <c>false</c>, only movement from <c>id</c> to <c>to_id</c> is allowed, not the reverse direction.</para>
  4437. <para><code>
  4438. var astar = AStar.new()
  4439. astar.add_point(1, Vector3(1, 1, 0))
  4440. astar.add_point(2, Vector3(0, 5, 0))
  4441. astar.connect_points(1, 2, false)
  4442. </code></para>
  4443. </summary>
  4444. </member>
  4445. <member name="M:Godot.AStar.DisconnectPoints(System.Int32,System.Int32,System.Boolean)">
  4446. <summary>
  4447. <para>Deletes the segment between the given points. If <c>bidirectional</c> is <c>false</c>, only movement from <c>id</c> to <c>to_id</c> is prevented, and a unidirectional segment possibly remains.</para>
  4448. </summary>
  4449. </member>
  4450. <member name="M:Godot.AStar.ArePointsConnected(System.Int32,System.Int32,System.Boolean)">
  4451. <summary>
  4452. <para>Returns whether the two given points are directly connected by a segment. If <c>bidirectional</c> is <c>false</c>, returns whether movement from <c>id</c> to <c>to_id</c> is possible through this segment.</para>
  4453. </summary>
  4454. </member>
  4455. <member name="M:Godot.AStar.GetPointCount">
  4456. <summary>
  4457. <para>Returns the number of points currently in the points pool.</para>
  4458. </summary>
  4459. </member>
  4460. <member name="M:Godot.AStar.GetPointCapacity">
  4461. <summary>
  4462. <para>Returns the capacity of the structure backing the points, useful in conjunction with <c>reserve_space</c>.</para>
  4463. </summary>
  4464. </member>
  4465. <member name="M:Godot.AStar.ReserveSpace(System.Int32)">
  4466. <summary>
  4467. <para>Reserves space internally for <c>num_nodes</c> points, useful if you're adding a known large number of points at once, for a grid for instance. New capacity must be greater or equals to old capacity.</para>
  4468. </summary>
  4469. </member>
  4470. <member name="M:Godot.AStar.Clear">
  4471. <summary>
  4472. <para>Clears all the points and segments.</para>
  4473. </summary>
  4474. </member>
  4475. <member name="M:Godot.AStar.GetClosestPoint(Godot.Vector3,System.Boolean)">
  4476. <summary>
  4477. <para>Returns the ID of the closest point to <c>to_position</c>, optionally taking disabled points into account. Returns <c>-1</c> if there are no points in the points pool.</para>
  4478. <para>Note: If several points are the closest to <c>to_position</c>, the one with the smallest ID will be returned, ensuring a deterministic result.</para>
  4479. </summary>
  4480. </member>
  4481. <member name="M:Godot.AStar.GetClosestPositionInSegment(Godot.Vector3)">
  4482. <summary>
  4483. <para>Returns the closest position to <c>to_position</c> that resides inside a segment between two connected points.</para>
  4484. <para><code>
  4485. var astar = AStar.new()
  4486. astar.add_point(1, Vector3(0, 0, 0))
  4487. astar.add_point(2, Vector3(0, 5, 0))
  4488. astar.connect_points(1, 2)
  4489. var res = astar.get_closest_position_in_segment(Vector3(3, 3, 0)) # Returns (0, 3, 0)
  4490. </code></para>
  4491. <para>The result is in the segment that goes from <c>y = 0</c> to <c>y = 5</c>. It's the closest position in the segment to the given point.</para>
  4492. </summary>
  4493. </member>
  4494. <member name="M:Godot.AStar.GetPointPath(System.Int32,System.Int32)">
  4495. <summary>
  4496. <para>Returns an array with the points that are in the path found by AStar between the given points. The array is ordered from the starting point to the ending point of the path.</para>
  4497. </summary>
  4498. </member>
  4499. <member name="M:Godot.AStar.GetIdPath(System.Int32,System.Int32)">
  4500. <summary>
  4501. <para>Returns an array with the IDs of the points that form the path found by AStar between the given points. The array is ordered from the starting point to the ending point of the path.</para>
  4502. <para><code>
  4503. var astar = AStar.new()
  4504. astar.add_point(1, Vector3(0, 0, 0))
  4505. astar.add_point(2, Vector3(0, 1, 0), 1) # Default weight is 1
  4506. astar.add_point(3, Vector3(1, 1, 0))
  4507. astar.add_point(4, Vector3(2, 0, 0))
  4508. astar.connect_points(1, 2, false)
  4509. astar.connect_points(2, 3, false)
  4510. astar.connect_points(4, 3, false)
  4511. astar.connect_points(1, 4, false)
  4512. var res = astar.get_id_path(1, 3) # Returns [1, 2, 3]
  4513. </code></para>
  4514. <para>If you change the 2nd point's weight to 3, then the result will be <c>[1, 4, 3]</c> instead, because now even though the distance is longer, it's "easier" to get through point 4 than through point 2.</para>
  4515. </summary>
  4516. </member>
  4517. <member name="T:Godot.AStar2D">
  4518. <summary>
  4519. <para>This is a wrapper for the <see cref="T:Godot.AStar"/> class which uses 2D vectors instead of 3D vectors.</para>
  4520. </summary>
  4521. </member>
  4522. <member name="M:Godot.AStar2D._ComputeCost(System.Int32,System.Int32)">
  4523. <summary>
  4524. <para>Called when computing the cost between two connected points.</para>
  4525. <para>Note that this function is hidden in the default <c>AStar2D</c> class.</para>
  4526. </summary>
  4527. </member>
  4528. <member name="M:Godot.AStar2D._EstimateCost(System.Int32,System.Int32)">
  4529. <summary>
  4530. <para>Called when estimating the cost between a point and the path's ending point.</para>
  4531. <para>Note that this function is hidden in the default <c>AStar2D</c> class.</para>
  4532. </summary>
  4533. </member>
  4534. <member name="M:Godot.AStar2D.GetAvailablePointId">
  4535. <summary>
  4536. <para>Returns the next available point ID with no point associated to it.</para>
  4537. </summary>
  4538. </member>
  4539. <member name="M:Godot.AStar2D.AddPoint(System.Int32,Godot.Vector2,System.Single)">
  4540. <summary>
  4541. <para>Adds a new point at the given position with the given identifier. The algorithm prefers points with lower <c>weight_scale</c> to form a path. The <c>id</c> must be 0 or larger, and the <c>weight_scale</c> must be 1 or larger.</para>
  4542. <para><code>
  4543. var astar = AStar2D.new()
  4544. astar.add_point(1, Vector2(1, 0), 4) # Adds the point (1, 0) with weight_scale 4 and id 1
  4545. </code></para>
  4546. <para>If there already exists a point for the given <c>id</c>, its position and weight scale are updated to the given values.</para>
  4547. </summary>
  4548. </member>
  4549. <member name="M:Godot.AStar2D.GetPointPosition(System.Int32)">
  4550. <summary>
  4551. <para>Returns the position of the point associated with the given <c>id</c>.</para>
  4552. </summary>
  4553. </member>
  4554. <member name="M:Godot.AStar2D.SetPointPosition(System.Int32,Godot.Vector2)">
  4555. <summary>
  4556. <para>Sets the <c>position</c> for the point with the given <c>id</c>.</para>
  4557. </summary>
  4558. </member>
  4559. <member name="M:Godot.AStar2D.GetPointWeightScale(System.Int32)">
  4560. <summary>
  4561. <para>Returns the weight scale of the point associated with the given <c>id</c>.</para>
  4562. </summary>
  4563. </member>
  4564. <member name="M:Godot.AStar2D.SetPointWeightScale(System.Int32,System.Single)">
  4565. <summary>
  4566. <para>Sets the <c>weight_scale</c> for the point with the given <c>id</c>.</para>
  4567. </summary>
  4568. </member>
  4569. <member name="M:Godot.AStar2D.RemovePoint(System.Int32)">
  4570. <summary>
  4571. <para>Removes the point associated with the given <c>id</c> from the points pool.</para>
  4572. </summary>
  4573. </member>
  4574. <member name="M:Godot.AStar2D.HasPoint(System.Int32)">
  4575. <summary>
  4576. <para>Returns whether a point associated with the given <c>id</c> exists.</para>
  4577. </summary>
  4578. </member>
  4579. <member name="M:Godot.AStar2D.GetPointConnections(System.Int32)">
  4580. <summary>
  4581. <para>Returns an array with the IDs of the points that form the connection with the given point.</para>
  4582. <para><code>
  4583. var astar = AStar2D.new()
  4584. astar.add_point(1, Vector2(0, 0))
  4585. astar.add_point(2, Vector2(0, 1))
  4586. astar.add_point(3, Vector2(1, 1))
  4587. astar.add_point(4, Vector2(2, 0))
  4588. astar.connect_points(1, 2, true)
  4589. astar.connect_points(1, 3, true)
  4590. var neighbors = astar.get_point_connections(1) # Returns [2, 3]
  4591. </code></para>
  4592. </summary>
  4593. </member>
  4594. <member name="M:Godot.AStar2D.GetPoints">
  4595. <summary>
  4596. <para>Returns an array of all points.</para>
  4597. </summary>
  4598. </member>
  4599. <member name="M:Godot.AStar2D.SetPointDisabled(System.Int32,System.Boolean)">
  4600. <summary>
  4601. <para>Disables or enables the specified point for pathfinding. Useful for making a temporary obstacle.</para>
  4602. </summary>
  4603. </member>
  4604. <member name="M:Godot.AStar2D.IsPointDisabled(System.Int32)">
  4605. <summary>
  4606. <para>Returns whether a point is disabled or not for pathfinding. By default, all points are enabled.</para>
  4607. </summary>
  4608. </member>
  4609. <member name="M:Godot.AStar2D.ConnectPoints(System.Int32,System.Int32,System.Boolean)">
  4610. <summary>
  4611. <para>Creates a segment between the given points. If <c>bidirectional</c> is <c>false</c>, only movement from <c>id</c> to <c>to_id</c> is allowed, not the reverse direction.</para>
  4612. <para><code>
  4613. var astar = AStar2D.new()
  4614. astar.add_point(1, Vector2(1, 1))
  4615. astar.add_point(2, Vector2(0, 5))
  4616. astar.connect_points(1, 2, false)
  4617. </code></para>
  4618. </summary>
  4619. </member>
  4620. <member name="M:Godot.AStar2D.DisconnectPoints(System.Int32,System.Int32)">
  4621. <summary>
  4622. <para>Deletes the segment between the given points.</para>
  4623. </summary>
  4624. </member>
  4625. <member name="M:Godot.AStar2D.ArePointsConnected(System.Int32,System.Int32)">
  4626. <summary>
  4627. <para>Returns whether there is a connection/segment between the given points.</para>
  4628. </summary>
  4629. </member>
  4630. <member name="M:Godot.AStar2D.GetPointCount">
  4631. <summary>
  4632. <para>Returns the number of points currently in the points pool.</para>
  4633. </summary>
  4634. </member>
  4635. <member name="M:Godot.AStar2D.GetPointCapacity">
  4636. <summary>
  4637. <para>Returns the capacity of the structure backing the points, useful in conjunction with <c>reserve_space</c>.</para>
  4638. </summary>
  4639. </member>
  4640. <member name="M:Godot.AStar2D.ReserveSpace(System.Int32)">
  4641. <summary>
  4642. <para>Reserves space internally for <c>num_nodes</c> points, useful if you're adding a known large number of points at once, for a grid for instance. New capacity must be greater or equals to old capacity.</para>
  4643. </summary>
  4644. </member>
  4645. <member name="M:Godot.AStar2D.Clear">
  4646. <summary>
  4647. <para>Clears all the points and segments.</para>
  4648. </summary>
  4649. </member>
  4650. <member name="M:Godot.AStar2D.GetClosestPoint(Godot.Vector2,System.Boolean)">
  4651. <summary>
  4652. <para>Returns the ID of the closest point to <c>to_position</c>, optionally taking disabled points into account. Returns <c>-1</c> if there are no points in the points pool.</para>
  4653. <para>Note: If several points are the closest to <c>to_position</c>, the one with the smallest ID will be returned, ensuring a deterministic result.</para>
  4654. </summary>
  4655. </member>
  4656. <member name="M:Godot.AStar2D.GetClosestPositionInSegment(Godot.Vector2)">
  4657. <summary>
  4658. <para>Returns the closest position to <c>to_position</c> that resides inside a segment between two connected points.</para>
  4659. <para><code>
  4660. var astar = AStar2D.new()
  4661. astar.add_point(1, Vector2(0, 0))
  4662. astar.add_point(2, Vector2(0, 5))
  4663. astar.connect_points(1, 2)
  4664. var res = astar.get_closest_position_in_segment(Vector2(3, 3)) # Returns (0, 3)
  4665. </code></para>
  4666. <para>The result is in the segment that goes from <c>y = 0</c> to <c>y = 5</c>. It's the closest position in the segment to the given point.</para>
  4667. </summary>
  4668. </member>
  4669. <member name="M:Godot.AStar2D.GetPointPath(System.Int32,System.Int32)">
  4670. <summary>
  4671. <para>Returns an array with the points that are in the path found by AStar2D between the given points. The array is ordered from the starting point to the ending point of the path.</para>
  4672. </summary>
  4673. </member>
  4674. <member name="M:Godot.AStar2D.GetIdPath(System.Int32,System.Int32)">
  4675. <summary>
  4676. <para>Returns an array with the IDs of the points that form the path found by AStar2D between the given points. The array is ordered from the starting point to the ending point of the path.</para>
  4677. <para><code>
  4678. var astar = AStar2D.new()
  4679. astar.add_point(1, Vector2(0, 0))
  4680. astar.add_point(2, Vector2(0, 1), 1) # Default weight is 1
  4681. astar.add_point(3, Vector2(1, 1))
  4682. astar.add_point(4, Vector2(2, 0))
  4683. astar.connect_points(1, 2, false)
  4684. astar.connect_points(2, 3, false)
  4685. astar.connect_points(4, 3, false)
  4686. astar.connect_points(1, 4, false)
  4687. var res = astar.get_id_path(1, 3) # Returns [1, 2, 3]
  4688. </code></para>
  4689. <para>If you change the 2nd point's weight to 3, then the result will be <c>[1, 4, 3]</c> instead, because now even though the distance is longer, it's "easier" to get through point 4 than through point 2.</para>
  4690. </summary>
  4691. </member>
  4692. <member name="T:Godot.AcceptDialog">
  4693. <summary>
  4694. <para>This dialog is useful for small notifications to the user about an event. It can only be accepted or closed, with the same result.</para>
  4695. </summary>
  4696. </member>
  4697. <member name="P:Godot.AcceptDialog.DialogText">
  4698. <summary>
  4699. <para>The text displayed by the dialog.</para>
  4700. </summary>
  4701. </member>
  4702. <member name="P:Godot.AcceptDialog.DialogHideOnOk">
  4703. <summary>
  4704. <para>If <c>true</c>, the dialog is hidden when the OK button is pressed. You can set it to <c>false</c> if you want to do e.g. input validation when receiving the <c>confirmed</c> signal, and handle hiding the dialog in your own logic.</para>
  4705. <para>Note: Some nodes derived from this class can have a different default value, and potentially their own built-in logic overriding this setting. For example <see cref="T:Godot.FileDialog"/> defaults to <c>false</c>, and has its own input validation code that is called when you press OK, which eventually hides the dialog if the input is valid. As such, this property can't be used in <see cref="T:Godot.FileDialog"/> to disable hiding the dialog when pressing OK.</para>
  4706. </summary>
  4707. </member>
  4708. <member name="P:Godot.AcceptDialog.DialogAutowrap">
  4709. <summary>
  4710. <para>Sets autowrapping for the text in the dialog.</para>
  4711. </summary>
  4712. </member>
  4713. <member name="M:Godot.AcceptDialog.GetOk">
  4714. <summary>
  4715. <para>Returns the OK <see cref="T:Godot.Button"/> instance.</para>
  4716. </summary>
  4717. </member>
  4718. <member name="M:Godot.AcceptDialog.GetLabel">
  4719. <summary>
  4720. <para>Returns the label used for built-in text.</para>
  4721. </summary>
  4722. </member>
  4723. <member name="M:Godot.AcceptDialog.AddButton(System.String,System.Boolean,System.String)">
  4724. <summary>
  4725. <para>Adds a button with label <c>text</c> and a custom <c>action</c> to the dialog and returns the created button. <c>action</c> will be passed to the <c>custom_action</c> signal when pressed.</para>
  4726. <para>If <c>true</c>, <c>right</c> will place the button to the right of any sibling buttons.</para>
  4727. </summary>
  4728. </member>
  4729. <member name="M:Godot.AcceptDialog.AddCancel(System.String)">
  4730. <summary>
  4731. <para>Adds a button with label <c>name</c> and a cancel action to the dialog and returns the created button.</para>
  4732. </summary>
  4733. </member>
  4734. <member name="M:Godot.AcceptDialog.RegisterTextEnter(Godot.Node)">
  4735. <summary>
  4736. <para>Registers a <see cref="T:Godot.LineEdit"/> in the dialog. When the enter key is pressed, the dialog will be accepted.</para>
  4737. </summary>
  4738. </member>
  4739. <member name="T:Godot.AnimatedSprite">
  4740. <summary>
  4741. <para>Animations are created using a <see cref="T:Godot.SpriteFrames"/> resource, which can be configured in the editor via the SpriteFrames panel.</para>
  4742. </summary>
  4743. </member>
  4744. <member name="P:Godot.AnimatedSprite.Frames">
  4745. <summary>
  4746. <para>The <see cref="T:Godot.SpriteFrames"/> resource containing the animation(s).</para>
  4747. </summary>
  4748. </member>
  4749. <member name="P:Godot.AnimatedSprite.Animation">
  4750. <summary>
  4751. <para>The current animation from the <c>frames</c> resource. If this value changes, the <c>frame</c> counter is reset.</para>
  4752. </summary>
  4753. </member>
  4754. <member name="P:Godot.AnimatedSprite.Frame">
  4755. <summary>
  4756. <para>The displayed animation frame's index.</para>
  4757. </summary>
  4758. </member>
  4759. <member name="P:Godot.AnimatedSprite.SpeedScale">
  4760. <summary>
  4761. <para>The animation speed is multiplied by this value.</para>
  4762. </summary>
  4763. </member>
  4764. <member name="P:Godot.AnimatedSprite.Playing">
  4765. <summary>
  4766. <para>If <c>true</c>, the <see cref="P:Godot.AnimatedSprite.Animation"/> is currently playing.</para>
  4767. </summary>
  4768. </member>
  4769. <member name="P:Godot.AnimatedSprite.Centered">
  4770. <summary>
  4771. <para>If <c>true</c>, texture will be centered.</para>
  4772. </summary>
  4773. </member>
  4774. <member name="P:Godot.AnimatedSprite.Offset">
  4775. <summary>
  4776. <para>The texture's drawing offset.</para>
  4777. </summary>
  4778. </member>
  4779. <member name="P:Godot.AnimatedSprite.FlipH">
  4780. <summary>
  4781. <para>If <c>true</c>, texture is flipped horizontally.</para>
  4782. </summary>
  4783. </member>
  4784. <member name="P:Godot.AnimatedSprite.FlipV">
  4785. <summary>
  4786. <para>If <c>true</c>, texture is flipped vertically.</para>
  4787. </summary>
  4788. </member>
  4789. <member name="M:Godot.AnimatedSprite.Play(System.String,System.Boolean)">
  4790. <summary>
  4791. <para>Plays the animation named <c>anim</c>. If no <c>anim</c> is provided, the current animation is played. If <c>backwards</c> is <c>true</c>, the animation will be played in reverse.</para>
  4792. </summary>
  4793. </member>
  4794. <member name="M:Godot.AnimatedSprite.Stop">
  4795. <summary>
  4796. <para>Stops the current animation (does not reset the frame counter).</para>
  4797. </summary>
  4798. </member>
  4799. <member name="M:Godot.AnimatedSprite.IsPlaying">
  4800. <summary>
  4801. <para>Returns <c>true</c> if an animation is currently being played.</para>
  4802. </summary>
  4803. </member>
  4804. <member name="T:Godot.AnimatedSprite3D">
  4805. <summary>
  4806. <para>Animations are created using a <see cref="T:Godot.SpriteFrames"/> resource, which can be configured in the editor via the SpriteFrames panel.</para>
  4807. </summary>
  4808. </member>
  4809. <member name="P:Godot.AnimatedSprite3D.Frames">
  4810. <summary>
  4811. <para>The <see cref="T:Godot.SpriteFrames"/> resource containing the animation(s).</para>
  4812. </summary>
  4813. </member>
  4814. <member name="P:Godot.AnimatedSprite3D.Animation">
  4815. <summary>
  4816. <para>The current animation from the <c>frames</c> resource. If this value changes, the <c>frame</c> counter is reset.</para>
  4817. </summary>
  4818. </member>
  4819. <member name="P:Godot.AnimatedSprite3D.Frame">
  4820. <summary>
  4821. <para>The displayed animation frame's index.</para>
  4822. </summary>
  4823. </member>
  4824. <member name="P:Godot.AnimatedSprite3D.Playing">
  4825. <summary>
  4826. <para>If <c>true</c>, the <see cref="P:Godot.AnimatedSprite3D.Animation"/> is currently playing.</para>
  4827. </summary>
  4828. </member>
  4829. <member name="M:Godot.AnimatedSprite3D.Play(System.String)">
  4830. <summary>
  4831. <para>Plays the animation named <c>anim</c>. If no <c>anim</c> is provided, the current animation is played.</para>
  4832. </summary>
  4833. </member>
  4834. <member name="M:Godot.AnimatedSprite3D.Stop">
  4835. <summary>
  4836. <para>Stops the current animation (does not reset the frame counter).</para>
  4837. </summary>
  4838. </member>
  4839. <member name="M:Godot.AnimatedSprite3D.IsPlaying">
  4840. <summary>
  4841. <para>Returns <c>true</c> if an animation is currently being played.</para>
  4842. </summary>
  4843. </member>
  4844. <member name="T:Godot.AnimatedTexture">
  4845. <summary>
  4846. <para><see cref="T:Godot.AnimatedTexture"/> is a resource format for frame-based animations, where multiple textures can be chained automatically with a predefined delay for each frame. Unlike <see cref="T:Godot.AnimationPlayer"/> or <see cref="T:Godot.AnimatedSprite"/>, it isn't a <see cref="T:Godot.Node"/>, but has the advantage of being usable anywhere a <see cref="T:Godot.Texture"/> resource can be used, e.g. in a <see cref="T:Godot.TileSet"/>.</para>
  4847. <para>The playback of the animation is controlled by the <see cref="P:Godot.AnimatedTexture.Fps"/> property as well as each frame's optional delay (see <see cref="M:Godot.AnimatedTexture.SetFrameDelay(System.Int32,System.Single)"/>). The animation loops, i.e. it will restart at frame 0 automatically after playing the last frame.</para>
  4848. <para><see cref="T:Godot.AnimatedTexture"/> currently requires all frame textures to have the same size, otherwise the bigger ones will be cropped to match the smallest one. Also, it doesn't support <see cref="T:Godot.AtlasTexture"/>. Each frame needs to be separate image.</para>
  4849. </summary>
  4850. </member>
  4851. <member name="F:Godot.AnimatedTexture.MaxFrames">
  4852. <summary>
  4853. <para>The maximum number of frames supported by <see cref="T:Godot.AnimatedTexture"/>. If you need more frames in your animation, use <see cref="T:Godot.AnimationPlayer"/> or <see cref="T:Godot.AnimatedSprite"/>.</para>
  4854. </summary>
  4855. </member>
  4856. <member name="P:Godot.AnimatedTexture.Frames">
  4857. <summary>
  4858. <para>Number of frames to use in the animation. While you can create the frames independently with <see cref="M:Godot.AnimatedTexture.SetFrameTexture(System.Int32,Godot.Texture)"/>, you need to set this value for the animation to take new frames into account. The maximum number of frames is .</para>
  4859. </summary>
  4860. </member>
  4861. <member name="P:Godot.AnimatedTexture.CurrentFrame">
  4862. <summary>
  4863. <para>Sets the currently visible frame of the texture.</para>
  4864. </summary>
  4865. </member>
  4866. <member name="P:Godot.AnimatedTexture.Pause">
  4867. <summary>
  4868. <para>If <c>true</c>, the animation will pause where it currently is (i.e. at <see cref="P:Godot.AnimatedTexture.CurrentFrame"/>). The animation will continue from where it was paused when changing this property to <c>false</c>.</para>
  4869. </summary>
  4870. </member>
  4871. <member name="P:Godot.AnimatedTexture.Oneshot">
  4872. <summary>
  4873. <para>If <c>true</c>, the animation will only play once and will not loop back to the first frame after reaching the end. Note that reaching the end will not set <see cref="P:Godot.AnimatedTexture.Pause"/> to <c>true</c>.</para>
  4874. </summary>
  4875. </member>
  4876. <member name="P:Godot.AnimatedTexture.Fps">
  4877. <summary>
  4878. <para>Animation speed in frames per second. This value defines the default time interval between two frames of the animation, and thus the overall duration of the animation loop based on the <see cref="P:Godot.AnimatedTexture.Frames"/> property. A value of 0 means no predefined number of frames per second, the animation will play according to each frame's frame delay (see <see cref="M:Godot.AnimatedTexture.SetFrameDelay(System.Int32,System.Single)"/>).</para>
  4879. <para>For example, an animation with 8 frames, no frame delay and a <c>fps</c> value of 2 will run for 4 seconds, with each frame lasting 0.5 seconds.</para>
  4880. </summary>
  4881. </member>
  4882. <member name="M:Godot.AnimatedTexture.SetFrameTexture(System.Int32,Godot.Texture)">
  4883. <summary>
  4884. <para>Assigns a <see cref="T:Godot.Texture"/> to the given frame. Frame IDs start at 0, so the first frame has ID 0, and the last frame of the animation has ID <see cref="P:Godot.AnimatedTexture.Frames"/> - 1.</para>
  4885. <para>You can define any number of textures up to , but keep in mind that only frames from 0 to <see cref="P:Godot.AnimatedTexture.Frames"/> - 1 will be part of the animation.</para>
  4886. </summary>
  4887. </member>
  4888. <member name="M:Godot.AnimatedTexture.GetFrameTexture(System.Int32)">
  4889. <summary>
  4890. <para>Returns the given frame's <see cref="T:Godot.Texture"/>.</para>
  4891. </summary>
  4892. </member>
  4893. <member name="M:Godot.AnimatedTexture.SetFrameDelay(System.Int32,System.Single)">
  4894. <summary>
  4895. <para>Sets an additional delay (in seconds) between this frame and the next one, that will be added to the time interval defined by <see cref="P:Godot.AnimatedTexture.Fps"/>. By default, frames have no delay defined. If a delay value is defined, the final time interval between this frame and the next will be <c>1.0 / fps + delay</c>.</para>
  4896. <para>For example, for an animation with 3 frames, 2 FPS and a frame delay on the second frame of 1.2, the resulting playback will be:</para>
  4897. <para><code>
  4898. Frame 0: 0.5 s (1 / fps)
  4899. Frame 1: 1.7 s (1 / fps + 1.2)
  4900. Frame 2: 0.5 s (1 / fps)
  4901. Total duration: 2.7 s
  4902. </code></para>
  4903. </summary>
  4904. </member>
  4905. <member name="M:Godot.AnimatedTexture.GetFrameDelay(System.Int32)">
  4906. <summary>
  4907. <para>Returns the given frame's delay value.</para>
  4908. </summary>
  4909. </member>
  4910. <member name="T:Godot.Animation">
  4911. <summary>
  4912. <para>An Animation resource contains data used to animate everything in the engine. Animations are divided into tracks, and each track must be linked to a node. The state of that node can be changed through time, by adding timed keys (events) to the track.</para>
  4913. <para><code>
  4914. # This creates an animation that makes the node "Enemy" move to the right by
  4915. # 100 pixels in 1 second.
  4916. var animation = Animation.new()
  4917. var track_index = animation.add_track(Animation.TYPE_VALUE)
  4918. animation.track_set_path(track_index, "Enemy:position.x")
  4919. animation.track_insert_key(track_index, 0.0, 0)
  4920. animation.track_insert_key(track_index, 0.5, 100)
  4921. </code></para>
  4922. <para>Animations are just data containers, and must be added to nodes such as an <see cref="T:Godot.AnimationPlayer"/> or <see cref="T:Godot.AnimationTreePlayer"/> to be played back. Animation tracks have different types, each with its own set of dedicated methods. Check <see cref="T:Godot.Animation.TrackType"/> to see available types.</para>
  4923. </summary>
  4924. </member>
  4925. <member name="F:Godot.Animation.TrackType.Value">
  4926. <summary>
  4927. <para>Value tracks set values in node properties, but only those which can be Interpolated.</para>
  4928. </summary>
  4929. </member>
  4930. <member name="F:Godot.Animation.TrackType.Transform">
  4931. <summary>
  4932. <para>Transform tracks are used to change node local transforms or skeleton pose bones. Transitions are interpolated.</para>
  4933. </summary>
  4934. </member>
  4935. <member name="F:Godot.Animation.TrackType.Method">
  4936. <summary>
  4937. <para>Method tracks call functions with given arguments per key.</para>
  4938. </summary>
  4939. </member>
  4940. <member name="F:Godot.Animation.TrackType.Bezier">
  4941. <summary>
  4942. <para>Bezier tracks are used to interpolate a value using custom curves. They can also be used to animate sub-properties of vectors and colors (e.g. alpha value of a <see cref="T:Godot.Color"/>).</para>
  4943. </summary>
  4944. </member>
  4945. <member name="F:Godot.Animation.TrackType.Audio">
  4946. <summary>
  4947. <para>Audio tracks are used to play an audio stream with either type of <see cref="T:Godot.AudioStreamPlayer"/>. The stream can be trimmed and previewed in the animation.</para>
  4948. </summary>
  4949. </member>
  4950. <member name="F:Godot.Animation.TrackType.Animation">
  4951. <summary>
  4952. <para>Animation tracks play animations in other <see cref="T:Godot.AnimationPlayer"/> nodes.</para>
  4953. </summary>
  4954. </member>
  4955. <member name="F:Godot.Animation.UpdateMode.Continuous">
  4956. <summary>
  4957. <para>Update between keyframes.</para>
  4958. </summary>
  4959. </member>
  4960. <member name="F:Godot.Animation.UpdateMode.Discrete">
  4961. <summary>
  4962. <para>Update at the keyframes and hold the value.</para>
  4963. </summary>
  4964. </member>
  4965. <member name="F:Godot.Animation.UpdateMode.Trigger">
  4966. <summary>
  4967. <para>Update at the keyframes.</para>
  4968. </summary>
  4969. </member>
  4970. <member name="F:Godot.Animation.UpdateMode.Capture">
  4971. <summary>
  4972. <para>Same as linear interpolation, but also interpolates from the current value (i.e. dynamically at runtime) if the first key isn't at 0 seconds.</para>
  4973. </summary>
  4974. </member>
  4975. <member name="F:Godot.Animation.InterpolationType.Nearest">
  4976. <summary>
  4977. <para>No interpolation (nearest value).</para>
  4978. </summary>
  4979. </member>
  4980. <member name="F:Godot.Animation.InterpolationType.Linear">
  4981. <summary>
  4982. <para>Linear interpolation.</para>
  4983. </summary>
  4984. </member>
  4985. <member name="F:Godot.Animation.InterpolationType.Cubic">
  4986. <summary>
  4987. <para>Cubic interpolation.</para>
  4988. </summary>
  4989. </member>
  4990. <member name="P:Godot.Animation.Length">
  4991. <summary>
  4992. <para>The total length of the animation (in seconds).</para>
  4993. <para>Note: Length is not delimited by the last key, as this one may be before or after the end to ensure correct interpolation and looping.</para>
  4994. </summary>
  4995. </member>
  4996. <member name="P:Godot.Animation.Loop">
  4997. <summary>
  4998. <para>A flag indicating that the animation must loop. This is uses for correct interpolation of animation cycles, and for hinting the player that it must restart the animation.</para>
  4999. </summary>
  5000. </member>
  5001. <member name="P:Godot.Animation.Step">
  5002. <summary>
  5003. <para>The animation step value.</para>
  5004. </summary>
  5005. </member>
  5006. <member name="M:Godot.Animation.AddTrack(Godot.Animation.TrackType,System.Int32)">
  5007. <summary>
  5008. <para>Adds a track to the Animation.</para>
  5009. </summary>
  5010. </member>
  5011. <member name="M:Godot.Animation.RemoveTrack(System.Int32)">
  5012. <summary>
  5013. <para>Removes a track by specifying the track index.</para>
  5014. </summary>
  5015. </member>
  5016. <member name="M:Godot.Animation.GetTrackCount">
  5017. <summary>
  5018. <para>Returns the amount of tracks in the animation.</para>
  5019. </summary>
  5020. </member>
  5021. <member name="M:Godot.Animation.TrackGetType(System.Int32)">
  5022. <summary>
  5023. <para>Gets the type of a track.</para>
  5024. </summary>
  5025. </member>
  5026. <member name="M:Godot.Animation.TrackGetPath(System.Int32)">
  5027. <summary>
  5028. <para>Gets the path of a track. For more information on the path format, see <see cref="M:Godot.Animation.TrackSetPath(System.Int32,Godot.NodePath)"/>.</para>
  5029. </summary>
  5030. </member>
  5031. <member name="M:Godot.Animation.TrackSetPath(System.Int32,Godot.NodePath)">
  5032. <summary>
  5033. <para>Sets the path of a track. Paths must be valid scene-tree paths to a node, and must be specified starting from the parent node of the node that will reproduce the animation. Tracks that control properties or bones must append their name after the path, separated by <c>":"</c>.</para>
  5034. <para>For example, <c>"character/skeleton:ankle"</c> or <c>"character/mesh:transform/local"</c>.</para>
  5035. </summary>
  5036. </member>
  5037. <member name="M:Godot.Animation.FindTrack(Godot.NodePath)">
  5038. <summary>
  5039. <para>Returns the index of the specified track. If the track is not found, return -1.</para>
  5040. </summary>
  5041. </member>
  5042. <member name="M:Godot.Animation.TrackMoveUp(System.Int32)">
  5043. <summary>
  5044. <para>Moves a track up.</para>
  5045. </summary>
  5046. </member>
  5047. <member name="M:Godot.Animation.TrackMoveDown(System.Int32)">
  5048. <summary>
  5049. <para>Moves a track down.</para>
  5050. </summary>
  5051. </member>
  5052. <member name="M:Godot.Animation.TrackMoveTo(System.Int32,System.Int32)">
  5053. <summary>
  5054. <para>Changes the index position of track <c>idx</c> to the one defined in <c>to_idx</c>.</para>
  5055. </summary>
  5056. </member>
  5057. <member name="M:Godot.Animation.TrackSwap(System.Int32,System.Int32)">
  5058. <summary>
  5059. <para>Swaps the track <c>idx</c>'s index position with the track <c>with_idx</c>.</para>
  5060. </summary>
  5061. </member>
  5062. <member name="M:Godot.Animation.TrackSetImported(System.Int32,System.Boolean)">
  5063. <summary>
  5064. <para>Sets the given track as imported or not.</para>
  5065. </summary>
  5066. </member>
  5067. <member name="M:Godot.Animation.TrackIsImported(System.Int32)">
  5068. <summary>
  5069. <para>Returns <c>true</c> if the given track is imported. Else, return <c>false</c>.</para>
  5070. </summary>
  5071. </member>
  5072. <member name="M:Godot.Animation.TrackSetEnabled(System.Int32,System.Boolean)">
  5073. <summary>
  5074. <para>Enables/disables the given track. Tracks are enabled by default.</para>
  5075. </summary>
  5076. </member>
  5077. <member name="M:Godot.Animation.TrackIsEnabled(System.Int32)">
  5078. <summary>
  5079. <para>Returns <c>true</c> if the track at index <c>idx</c> is enabled.</para>
  5080. </summary>
  5081. </member>
  5082. <member name="M:Godot.Animation.TransformTrackInsertKey(System.Int32,System.Single,Godot.Vector3,Godot.Quat,Godot.Vector3)">
  5083. <summary>
  5084. <para>Insert a transform key for a transform track.</para>
  5085. </summary>
  5086. </member>
  5087. <member name="M:Godot.Animation.TrackInsertKey(System.Int32,System.Single,System.Object,System.Single)">
  5088. <summary>
  5089. <para>Insert a generic key in a given track.</para>
  5090. </summary>
  5091. </member>
  5092. <member name="M:Godot.Animation.TrackRemoveKey(System.Int32,System.Int32)">
  5093. <summary>
  5094. <para>Removes a key by index in a given track.</para>
  5095. </summary>
  5096. </member>
  5097. <member name="M:Godot.Animation.TrackRemoveKeyAtPosition(System.Int32,System.Single)">
  5098. <summary>
  5099. <para>Removes a key by position (seconds) in a given track.</para>
  5100. </summary>
  5101. </member>
  5102. <member name="M:Godot.Animation.TrackSetKeyValue(System.Int32,System.Int32,System.Object)">
  5103. <summary>
  5104. <para>Sets the value of an existing key.</para>
  5105. </summary>
  5106. </member>
  5107. <member name="M:Godot.Animation.TrackSetKeyTransition(System.Int32,System.Int32,System.Single)">
  5108. <summary>
  5109. <para>Sets the transition curve (easing) for a specific key (see the built-in math function <c>@GDScript.ease</c>).</para>
  5110. </summary>
  5111. </member>
  5112. <member name="M:Godot.Animation.TrackSetKeyTime(System.Int32,System.Int32,System.Single)">
  5113. <summary>
  5114. <para>Sets the time of an existing key.</para>
  5115. </summary>
  5116. </member>
  5117. <member name="M:Godot.Animation.TrackGetKeyTransition(System.Int32,System.Int32)">
  5118. <summary>
  5119. <para>Returns the transition curve (easing) for a specific key (see the built-in math function <c>@GDScript.ease</c>).</para>
  5120. </summary>
  5121. </member>
  5122. <member name="M:Godot.Animation.TrackGetKeyCount(System.Int32)">
  5123. <summary>
  5124. <para>Returns the amount of keys in a given track.</para>
  5125. </summary>
  5126. </member>
  5127. <member name="M:Godot.Animation.TrackGetKeyValue(System.Int32,System.Int32)">
  5128. <summary>
  5129. <para>Returns the value of a given key in a given track.</para>
  5130. </summary>
  5131. </member>
  5132. <member name="M:Godot.Animation.TrackGetKeyTime(System.Int32,System.Int32)">
  5133. <summary>
  5134. <para>Returns the time at which the key is located.</para>
  5135. </summary>
  5136. </member>
  5137. <member name="M:Godot.Animation.TrackFindKey(System.Int32,System.Single,System.Boolean)">
  5138. <summary>
  5139. <para>Finds the key index by time in a given track. Optionally, only find it if the exact time is given.</para>
  5140. </summary>
  5141. </member>
  5142. <member name="M:Godot.Animation.TrackSetInterpolationType(System.Int32,Godot.Animation.InterpolationType)">
  5143. <summary>
  5144. <para>Sets the interpolation type of a given track.</para>
  5145. </summary>
  5146. </member>
  5147. <member name="M:Godot.Animation.TrackGetInterpolationType(System.Int32)">
  5148. <summary>
  5149. <para>Returns the interpolation type of a given track.</para>
  5150. </summary>
  5151. </member>
  5152. <member name="M:Godot.Animation.TrackSetInterpolationLoopWrap(System.Int32,System.Boolean)">
  5153. <summary>
  5154. <para>If <c>true</c>, the track at <c>idx</c> wraps the interpolation loop.</para>
  5155. </summary>
  5156. </member>
  5157. <member name="M:Godot.Animation.TrackGetInterpolationLoopWrap(System.Int32)">
  5158. <summary>
  5159. <para>Returns <c>true</c> if the track at <c>idx</c> wraps the interpolation loop. New tracks wrap the interpolation loop by default.</para>
  5160. </summary>
  5161. </member>
  5162. <member name="M:Godot.Animation.TransformTrackInterpolate(System.Int32,System.Single)">
  5163. <summary>
  5164. <para>Returns the interpolated value of a transform track at a given time (in seconds). An array consisting of 3 elements: position (<see cref="T:Godot.Vector3"/>), rotation (<see cref="T:Godot.Quat"/>) and scale (<see cref="T:Godot.Vector3"/>).</para>
  5165. </summary>
  5166. </member>
  5167. <member name="M:Godot.Animation.ValueTrackSetUpdateMode(System.Int32,Godot.Animation.UpdateMode)">
  5168. <summary>
  5169. <para>Sets the update mode (see <see cref="T:Godot.Animation.UpdateMode"/>) of a value track.</para>
  5170. </summary>
  5171. </member>
  5172. <member name="M:Godot.Animation.ValueTrackGetUpdateMode(System.Int32)">
  5173. <summary>
  5174. <para>Returns the update mode of a value track.</para>
  5175. </summary>
  5176. </member>
  5177. <member name="M:Godot.Animation.ValueTrackGetKeyIndices(System.Int32,System.Single,System.Single)">
  5178. <summary>
  5179. <para>Returns all the key indices of a value track, given a position and delta time.</para>
  5180. </summary>
  5181. </member>
  5182. <member name="M:Godot.Animation.MethodTrackGetKeyIndices(System.Int32,System.Single,System.Single)">
  5183. <summary>
  5184. <para>Returns all the key indices of a method track, given a position and delta time.</para>
  5185. </summary>
  5186. </member>
  5187. <member name="M:Godot.Animation.MethodTrackGetName(System.Int32,System.Int32)">
  5188. <summary>
  5189. <para>Returns the method name of a method track.</para>
  5190. </summary>
  5191. </member>
  5192. <member name="M:Godot.Animation.MethodTrackGetParams(System.Int32,System.Int32)">
  5193. <summary>
  5194. <para>Returns the arguments values to be called on a method track for a given key in a given track.</para>
  5195. </summary>
  5196. </member>
  5197. <member name="M:Godot.Animation.BezierTrackInsertKey(System.Int32,System.Single,System.Single,System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2})">
  5198. <summary>
  5199. <para>Inserts a Bezier Track key at the given <c>time</c> in seconds. The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5200. <para><c>in_handle</c> is the left-side weight of the added Bezier curve point, <c>out_handle</c> is the right-side one, while <c>value</c> is the actual value at this point.</para>
  5201. </summary>
  5202. <param name="inHandle">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  5203. <param name="outHandle">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  5204. </member>
  5205. <member name="M:Godot.Animation.BezierTrackSetKeyValue(System.Int32,System.Int32,System.Single)">
  5206. <summary>
  5207. <para>Sets the value of the key identified by <c>key_idx</c> to the given value. The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5208. </summary>
  5209. </member>
  5210. <member name="M:Godot.Animation.BezierTrackSetKeyInHandle(System.Int32,System.Int32,Godot.Vector2)">
  5211. <summary>
  5212. <para>Sets the in handle of the key identified by <c>key_idx</c> to value <c>in_handle</c>. The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5213. </summary>
  5214. </member>
  5215. <member name="M:Godot.Animation.BezierTrackSetKeyOutHandle(System.Int32,System.Int32,Godot.Vector2)">
  5216. <summary>
  5217. <para>Sets the out handle of the key identified by <c>key_idx</c> to value <c>out_handle</c>. The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5218. </summary>
  5219. </member>
  5220. <member name="M:Godot.Animation.BezierTrackGetKeyValue(System.Int32,System.Int32)">
  5221. <summary>
  5222. <para>Returns the value of the key identified by <c>key_idx</c>. The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5223. </summary>
  5224. </member>
  5225. <member name="M:Godot.Animation.BezierTrackGetKeyInHandle(System.Int32,System.Int32)">
  5226. <summary>
  5227. <para>Returns the in handle of the key identified by <c>key_idx</c>. The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5228. </summary>
  5229. </member>
  5230. <member name="M:Godot.Animation.BezierTrackGetKeyOutHandle(System.Int32,System.Int32)">
  5231. <summary>
  5232. <para>Returns the out handle of the key identified by <c>key_idx</c>. The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5233. </summary>
  5234. </member>
  5235. <member name="M:Godot.Animation.BezierTrackInterpolate(System.Int32,System.Single)">
  5236. <summary>
  5237. <para>Returns the interpolated value at the given <c>time</c> (in seconds). The <c>track_idx</c> must be the index of a Bezier Track.</para>
  5238. </summary>
  5239. </member>
  5240. <member name="M:Godot.Animation.AudioTrackInsertKey(System.Int32,System.Single,Godot.Resource,System.Single,System.Single)">
  5241. <summary>
  5242. <para>Inserts an Audio Track key at the given <c>time</c> in seconds. The <c>track_idx</c> must be the index of an Audio Track.</para>
  5243. <para><c>stream</c> is the <see cref="T:Godot.AudioStream"/> resource to play. <c>start_offset</c> is the number of seconds cut off at the beginning of the audio stream, while <c>end_offset</c> is at the ending.</para>
  5244. </summary>
  5245. </member>
  5246. <member name="M:Godot.Animation.AudioTrackSetKeyStream(System.Int32,System.Int32,Godot.Resource)">
  5247. <summary>
  5248. <para>Sets the stream of the key identified by <c>key_idx</c> to value <c>offset</c>. The <c>track_idx</c> must be the index of an Audio Track.</para>
  5249. </summary>
  5250. </member>
  5251. <member name="M:Godot.Animation.AudioTrackSetKeyStartOffset(System.Int32,System.Int32,System.Single)">
  5252. <summary>
  5253. <para>Sets the start offset of the key identified by <c>key_idx</c> to value <c>offset</c>. The <c>track_idx</c> must be the index of an Audio Track.</para>
  5254. </summary>
  5255. </member>
  5256. <member name="M:Godot.Animation.AudioTrackSetKeyEndOffset(System.Int32,System.Int32,System.Single)">
  5257. <summary>
  5258. <para>Sets the end offset of the key identified by <c>key_idx</c> to value <c>offset</c>. The <c>track_idx</c> must be the index of an Audio Track.</para>
  5259. </summary>
  5260. </member>
  5261. <member name="M:Godot.Animation.AudioTrackGetKeyStream(System.Int32,System.Int32)">
  5262. <summary>
  5263. <para>Returns the audio stream of the key identified by <c>key_idx</c>. The <c>track_idx</c> must be the index of an Audio Track.</para>
  5264. </summary>
  5265. </member>
  5266. <member name="M:Godot.Animation.AudioTrackGetKeyStartOffset(System.Int32,System.Int32)">
  5267. <summary>
  5268. <para>Returns the start offset of the key identified by <c>key_idx</c>. The <c>track_idx</c> must be the index of an Audio Track.</para>
  5269. <para>Start offset is the number of seconds cut off at the beginning of the audio stream.</para>
  5270. </summary>
  5271. </member>
  5272. <member name="M:Godot.Animation.AudioTrackGetKeyEndOffset(System.Int32,System.Int32)">
  5273. <summary>
  5274. <para>Returns the end offset of the key identified by <c>key_idx</c>. The <c>track_idx</c> must be the index of an Audio Track.</para>
  5275. <para>End offset is the number of seconds cut off at the ending of the audio stream.</para>
  5276. </summary>
  5277. </member>
  5278. <member name="M:Godot.Animation.AnimationTrackInsertKey(System.Int32,System.Single,System.String)">
  5279. <summary>
  5280. <para>Inserts a key with value <c>animation</c> at the given <c>time</c> (in seconds). The <c>track_idx</c> must be the index of an Animation Track.</para>
  5281. </summary>
  5282. </member>
  5283. <member name="M:Godot.Animation.AnimationTrackSetKeyAnimation(System.Int32,System.Int32,System.String)">
  5284. <summary>
  5285. <para>Sets the key identified by <c>key_idx</c> to value <c>animation</c>. The <c>track_idx</c> must be the index of an Animation Track.</para>
  5286. </summary>
  5287. </member>
  5288. <member name="M:Godot.Animation.AnimationTrackGetKeyAnimation(System.Int32,System.Int32)">
  5289. <summary>
  5290. <para>Returns the animation name at the key identified by <c>key_idx</c>. The <c>track_idx</c> must be the index of an Animation Track.</para>
  5291. </summary>
  5292. </member>
  5293. <member name="M:Godot.Animation.Clear">
  5294. <summary>
  5295. <para>Clear the animation (clear all tracks and reset all).</para>
  5296. </summary>
  5297. </member>
  5298. <member name="M:Godot.Animation.CopyTrack(System.Int32,Godot.Animation)">
  5299. <summary>
  5300. <para>Adds a new track that is a copy of the given track from <c>to_animation</c>.</para>
  5301. </summary>
  5302. </member>
  5303. <member name="T:Godot.AnimationNode">
  5304. <summary>
  5305. <para>Base resource for <see cref="T:Godot.AnimationTree"/> nodes. In general, it's not used directly, but you can create custom ones with custom blending formulas.</para>
  5306. <para>Inherit this when creating nodes mainly for use in <see cref="T:Godot.AnimationNodeBlendTree"/>, otherwise <see cref="T:Godot.AnimationRootNode"/> should be used instead.</para>
  5307. </summary>
  5308. </member>
  5309. <member name="F:Godot.AnimationNode.FilterAction.Ignore">
  5310. <summary>
  5311. <para>Do not use filtering.</para>
  5312. </summary>
  5313. </member>
  5314. <member name="F:Godot.AnimationNode.FilterAction.Pass">
  5315. <summary>
  5316. <para>Paths matching the filter will be allowed to pass.</para>
  5317. </summary>
  5318. </member>
  5319. <member name="F:Godot.AnimationNode.FilterAction.Stop">
  5320. <summary>
  5321. <para>Paths matching the filter will be discarded.</para>
  5322. </summary>
  5323. </member>
  5324. <member name="F:Godot.AnimationNode.FilterAction.Blend">
  5325. <summary>
  5326. <para>Paths matching the filter will be blended (by the blend value).</para>
  5327. </summary>
  5328. </member>
  5329. <member name="P:Godot.AnimationNode.FilterEnabled">
  5330. <summary>
  5331. <para>If <c>true</c>, filtering is enabled.</para>
  5332. </summary>
  5333. </member>
  5334. <member name="M:Godot.AnimationNode.GetCaption">
  5335. <summary>
  5336. <para>Gets the text caption for this node (used by some editors).</para>
  5337. </summary>
  5338. </member>
  5339. <member name="M:Godot.AnimationNode.GetChildByName(System.String)">
  5340. <summary>
  5341. <para>Gets a child node by index (used by editors inheriting from <see cref="T:Godot.AnimationRootNode"/>).</para>
  5342. </summary>
  5343. </member>
  5344. <member name="M:Godot.AnimationNode.GetChildNodes">
  5345. <summary>
  5346. <para>Gets all children nodes in order as a <c>name: node</c> dictionary. Only useful when inheriting <see cref="T:Godot.AnimationRootNode"/>.</para>
  5347. </summary>
  5348. </member>
  5349. <member name="M:Godot.AnimationNode.GetParameterDefaultValue(System.String)">
  5350. <summary>
  5351. <para>Gets the default value of a parameter. Parameters are custom local memory used for your nodes, given a resource can be reused in multiple trees.</para>
  5352. </summary>
  5353. </member>
  5354. <member name="M:Godot.AnimationNode.GetParameterList">
  5355. <summary>
  5356. <para>Gets the property information for parameter. Parameters are custom local memory used for your nodes, given a resource can be reused in multiple trees. Format is similar to <see cref="M:Godot.Object.GetPropertyList"/>.</para>
  5357. </summary>
  5358. </member>
  5359. <member name="M:Godot.AnimationNode.HasFilter">
  5360. <summary>
  5361. <para>Returns <c>true</c> whether you want the blend tree editor to display filter editing on this node.</para>
  5362. </summary>
  5363. </member>
  5364. <member name="M:Godot.AnimationNode.Process(System.Single,System.Boolean)">
  5365. <summary>
  5366. <para>User-defined callback called when a custom node is processed. The <c>time</c> parameter is a relative delta, unless <c>seek</c> is <c>true</c>, in which case it is absolute.</para>
  5367. <para>Here, call the <see cref="M:Godot.AnimationNode.BlendInput(System.Int32,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)"/>, <see cref="M:Godot.AnimationNode.BlendNode(System.String,Godot.AnimationNode,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)"/> or <see cref="M:Godot.AnimationNode.BlendAnimation(System.String,System.Single,System.Single,System.Boolean,System.Single)"/> functions. You can also use <see cref="M:Godot.AnimationNode.GetParameter(System.String)"/> and <see cref="M:Godot.AnimationNode.SetParameter(System.String,System.Object)"/> to modify local memory.</para>
  5368. <para>This function should return the time left for the current animation to finish (if unsure, pass the value from the main blend being called).</para>
  5369. </summary>
  5370. </member>
  5371. <member name="M:Godot.AnimationNode.GetInputCount">
  5372. <summary>
  5373. <para>Amount of inputs in this node, only useful for nodes that go into <see cref="T:Godot.AnimationNodeBlendTree"/>.</para>
  5374. </summary>
  5375. </member>
  5376. <member name="M:Godot.AnimationNode.GetInputName(System.Int32)">
  5377. <summary>
  5378. <para>Gets the name of an input by index.</para>
  5379. </summary>
  5380. </member>
  5381. <member name="M:Godot.AnimationNode.AddInput(System.String)">
  5382. <summary>
  5383. <para>Adds an input to the node. This is only useful for nodes created for use in an <see cref="T:Godot.AnimationNodeBlendTree"/>.</para>
  5384. </summary>
  5385. </member>
  5386. <member name="M:Godot.AnimationNode.RemoveInput(System.Int32)">
  5387. <summary>
  5388. <para>Removes an input, call this only when inactive.</para>
  5389. </summary>
  5390. </member>
  5391. <member name="M:Godot.AnimationNode.SetFilterPath(Godot.NodePath,System.Boolean)">
  5392. <summary>
  5393. <para>Adds or removes a path for the filter.</para>
  5394. </summary>
  5395. </member>
  5396. <member name="M:Godot.AnimationNode.IsPathFiltered(Godot.NodePath)">
  5397. <summary>
  5398. <para>Returns <c>true</c> whether a given path is filtered.</para>
  5399. </summary>
  5400. </member>
  5401. <member name="M:Godot.AnimationNode.BlendAnimation(System.String,System.Single,System.Single,System.Boolean,System.Single)">
  5402. <summary>
  5403. <para>Blend an animation by <c>blend</c> amount (name must be valid in the linked <see cref="T:Godot.AnimationPlayer"/>). A <c>time</c> and <c>delta</c> may be passed, as well as whether <c>seek</c> happened.</para>
  5404. </summary>
  5405. </member>
  5406. <member name="M:Godot.AnimationNode.BlendNode(System.String,Godot.AnimationNode,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)">
  5407. <summary>
  5408. <para>Blend another animation node (in case this node contains children animation nodes). This function is only useful if you inherit from <see cref="T:Godot.AnimationRootNode"/> instead, else editors will not display your node for addition.</para>
  5409. </summary>
  5410. </member>
  5411. <member name="M:Godot.AnimationNode.BlendInput(System.Int32,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)">
  5412. <summary>
  5413. <para>Blend an input. This is only useful for nodes created for an <see cref="T:Godot.AnimationNodeBlendTree"/>. The <c>time</c> parameter is a relative delta, unless <c>seek</c> is <c>true</c>, in which case it is absolute. A filter mode may be optionally passed (see <see cref="T:Godot.AnimationNode.FilterAction"/> for options).</para>
  5414. </summary>
  5415. </member>
  5416. <member name="M:Godot.AnimationNode.SetParameter(System.String,System.Object)">
  5417. <summary>
  5418. <para>Sets a custom parameter. These are used as local storage, because resources can be reused across the tree or scenes.</para>
  5419. </summary>
  5420. </member>
  5421. <member name="M:Godot.AnimationNode.GetParameter(System.String)">
  5422. <summary>
  5423. <para>Gets the value of a parameter. Parameters are custom local memory used for your nodes, given a resource can be reused in multiple trees.</para>
  5424. </summary>
  5425. </member>
  5426. <member name="T:Godot.AnimationNodeAdd2">
  5427. <summary>
  5428. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>. Blends two animations additively based on an amount value in the <c>[0.0, 1.0]</c> range.</para>
  5429. </summary>
  5430. </member>
  5431. <member name="P:Godot.AnimationNodeAdd2.Sync">
  5432. <summary>
  5433. <para>If <c>true</c>, sets the <c>optimization</c> to <c>false</c> when calling <see cref="M:Godot.AnimationNode.BlendInput(System.Int32,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)"/>, forcing the blended animations to update every frame.</para>
  5434. </summary>
  5435. </member>
  5436. <member name="T:Godot.AnimationNodeAdd3">
  5437. <summary>
  5438. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>. Blends two animations together additively out of three based on a value in the <c>[-1.0, 1.0]</c> range.</para>
  5439. <para>This node has three inputs:</para>
  5440. <para>- The base animation to add to</para>
  5441. <para>- A -add animation to blend with when the blend amount is in the <c>[-1.0, 0.0]</c> range.</para>
  5442. <para>- A +add animation to blend with when the blend amount is in the <c>[0.0, 1.0]</c> range</para>
  5443. </summary>
  5444. </member>
  5445. <member name="P:Godot.AnimationNodeAdd3.Sync">
  5446. <summary>
  5447. <para>If <c>true</c>, sets the <c>optimization</c> to <c>false</c> when calling <see cref="M:Godot.AnimationNode.BlendInput(System.Int32,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)"/>, forcing the blended animations to update every frame.</para>
  5448. </summary>
  5449. </member>
  5450. <member name="T:Godot.AnimationNodeAnimation">
  5451. <summary>
  5452. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>. Only features one output set using the <see cref="P:Godot.AnimationNodeAnimation.Animation"/> property. Use it as an input for <see cref="T:Godot.AnimationNode"/> that blend animations together.</para>
  5453. </summary>
  5454. </member>
  5455. <member name="P:Godot.AnimationNodeAnimation.Animation">
  5456. <summary>
  5457. <para>Animation to use as an output. It is one of the animations provided by <see cref="P:Godot.AnimationTree.AnimPlayer"/>.</para>
  5458. </summary>
  5459. </member>
  5460. <member name="T:Godot.AnimationNodeBlend2">
  5461. <summary>
  5462. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>. Blends two animations linearly based on an amount value in the <c>[0.0, 1.0]</c> range.</para>
  5463. </summary>
  5464. </member>
  5465. <member name="P:Godot.AnimationNodeBlend2.Sync">
  5466. <summary>
  5467. <para>If <c>true</c>, sets the <c>optimization</c> to <c>false</c> when calling <see cref="M:Godot.AnimationNode.BlendInput(System.Int32,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)"/>, forcing the blended animations to update every frame.</para>
  5468. </summary>
  5469. </member>
  5470. <member name="T:Godot.AnimationNodeBlend3">
  5471. <summary>
  5472. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>. Blends two animations together linearly out of three based on a value in the <c>[-1.0, 1.0]</c> range.</para>
  5473. <para>This node has three inputs:</para>
  5474. <para>- The base animation</para>
  5475. <para>- A -blend animation to blend with when the blend amount is in the <c>[-1.0, 0.0]</c> range.</para>
  5476. <para>- A +blend animation to blend with when the blend amount is in the <c>[0.0, 1.0]</c> range</para>
  5477. </summary>
  5478. </member>
  5479. <member name="P:Godot.AnimationNodeBlend3.Sync">
  5480. <summary>
  5481. <para>If <c>true</c>, sets the <c>optimization</c> to <c>false</c> when calling <see cref="M:Godot.AnimationNode.BlendInput(System.Int32,System.Single,System.Boolean,System.Single,Godot.AnimationNode.FilterAction,System.Boolean)"/>, forcing the blended animations to update every frame.</para>
  5482. </summary>
  5483. </member>
  5484. <member name="T:Godot.AnimationNodeBlendSpace1D">
  5485. <summary>
  5486. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>.</para>
  5487. <para>This is a virtual axis on which you can add any type of <see cref="T:Godot.AnimationNode"/> using <see cref="M:Godot.AnimationNodeBlendSpace1D.AddBlendPoint(Godot.AnimationRootNode,System.Single,System.Int32)"/>.</para>
  5488. <para>Outputs the linear blend of the two <see cref="T:Godot.AnimationNode"/>s closest to the node's current value.</para>
  5489. <para>You can set the extents of the axis using the <see cref="P:Godot.AnimationNodeBlendSpace1D.MinSpace"/> and <see cref="P:Godot.AnimationNodeBlendSpace1D.MaxSpace"/>.</para>
  5490. </summary>
  5491. </member>
  5492. <member name="P:Godot.AnimationNodeBlendSpace1D.MinSpace">
  5493. <summary>
  5494. <para>The blend space's axis's lower limit for the points' position. See <see cref="M:Godot.AnimationNodeBlendSpace1D.AddBlendPoint(Godot.AnimationRootNode,System.Single,System.Int32)"/>.</para>
  5495. </summary>
  5496. </member>
  5497. <member name="P:Godot.AnimationNodeBlendSpace1D.MaxSpace">
  5498. <summary>
  5499. <para>The blend space's axis's upper limit for the points' position. See <see cref="M:Godot.AnimationNodeBlendSpace1D.AddBlendPoint(Godot.AnimationRootNode,System.Single,System.Int32)"/>.</para>
  5500. </summary>
  5501. </member>
  5502. <member name="P:Godot.AnimationNodeBlendSpace1D.Snap">
  5503. <summary>
  5504. <para>Position increment to snap to when moving a point on the axis.</para>
  5505. </summary>
  5506. </member>
  5507. <member name="P:Godot.AnimationNodeBlendSpace1D.ValueLabel">
  5508. <summary>
  5509. <para>Label of the virtual axis of the blend space.</para>
  5510. </summary>
  5511. </member>
  5512. <member name="M:Godot.AnimationNodeBlendSpace1D.AddBlendPoint(Godot.AnimationRootNode,System.Single,System.Int32)">
  5513. <summary>
  5514. <para>Adds a new point that represents a <c>node</c> on the virtual axis at a given position set by <c>pos</c>. You can insert it at a specific index using the <c>at_index</c> argument. If you use the default value for <c>at_index</c>, the point is inserted at the end of the blend points array.</para>
  5515. </summary>
  5516. </member>
  5517. <member name="M:Godot.AnimationNodeBlendSpace1D.SetBlendPointPosition(System.Int32,System.Single)">
  5518. <summary>
  5519. <para>Updates the position of the point at index <c>point</c> on the blend axis.</para>
  5520. </summary>
  5521. </member>
  5522. <member name="M:Godot.AnimationNodeBlendSpace1D.GetBlendPointPosition(System.Int32)">
  5523. <summary>
  5524. <para>Returns the position of the point at index <c>point</c>.</para>
  5525. </summary>
  5526. </member>
  5527. <member name="M:Godot.AnimationNodeBlendSpace1D.SetBlendPointNode(System.Int32,Godot.AnimationRootNode)">
  5528. <summary>
  5529. <para>Changes the <see cref="T:Godot.AnimationNode"/> referenced by the point at index <c>point</c>.</para>
  5530. </summary>
  5531. </member>
  5532. <member name="M:Godot.AnimationNodeBlendSpace1D.GetBlendPointNode(System.Int32)">
  5533. <summary>
  5534. <para>Returns the <see cref="T:Godot.AnimationNode"/> referenced by the point at index <c>point</c>.</para>
  5535. </summary>
  5536. </member>
  5537. <member name="M:Godot.AnimationNodeBlendSpace1D.RemoveBlendPoint(System.Int32)">
  5538. <summary>
  5539. <para>Removes the point at index <c>point</c> from the blend axis.</para>
  5540. </summary>
  5541. </member>
  5542. <member name="M:Godot.AnimationNodeBlendSpace1D.GetBlendPointCount">
  5543. <summary>
  5544. <para>Returns the number of points on the blend axis.</para>
  5545. </summary>
  5546. </member>
  5547. <member name="T:Godot.AnimationNodeBlendSpace2D">
  5548. <summary>
  5549. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>.</para>
  5550. <para>This node allows you to blend linearly between three animations using a <see cref="T:Godot.Vector2"/> weight.</para>
  5551. <para>You can add vertices to the blend space with <see cref="M:Godot.AnimationNodeBlendSpace2D.AddBlendPoint(Godot.AnimationRootNode,Godot.Vector2,System.Int32)"/> and automatically triangulate it by setting <see cref="P:Godot.AnimationNodeBlendSpace2D.AutoTriangles"/> to <c>true</c>. Otherwise, use <see cref="M:Godot.AnimationNodeBlendSpace2D.AddTriangle(System.Int32,System.Int32,System.Int32,System.Int32)"/> and <see cref="M:Godot.AnimationNodeBlendSpace2D.RemoveTriangle(System.Int32)"/> to create up the blend space by hand.</para>
  5552. </summary>
  5553. </member>
  5554. <member name="F:Godot.AnimationNodeBlendSpace2D.BlendModeEnum.Interpolated">
  5555. <summary>
  5556. <para>The interpolation between animations is linear.</para>
  5557. </summary>
  5558. </member>
  5559. <member name="F:Godot.AnimationNodeBlendSpace2D.BlendModeEnum.Discrete">
  5560. <summary>
  5561. <para>The blend space plays the animation of the node the blending position is closest to. Useful for frame-by-frame 2D animations.</para>
  5562. </summary>
  5563. </member>
  5564. <member name="F:Godot.AnimationNodeBlendSpace2D.BlendModeEnum.DiscreteCarry">
  5565. <summary>
  5566. <para>Similar to , but starts the new animation at the last animation's playback position.</para>
  5567. </summary>
  5568. </member>
  5569. <member name="P:Godot.AnimationNodeBlendSpace2D.AutoTriangles">
  5570. <summary>
  5571. <para>If <c>true</c>, the blend space is triangulated automatically. The mesh updates every time you add or remove points with <see cref="M:Godot.AnimationNodeBlendSpace2D.AddBlendPoint(Godot.AnimationRootNode,Godot.Vector2,System.Int32)"/> and <see cref="M:Godot.AnimationNodeBlendSpace2D.RemoveBlendPoint(System.Int32)"/>.</para>
  5572. </summary>
  5573. </member>
  5574. <member name="P:Godot.AnimationNodeBlendSpace2D.MinSpace">
  5575. <summary>
  5576. <para>The blend space's X and Y axes' lower limit for the points' position. See <see cref="M:Godot.AnimationNodeBlendSpace2D.AddBlendPoint(Godot.AnimationRootNode,Godot.Vector2,System.Int32)"/>.</para>
  5577. </summary>
  5578. </member>
  5579. <member name="P:Godot.AnimationNodeBlendSpace2D.MaxSpace">
  5580. <summary>
  5581. <para>The blend space's X and Y axes' upper limit for the points' position. See <see cref="M:Godot.AnimationNodeBlendSpace2D.AddBlendPoint(Godot.AnimationRootNode,Godot.Vector2,System.Int32)"/>.</para>
  5582. </summary>
  5583. </member>
  5584. <member name="P:Godot.AnimationNodeBlendSpace2D.Snap">
  5585. <summary>
  5586. <para>Position increment to snap to when moving a point.</para>
  5587. </summary>
  5588. </member>
  5589. <member name="P:Godot.AnimationNodeBlendSpace2D.XLabel">
  5590. <summary>
  5591. <para>Name of the blend space's X axis.</para>
  5592. </summary>
  5593. </member>
  5594. <member name="P:Godot.AnimationNodeBlendSpace2D.YLabel">
  5595. <summary>
  5596. <para>Name of the blend space's Y axis.</para>
  5597. </summary>
  5598. </member>
  5599. <member name="P:Godot.AnimationNodeBlendSpace2D.BlendMode">
  5600. <summary>
  5601. <para>Controls the interpolation between animations. See <see cref="T:Godot.AnimationNodeBlendSpace2D.BlendModeEnum"/> constants.</para>
  5602. </summary>
  5603. </member>
  5604. <member name="M:Godot.AnimationNodeBlendSpace2D.AddBlendPoint(Godot.AnimationRootNode,Godot.Vector2,System.Int32)">
  5605. <summary>
  5606. <para>Adds a new point that represents a <c>node</c> at the position set by <c>pos</c>. You can insert it at a specific index using the <c>at_index</c> argument. If you use the default value for <c>at_index</c>, the point is inserted at the end of the blend points array.</para>
  5607. </summary>
  5608. </member>
  5609. <member name="M:Godot.AnimationNodeBlendSpace2D.SetBlendPointPosition(System.Int32,Godot.Vector2)">
  5610. <summary>
  5611. <para>Updates the position of the point at index <c>point</c> on the blend axis.</para>
  5612. </summary>
  5613. </member>
  5614. <member name="M:Godot.AnimationNodeBlendSpace2D.GetBlendPointPosition(System.Int32)">
  5615. <summary>
  5616. <para>Returns the position of the point at index <c>point</c>.</para>
  5617. </summary>
  5618. </member>
  5619. <member name="M:Godot.AnimationNodeBlendSpace2D.SetBlendPointNode(System.Int32,Godot.AnimationRootNode)">
  5620. <summary>
  5621. <para>Changes the <see cref="T:Godot.AnimationNode"/> referenced by the point at index <c>point</c>.</para>
  5622. </summary>
  5623. </member>
  5624. <member name="M:Godot.AnimationNodeBlendSpace2D.GetBlendPointNode(System.Int32)">
  5625. <summary>
  5626. <para>Returns the <see cref="T:Godot.AnimationRootNode"/> referenced by the point at index <c>point</c>.</para>
  5627. </summary>
  5628. </member>
  5629. <member name="M:Godot.AnimationNodeBlendSpace2D.RemoveBlendPoint(System.Int32)">
  5630. <summary>
  5631. <para>Removes the point at index <c>point</c> from the blend space.</para>
  5632. </summary>
  5633. </member>
  5634. <member name="M:Godot.AnimationNodeBlendSpace2D.GetBlendPointCount">
  5635. <summary>
  5636. <para>Returns the number of points in the blend space.</para>
  5637. </summary>
  5638. </member>
  5639. <member name="M:Godot.AnimationNodeBlendSpace2D.AddTriangle(System.Int32,System.Int32,System.Int32,System.Int32)">
  5640. <summary>
  5641. <para>Creates a new triangle using three points <c>x</c>, <c>y</c>, and <c>z</c>. Triangles can overlap. You can insert the triangle at a specific index using the <c>at_index</c> argument. If you use the default value for <c>at_index</c>, the point is inserted at the end of the blend points array.</para>
  5642. </summary>
  5643. </member>
  5644. <member name="M:Godot.AnimationNodeBlendSpace2D.GetTrianglePoint(System.Int32,System.Int32)">
  5645. <summary>
  5646. <para>Returns the position of the point at index <c>point</c> in the triangle of index <c>triangle</c>.</para>
  5647. </summary>
  5648. </member>
  5649. <member name="M:Godot.AnimationNodeBlendSpace2D.RemoveTriangle(System.Int32)">
  5650. <summary>
  5651. <para>Removes the triangle at index <c>triangle</c> from the blend space.</para>
  5652. </summary>
  5653. </member>
  5654. <member name="M:Godot.AnimationNodeBlendSpace2D.GetTriangleCount">
  5655. <summary>
  5656. <para>Returns the number of triangles in the blend space.</para>
  5657. </summary>
  5658. </member>
  5659. <member name="T:Godot.AnimationNodeBlendTree">
  5660. <summary>
  5661. <para>This node may contain a sub-tree of any other blend type nodes, such as mix, blend2, blend3, one shot, etc. This is one of the most commonly used roots.</para>
  5662. </summary>
  5663. </member>
  5664. <member name="F:Godot.AnimationNodeBlendTree.ConnectionOk">
  5665. <summary>
  5666. <para>The connection was successful.</para>
  5667. </summary>
  5668. </member>
  5669. <member name="F:Godot.AnimationNodeBlendTree.ConnectionErrorNoInput">
  5670. <summary>
  5671. <para>The input node is <c>null</c>.</para>
  5672. </summary>
  5673. </member>
  5674. <member name="F:Godot.AnimationNodeBlendTree.ConnectionErrorNoInputIndex">
  5675. <summary>
  5676. <para>The specified input port is out of range.</para>
  5677. </summary>
  5678. </member>
  5679. <member name="F:Godot.AnimationNodeBlendTree.ConnectionErrorNoOutput">
  5680. <summary>
  5681. <para>The output node is <c>null</c>.</para>
  5682. </summary>
  5683. </member>
  5684. <member name="F:Godot.AnimationNodeBlendTree.ConnectionErrorSameNode">
  5685. <summary>
  5686. <para>Input and output nodes are the same.</para>
  5687. </summary>
  5688. </member>
  5689. <member name="F:Godot.AnimationNodeBlendTree.ConnectionErrorConnectionExists">
  5690. <summary>
  5691. <para>The specified connection already exists.</para>
  5692. </summary>
  5693. </member>
  5694. <member name="P:Godot.AnimationNodeBlendTree.GraphOffset">
  5695. <summary>
  5696. <para>The global offset of all sub-nodes.</para>
  5697. </summary>
  5698. </member>
  5699. <member name="M:Godot.AnimationNodeBlendTree.AddNode(System.String,Godot.AnimationNode,System.Nullable{Godot.Vector2})">
  5700. <summary>
  5701. <para>Adds an <see cref="T:Godot.AnimationNode"/> at the given <c>position</c>. The <c>name</c> is used to identify the created sub-node later.</para>
  5702. </summary>
  5703. <param name="position">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  5704. </member>
  5705. <member name="M:Godot.AnimationNodeBlendTree.GetNode(System.String)">
  5706. <summary>
  5707. <para>Returns the sub-node with the specified <c>name</c>.</para>
  5708. </summary>
  5709. </member>
  5710. <member name="M:Godot.AnimationNodeBlendTree.RemoveNode(System.String)">
  5711. <summary>
  5712. <para>Removes a sub-node.</para>
  5713. </summary>
  5714. </member>
  5715. <member name="M:Godot.AnimationNodeBlendTree.RenameNode(System.String,System.String)">
  5716. <summary>
  5717. <para>Changes the name of a sub-node.</para>
  5718. </summary>
  5719. </member>
  5720. <member name="M:Godot.AnimationNodeBlendTree.HasNode(System.String)">
  5721. <summary>
  5722. <para>Returns <c>true</c> if a sub-node with specified <c>name</c> exists.</para>
  5723. </summary>
  5724. </member>
  5725. <member name="M:Godot.AnimationNodeBlendTree.ConnectNode(System.String,System.Int32,System.String)">
  5726. <summary>
  5727. <para>Connects the output of an <see cref="T:Godot.AnimationNode"/> as input for another <see cref="T:Godot.AnimationNode"/>, at the input port specified by <c>input_index</c>.</para>
  5728. </summary>
  5729. </member>
  5730. <member name="M:Godot.AnimationNodeBlendTree.DisconnectNode(System.String,System.Int32)">
  5731. <summary>
  5732. <para>Disconnects the node connected to the specified input.</para>
  5733. </summary>
  5734. </member>
  5735. <member name="M:Godot.AnimationNodeBlendTree.SetNodePosition(System.String,Godot.Vector2)">
  5736. <summary>
  5737. <para>Modifies the position of a sub-node.</para>
  5738. </summary>
  5739. </member>
  5740. <member name="M:Godot.AnimationNodeBlendTree.GetNodePosition(System.String)">
  5741. <summary>
  5742. <para>Returns the position of the sub-node with the specified <c>name</c>.</para>
  5743. </summary>
  5744. </member>
  5745. <member name="T:Godot.AnimationNodeOneShot">
  5746. <summary>
  5747. <para>A resource to add to an <see cref="T:Godot.AnimationNodeBlendTree"/>. This node will execute a sub-animation and return once it finishes. Blend times for fading in and out can be customized, as well as filters.</para>
  5748. </summary>
  5749. </member>
  5750. <member name="P:Godot.AnimationNodeOneShot.Autorestart">
  5751. <summary>
  5752. <para>If <c>true</c>, the sub-animation will restart automatically after finishing.</para>
  5753. </summary>
  5754. </member>
  5755. <member name="P:Godot.AnimationNodeOneShot.AutorestartDelay">
  5756. <summary>
  5757. <para>The delay after which the automatic restart is triggered, in seconds.</para>
  5758. </summary>
  5759. </member>
  5760. <member name="P:Godot.AnimationNodeOneShot.AutorestartRandomDelay">
  5761. <summary>
  5762. <para>If <see cref="P:Godot.AnimationNodeOneShot.Autorestart"/> is <c>true</c>, a random additional delay (in seconds) between 0 and this value will be added to <see cref="P:Godot.AnimationNodeOneShot.AutorestartDelay"/>.</para>
  5763. </summary>
  5764. </member>
  5765. <member name="T:Godot.AnimationNodeStateMachine">
  5766. <summary>
  5767. <para>Contains multiple nodes representing animation states, connected in a graph. Node transitions can be configured to happen automatically or via code, using a shortest-path algorithm. Retrieve the <see cref="T:Godot.AnimationNodeStateMachinePlayback"/> object from the <see cref="T:Godot.AnimationTree"/> node to control it programmatically.</para>
  5768. <para>Example:</para>
  5769. <para><code>
  5770. var state_machine = $AnimationTree.get("parameters/playback")
  5771. state_machine.travel("some_state")
  5772. </code></para>
  5773. </summary>
  5774. </member>
  5775. <member name="M:Godot.AnimationNodeStateMachine.AddNode(System.String,Godot.AnimationNode,System.Nullable{Godot.Vector2})">
  5776. <summary>
  5777. <para>Adds a new node to the graph. The <c>position</c> is used for display in the editor.</para>
  5778. </summary>
  5779. <param name="position">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  5780. </member>
  5781. <member name="M:Godot.AnimationNodeStateMachine.ReplaceNode(System.String,Godot.AnimationNode)">
  5782. <summary>
  5783. <para>Replaces the node and keeps its transitions unchanged.</para>
  5784. </summary>
  5785. </member>
  5786. <member name="M:Godot.AnimationNodeStateMachine.GetNode(System.String)">
  5787. <summary>
  5788. <para>Returns the animation node with the given name.</para>
  5789. </summary>
  5790. </member>
  5791. <member name="M:Godot.AnimationNodeStateMachine.RemoveNode(System.String)">
  5792. <summary>
  5793. <para>Deletes the given node from the graph.</para>
  5794. </summary>
  5795. </member>
  5796. <member name="M:Godot.AnimationNodeStateMachine.RenameNode(System.String,System.String)">
  5797. <summary>
  5798. <para>Renames the given node.</para>
  5799. </summary>
  5800. </member>
  5801. <member name="M:Godot.AnimationNodeStateMachine.HasNode(System.String)">
  5802. <summary>
  5803. <para>Returns <c>true</c> if the graph contains the given node.</para>
  5804. </summary>
  5805. </member>
  5806. <member name="M:Godot.AnimationNodeStateMachine.GetNodeName(Godot.AnimationNode)">
  5807. <summary>
  5808. <para>Returns the given animation node's name.</para>
  5809. </summary>
  5810. </member>
  5811. <member name="M:Godot.AnimationNodeStateMachine.SetNodePosition(System.String,Godot.Vector2)">
  5812. <summary>
  5813. <para>Sets the node's coordinates. Used for display in the editor.</para>
  5814. </summary>
  5815. </member>
  5816. <member name="M:Godot.AnimationNodeStateMachine.GetNodePosition(System.String)">
  5817. <summary>
  5818. <para>Returns the given node's coordinates. Used for display in the editor.</para>
  5819. </summary>
  5820. </member>
  5821. <member name="M:Godot.AnimationNodeStateMachine.HasTransition(System.String,System.String)">
  5822. <summary>
  5823. <para>Returns <c>true</c> if there is a transition between the given nodes.</para>
  5824. </summary>
  5825. </member>
  5826. <member name="M:Godot.AnimationNodeStateMachine.AddTransition(System.String,System.String,Godot.AnimationNodeStateMachineTransition)">
  5827. <summary>
  5828. <para>Adds a transition between the given nodes.</para>
  5829. </summary>
  5830. </member>
  5831. <member name="M:Godot.AnimationNodeStateMachine.GetTransition(System.Int32)">
  5832. <summary>
  5833. <para>Returns the given transition.</para>
  5834. </summary>
  5835. </member>
  5836. <member name="M:Godot.AnimationNodeStateMachine.GetTransitionFrom(System.Int32)">
  5837. <summary>
  5838. <para>Returns the given transition's start node.</para>
  5839. </summary>
  5840. </member>
  5841. <member name="M:Godot.AnimationNodeStateMachine.GetTransitionTo(System.Int32)">
  5842. <summary>
  5843. <para>Returns the given transition's end node.</para>
  5844. </summary>
  5845. </member>
  5846. <member name="M:Godot.AnimationNodeStateMachine.GetTransitionCount">
  5847. <summary>
  5848. <para>Returns the number of connections in the graph.</para>
  5849. </summary>
  5850. </member>
  5851. <member name="M:Godot.AnimationNodeStateMachine.RemoveTransitionByIndex(System.Int32)">
  5852. <summary>
  5853. <para>Deletes the given transition by index.</para>
  5854. </summary>
  5855. </member>
  5856. <member name="M:Godot.AnimationNodeStateMachine.RemoveTransition(System.String,System.String)">
  5857. <summary>
  5858. <para>Deletes the transition between the two specified nodes.</para>
  5859. </summary>
  5860. </member>
  5861. <member name="M:Godot.AnimationNodeStateMachine.SetStartNode(System.String)">
  5862. <summary>
  5863. <para>Sets the given node as the graph start point.</para>
  5864. </summary>
  5865. </member>
  5866. <member name="M:Godot.AnimationNodeStateMachine.GetStartNode">
  5867. <summary>
  5868. <para>Returns the graph's end node.</para>
  5869. </summary>
  5870. </member>
  5871. <member name="M:Godot.AnimationNodeStateMachine.SetEndNode(System.String)">
  5872. <summary>
  5873. <para>Sets the given node as the graph end point.</para>
  5874. </summary>
  5875. </member>
  5876. <member name="M:Godot.AnimationNodeStateMachine.GetEndNode">
  5877. <summary>
  5878. <para>Returns the graph's end node.</para>
  5879. </summary>
  5880. </member>
  5881. <member name="M:Godot.AnimationNodeStateMachine.SetGraphOffset(Godot.Vector2)">
  5882. <summary>
  5883. <para>Sets the draw offset of the graph. Used for display in the editor.</para>
  5884. </summary>
  5885. </member>
  5886. <member name="M:Godot.AnimationNodeStateMachine.GetGraphOffset">
  5887. <summary>
  5888. <para>Returns the draw offset of the graph. Used for display in the editor.</para>
  5889. </summary>
  5890. </member>
  5891. <member name="T:Godot.AnimationNodeStateMachinePlayback">
  5892. <summary>
  5893. <para>Allows control of <see cref="T:Godot.AnimationTree"/> state machines created with <see cref="T:Godot.AnimationNodeStateMachine"/>. Retrieve with <c>$AnimationTree.get("parameters/playback")</c>.</para>
  5894. <para>Example:</para>
  5895. <para><code>
  5896. var state_machine = $AnimationTree.get("parameters/playback")
  5897. state_machine.travel("some_state")
  5898. </code></para>
  5899. </summary>
  5900. </member>
  5901. <member name="M:Godot.AnimationNodeStateMachinePlayback.Travel(System.String)">
  5902. <summary>
  5903. <para>Transitions from the current state to another one, following the shortest path.</para>
  5904. </summary>
  5905. </member>
  5906. <member name="M:Godot.AnimationNodeStateMachinePlayback.Start(System.String)">
  5907. <summary>
  5908. <para>Starts playing the given animation.</para>
  5909. </summary>
  5910. </member>
  5911. <member name="M:Godot.AnimationNodeStateMachinePlayback.Stop">
  5912. <summary>
  5913. <para>Stops the currently playing animation.</para>
  5914. </summary>
  5915. </member>
  5916. <member name="M:Godot.AnimationNodeStateMachinePlayback.IsPlaying">
  5917. <summary>
  5918. <para>Returns <c>true</c> if an animation is playing.</para>
  5919. </summary>
  5920. </member>
  5921. <member name="M:Godot.AnimationNodeStateMachinePlayback.GetCurrentNode">
  5922. <summary>
  5923. <para>Returns the currently playing animation state.</para>
  5924. </summary>
  5925. </member>
  5926. <member name="M:Godot.AnimationNodeStateMachinePlayback.GetTravelPath">
  5927. <summary>
  5928. <para>Returns the current travel path as computed internally by the A* algorithm.</para>
  5929. </summary>
  5930. </member>
  5931. <member name="F:Godot.AnimationNodeStateMachineTransition.SwitchModeEnum.Immediate">
  5932. <summary>
  5933. <para>Switch to the next state immediately. The current state will end and blend into the beginning of the new one.</para>
  5934. </summary>
  5935. </member>
  5936. <member name="F:Godot.AnimationNodeStateMachineTransition.SwitchModeEnum.Sync">
  5937. <summary>
  5938. <para>Switch to the next state immediately, but will seek the new state to the playback position of the old state.</para>
  5939. </summary>
  5940. </member>
  5941. <member name="F:Godot.AnimationNodeStateMachineTransition.SwitchModeEnum.AtEnd">
  5942. <summary>
  5943. <para>Wait for the current state playback to end, then switch to the beginning of the next state animation.</para>
  5944. </summary>
  5945. </member>
  5946. <member name="P:Godot.AnimationNodeStateMachineTransition.SwitchMode">
  5947. <summary>
  5948. <para>The transition type.</para>
  5949. </summary>
  5950. </member>
  5951. <member name="P:Godot.AnimationNodeStateMachineTransition.AutoAdvance">
  5952. <summary>
  5953. <para>Turn on the transition automatically when this state is reached. This works best with .</para>
  5954. </summary>
  5955. </member>
  5956. <member name="P:Godot.AnimationNodeStateMachineTransition.AdvanceCondition">
  5957. <summary>
  5958. <para>Turn on auto advance when this condition is set. The provided name will become a boolean parameter on the <see cref="T:Godot.AnimationTree"/> that can be controlled from code (see <a href="https://docs.godotengine.org/en/latest/tutorials/animation/animation_tree.html#controlling-from-code"></a>). For example, if <see cref="P:Godot.AnimationTree.TreeRoot"/> is an <see cref="T:Godot.AnimationNodeStateMachine"/> and <see cref="P:Godot.AnimationNodeStateMachineTransition.AdvanceCondition"/> is set to <c>"idle"</c>:</para>
  5959. <para><code>
  5960. $animation_tree["parameters/conditions/idle"] = is_on_floor and (linear_velocity.x == 0)
  5961. </code></para>
  5962. </summary>
  5963. </member>
  5964. <member name="P:Godot.AnimationNodeStateMachineTransition.XfadeTime">
  5965. <summary>
  5966. <para>The time to cross-fade between this state and the next.</para>
  5967. </summary>
  5968. </member>
  5969. <member name="P:Godot.AnimationNodeStateMachineTransition.Priority">
  5970. <summary>
  5971. <para>Lower priority transitions are preferred when travelling through the tree via <see cref="M:Godot.AnimationNodeStateMachinePlayback.Travel(System.String)"/> or <see cref="P:Godot.AnimationNodeStateMachineTransition.AutoAdvance"/>.</para>
  5972. </summary>
  5973. </member>
  5974. <member name="P:Godot.AnimationNodeStateMachineTransition.Disabled">
  5975. <summary>
  5976. <para>Don't use this transition during <see cref="M:Godot.AnimationNodeStateMachinePlayback.Travel(System.String)"/> or <see cref="P:Godot.AnimationNodeStateMachineTransition.AutoAdvance"/>.</para>
  5977. </summary>
  5978. </member>
  5979. <member name="T:Godot.AnimationNodeTimeScale">
  5980. <summary>
  5981. <para>Allows scaling the speed of the animation (or reversing it) in any children nodes. Setting it to 0 will pause the animation.</para>
  5982. </summary>
  5983. </member>
  5984. <member name="T:Godot.AnimationNodeTimeSeek">
  5985. <summary>
  5986. <para>This node can be used to cause a seek command to happen to any sub-children of the graph. After setting the time, this value returns to -1.</para>
  5987. </summary>
  5988. </member>
  5989. <member name="T:Godot.AnimationNodeTransition">
  5990. <summary>
  5991. <para>Simple state machine for cases which don't require a more advanced <see cref="T:Godot.AnimationNodeStateMachine"/>. Animations can be connected to the inputs and transition times can be specified.</para>
  5992. </summary>
  5993. </member>
  5994. <member name="P:Godot.AnimationNodeTransition.InputCount">
  5995. <summary>
  5996. <para>The number of available input ports for this node.</para>
  5997. </summary>
  5998. </member>
  5999. <member name="P:Godot.AnimationNodeTransition.XfadeTime">
  6000. <summary>
  6001. <para>Cross-fading time (in seconds) between each animation connected to the inputs.</para>
  6002. </summary>
  6003. </member>
  6004. <member name="T:Godot.AnimationPlayer">
  6005. <summary>
  6006. <para>An animation player is used for general-purpose playback of <see cref="T:Godot.Animation"/> resources. It contains a dictionary of animations (referenced by name) and custom blend times between their transitions. Additionally, animations can be played and blended in different channels.</para>
  6007. <para><see cref="T:Godot.AnimationPlayer"/> is more suited than <see cref="T:Godot.Tween"/> for animations where you know the final values in advance. For example, fading a screen in and out is more easily done with an <see cref="T:Godot.AnimationPlayer"/> node thanks to the animation tools provided by the editor. That particular example can also be implemented with a <see cref="T:Godot.Tween"/> node, but it requires doing everything by code.</para>
  6008. <para>Updating the target properties of animations occurs at process time.</para>
  6009. </summary>
  6010. </member>
  6011. <member name="F:Godot.AnimationPlayer.AnimationProcessMode.Physics">
  6012. <summary>
  6013. <para>Process animation during the physics process. This is especially useful when animating physics bodies.</para>
  6014. </summary>
  6015. </member>
  6016. <member name="F:Godot.AnimationPlayer.AnimationProcessMode.Idle">
  6017. <summary>
  6018. <para>Process animation during the idle process.</para>
  6019. </summary>
  6020. </member>
  6021. <member name="F:Godot.AnimationPlayer.AnimationProcessMode.Manual">
  6022. <summary>
  6023. <para>Do not process animation. Use <see cref="M:Godot.AnimationPlayer.Advance(System.Single)"/> to process the animation manually.</para>
  6024. </summary>
  6025. </member>
  6026. <member name="F:Godot.AnimationPlayer.AnimationMethodCallMode.Deferred">
  6027. <summary>
  6028. <para>Batch method calls during the animation process, then do the calls after events are processed. This avoids bugs involving deleting nodes or modifying the AnimationPlayer while playing.</para>
  6029. </summary>
  6030. </member>
  6031. <member name="F:Godot.AnimationPlayer.AnimationMethodCallMode.Immediate">
  6032. <summary>
  6033. <para>Make method calls immediately when reached in the animation.</para>
  6034. </summary>
  6035. </member>
  6036. <member name="P:Godot.AnimationPlayer.RootNode">
  6037. <summary>
  6038. <para>The node from which node path references will travel.</para>
  6039. </summary>
  6040. </member>
  6041. <member name="P:Godot.AnimationPlayer.CurrentAnimation">
  6042. <summary>
  6043. <para>The name of the current animation, "" if not playing anything. When being set, does not restart the animation. See also <see cref="M:Godot.AnimationPlayer.Play(System.String,System.Single,System.Single,System.Boolean)"/>.</para>
  6044. </summary>
  6045. </member>
  6046. <member name="P:Godot.AnimationPlayer.AssignedAnimation">
  6047. <summary>
  6048. <para>If playing, the current animation; otherwise, the animation last played. When set, would change the animation, but would not play it unless currently playing. See also <see cref="P:Godot.AnimationPlayer.CurrentAnimation"/>.</para>
  6049. </summary>
  6050. </member>
  6051. <member name="P:Godot.AnimationPlayer.Autoplay">
  6052. <summary>
  6053. <para>The name of the animation to play when the scene loads.</para>
  6054. </summary>
  6055. </member>
  6056. <member name="P:Godot.AnimationPlayer.CurrentAnimationLength">
  6057. <summary>
  6058. <para>The length (in seconds) of the currently being played animation.</para>
  6059. </summary>
  6060. </member>
  6061. <member name="P:Godot.AnimationPlayer.CurrentAnimationPosition">
  6062. <summary>
  6063. <para>The position (in seconds) of the currently playing animation.</para>
  6064. </summary>
  6065. </member>
  6066. <member name="P:Godot.AnimationPlayer.PlaybackProcessMode">
  6067. <summary>
  6068. <para>The process notification in which to update animations.</para>
  6069. </summary>
  6070. </member>
  6071. <member name="P:Godot.AnimationPlayer.PlaybackDefaultBlendTime">
  6072. <summary>
  6073. <para>The default time in which to blend animations. Ranges from 0 to 4096 with 0.01 precision.</para>
  6074. </summary>
  6075. </member>
  6076. <member name="P:Godot.AnimationPlayer.PlaybackActive">
  6077. <summary>
  6078. <para>If <c>true</c>, updates animations in response to process-related notifications.</para>
  6079. </summary>
  6080. </member>
  6081. <member name="P:Godot.AnimationPlayer.PlaybackSpeed">
  6082. <summary>
  6083. <para>The speed scaling ratio. For instance, if this value is 1, then the animation plays at normal speed. If it's 0.5, then it plays at half speed. If it's 2, then it plays at double speed.</para>
  6084. </summary>
  6085. </member>
  6086. <member name="P:Godot.AnimationPlayer.MethodCallMode">
  6087. <summary>
  6088. <para>The call mode to use for Call Method tracks.</para>
  6089. </summary>
  6090. </member>
  6091. <member name="M:Godot.AnimationPlayer.AddAnimation(System.String,Godot.Animation)">
  6092. <summary>
  6093. <para>Adds <c>animation</c> to the player accessible with the key <c>name</c>.</para>
  6094. </summary>
  6095. </member>
  6096. <member name="M:Godot.AnimationPlayer.RemoveAnimation(System.String)">
  6097. <summary>
  6098. <para>Removes the animation with key <c>name</c>.</para>
  6099. </summary>
  6100. </member>
  6101. <member name="M:Godot.AnimationPlayer.RenameAnimation(System.String,System.String)">
  6102. <summary>
  6103. <para>Renames an existing animation with key <c>name</c> to <c>newname</c>.</para>
  6104. </summary>
  6105. </member>
  6106. <member name="M:Godot.AnimationPlayer.HasAnimation(System.String)">
  6107. <summary>
  6108. <para>Returns <c>true</c> if the <see cref="T:Godot.AnimationPlayer"/> stores an <see cref="T:Godot.Animation"/> with key <c>name</c>.</para>
  6109. </summary>
  6110. </member>
  6111. <member name="M:Godot.AnimationPlayer.GetAnimation(System.String)">
  6112. <summary>
  6113. <para>Returns the <see cref="T:Godot.Animation"/> with key <c>name</c> or <c>null</c> if not found.</para>
  6114. </summary>
  6115. </member>
  6116. <member name="M:Godot.AnimationPlayer.GetAnimationList">
  6117. <summary>
  6118. <para>Returns the list of stored animation names.</para>
  6119. </summary>
  6120. </member>
  6121. <member name="M:Godot.AnimationPlayer.AnimationSetNext(System.String,System.String)">
  6122. <summary>
  6123. <para>Triggers the <c>anim_to</c> animation when the <c>anim_from</c> animation completes.</para>
  6124. </summary>
  6125. </member>
  6126. <member name="M:Godot.AnimationPlayer.AnimationGetNext(System.String)">
  6127. <summary>
  6128. <para>Returns the name of the next animation in the queue.</para>
  6129. </summary>
  6130. </member>
  6131. <member name="M:Godot.AnimationPlayer.SetBlendTime(System.String,System.String,System.Single)">
  6132. <summary>
  6133. <para>Specifies a blend time (in seconds) between two animations, referenced by their names.</para>
  6134. </summary>
  6135. </member>
  6136. <member name="M:Godot.AnimationPlayer.GetBlendTime(System.String,System.String)">
  6137. <summary>
  6138. <para>Gets the blend time (in seconds) between two animations, referenced by their names.</para>
  6139. </summary>
  6140. </member>
  6141. <member name="M:Godot.AnimationPlayer.Play(System.String,System.Single,System.Single,System.Boolean)">
  6142. <summary>
  6143. <para>Plays the animation with key <c>name</c>. Custom blend times and speed can be set. If <c>custom_speed</c> is negative and <c>from_end</c> is <c>true</c>, the animation will play backwards (which is equivalent to calling <see cref="M:Godot.AnimationPlayer.PlayBackwards(System.String,System.Single)"/>).</para>
  6144. <para>The <see cref="T:Godot.AnimationPlayer"/> keeps track of its current or last played animation with <see cref="P:Godot.AnimationPlayer.AssignedAnimation"/>. If this method is called with that same animation <c>name</c>, or with no <c>name</c> parameter, the assigned animation will resume playing if it was paused, or restart if it was stopped (see <see cref="M:Godot.AnimationPlayer.Stop(System.Boolean)"/> for both pause and stop). If the animation was already playing, it will keep playing.</para>
  6145. <para>Note: The animation will be updated the next time the <see cref="T:Godot.AnimationPlayer"/> is processed. If other variables are updated at the same time this is called, they may be updated too early. To perform the update immediately, call <c>advance(0)</c>.</para>
  6146. </summary>
  6147. </member>
  6148. <member name="M:Godot.AnimationPlayer.PlayBackwards(System.String,System.Single)">
  6149. <summary>
  6150. <para>Plays the animation with key <c>name</c> in reverse.</para>
  6151. <para>This method is a shorthand for <see cref="M:Godot.AnimationPlayer.Play(System.String,System.Single,System.Single,System.Boolean)"/> with <c>custom_speed = -1.0</c> and <c>from_end = true</c>, so see its description for more information.</para>
  6152. </summary>
  6153. </member>
  6154. <member name="M:Godot.AnimationPlayer.Stop(System.Boolean)">
  6155. <summary>
  6156. <para>Stops or pauses the currently playing animation. If <c>reset</c> is <c>true</c>, the animation position is reset to <c>0</c> and the playback speed is reset to <c>1.0</c>.</para>
  6157. <para>If <c>reset</c> is <c>false</c>, the <see cref="P:Godot.AnimationPlayer.CurrentAnimationPosition"/> will be kept and calling <see cref="M:Godot.AnimationPlayer.Play(System.String,System.Single,System.Single,System.Boolean)"/> or <see cref="M:Godot.AnimationPlayer.PlayBackwards(System.String,System.Single)"/> without arguments or with the same animation name as <see cref="P:Godot.AnimationPlayer.AssignedAnimation"/> will resume the animation.</para>
  6158. </summary>
  6159. </member>
  6160. <member name="M:Godot.AnimationPlayer.IsPlaying">
  6161. <summary>
  6162. <para>Returns <c>true</c> if playing an animation.</para>
  6163. </summary>
  6164. </member>
  6165. <member name="M:Godot.AnimationPlayer.Queue(System.String)">
  6166. <summary>
  6167. <para>Queues an animation for playback once the current one is done.</para>
  6168. <para>Note: If a looped animation is currently playing, the queued animation will never play unless the looped animation is stopped somehow.</para>
  6169. </summary>
  6170. </member>
  6171. <member name="M:Godot.AnimationPlayer.GetQueue">
  6172. <summary>
  6173. <para>Returns a list of the animation names that are currently queued to play.</para>
  6174. </summary>
  6175. </member>
  6176. <member name="M:Godot.AnimationPlayer.ClearQueue">
  6177. <summary>
  6178. <para>Clears all queued, unplayed animations.</para>
  6179. </summary>
  6180. </member>
  6181. <member name="M:Godot.AnimationPlayer.GetPlayingSpeed">
  6182. <summary>
  6183. <para>Gets the actual playing speed of current animation or 0 if not playing. This speed is the <see cref="P:Godot.AnimationPlayer.PlaybackSpeed"/> property multiplied by <c>custom_speed</c> argument specified when calling the <see cref="M:Godot.AnimationPlayer.Play(System.String,System.Single,System.Single,System.Boolean)"/> method.</para>
  6184. </summary>
  6185. </member>
  6186. <member name="M:Godot.AnimationPlayer.FindAnimation(Godot.Animation)">
  6187. <summary>
  6188. <para>Returns the name of <c>animation</c> or an empty string if not found.</para>
  6189. </summary>
  6190. </member>
  6191. <member name="M:Godot.AnimationPlayer.ClearCaches">
  6192. <summary>
  6193. <para><see cref="T:Godot.AnimationPlayer"/> caches animated nodes. It may not notice if a node disappears; <see cref="M:Godot.AnimationPlayer.ClearCaches"/> forces it to update the cache again.</para>
  6194. </summary>
  6195. </member>
  6196. <member name="M:Godot.AnimationPlayer.Seek(System.Single,System.Boolean)">
  6197. <summary>
  6198. <para>Seeks the animation to the <c>seconds</c> point in time (in seconds). If <c>update</c> is <c>true</c>, the animation updates too, otherwise it updates at process time. Events between the current frame and <c>seconds</c> are skipped.</para>
  6199. </summary>
  6200. </member>
  6201. <member name="M:Godot.AnimationPlayer.Advance(System.Single)">
  6202. <summary>
  6203. <para>Shifts position in the animation timeline and immediately updates the animation. <c>delta</c> is the time in seconds to shift. Events between the current frame and <c>delta</c> are handled.</para>
  6204. </summary>
  6205. </member>
  6206. <member name="T:Godot.AnimationTree">
  6207. <summary>
  6208. <para>Note: When linked with an <see cref="T:Godot.AnimationPlayer"/>, several properties and methods of the corresponding <see cref="T:Godot.AnimationPlayer"/> will not function as expected. Playback and transitions should be handled using only the <see cref="T:Godot.AnimationTree"/> and its constituent <see cref="T:Godot.AnimationNode"/>(s). The <see cref="T:Godot.AnimationPlayer"/> node should be used solely for adding, deleting, and editing animations.</para>
  6209. </summary>
  6210. </member>
  6211. <member name="F:Godot.AnimationTree.AnimationProcessMode.Physics">
  6212. <summary>
  6213. <para>The animations will progress during the physics frame (i.e. <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/>).</para>
  6214. </summary>
  6215. </member>
  6216. <member name="F:Godot.AnimationTree.AnimationProcessMode.Idle">
  6217. <summary>
  6218. <para>The animations will progress during the idle frame (i.e. <see cref="M:Godot.Node._Process(System.Single)"/>).</para>
  6219. </summary>
  6220. </member>
  6221. <member name="F:Godot.AnimationTree.AnimationProcessMode.Manual">
  6222. <summary>
  6223. <para>The animations will only progress manually (see <see cref="M:Godot.AnimationTree.Advance(System.Single)"/>).</para>
  6224. </summary>
  6225. </member>
  6226. <member name="P:Godot.AnimationTree.TreeRoot">
  6227. <summary>
  6228. <para>The root animation node of this <see cref="T:Godot.AnimationTree"/>. See <see cref="T:Godot.AnimationNode"/>.</para>
  6229. </summary>
  6230. </member>
  6231. <member name="P:Godot.AnimationTree.AnimPlayer">
  6232. <summary>
  6233. <para>The path to the <see cref="T:Godot.AnimationPlayer"/> used for animating.</para>
  6234. </summary>
  6235. </member>
  6236. <member name="P:Godot.AnimationTree.Active">
  6237. <summary>
  6238. <para>If <c>true</c>, the <see cref="T:Godot.AnimationTree"/> will be processing.</para>
  6239. </summary>
  6240. </member>
  6241. <member name="P:Godot.AnimationTree.ProcessMode">
  6242. <summary>
  6243. <para>The process mode of this <see cref="T:Godot.AnimationTree"/>. See <see cref="T:Godot.AnimationTree.AnimationProcessMode"/> for available modes.</para>
  6244. </summary>
  6245. </member>
  6246. <member name="P:Godot.AnimationTree.RootMotionTrack">
  6247. <summary>
  6248. <para>The path to the Animation track used for root motion. Paths must be valid scene-tree paths to a node, and must be specified starting from the parent node of the node that will reproduce the animation. To specify a track that controls properties or bones, append its name after the path, separated by <c>":"</c>. For example, <c>"character/skeleton:ankle"</c> or <c>"character/mesh:transform/local"</c>.</para>
  6249. <para>If the track has type , the transformation will be cancelled visually, and the animation will appear to stay in place.</para>
  6250. </summary>
  6251. </member>
  6252. <member name="M:Godot.AnimationTree.GetRootMotionTransform">
  6253. <summary>
  6254. <para>Retrieve the motion of the <see cref="P:Godot.AnimationTree.RootMotionTrack"/> as a <see cref="T:Godot.Transform"/> that can be used elsewhere. If <see cref="P:Godot.AnimationTree.RootMotionTrack"/> is not a path to a track of type , returns an identity transformation.</para>
  6255. </summary>
  6256. </member>
  6257. <member name="M:Godot.AnimationTree.Advance(System.Single)">
  6258. <summary>
  6259. <para>Manually advance the animations by the specified time (in seconds).</para>
  6260. </summary>
  6261. </member>
  6262. <member name="T:Godot.AnimationTreePlayer">
  6263. <summary>
  6264. <para>A node graph tool for blending multiple animations bound to an <see cref="T:Godot.AnimationPlayer"/>. Especially useful for animating characters or other skeleton-based rigs. It can combine several animations to form a desired pose.</para>
  6265. <para>It takes <see cref="T:Godot.Animation"/>s from an <see cref="T:Godot.AnimationPlayer"/> node and mixes them depending on the graph.</para>
  6266. </summary>
  6267. </member>
  6268. <member name="F:Godot.AnimationTreePlayer.AnimationProcessMode.Physics">
  6269. <summary>
  6270. <para>Process animation during the physics process. This is especially useful when animating physics bodies.</para>
  6271. </summary>
  6272. </member>
  6273. <member name="F:Godot.AnimationTreePlayer.AnimationProcessMode.Idle">
  6274. <summary>
  6275. <para>Process animation during the idle process.</para>
  6276. </summary>
  6277. </member>
  6278. <member name="F:Godot.AnimationTreePlayer.NodeType.Output">
  6279. <summary>
  6280. <para>Output node.</para>
  6281. </summary>
  6282. </member>
  6283. <member name="F:Godot.AnimationTreePlayer.NodeType.Animation">
  6284. <summary>
  6285. <para>Animation node.</para>
  6286. </summary>
  6287. </member>
  6288. <member name="F:Godot.AnimationTreePlayer.NodeType.Oneshot">
  6289. <summary>
  6290. <para>OneShot node.</para>
  6291. </summary>
  6292. </member>
  6293. <member name="F:Godot.AnimationTreePlayer.NodeType.Mix">
  6294. <summary>
  6295. <para>Mix node.</para>
  6296. </summary>
  6297. </member>
  6298. <member name="F:Godot.AnimationTreePlayer.NodeType.Blend2">
  6299. <summary>
  6300. <para>Blend2 node.</para>
  6301. </summary>
  6302. </member>
  6303. <member name="F:Godot.AnimationTreePlayer.NodeType.Blend3">
  6304. <summary>
  6305. <para>Blend3 node.</para>
  6306. </summary>
  6307. </member>
  6308. <member name="F:Godot.AnimationTreePlayer.NodeType.Blend4">
  6309. <summary>
  6310. <para>Blend4 node.</para>
  6311. </summary>
  6312. </member>
  6313. <member name="F:Godot.AnimationTreePlayer.NodeType.Timescale">
  6314. <summary>
  6315. <para>TimeScale node.</para>
  6316. </summary>
  6317. </member>
  6318. <member name="F:Godot.AnimationTreePlayer.NodeType.Timeseek">
  6319. <summary>
  6320. <para>TimeSeek node.</para>
  6321. </summary>
  6322. </member>
  6323. <member name="F:Godot.AnimationTreePlayer.NodeType.Transition">
  6324. <summary>
  6325. <para>Transition node.</para>
  6326. </summary>
  6327. </member>
  6328. <member name="P:Godot.AnimationTreePlayer.PlaybackProcessMode">
  6329. <summary>
  6330. <para>The thread in which to update animations.</para>
  6331. </summary>
  6332. </member>
  6333. <member name="P:Godot.AnimationTreePlayer.MasterPlayer">
  6334. <summary>
  6335. <para>The path to the <see cref="T:Godot.AnimationPlayer"/> from which this <see cref="T:Godot.AnimationTreePlayer"/> binds animations to animation nodes.</para>
  6336. <para>Once set, <see cref="T:Godot.Animation"/> nodes can be added to the <see cref="T:Godot.AnimationTreePlayer"/>.</para>
  6337. </summary>
  6338. </member>
  6339. <member name="P:Godot.AnimationTreePlayer.BasePath">
  6340. <summary>
  6341. <para>The node from which to relatively access other nodes.</para>
  6342. <para>It accesses the bones, so it should point to the same node the <see cref="T:Godot.AnimationPlayer"/> would point its Root Node at.</para>
  6343. </summary>
  6344. </member>
  6345. <member name="P:Godot.AnimationTreePlayer.Active">
  6346. <summary>
  6347. <para>If <c>true</c>, the <see cref="T:Godot.AnimationTreePlayer"/> is able to play animations.</para>
  6348. </summary>
  6349. </member>
  6350. <member name="M:Godot.AnimationTreePlayer.AddNode(Godot.AnimationTreePlayer.NodeType,System.String)">
  6351. <summary>
  6352. <para>Adds a <c>type</c> node to the graph with name <c>id</c>.</para>
  6353. </summary>
  6354. </member>
  6355. <member name="M:Godot.AnimationTreePlayer.NodeExists(System.String)">
  6356. <summary>
  6357. <para>Check if a node exists (by name).</para>
  6358. </summary>
  6359. </member>
  6360. <member name="M:Godot.AnimationTreePlayer.NodeRename(System.String,System.String)">
  6361. <summary>
  6362. <para>Renames a node in the graph.</para>
  6363. </summary>
  6364. </member>
  6365. <member name="M:Godot.AnimationTreePlayer.NodeGetType(System.String)">
  6366. <summary>
  6367. <para>Gets the node type, will return from <see cref="T:Godot.AnimationTreePlayer.NodeType"/> enum.</para>
  6368. </summary>
  6369. </member>
  6370. <member name="M:Godot.AnimationTreePlayer.NodeGetInputCount(System.String)">
  6371. <summary>
  6372. <para>Returns the input count for a given node. Different types of nodes have different amount of inputs.</para>
  6373. </summary>
  6374. </member>
  6375. <member name="M:Godot.AnimationTreePlayer.NodeGetInputSource(System.String,System.Int32)">
  6376. <summary>
  6377. <para>Returns the input source for a given node input.</para>
  6378. </summary>
  6379. </member>
  6380. <member name="M:Godot.AnimationTreePlayer.AnimationNodeSetAnimation(System.String,Godot.Animation)">
  6381. <summary>
  6382. <para>Binds a new <see cref="T:Godot.Animation"/> from the <see cref="P:Godot.AnimationTreePlayer.MasterPlayer"/> to the <see cref="T:Godot.AnimationTreePlayer"/>'s animation node with name <c>id</c>.</para>
  6383. </summary>
  6384. </member>
  6385. <member name="M:Godot.AnimationTreePlayer.AnimationNodeGetAnimation(System.String)">
  6386. <summary>
  6387. <para>Returns the <see cref="T:Godot.AnimationPlayer"/>'s <see cref="T:Godot.Animation"/> bound to the <see cref="T:Godot.AnimationTreePlayer"/>'s animation node with name <c>id</c>.</para>
  6388. </summary>
  6389. </member>
  6390. <member name="M:Godot.AnimationTreePlayer.AnimationNodeSetMasterAnimation(System.String,System.String)">
  6391. <summary>
  6392. <para>Binds the <see cref="T:Godot.Animation"/> named <c>source</c> from <see cref="P:Godot.AnimationTreePlayer.MasterPlayer"/> to the animation node <c>id</c>. Recalculates caches.</para>
  6393. </summary>
  6394. </member>
  6395. <member name="M:Godot.AnimationTreePlayer.AnimationNodeGetMasterAnimation(System.String)">
  6396. <summary>
  6397. <para>Returns the name of the <see cref="P:Godot.AnimationTreePlayer.MasterPlayer"/>'s <see cref="T:Godot.Animation"/> bound to this animation node.</para>
  6398. </summary>
  6399. </member>
  6400. <member name="M:Godot.AnimationTreePlayer.AnimationNodeGetPosition(System.String)">
  6401. <summary>
  6402. <para>Returns the absolute playback timestamp of the animation node with name <c>id</c>.</para>
  6403. </summary>
  6404. </member>
  6405. <member name="M:Godot.AnimationTreePlayer.AnimationNodeSetFilterPath(System.String,Godot.NodePath,System.Boolean)">
  6406. <summary>
  6407. <para>If <c>enable</c> is <c>true</c>, the animation node with ID <c>id</c> turns off the track modifying the property at <c>path</c>. The modified node's children continue to animate.</para>
  6408. </summary>
  6409. </member>
  6410. <member name="M:Godot.AnimationTreePlayer.OneshotNodeSetFadeinTime(System.String,System.Single)">
  6411. <summary>
  6412. <para>Sets the fade in time of a OneShot node given its name and value in seconds.</para>
  6413. </summary>
  6414. </member>
  6415. <member name="M:Godot.AnimationTreePlayer.OneshotNodeGetFadeinTime(System.String)">
  6416. <summary>
  6417. <para>Returns the fade in time of a OneShot node given its name.</para>
  6418. </summary>
  6419. </member>
  6420. <member name="M:Godot.AnimationTreePlayer.OneshotNodeSetFadeoutTime(System.String,System.Single)">
  6421. <summary>
  6422. <para>Sets the fade out time of a OneShot node given its name and value in seconds.</para>
  6423. </summary>
  6424. </member>
  6425. <member name="M:Godot.AnimationTreePlayer.OneshotNodeGetFadeoutTime(System.String)">
  6426. <summary>
  6427. <para>Returns the fade out time of a OneShot node given its name.</para>
  6428. </summary>
  6429. </member>
  6430. <member name="M:Godot.AnimationTreePlayer.OneshotNodeSetAutorestart(System.String,System.Boolean)">
  6431. <summary>
  6432. <para>Sets the autorestart property of a OneShot node given its name and value.</para>
  6433. </summary>
  6434. </member>
  6435. <member name="M:Godot.AnimationTreePlayer.OneshotNodeSetAutorestartDelay(System.String,System.Single)">
  6436. <summary>
  6437. <para>Sets the autorestart delay of a OneShot node given its name and value in seconds.</para>
  6438. </summary>
  6439. </member>
  6440. <member name="M:Godot.AnimationTreePlayer.OneshotNodeSetAutorestartRandomDelay(System.String,System.Single)">
  6441. <summary>
  6442. <para>Sets the autorestart random delay of a OneShot node given its name and value in seconds.</para>
  6443. </summary>
  6444. </member>
  6445. <member name="M:Godot.AnimationTreePlayer.OneshotNodeHasAutorestart(System.String)">
  6446. <summary>
  6447. <para>Returns whether a OneShot node will auto restart given its name.</para>
  6448. </summary>
  6449. </member>
  6450. <member name="M:Godot.AnimationTreePlayer.OneshotNodeGetAutorestartDelay(System.String)">
  6451. <summary>
  6452. <para>Returns the autostart delay of a OneShot node given its name.</para>
  6453. </summary>
  6454. </member>
  6455. <member name="M:Godot.AnimationTreePlayer.OneshotNodeGetAutorestartRandomDelay(System.String)">
  6456. <summary>
  6457. <para>Returns the autostart random delay of a OneShot node given its name.</para>
  6458. </summary>
  6459. </member>
  6460. <member name="M:Godot.AnimationTreePlayer.OneshotNodeStart(System.String)">
  6461. <summary>
  6462. <para>Starts a OneShot node given its name.</para>
  6463. </summary>
  6464. </member>
  6465. <member name="M:Godot.AnimationTreePlayer.OneshotNodeStop(System.String)">
  6466. <summary>
  6467. <para>Stops the OneShot node with name <c>id</c>.</para>
  6468. </summary>
  6469. </member>
  6470. <member name="M:Godot.AnimationTreePlayer.OneshotNodeIsActive(System.String)">
  6471. <summary>
  6472. <para>Returns whether a OneShot node is active given its name.</para>
  6473. </summary>
  6474. </member>
  6475. <member name="M:Godot.AnimationTreePlayer.OneshotNodeSetFilterPath(System.String,Godot.NodePath,System.Boolean)">
  6476. <summary>
  6477. <para>If <c>enable</c> is <c>true</c>, the OneShot node with ID <c>id</c> turns off the track modifying the property at <c>path</c>. The modified node's children continue to animate.</para>
  6478. </summary>
  6479. </member>
  6480. <member name="M:Godot.AnimationTreePlayer.MixNodeSetAmount(System.String,System.Single)">
  6481. <summary>
  6482. <para>Sets the mix amount of a Mix node given its name and value.</para>
  6483. <para>A Mix node adds input b to input a by the amount given by ratio.</para>
  6484. </summary>
  6485. </member>
  6486. <member name="M:Godot.AnimationTreePlayer.MixNodeGetAmount(System.String)">
  6487. <summary>
  6488. <para>Returns the mix amount of a Mix node given its name.</para>
  6489. </summary>
  6490. </member>
  6491. <member name="M:Godot.AnimationTreePlayer.Blend2NodeSetAmount(System.String,System.Single)">
  6492. <summary>
  6493. <para>Sets the blend amount of a Blend2 node given its name and value.</para>
  6494. <para>A Blend2 node blends two animations (A and B) with the amount between 0 and 1.</para>
  6495. <para>At 0, output is input A. Towards 1, the influence of A gets lessened, the influence of B gets raised. At 1, output is input B.</para>
  6496. </summary>
  6497. </member>
  6498. <member name="M:Godot.AnimationTreePlayer.Blend2NodeGetAmount(System.String)">
  6499. <summary>
  6500. <para>Returns the blend amount of a Blend2 node given its name.</para>
  6501. </summary>
  6502. </member>
  6503. <member name="M:Godot.AnimationTreePlayer.Blend2NodeSetFilterPath(System.String,Godot.NodePath,System.Boolean)">
  6504. <summary>
  6505. <para>If <c>enable</c> is <c>true</c>, the Blend2 node with name <c>id</c> turns off the track modifying the property at <c>path</c>. The modified node's children continue to animate.</para>
  6506. </summary>
  6507. </member>
  6508. <member name="M:Godot.AnimationTreePlayer.Blend3NodeSetAmount(System.String,System.Single)">
  6509. <summary>
  6510. <para>Sets the blend amount of a Blend3 node given its name and value.</para>
  6511. <para>A Blend3 Node blends three animations (A, B-, B+) with the amount between -1 and 1.</para>
  6512. <para>At -1, output is input B-. From -1 to 0, the influence of B- gets lessened, the influence of A gets raised and the influence of B+ is 0. At 0, output is input A. From 0 to 1, the influence of A gets lessened, the influence of B+ gets raised and the influence of B+ is 0. At 1, output is input B+.</para>
  6513. </summary>
  6514. </member>
  6515. <member name="M:Godot.AnimationTreePlayer.Blend3NodeGetAmount(System.String)">
  6516. <summary>
  6517. <para>Returns the blend amount of a Blend3 node given its name.</para>
  6518. </summary>
  6519. </member>
  6520. <member name="M:Godot.AnimationTreePlayer.Blend4NodeSetAmount(System.String,Godot.Vector2)">
  6521. <summary>
  6522. <para>Sets the blend amount of a Blend4 node given its name and value.</para>
  6523. <para>A Blend4 Node blends two pairs of animations.</para>
  6524. <para>The two pairs are blended like Blend2 and then added together.</para>
  6525. </summary>
  6526. </member>
  6527. <member name="M:Godot.AnimationTreePlayer.Blend4NodeGetAmount(System.String)">
  6528. <summary>
  6529. <para>Returns the blend amount of a Blend4 node given its name.</para>
  6530. </summary>
  6531. </member>
  6532. <member name="M:Godot.AnimationTreePlayer.TimescaleNodeSetScale(System.String,System.Single)">
  6533. <summary>
  6534. <para>Sets the time scale of the TimeScale node with name <c>id</c> to <c>scale</c>.</para>
  6535. <para>The TimeScale node is used to speed <see cref="T:Godot.Animation"/>s up if the scale is above 1 or slow them down if it is below 1.</para>
  6536. <para>If applied after a blend or mix, affects all input animations to that blend or mix.</para>
  6537. </summary>
  6538. </member>
  6539. <member name="M:Godot.AnimationTreePlayer.TimescaleNodeGetScale(System.String)">
  6540. <summary>
  6541. <para>Returns the time scale value of the TimeScale node with name <c>id</c>.</para>
  6542. </summary>
  6543. </member>
  6544. <member name="M:Godot.AnimationTreePlayer.TimeseekNodeSeek(System.String,System.Single)">
  6545. <summary>
  6546. <para>Sets the time seek value of the TimeSeek node with name <c>id</c> to <c>seconds</c>.</para>
  6547. <para>This functions as a seek in the <see cref="T:Godot.Animation"/> or the blend or mix of <see cref="T:Godot.Animation"/>s input in it.</para>
  6548. </summary>
  6549. </member>
  6550. <member name="M:Godot.AnimationTreePlayer.TransitionNodeSetInputCount(System.String,System.Int32)">
  6551. <summary>
  6552. <para>Resizes the number of inputs available for the transition node with name <c>id</c>.</para>
  6553. </summary>
  6554. </member>
  6555. <member name="M:Godot.AnimationTreePlayer.TransitionNodeGetInputCount(System.String)">
  6556. <summary>
  6557. <para>Returns the number of inputs for the transition node with name <c>id</c>. You can add inputs by right-clicking on the transition node.</para>
  6558. </summary>
  6559. </member>
  6560. <member name="M:Godot.AnimationTreePlayer.TransitionNodeDeleteInput(System.String,System.Int32)">
  6561. <summary>
  6562. <para>Deletes the input at <c>input_idx</c> for the transition node with name <c>id</c>.</para>
  6563. </summary>
  6564. </member>
  6565. <member name="M:Godot.AnimationTreePlayer.TransitionNodeSetInputAutoAdvance(System.String,System.Int32,System.Boolean)">
  6566. <summary>
  6567. <para>The transition node with name <c>id</c> advances to its next input automatically when the input at <c>input_idx</c> completes.</para>
  6568. </summary>
  6569. </member>
  6570. <member name="M:Godot.AnimationTreePlayer.TransitionNodeHasInputAutoAdvance(System.String,System.Int32)">
  6571. <summary>
  6572. <para>Returns <c>true</c> if the input at <c>input_idx</c> on the transition node with name <c>id</c> is set to automatically advance to the next input upon completion.</para>
  6573. </summary>
  6574. </member>
  6575. <member name="M:Godot.AnimationTreePlayer.TransitionNodeSetXfadeTime(System.String,System.Single)">
  6576. <summary>
  6577. <para>The transition node with name <c>id</c> sets its cross fade time to <c>time_sec</c>.</para>
  6578. </summary>
  6579. </member>
  6580. <member name="M:Godot.AnimationTreePlayer.TransitionNodeGetXfadeTime(System.String)">
  6581. <summary>
  6582. <para>Returns the cross fade time for the transition node with name <c>id</c>.</para>
  6583. </summary>
  6584. </member>
  6585. <member name="M:Godot.AnimationTreePlayer.TransitionNodeSetCurrent(System.String,System.Int32)">
  6586. <summary>
  6587. <para>The transition node with name <c>id</c> sets its current input at <c>input_idx</c>.</para>
  6588. </summary>
  6589. </member>
  6590. <member name="M:Godot.AnimationTreePlayer.TransitionNodeGetCurrent(System.String)">
  6591. <summary>
  6592. <para>Returns the index of the currently evaluated input for the transition node with name <c>id</c>.</para>
  6593. </summary>
  6594. </member>
  6595. <member name="M:Godot.AnimationTreePlayer.NodeSetPosition(System.String,Godot.Vector2)">
  6596. <summary>
  6597. <para>Sets the position of a node in the graph given its name and position.</para>
  6598. </summary>
  6599. </member>
  6600. <member name="M:Godot.AnimationTreePlayer.NodeGetPosition(System.String)">
  6601. <summary>
  6602. <para>Returns position of a node in the graph given its name.</para>
  6603. </summary>
  6604. </member>
  6605. <member name="M:Godot.AnimationTreePlayer.RemoveNode(System.String)">
  6606. <summary>
  6607. <para>Removes the animation node with name <c>id</c>.</para>
  6608. </summary>
  6609. </member>
  6610. <member name="M:Godot.AnimationTreePlayer.ConnectNodes(System.String,System.String,System.Int32)">
  6611. <summary>
  6612. <para>Connects node <c>id</c> to <c>dst_id</c> at the specified input slot.</para>
  6613. </summary>
  6614. </member>
  6615. <member name="M:Godot.AnimationTreePlayer.AreNodesConnected(System.String,System.String,System.Int32)">
  6616. <summary>
  6617. <para>Returns whether node <c>id</c> and <c>dst_id</c> are connected at the specified slot.</para>
  6618. </summary>
  6619. </member>
  6620. <member name="M:Godot.AnimationTreePlayer.DisconnectNodes(System.String,System.Int32)">
  6621. <summary>
  6622. <para>Disconnects nodes connected to <c>id</c> at the specified input slot.</para>
  6623. </summary>
  6624. </member>
  6625. <member name="M:Godot.AnimationTreePlayer.GetNodeList">
  6626. <summary>
  6627. <para>Returns a <see cref="T:System.String"/> containing the name of all nodes.</para>
  6628. </summary>
  6629. </member>
  6630. <member name="M:Godot.AnimationTreePlayer.Advance(System.Single)">
  6631. <summary>
  6632. <para>Shifts position in the animation timeline. <c>delta</c> is the time in seconds to shift. Events between the current frame and <c>delta</c> are handled.</para>
  6633. </summary>
  6634. </member>
  6635. <member name="M:Godot.AnimationTreePlayer.Reset">
  6636. <summary>
  6637. <para>Resets this <see cref="T:Godot.AnimationTreePlayer"/>.</para>
  6638. </summary>
  6639. </member>
  6640. <member name="M:Godot.AnimationTreePlayer.RecomputeCaches">
  6641. <summary>
  6642. <para>Manually recalculates the cache of track information generated from animation nodes. Needed when external sources modify the animation nodes' state.</para>
  6643. </summary>
  6644. </member>
  6645. <member name="T:Godot.Area">
  6646. <summary>
  6647. <para>3D area that detects <see cref="T:Godot.CollisionObject"/> nodes overlapping, entering, or exiting. Can also alter or override local physics parameters (gravity, damping).</para>
  6648. </summary>
  6649. </member>
  6650. <member name="F:Godot.Area.SpaceOverrideEnum.Disabled">
  6651. <summary>
  6652. <para>This area does not affect gravity/damping.</para>
  6653. </summary>
  6654. </member>
  6655. <member name="F:Godot.Area.SpaceOverrideEnum.Combine">
  6656. <summary>
  6657. <para>This area adds its gravity/damping values to whatever has been calculated so far (in <see cref="P:Godot.Area.Priority"/> order).</para>
  6658. </summary>
  6659. </member>
  6660. <member name="F:Godot.Area.SpaceOverrideEnum.CombineReplace">
  6661. <summary>
  6662. <para>This area adds its gravity/damping values to whatever has been calculated so far (in <see cref="P:Godot.Area.Priority"/> order), ignoring any lower priority areas.</para>
  6663. </summary>
  6664. </member>
  6665. <member name="F:Godot.Area.SpaceOverrideEnum.Replace">
  6666. <summary>
  6667. <para>This area replaces any gravity/damping, even the defaults, ignoring any lower priority areas.</para>
  6668. </summary>
  6669. </member>
  6670. <member name="F:Godot.Area.SpaceOverrideEnum.ReplaceCombine">
  6671. <summary>
  6672. <para>This area replaces any gravity/damping calculated so far (in <see cref="P:Godot.Area.Priority"/> order), but keeps calculating the rest of the areas.</para>
  6673. </summary>
  6674. </member>
  6675. <member name="P:Godot.Area.SpaceOverride">
  6676. <summary>
  6677. <para>Override mode for gravity and damping calculations within this area. See <see cref="T:Godot.Area.SpaceOverrideEnum"/> for possible values.</para>
  6678. </summary>
  6679. </member>
  6680. <member name="P:Godot.Area.GravityPoint">
  6681. <summary>
  6682. <para>If <c>true</c>, gravity is calculated from a point (set via <see cref="P:Godot.Area.GravityVec"/>). See also <see cref="P:Godot.Area.SpaceOverride"/>.</para>
  6683. </summary>
  6684. </member>
  6685. <member name="P:Godot.Area.GravityDistanceScale">
  6686. <summary>
  6687. <para>The falloff factor for point gravity. The greater the value, the faster gravity decreases with distance.</para>
  6688. </summary>
  6689. </member>
  6690. <member name="P:Godot.Area.GravityVec">
  6691. <summary>
  6692. <para>The area's gravity vector (not normalized). If gravity is a point (see <see cref="P:Godot.Area.GravityPoint"/>), this will be the point of attraction.</para>
  6693. </summary>
  6694. </member>
  6695. <member name="P:Godot.Area.Gravity">
  6696. <summary>
  6697. <para>The area's gravity intensity (ranges from -1024 to 1024). This value multiplies the gravity vector. This is useful to alter the force of gravity without altering its direction.</para>
  6698. </summary>
  6699. </member>
  6700. <member name="P:Godot.Area.LinearDamp">
  6701. <summary>
  6702. <para>The rate at which objects stop moving in this area. Represents the linear velocity lost per second. Values range from <c>0</c> (no damping) to <c>1</c> (full damping).</para>
  6703. </summary>
  6704. </member>
  6705. <member name="P:Godot.Area.AngularDamp">
  6706. <summary>
  6707. <para>The rate at which objects stop spinning in this area. Represents the angular velocity lost per second. Values range from <c>0</c> (no damping) to <c>1</c> (full damping).</para>
  6708. </summary>
  6709. </member>
  6710. <member name="P:Godot.Area.Priority">
  6711. <summary>
  6712. <para>The area's priority. Higher priority areas are processed first.</para>
  6713. </summary>
  6714. </member>
  6715. <member name="P:Godot.Area.Monitoring">
  6716. <summary>
  6717. <para>If <c>true</c>, the area detects bodies or areas entering and exiting it.</para>
  6718. </summary>
  6719. </member>
  6720. <member name="P:Godot.Area.Monitorable">
  6721. <summary>
  6722. <para>If <c>true</c>, other monitoring areas can detect this area.</para>
  6723. </summary>
  6724. </member>
  6725. <member name="P:Godot.Area.CollisionLayer">
  6726. <summary>
  6727. <para>The area's physics layer(s). Collidable objects can exist in any of 32 different layers. A contact is detected if object A is in any of the layers that object B scans, or object B is in any layers that object A scans. See also <see cref="P:Godot.Area.CollisionMask"/>.</para>
  6728. </summary>
  6729. </member>
  6730. <member name="P:Godot.Area.CollisionMask">
  6731. <summary>
  6732. <para>The physics layers this area scans to determine collision detection.</para>
  6733. </summary>
  6734. </member>
  6735. <member name="P:Godot.Area.AudioBusOverride">
  6736. <summary>
  6737. <para>If <c>true</c>, the area's audio bus overrides the default audio bus.</para>
  6738. </summary>
  6739. </member>
  6740. <member name="P:Godot.Area.AudioBusName">
  6741. <summary>
  6742. <para>The name of the area's audio bus.</para>
  6743. </summary>
  6744. </member>
  6745. <member name="P:Godot.Area.ReverbBusEnable">
  6746. <summary>
  6747. <para>If <c>true</c>, the area applies reverb to its associated audio.</para>
  6748. </summary>
  6749. </member>
  6750. <member name="P:Godot.Area.ReverbBusName">
  6751. <summary>
  6752. <para>The reverb bus name to use for this area's associated audio.</para>
  6753. </summary>
  6754. </member>
  6755. <member name="P:Godot.Area.ReverbBusAmount">
  6756. <summary>
  6757. <para>The degree to which this area applies reverb to its associated audio. Ranges from <c>0</c> to <c>1</c> with <c>0.1</c> precision.</para>
  6758. </summary>
  6759. </member>
  6760. <member name="P:Godot.Area.ReverbBusUniformity">
  6761. <summary>
  6762. <para>The degree to which this area's reverb is a uniform effect. Ranges from <c>0</c> to <c>1</c> with <c>0.1</c> precision.</para>
  6763. </summary>
  6764. </member>
  6765. <member name="M:Godot.Area.SetCollisionMaskBit(System.Int32,System.Boolean)">
  6766. <summary>
  6767. <para>Set/clear individual bits on the collision mask. This simplifies editing which <see cref="T:Godot.Area"/> layers this <see cref="T:Godot.Area"/> scans.</para>
  6768. </summary>
  6769. </member>
  6770. <member name="M:Godot.Area.GetCollisionMaskBit(System.Int32)">
  6771. <summary>
  6772. <para>Returns an individual bit on the collision mask.</para>
  6773. </summary>
  6774. </member>
  6775. <member name="M:Godot.Area.SetCollisionLayerBit(System.Int32,System.Boolean)">
  6776. <summary>
  6777. <para>Set/clear individual bits on the layer mask. This simplifies editing this <see cref="T:Godot.Area"/>'s layers.</para>
  6778. </summary>
  6779. </member>
  6780. <member name="M:Godot.Area.GetCollisionLayerBit(System.Int32)">
  6781. <summary>
  6782. <para>Returns an individual bit on the layer mask.</para>
  6783. </summary>
  6784. </member>
  6785. <member name="M:Godot.Area.GetOverlappingBodies">
  6786. <summary>
  6787. <para>Returns a list of intersecting <see cref="T:Godot.PhysicsBody"/>s. For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead.</para>
  6788. </summary>
  6789. </member>
  6790. <member name="M:Godot.Area.GetOverlappingAreas">
  6791. <summary>
  6792. <para>Returns a list of intersecting <see cref="T:Godot.Area"/>s. For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead.</para>
  6793. </summary>
  6794. </member>
  6795. <member name="M:Godot.Area.OverlapsBody(Godot.Node)">
  6796. <summary>
  6797. <para>If <c>true</c>, the given physics body overlaps the Area.</para>
  6798. <para>Note: The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead.</para>
  6799. <para>The <c>body</c> argument can either be a <see cref="T:Godot.PhysicsBody"/> or a <see cref="T:Godot.GridMap"/> instance (while GridMaps are not physics body themselves, they register their tiles with collision shapes as a virtual physics body).</para>
  6800. </summary>
  6801. </member>
  6802. <member name="M:Godot.Area.OverlapsArea(Godot.Node)">
  6803. <summary>
  6804. <para>If <c>true</c>, the given area overlaps the Area.</para>
  6805. <para>Note: The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead.</para>
  6806. </summary>
  6807. </member>
  6808. <member name="T:Godot.Area2D">
  6809. <summary>
  6810. <para>2D area that detects <see cref="T:Godot.CollisionObject2D"/> nodes overlapping, entering, or exiting. Can also alter or override local physics parameters (gravity, damping).</para>
  6811. </summary>
  6812. </member>
  6813. <member name="F:Godot.Area2D.SpaceOverrideEnum.Disabled">
  6814. <summary>
  6815. <para>This area does not affect gravity/damping.</para>
  6816. </summary>
  6817. </member>
  6818. <member name="F:Godot.Area2D.SpaceOverrideEnum.Combine">
  6819. <summary>
  6820. <para>This area adds its gravity/damping values to whatever has been calculated so far (in <see cref="P:Godot.Area2D.Priority"/> order).</para>
  6821. </summary>
  6822. </member>
  6823. <member name="F:Godot.Area2D.SpaceOverrideEnum.CombineReplace">
  6824. <summary>
  6825. <para>This area adds its gravity/damping values to whatever has been calculated so far (in <see cref="P:Godot.Area2D.Priority"/> order), ignoring any lower priority areas.</para>
  6826. </summary>
  6827. </member>
  6828. <member name="F:Godot.Area2D.SpaceOverrideEnum.Replace">
  6829. <summary>
  6830. <para>This area replaces any gravity/damping, even the defaults, ignoring any lower priority areas.</para>
  6831. </summary>
  6832. </member>
  6833. <member name="F:Godot.Area2D.SpaceOverrideEnum.ReplaceCombine">
  6834. <summary>
  6835. <para>This area replaces any gravity/damping calculated so far (in <see cref="P:Godot.Area2D.Priority"/> order), but keeps calculating the rest of the areas.</para>
  6836. </summary>
  6837. </member>
  6838. <member name="P:Godot.Area2D.SpaceOverride">
  6839. <summary>
  6840. <para>Override mode for gravity and damping calculations within this area. See <see cref="T:Godot.Area2D.SpaceOverrideEnum"/> for possible values.</para>
  6841. </summary>
  6842. </member>
  6843. <member name="P:Godot.Area2D.GravityPoint">
  6844. <summary>
  6845. <para>If <c>true</c>, gravity is calculated from a point (set via <see cref="P:Godot.Area2D.GravityVec"/>). See also <see cref="P:Godot.Area2D.SpaceOverride"/>.</para>
  6846. </summary>
  6847. </member>
  6848. <member name="P:Godot.Area2D.GravityDistanceScale">
  6849. <summary>
  6850. <para>The falloff factor for point gravity. The greater the value, the faster gravity decreases with distance.</para>
  6851. </summary>
  6852. </member>
  6853. <member name="P:Godot.Area2D.GravityVec">
  6854. <summary>
  6855. <para>The area's gravity vector (not normalized). If gravity is a point (see <see cref="P:Godot.Area2D.GravityPoint"/>), this will be the point of attraction.</para>
  6856. </summary>
  6857. </member>
  6858. <member name="P:Godot.Area2D.Gravity">
  6859. <summary>
  6860. <para>The area's gravity intensity (ranges from -1024 to 1024). This value multiplies the gravity vector. This is useful to alter the force of gravity without altering its direction.</para>
  6861. </summary>
  6862. </member>
  6863. <member name="P:Godot.Area2D.LinearDamp">
  6864. <summary>
  6865. <para>The rate at which objects stop moving in this area. Represents the linear velocity lost per second. Values range from <c>0</c> (no damping) to <c>1</c> (full damping).</para>
  6866. </summary>
  6867. </member>
  6868. <member name="P:Godot.Area2D.AngularDamp">
  6869. <summary>
  6870. <para>The rate at which objects stop spinning in this area. Represents the angular velocity lost per second. Values range from <c>0</c> (no damping) to <c>1</c> (full damping).</para>
  6871. </summary>
  6872. </member>
  6873. <member name="P:Godot.Area2D.Priority">
  6874. <summary>
  6875. <para>The area's priority. Higher priority areas are processed first.</para>
  6876. </summary>
  6877. </member>
  6878. <member name="P:Godot.Area2D.Monitoring">
  6879. <summary>
  6880. <para>If <c>true</c>, the area detects bodies or areas entering and exiting it.</para>
  6881. </summary>
  6882. </member>
  6883. <member name="P:Godot.Area2D.Monitorable">
  6884. <summary>
  6885. <para>If <c>true</c>, other monitoring areas can detect this area.</para>
  6886. </summary>
  6887. </member>
  6888. <member name="P:Godot.Area2D.CollisionLayer">
  6889. <summary>
  6890. <para>The area's physics layer(s). Collidable objects can exist in any of 32 different layers. A contact is detected if object A is in any of the layers that object B scans, or object B is in any layers that object A scans. See also <see cref="P:Godot.Area2D.CollisionMask"/>.</para>
  6891. </summary>
  6892. </member>
  6893. <member name="P:Godot.Area2D.CollisionMask">
  6894. <summary>
  6895. <para>The physics layers this area scans to determine collision detection.</para>
  6896. </summary>
  6897. </member>
  6898. <member name="P:Godot.Area2D.AudioBusOverride">
  6899. <summary>
  6900. <para>If <c>true</c>, the area's audio bus overrides the default audio bus.</para>
  6901. </summary>
  6902. </member>
  6903. <member name="P:Godot.Area2D.AudioBusName">
  6904. <summary>
  6905. <para>The name of the area's audio bus.</para>
  6906. </summary>
  6907. </member>
  6908. <member name="M:Godot.Area2D.SetCollisionMaskBit(System.Int32,System.Boolean)">
  6909. <summary>
  6910. <para>Set/clear individual bits on the collision mask. This makes selecting the areas scanned easier.</para>
  6911. </summary>
  6912. </member>
  6913. <member name="M:Godot.Area2D.GetCollisionMaskBit(System.Int32)">
  6914. <summary>
  6915. <para>Returns an individual bit on the collision mask. Describes whether this area will collide with others on the given layer.</para>
  6916. </summary>
  6917. </member>
  6918. <member name="M:Godot.Area2D.SetCollisionLayerBit(System.Int32,System.Boolean)">
  6919. <summary>
  6920. <para>Set/clear individual bits on the layer mask. This makes getting an area in/out of only one layer easier.</para>
  6921. </summary>
  6922. </member>
  6923. <member name="M:Godot.Area2D.GetCollisionLayerBit(System.Int32)">
  6924. <summary>
  6925. <para>Returns an individual bit on the layer mask. Describes whether other areas will collide with this one on the given layer.</para>
  6926. </summary>
  6927. </member>
  6928. <member name="M:Godot.Area2D.GetOverlappingBodies">
  6929. <summary>
  6930. <para>Returns a list of intersecting <see cref="T:Godot.PhysicsBody2D"/>s. For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead.</para>
  6931. </summary>
  6932. </member>
  6933. <member name="M:Godot.Area2D.GetOverlappingAreas">
  6934. <summary>
  6935. <para>Returns a list of intersecting <see cref="T:Godot.Area2D"/>s. For performance reasons (collisions are all processed at the same time) this list is modified once during the physics step, not immediately after objects are moved. Consider using signals instead.</para>
  6936. </summary>
  6937. </member>
  6938. <member name="M:Godot.Area2D.OverlapsBody(Godot.Node)">
  6939. <summary>
  6940. <para>If <c>true</c>, the given physics body overlaps the Area2D.</para>
  6941. <para>Note: The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead.</para>
  6942. <para>The <c>body</c> argument can either be a <see cref="T:Godot.PhysicsBody2D"/> or a <see cref="T:Godot.TileMap"/> instance (while TileMaps are not physics body themselves, they register their tiles with collision shapes as a virtual physics body).</para>
  6943. </summary>
  6944. </member>
  6945. <member name="M:Godot.Area2D.OverlapsArea(Godot.Node)">
  6946. <summary>
  6947. <para>If <c>true</c>, the given area overlaps the Area2D.</para>
  6948. <para>Note: The result of this test is not immediate after moving objects. For performance, list of overlaps is updated once per frame and before the physics step. Consider using signals instead.</para>
  6949. </summary>
  6950. </member>
  6951. <member name="T:Godot.ArrayMesh">
  6952. <summary>
  6953. <para>The <see cref="T:Godot.ArrayMesh"/> is used to construct a <see cref="T:Godot.Mesh"/> by specifying the attributes as arrays.</para>
  6954. <para>The most basic example is the creation of a single triangle:</para>
  6955. <para><code>
  6956. var vertices = PoolVector3Array()
  6957. vertices.push_back(Vector3(0, 1, 0))
  6958. vertices.push_back(Vector3(1, 0, 0))
  6959. vertices.push_back(Vector3(0, 0, 1))
  6960. # Initialize the ArrayMesh.
  6961. var arr_mesh = ArrayMesh.new()
  6962. var arrays = []
  6963. arrays.resize(ArrayMesh.ARRAY_MAX)
  6964. arrays[ArrayMesh.ARRAY_VERTEX] = vertices
  6965. # Create the Mesh.
  6966. arr_mesh.add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays)
  6967. var m = MeshInstance.new()
  6968. m.mesh = arr_mesh
  6969. </code></para>
  6970. <para>The <see cref="T:Godot.MeshInstance"/> is ready to be added to the <see cref="T:Godot.SceneTree"/> to be shown.</para>
  6971. <para>See also <see cref="T:Godot.ImmediateGeometry"/>, <see cref="T:Godot.MeshDataTool"/> and <see cref="T:Godot.SurfaceTool"/> for procedural geometry generation.</para>
  6972. <para>Note: Godot uses clockwise <a href="https://learnopengl.com/Advanced-OpenGL/Face-culling">winding order</a> for front faces of triangle primitive modes.</para>
  6973. </summary>
  6974. </member>
  6975. <member name="F:Godot.ArrayMesh.NoIndexArray">
  6976. <summary>
  6977. <para>Default value used for index_array_len when no indices are present.</para>
  6978. </summary>
  6979. </member>
  6980. <member name="F:Godot.ArrayMesh.ArrayWeightsSize">
  6981. <summary>
  6982. <para>Amount of weights/bone indices per vertex (always 4).</para>
  6983. </summary>
  6984. </member>
  6985. <member name="F:Godot.ArrayMesh.ArrayFormat.Vertex">
  6986. <summary>
  6987. <para>Array format will include vertices (mandatory).</para>
  6988. </summary>
  6989. </member>
  6990. <member name="F:Godot.ArrayMesh.ArrayFormat.Normal">
  6991. <summary>
  6992. <para>Array format will include normals.</para>
  6993. </summary>
  6994. </member>
  6995. <member name="F:Godot.ArrayMesh.ArrayFormat.Tangent">
  6996. <summary>
  6997. <para>Array format will include tangents.</para>
  6998. </summary>
  6999. </member>
  7000. <member name="F:Godot.ArrayMesh.ArrayFormat.Color">
  7001. <summary>
  7002. <para>Array format will include a color array.</para>
  7003. </summary>
  7004. </member>
  7005. <member name="F:Godot.ArrayMesh.ArrayFormat.TexUv">
  7006. <summary>
  7007. <para>Array format will include UVs.</para>
  7008. </summary>
  7009. </member>
  7010. <member name="F:Godot.ArrayMesh.ArrayFormat.TexUv2">
  7011. <summary>
  7012. <para>Array format will include another set of UVs.</para>
  7013. </summary>
  7014. </member>
  7015. <member name="F:Godot.ArrayMesh.ArrayFormat.Bones">
  7016. <summary>
  7017. <para>Array format will include bone indices.</para>
  7018. </summary>
  7019. </member>
  7020. <member name="F:Godot.ArrayMesh.ArrayFormat.Weights">
  7021. <summary>
  7022. <para>Array format will include bone weights.</para>
  7023. </summary>
  7024. </member>
  7025. <member name="F:Godot.ArrayMesh.ArrayFormat.Index">
  7026. <summary>
  7027. <para>Index array will be used.</para>
  7028. </summary>
  7029. </member>
  7030. <member name="F:Godot.ArrayMesh.ArrayType.Vertex">
  7031. <summary>
  7032. <para><see cref="T:Godot.Vector3"/>, <see cref="T:Godot.Vector2"/>, or <see cref="T:Godot.Collections.Array"/> of vertex positions.</para>
  7033. </summary>
  7034. </member>
  7035. <member name="F:Godot.ArrayMesh.ArrayType.Normal">
  7036. <summary>
  7037. <para><see cref="T:Godot.Vector3"/> of vertex normals.</para>
  7038. </summary>
  7039. </member>
  7040. <member name="F:Godot.ArrayMesh.ArrayType.Tangent">
  7041. <summary>
  7042. <para><see cref="T:System.Single"/> of vertex tangents. Each element in groups of 4 floats, first 3 floats determine the tangent, and the last the binormal direction as -1 or 1.</para>
  7043. </summary>
  7044. </member>
  7045. <member name="F:Godot.ArrayMesh.ArrayType.Color">
  7046. <summary>
  7047. <para><see cref="T:Godot.Color"/> of vertex colors.</para>
  7048. </summary>
  7049. </member>
  7050. <member name="F:Godot.ArrayMesh.ArrayType.TexUv">
  7051. <summary>
  7052. <para><see cref="T:Godot.Vector2"/> for UV coordinates.</para>
  7053. </summary>
  7054. </member>
  7055. <member name="F:Godot.ArrayMesh.ArrayType.TexUv2">
  7056. <summary>
  7057. <para><see cref="T:Godot.Vector2"/> for second UV coordinates.</para>
  7058. </summary>
  7059. </member>
  7060. <member name="F:Godot.ArrayMesh.ArrayType.Bones">
  7061. <summary>
  7062. <para><see cref="T:System.Single"/> or <see cref="T:System.Int32"/> of bone indices. Each element in groups of 4 floats.</para>
  7063. </summary>
  7064. </member>
  7065. <member name="F:Godot.ArrayMesh.ArrayType.Weights">
  7066. <summary>
  7067. <para><see cref="T:System.Single"/> of bone weights. Each element in groups of 4 floats.</para>
  7068. </summary>
  7069. </member>
  7070. <member name="F:Godot.ArrayMesh.ArrayType.Index">
  7071. <summary>
  7072. <para><see cref="T:System.Int32"/> of integers used as indices referencing vertices, colors, normals, tangents, and textures. All of those arrays must have the same number of elements as the vertex array. No index can be beyond the vertex array size. When this index array is present, it puts the function into "index mode," where the index selects the *i*'th vertex, normal, tangent, color, UV, etc. This means if you want to have different normals or colors along an edge, you have to duplicate the vertices.</para>
  7073. <para>For triangles, the index array is interpreted as triples, referring to the vertices of each triangle. For lines, the index array is in pairs indicating the start and end of each line.</para>
  7074. </summary>
  7075. </member>
  7076. <member name="F:Godot.ArrayMesh.ArrayType.Max">
  7077. <summary>
  7078. <para>Represents the size of the <see cref="T:Godot.ArrayMesh.ArrayType"/> enum.</para>
  7079. </summary>
  7080. </member>
  7081. <member name="P:Godot.ArrayMesh.BlendShapeMode">
  7082. <summary>
  7083. <para>Sets the blend shape mode to one of <see cref="T:Godot.Mesh.BlendShapeMode"/>.</para>
  7084. </summary>
  7085. </member>
  7086. <member name="P:Godot.ArrayMesh.CustomAabb">
  7087. <summary>
  7088. <para>Overrides the <see cref="T:Godot.AABB"/> with one defined by user for use with frustum culling. Especially useful to avoid unexpected culling when using a shader to offset vertices.</para>
  7089. </summary>
  7090. </member>
  7091. <member name="M:Godot.ArrayMesh.AddBlendShape(System.String)">
  7092. <summary>
  7093. <para>Adds name for a blend shape that will be added with <see cref="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)"/>. Must be called before surface is added.</para>
  7094. </summary>
  7095. </member>
  7096. <member name="M:Godot.ArrayMesh.GetBlendShapeCount">
  7097. <summary>
  7098. <para>Returns the number of blend shapes that the <see cref="T:Godot.ArrayMesh"/> holds.</para>
  7099. </summary>
  7100. </member>
  7101. <member name="M:Godot.ArrayMesh.GetBlendShapeName(System.Int32)">
  7102. <summary>
  7103. <para>Returns the name of the blend shape at this index.</para>
  7104. </summary>
  7105. </member>
  7106. <member name="M:Godot.ArrayMesh.ClearBlendShapes">
  7107. <summary>
  7108. <para>Removes all blend shapes from this <see cref="T:Godot.ArrayMesh"/>.</para>
  7109. </summary>
  7110. </member>
  7111. <member name="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)">
  7112. <summary>
  7113. <para>Creates a new surface.</para>
  7114. <para>Surfaces are created to be rendered using a <c>primitive</c>, which may be any of the types defined in <see cref="T:Godot.Mesh.PrimitiveType"/>. (As a note, when using indices, it is recommended to only use points, lines or triangles.) <see cref="M:Godot.Mesh.GetSurfaceCount"/> will become the <c>surf_idx</c> for this new surface.</para>
  7115. <para>The <c>arrays</c> argument is an array of arrays. See <see cref="T:Godot.ArrayMesh.ArrayType"/> for the values used in this array. For example, <c>arrays[0]</c> is the array of vertices. That first vertex sub-array is always required; the others are optional. Adding an index array puts this function into "index mode" where the vertex and other arrays become the sources of data and the index array defines the vertex order. All sub-arrays must have the same length as the vertex array or be empty, except for if it is used.</para>
  7116. <para>Adding an index array puts this function into "index mode" where the vertex and other arrays become the sources of data, and the index array defines the order of the vertices.</para>
  7117. </summary>
  7118. <param name="blendShapes">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  7119. </member>
  7120. <member name="M:Godot.ArrayMesh.SurfaceRemove(System.Int32)">
  7121. <summary>
  7122. <para>Removes a surface at position <c>surf_idx</c>, shifting greater surfaces one <c>surf_idx</c> slot down.</para>
  7123. </summary>
  7124. </member>
  7125. <member name="M:Godot.ArrayMesh.SurfaceUpdateRegion(System.Int32,System.Int32,System.Byte[])">
  7126. <summary>
  7127. <para>Updates a specified region of mesh arrays on the GPU.</para>
  7128. <para>Warning: Only use if you know what you are doing. You can easily cause crashes by calling this function with improper arguments.</para>
  7129. </summary>
  7130. </member>
  7131. <member name="M:Godot.ArrayMesh.SurfaceGetArrayLen(System.Int32)">
  7132. <summary>
  7133. <para>Returns the length in vertices of the vertex array in the requested surface (see <see cref="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)"/>).</para>
  7134. </summary>
  7135. </member>
  7136. <member name="M:Godot.ArrayMesh.SurfaceGetArrayIndexLen(System.Int32)">
  7137. <summary>
  7138. <para>Returns the length in indices of the index array in the requested surface (see <see cref="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)"/>).</para>
  7139. </summary>
  7140. </member>
  7141. <member name="M:Godot.ArrayMesh.SurfaceGetFormat(System.Int32)">
  7142. <summary>
  7143. <para>Returns the format mask of the requested surface (see <see cref="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)"/>).</para>
  7144. </summary>
  7145. </member>
  7146. <member name="M:Godot.ArrayMesh.SurfaceGetPrimitiveType(System.Int32)">
  7147. <summary>
  7148. <para>Returns the primitive type of the requested surface (see <see cref="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)"/>).</para>
  7149. </summary>
  7150. </member>
  7151. <member name="M:Godot.ArrayMesh.SurfaceFindByName(System.String)">
  7152. <summary>
  7153. <para>Returns the index of the first surface with this name held within this <see cref="T:Godot.ArrayMesh"/>. If none are found, -1 is returned.</para>
  7154. </summary>
  7155. </member>
  7156. <member name="M:Godot.ArrayMesh.SurfaceSetName(System.Int32,System.String)">
  7157. <summary>
  7158. <para>Sets a name for a given surface.</para>
  7159. </summary>
  7160. </member>
  7161. <member name="M:Godot.ArrayMesh.SurfaceGetName(System.Int32)">
  7162. <summary>
  7163. <para>Gets the name assigned to this surface.</para>
  7164. </summary>
  7165. </member>
  7166. <member name="M:Godot.ArrayMesh.RegenNormalmaps">
  7167. <summary>
  7168. <para>Will regenerate normal maps for the <see cref="T:Godot.ArrayMesh"/>.</para>
  7169. </summary>
  7170. </member>
  7171. <member name="M:Godot.ArrayMesh.LightmapUnwrap(Godot.Transform,System.Single)">
  7172. <summary>
  7173. <para>Will perform a UV unwrap on the <see cref="T:Godot.ArrayMesh"/> to prepare the mesh for lightmapping.</para>
  7174. </summary>
  7175. </member>
  7176. <member name="T:Godot.AtlasTexture">
  7177. <summary>
  7178. <para><see cref="T:Godot.Texture"/> resource aimed at managing big textures files that pack multiple smaller textures. Consists of a <see cref="T:Godot.Texture"/>, a margin that defines the border width, and a region that defines the actual area of the AtlasTexture.</para>
  7179. </summary>
  7180. </member>
  7181. <member name="P:Godot.AtlasTexture.Atlas">
  7182. <summary>
  7183. <para>The texture that contains the atlas. Can be any <see cref="T:Godot.Texture"/> subtype.</para>
  7184. </summary>
  7185. </member>
  7186. <member name="P:Godot.AtlasTexture.Region">
  7187. <summary>
  7188. <para>The AtlasTexture's used region.</para>
  7189. </summary>
  7190. </member>
  7191. <member name="P:Godot.AtlasTexture.Margin">
  7192. <summary>
  7193. <para>The margin around the region. The <see cref="T:Godot.Rect2"/>'s <c>Rect2.size</c> parameter ("w" and "h" in the editor) resizes the texture so it fits within the margin.</para>
  7194. </summary>
  7195. </member>
  7196. <member name="P:Godot.AtlasTexture.FilterClip">
  7197. <summary>
  7198. <para>If <c>true</c>, clips the area outside of the region to avoid bleeding of the surrounding texture pixels.</para>
  7199. </summary>
  7200. </member>
  7201. <member name="T:Godot.AudioBusLayout">
  7202. <summary>
  7203. <para>Stores position, muting, solo, bypass, effects, effect position, volume, and the connections between buses. See <see cref="T:Godot.AudioServer"/> for usage.</para>
  7204. </summary>
  7205. </member>
  7206. <member name="T:Godot.AudioEffect">
  7207. <summary>
  7208. <para>Base resource for audio bus. Applies an audio effect on the bus that the resource is applied on.</para>
  7209. </summary>
  7210. </member>
  7211. <member name="T:Godot.AudioEffectAmplify">
  7212. <summary>
  7213. <para>Increases or decreases the volume being routed through the audio bus.</para>
  7214. </summary>
  7215. </member>
  7216. <member name="P:Godot.AudioEffectAmplify.VolumeDb">
  7217. <summary>
  7218. <para>Amount of amplification in decibels. Positive values make the sound louder, negative values make it quieter. Value can range from -80 to 24.</para>
  7219. </summary>
  7220. </member>
  7221. <member name="T:Godot.AudioEffectBandLimitFilter">
  7222. <summary>
  7223. <para>Limits the frequencies in a range around the <see cref="P:Godot.AudioEffectFilter.CutoffHz"/> and allows frequencies outside of this range to pass.</para>
  7224. </summary>
  7225. </member>
  7226. <member name="T:Godot.AudioEffectBandPassFilter">
  7227. <summary>
  7228. <para>Attenuates the frequencies inside of a range around the <see cref="P:Godot.AudioEffectFilter.CutoffHz"/> and cuts frequencies outside of this band.</para>
  7229. </summary>
  7230. </member>
  7231. <member name="T:Godot.AudioEffectChorus">
  7232. <summary>
  7233. <para>Adds a chorus audio effect. The effect applies a filter with voices to duplicate the audio source and manipulate it through the filter.</para>
  7234. </summary>
  7235. </member>
  7236. <member name="P:Godot.AudioEffectChorus.VoiceCount">
  7237. <summary>
  7238. <para>The amount of voices in the effect.</para>
  7239. </summary>
  7240. </member>
  7241. <member name="P:Godot.AudioEffectChorus.Dry">
  7242. <summary>
  7243. <para>The effect's raw signal.</para>
  7244. </summary>
  7245. </member>
  7246. <member name="P:Godot.AudioEffectChorus.Wet">
  7247. <summary>
  7248. <para>The effect's processed signal.</para>
  7249. </summary>
  7250. </member>
  7251. <member name="P:Godot.AudioEffectChorus.Voice__1__delayMs">
  7252. <summary>
  7253. <para>The voice's signal delay.</para>
  7254. </summary>
  7255. </member>
  7256. <member name="P:Godot.AudioEffectChorus.Voice__1__rateHz">
  7257. <summary>
  7258. <para>The voice's filter rate.</para>
  7259. </summary>
  7260. </member>
  7261. <member name="P:Godot.AudioEffectChorus.Voice__1__depthMs">
  7262. <summary>
  7263. <para>The voice filter's depth.</para>
  7264. </summary>
  7265. </member>
  7266. <member name="P:Godot.AudioEffectChorus.Voice__1__levelDb">
  7267. <summary>
  7268. <para>The voice's volume.</para>
  7269. </summary>
  7270. </member>
  7271. <member name="P:Godot.AudioEffectChorus.Voice__1__cutoffHz">
  7272. <summary>
  7273. <para>The voice's cutoff frequency.</para>
  7274. </summary>
  7275. </member>
  7276. <member name="P:Godot.AudioEffectChorus.Voice__1__pan">
  7277. <summary>
  7278. <para>The voice's pan level.</para>
  7279. </summary>
  7280. </member>
  7281. <member name="P:Godot.AudioEffectChorus.Voice__2__delayMs">
  7282. <summary>
  7283. <para>The voice's signal delay.</para>
  7284. </summary>
  7285. </member>
  7286. <member name="P:Godot.AudioEffectChorus.Voice__2__rateHz">
  7287. <summary>
  7288. <para>The voice's filter rate.</para>
  7289. </summary>
  7290. </member>
  7291. <member name="P:Godot.AudioEffectChorus.Voice__2__depthMs">
  7292. <summary>
  7293. <para>The voice filter's depth.</para>
  7294. </summary>
  7295. </member>
  7296. <member name="P:Godot.AudioEffectChorus.Voice__2__levelDb">
  7297. <summary>
  7298. <para>The voice's volume.</para>
  7299. </summary>
  7300. </member>
  7301. <member name="P:Godot.AudioEffectChorus.Voice__2__cutoffHz">
  7302. <summary>
  7303. <para>The voice's cutoff frequency.</para>
  7304. </summary>
  7305. </member>
  7306. <member name="P:Godot.AudioEffectChorus.Voice__2__pan">
  7307. <summary>
  7308. <para>The voice's pan level.</para>
  7309. </summary>
  7310. </member>
  7311. <member name="P:Godot.AudioEffectChorus.Voice__3__delayMs">
  7312. <summary>
  7313. <para>The voice's signal delay.</para>
  7314. </summary>
  7315. </member>
  7316. <member name="P:Godot.AudioEffectChorus.Voice__3__rateHz">
  7317. <summary>
  7318. <para>The voice's filter rate.</para>
  7319. </summary>
  7320. </member>
  7321. <member name="P:Godot.AudioEffectChorus.Voice__3__depthMs">
  7322. <summary>
  7323. <para>The voice filter's depth.</para>
  7324. </summary>
  7325. </member>
  7326. <member name="P:Godot.AudioEffectChorus.Voice__3__levelDb">
  7327. <summary>
  7328. <para>The voice's volume.</para>
  7329. </summary>
  7330. </member>
  7331. <member name="P:Godot.AudioEffectChorus.Voice__3__cutoffHz">
  7332. <summary>
  7333. <para>The voice's cutoff frequency.</para>
  7334. </summary>
  7335. </member>
  7336. <member name="P:Godot.AudioEffectChorus.Voice__3__pan">
  7337. <summary>
  7338. <para>The voice's pan level.</para>
  7339. </summary>
  7340. </member>
  7341. <member name="P:Godot.AudioEffectChorus.Voice__4__delayMs">
  7342. <summary>
  7343. <para>The voice's signal delay.</para>
  7344. </summary>
  7345. </member>
  7346. <member name="P:Godot.AudioEffectChorus.Voice__4__rateHz">
  7347. <summary>
  7348. <para>The voice's filter rate.</para>
  7349. </summary>
  7350. </member>
  7351. <member name="P:Godot.AudioEffectChorus.Voice__4__depthMs">
  7352. <summary>
  7353. <para>The voice filter's depth.</para>
  7354. </summary>
  7355. </member>
  7356. <member name="P:Godot.AudioEffectChorus.Voice__4__levelDb">
  7357. <summary>
  7358. <para>The voice's volume.</para>
  7359. </summary>
  7360. </member>
  7361. <member name="P:Godot.AudioEffectChorus.Voice__4__cutoffHz">
  7362. <summary>
  7363. <para>The voice's cutoff frequency.</para>
  7364. </summary>
  7365. </member>
  7366. <member name="P:Godot.AudioEffectChorus.Voice__4__pan">
  7367. <summary>
  7368. <para>The voice's pan level.</para>
  7369. </summary>
  7370. </member>
  7371. <member name="T:Godot.AudioEffectCompressor">
  7372. <summary>
  7373. <para>Dynamic range compressor reduces the level of the sound when the amplitude goes over a certain threshold in Decibels. One of the main uses of a compressor is to increase the dynamic range by clipping as little as possible (when sound goes over 0dB).</para>
  7374. <para>Compressor has many uses in the mix:</para>
  7375. <para>- In the Master bus to compress the whole output (although an <see cref="T:Godot.AudioEffectLimiter"/> is probably better).</para>
  7376. <para>- In voice channels to ensure they sound as balanced as possible.</para>
  7377. <para>- Sidechained. This can reduce the sound level sidechained with another audio bus for threshold detection. This technique is common in video game mixing to the level of music and SFX while voices are being heard.</para>
  7378. <para>- Accentuates transients by using a wider attack, making effects sound more punchy.</para>
  7379. </summary>
  7380. </member>
  7381. <member name="P:Godot.AudioEffectCompressor.Threshold">
  7382. <summary>
  7383. <para>The level above which compression is applied to the audio. Value can range from -60 to 0.</para>
  7384. </summary>
  7385. </member>
  7386. <member name="P:Godot.AudioEffectCompressor.Ratio">
  7387. <summary>
  7388. <para>Amount of compression applied to the audio once it passes the threshold level. The higher the ratio, the more the loud parts of the audio will be compressed. Value can range from 1 to 48.</para>
  7389. </summary>
  7390. </member>
  7391. <member name="P:Godot.AudioEffectCompressor.Gain">
  7392. <summary>
  7393. <para>Gain applied to the output signal.</para>
  7394. </summary>
  7395. </member>
  7396. <member name="P:Godot.AudioEffectCompressor.AttackUs">
  7397. <summary>
  7398. <para>Compressor's reaction time when the signal exceeds the threshold, in microseconds. Value can range from 20 to 2000.</para>
  7399. </summary>
  7400. </member>
  7401. <member name="P:Godot.AudioEffectCompressor.ReleaseMs">
  7402. <summary>
  7403. <para>Compressor's delay time to stop reducing the signal after the signal level falls below the threshold, in milliseconds. Value can range from 20 to 2000.</para>
  7404. </summary>
  7405. </member>
  7406. <member name="P:Godot.AudioEffectCompressor.Mix">
  7407. <summary>
  7408. <para>Balance between original signal and effect signal. Value can range from 0 (totally dry) to 1 (totally wet).</para>
  7409. </summary>
  7410. </member>
  7411. <member name="P:Godot.AudioEffectCompressor.Sidechain">
  7412. <summary>
  7413. <para>Reduce the sound level using another audio bus for threshold detection.</para>
  7414. </summary>
  7415. </member>
  7416. <member name="T:Godot.AudioEffectDelay">
  7417. <summary>
  7418. <para>Plays input signal back after a period of time. The delayed signal may be played back multiple times to create the sound of a repeating, decaying echo. Delay effects range from a subtle echo effect to a pronounced blending of previous sounds with new sounds.</para>
  7419. </summary>
  7420. </member>
  7421. <member name="P:Godot.AudioEffectDelay.Dry">
  7422. <summary>
  7423. <para>Output percent of original sound. At 0, only delayed sounds are output. Value can range from 0 to 1.</para>
  7424. </summary>
  7425. </member>
  7426. <member name="P:Godot.AudioEffectDelay.Tap1__active">
  7427. <summary>
  7428. <para>If <c>true</c>, <c>tap1</c> will be enabled.</para>
  7429. </summary>
  7430. </member>
  7431. <member name="P:Godot.AudioEffectDelay.Tap1__delayMs">
  7432. <summary>
  7433. <para><c>tap1</c> delay time in milliseconds.</para>
  7434. </summary>
  7435. </member>
  7436. <member name="P:Godot.AudioEffectDelay.Tap1__levelDb">
  7437. <summary>
  7438. <para>Sound level for <c>tap1</c>.</para>
  7439. </summary>
  7440. </member>
  7441. <member name="P:Godot.AudioEffectDelay.Tap1__pan">
  7442. <summary>
  7443. <para>Pan position for <c>tap1</c>. Value can range from -1 (fully left) to 1 (fully right).</para>
  7444. </summary>
  7445. </member>
  7446. <member name="P:Godot.AudioEffectDelay.Tap2__active">
  7447. <summary>
  7448. <para>If <c>true</c>, <c>tap2</c> will be enabled.</para>
  7449. </summary>
  7450. </member>
  7451. <member name="P:Godot.AudioEffectDelay.Tap2__delayMs">
  7452. <summary>
  7453. <para>Tap2 delay time in milliseconds.</para>
  7454. </summary>
  7455. </member>
  7456. <member name="P:Godot.AudioEffectDelay.Tap2__levelDb">
  7457. <summary>
  7458. <para>Sound level for <c>tap2</c>.</para>
  7459. </summary>
  7460. </member>
  7461. <member name="P:Godot.AudioEffectDelay.Tap2__pan">
  7462. <summary>
  7463. <para>Pan position for <c>tap2</c>. Value can range from -1 (fully left) to 1 (fully right).</para>
  7464. </summary>
  7465. </member>
  7466. <member name="P:Godot.AudioEffectDelay.Feedback__active">
  7467. <summary>
  7468. <para>If <c>true</c>, feedback is enabled.</para>
  7469. </summary>
  7470. </member>
  7471. <member name="P:Godot.AudioEffectDelay.Feedback__delayMs">
  7472. <summary>
  7473. <para>Feedback delay time in milliseconds.</para>
  7474. </summary>
  7475. </member>
  7476. <member name="P:Godot.AudioEffectDelay.Feedback__levelDb">
  7477. <summary>
  7478. <para>Sound level for <c>tap1</c>.</para>
  7479. </summary>
  7480. </member>
  7481. <member name="P:Godot.AudioEffectDelay.Feedback__lowpass">
  7482. <summary>
  7483. <para>Low-pass filter for feedback, in Hz. Frequencies below this value are filtered out of the source signal.</para>
  7484. </summary>
  7485. </member>
  7486. <member name="T:Godot.AudioEffectDistortion">
  7487. <summary>
  7488. <para>Modify the sound and make it dirty. Different types are available: clip, tan, lo-fi (bit crushing), overdrive, or waveshape.</para>
  7489. <para>By distorting the waveform the frequency content change, which will often make the sound "crunchy" or "abrasive". For games, it can simulate sound coming from some saturated device or speaker very efficiently.</para>
  7490. </summary>
  7491. </member>
  7492. <member name="F:Godot.AudioEffectDistortion.ModeEnum.Clip">
  7493. <summary>
  7494. <para>Digital distortion effect which cuts off peaks at the top and bottom of the waveform.</para>
  7495. </summary>
  7496. </member>
  7497. <member name="F:Godot.AudioEffectDistortion.ModeEnum.Lofi">
  7498. <summary>
  7499. <para>Low-resolution digital distortion effect. You can use it to emulate the sound of early digital audio devices.</para>
  7500. </summary>
  7501. </member>
  7502. <member name="F:Godot.AudioEffectDistortion.ModeEnum.Overdrive">
  7503. <summary>
  7504. <para>Emulates the warm distortion produced by a field effect transistor, which is commonly used in solid-state musical instrument amplifiers.</para>
  7505. </summary>
  7506. </member>
  7507. <member name="F:Godot.AudioEffectDistortion.ModeEnum.Waveshape">
  7508. <summary>
  7509. <para>Waveshaper distortions are used mainly by electronic musicians to achieve an extra-abrasive sound.</para>
  7510. </summary>
  7511. </member>
  7512. <member name="P:Godot.AudioEffectDistortion.Mode">
  7513. <summary>
  7514. <para>Distortion type.</para>
  7515. </summary>
  7516. </member>
  7517. <member name="P:Godot.AudioEffectDistortion.PreGain">
  7518. <summary>
  7519. <para>Increases or decreases the volume before the effect. Value can range from -60 to 60.</para>
  7520. </summary>
  7521. </member>
  7522. <member name="P:Godot.AudioEffectDistortion.KeepHfHz">
  7523. <summary>
  7524. <para>High-pass filter, in Hz. Frequencies higher than this value will not be affected by the distortion. Value can range from 1 to 20000.</para>
  7525. </summary>
  7526. </member>
  7527. <member name="P:Godot.AudioEffectDistortion.Drive">
  7528. <summary>
  7529. <para>Distortion power. Value can range from 0 to 1.</para>
  7530. </summary>
  7531. </member>
  7532. <member name="P:Godot.AudioEffectDistortion.PostGain">
  7533. <summary>
  7534. <para>Increases or decreases the volume after the effect. Value can range from -80 to 24.</para>
  7535. </summary>
  7536. </member>
  7537. <member name="T:Godot.AudioEffectEQ">
  7538. <summary>
  7539. <para>AudioEffectEQ gives you control over frequencies. Use it to compensate for existing deficiencies in audio. AudioEffectEQs are useful on the Master bus to completely master a mix and give it more character. They are also useful when a game is run on a mobile device, to adjust the mix to that kind of speakers (it can be added but disabled when headphones are plugged).</para>
  7540. </summary>
  7541. </member>
  7542. <member name="M:Godot.AudioEffectEQ.SetBandGainDb(System.Int32,System.Single)">
  7543. <summary>
  7544. <para>Sets band's gain at the specified index, in dB.</para>
  7545. </summary>
  7546. </member>
  7547. <member name="M:Godot.AudioEffectEQ.GetBandGainDb(System.Int32)">
  7548. <summary>
  7549. <para>Returns the band's gain at the specified index, in dB.</para>
  7550. </summary>
  7551. </member>
  7552. <member name="M:Godot.AudioEffectEQ.GetBandCount">
  7553. <summary>
  7554. <para>Returns the number of bands of the equalizer.</para>
  7555. </summary>
  7556. </member>
  7557. <member name="T:Godot.AudioEffectEQ10">
  7558. <summary>
  7559. <para>Frequency bands:</para>
  7560. <para>Band 1: 31 Hz</para>
  7561. <para>Band 2: 62 Hz</para>
  7562. <para>Band 3: 125 Hz</para>
  7563. <para>Band 4: 250 Hz</para>
  7564. <para>Band 5: 500 Hz</para>
  7565. <para>Band 6: 1000 Hz</para>
  7566. <para>Band 7: 2000 Hz</para>
  7567. <para>Band 8: 4000 Hz</para>
  7568. <para>Band 9: 8000 Hz</para>
  7569. <para>Band 10: 16000 Hz</para>
  7570. <para>See also <see cref="T:Godot.AudioEffectEQ"/>, <see cref="T:Godot.AudioEffectEQ6"/>, <see cref="T:Godot.AudioEffectEQ21"/>.</para>
  7571. </summary>
  7572. </member>
  7573. <member name="T:Godot.AudioEffectEQ21">
  7574. <summary>
  7575. <para>Frequency bands:</para>
  7576. <para>Band 1: 22 Hz</para>
  7577. <para>Band 2: 32 Hz</para>
  7578. <para>Band 3: 44 Hz</para>
  7579. <para>Band 4: 63 Hz</para>
  7580. <para>Band 5: 90 Hz</para>
  7581. <para>Band 6: 125 Hz</para>
  7582. <para>Band 7: 175 Hz</para>
  7583. <para>Band 8: 250 Hz</para>
  7584. <para>Band 9: 350 Hz</para>
  7585. <para>Band 10: 500 Hz</para>
  7586. <para>Band 11: 700 Hz</para>
  7587. <para>Band 12: 1000 Hz</para>
  7588. <para>Band 13: 1400 Hz</para>
  7589. <para>Band 14: 2000 Hz</para>
  7590. <para>Band 15: 2800 Hz</para>
  7591. <para>Band 16: 4000 Hz</para>
  7592. <para>Band 17: 5600 Hz</para>
  7593. <para>Band 18: 8000 Hz</para>
  7594. <para>Band 19: 11000 Hz</para>
  7595. <para>Band 20: 16000 Hz</para>
  7596. <para>Band 21: 22000 Hz</para>
  7597. <para>See also <see cref="T:Godot.AudioEffectEQ"/>, <see cref="T:Godot.AudioEffectEQ6"/>, <see cref="T:Godot.AudioEffectEQ10"/>.</para>
  7598. </summary>
  7599. </member>
  7600. <member name="T:Godot.AudioEffectEQ6">
  7601. <summary>
  7602. <para>Frequency bands:</para>
  7603. <para>Band 1: 32 Hz</para>
  7604. <para>Band 2: 100 Hz</para>
  7605. <para>Band 3: 320 Hz</para>
  7606. <para>Band 4: 1000 Hz</para>
  7607. <para>Band 5: 3200 Hz</para>
  7608. <para>Band 6: 10000 Hz</para>
  7609. <para>See also <see cref="T:Godot.AudioEffectEQ"/>, <see cref="T:Godot.AudioEffectEQ10"/>, <see cref="T:Godot.AudioEffectEQ21"/>.</para>
  7610. </summary>
  7611. </member>
  7612. <member name="T:Godot.AudioEffectFilter">
  7613. <summary>
  7614. <para>Allows frequencies other than the <see cref="P:Godot.AudioEffectFilter.CutoffHz"/> to pass.</para>
  7615. </summary>
  7616. </member>
  7617. <member name="P:Godot.AudioEffectFilter.CutoffHz">
  7618. <summary>
  7619. <para>Threshold frequency for the filter, in Hz.</para>
  7620. </summary>
  7621. </member>
  7622. <member name="P:Godot.AudioEffectFilter.Resonance">
  7623. <summary>
  7624. <para>Amount of boost in the overtones near the cutoff frequency.</para>
  7625. </summary>
  7626. </member>
  7627. <member name="P:Godot.AudioEffectFilter.Gain">
  7628. <summary>
  7629. <para>Gain amount of the frequencies after the filter.</para>
  7630. </summary>
  7631. </member>
  7632. <member name="T:Godot.AudioEffectHighPassFilter">
  7633. <summary>
  7634. <para>Cuts frequencies lower than the <see cref="P:Godot.AudioEffectFilter.CutoffHz"/> and allows higher frequencies to pass.</para>
  7635. </summary>
  7636. </member>
  7637. <member name="T:Godot.AudioEffectLimiter">
  7638. <summary>
  7639. <para>A limiter is similar to a compressor, but it's less flexible and designed to disallow sound going over a given dB threshold. Adding one in the Master bus is always recommended to reduce the effects of clipping.</para>
  7640. <para>Soft clipping starts to reduce the peaks a little below the threshold level and progressively increases its effect as the input level increases such that the threshold is never exceeded.</para>
  7641. </summary>
  7642. </member>
  7643. <member name="P:Godot.AudioEffectLimiter.CeilingDb">
  7644. <summary>
  7645. <para>The waveform's maximum allowed value, in decibels. Value can range from -20 to -0.1.</para>
  7646. </summary>
  7647. </member>
  7648. <member name="P:Godot.AudioEffectLimiter.ThresholdDb">
  7649. <summary>
  7650. <para>Threshold from which the limiter begins to be active, in decibels. Value can range from -30 to 0.</para>
  7651. </summary>
  7652. </member>
  7653. <member name="P:Godot.AudioEffectLimiter.SoftClipDb">
  7654. <summary>
  7655. <para>Applies a gain to the limited waves, in decibels. Value can range from 0 to 6.</para>
  7656. </summary>
  7657. </member>
  7658. <member name="T:Godot.AudioEffectLowPassFilter">
  7659. <summary>
  7660. <para>Cuts frequencies higher than the <see cref="P:Godot.AudioEffectFilter.CutoffHz"/> and allows lower frequencies to pass.</para>
  7661. </summary>
  7662. </member>
  7663. <member name="T:Godot.AudioEffectNotchFilter">
  7664. <summary>
  7665. <para>Attenuates frequencies in a narrow band around the <see cref="P:Godot.AudioEffectFilter.CutoffHz"/> and cuts frequencies outside of this range.</para>
  7666. </summary>
  7667. </member>
  7668. <member name="T:Godot.AudioEffectPanner">
  7669. <summary>
  7670. <para>Determines how much of an audio signal is sent to the left and right buses.</para>
  7671. </summary>
  7672. </member>
  7673. <member name="P:Godot.AudioEffectPanner.Pan">
  7674. <summary>
  7675. <para>Pan position. Value can range from -1 (fully left) to 1 (fully right).</para>
  7676. </summary>
  7677. </member>
  7678. <member name="T:Godot.AudioEffectPhaser">
  7679. <summary>
  7680. <para>Combines phase-shifted signals with the original signal. The movement of the phase-shifted signals is controlled using a low-frequency oscillator.</para>
  7681. </summary>
  7682. </member>
  7683. <member name="P:Godot.AudioEffectPhaser.RangeMinHz">
  7684. <summary>
  7685. <para>Determines the minimum frequency affected by the LFO modulations, in Hz. Value can range from 10 to 10000.</para>
  7686. </summary>
  7687. </member>
  7688. <member name="P:Godot.AudioEffectPhaser.RangeMaxHz">
  7689. <summary>
  7690. <para>Determines the maximum frequency affected by the LFO modulations, in Hz. Value can range from 10 to 10000.</para>
  7691. </summary>
  7692. </member>
  7693. <member name="P:Godot.AudioEffectPhaser.RateHz">
  7694. <summary>
  7695. <para>Adjusts the rate in Hz at which the effect sweeps up and down across the frequency range.</para>
  7696. </summary>
  7697. </member>
  7698. <member name="P:Godot.AudioEffectPhaser.Feedback">
  7699. <summary>
  7700. <para>Output percent of modified sound. Value can range from 0.1 to 0.9.</para>
  7701. </summary>
  7702. </member>
  7703. <member name="P:Godot.AudioEffectPhaser.Depth">
  7704. <summary>
  7705. <para>Governs how high the filter frequencies sweep. Low value will primarily affect bass frequencies. High value can sweep high into the treble. Value can range from 0.1 to 4.</para>
  7706. </summary>
  7707. </member>
  7708. <member name="T:Godot.AudioEffectPitchShift">
  7709. <summary>
  7710. <para>Allows modulation of pitch independently of tempo. All frequencies can be increased/decreased with minimal effect on transients.</para>
  7711. </summary>
  7712. </member>
  7713. <member name="F:Godot.AudioEffectPitchShift.FFT_Size.Max">
  7714. <summary>
  7715. <para>Represents the size of the <see cref="T:Godot.AudioEffectPitchShift.FFT_Size"/> enum.</para>
  7716. </summary>
  7717. </member>
  7718. <member name="P:Godot.AudioEffectPitchShift.PitchScale">
  7719. <summary>
  7720. <para>Pitch value. Can range from 0 (-1 octave) to 16 (+16 octaves).</para>
  7721. </summary>
  7722. </member>
  7723. <member name="T:Godot.AudioEffectRecord">
  7724. <summary>
  7725. <para>Allows the user to record sound from a microphone. It sets and gets the format in which the audio file will be recorded (8-bit, 16-bit, or compressed). It checks whether or not the recording is active, and if it is, records the sound. It then returns the recorded sample.</para>
  7726. </summary>
  7727. </member>
  7728. <member name="P:Godot.AudioEffectRecord.Format">
  7729. <summary>
  7730. <para>Specifies the format in which the sample will be recorded. See <see cref="T:Godot.AudioStreamSample.FormatEnum"/> for available formats.</para>
  7731. </summary>
  7732. </member>
  7733. <member name="M:Godot.AudioEffectRecord.SetRecordingActive(System.Boolean)">
  7734. <summary>
  7735. <para>If <c>true</c>, the sound will be recorded. Note that restarting the recording will remove the previously recorded sample.</para>
  7736. </summary>
  7737. </member>
  7738. <member name="M:Godot.AudioEffectRecord.IsRecordingActive">
  7739. <summary>
  7740. <para>Returns whether the recording is active or not.</para>
  7741. </summary>
  7742. </member>
  7743. <member name="M:Godot.AudioEffectRecord.GetRecording">
  7744. <summary>
  7745. <para>Returns the recorded sample.</para>
  7746. </summary>
  7747. </member>
  7748. <member name="T:Godot.AudioEffectReverb">
  7749. <summary>
  7750. <para>Simulates rooms of different sizes. Its parameters can be adjusted to simulate the sound of a specific room.</para>
  7751. </summary>
  7752. </member>
  7753. <member name="P:Godot.AudioEffectReverb.PredelayMsec">
  7754. <summary>
  7755. <para>Time between the original signal and the early reflections of the reverb signal, in milliseconds.</para>
  7756. </summary>
  7757. </member>
  7758. <member name="P:Godot.AudioEffectReverb.PredelayFeedback">
  7759. <summary>
  7760. <para>Output percent of predelay. Value can range from 0 to 1.</para>
  7761. </summary>
  7762. </member>
  7763. <member name="P:Godot.AudioEffectReverb.RoomSize">
  7764. <summary>
  7765. <para>Dimensions of simulated room. Bigger means more echoes. Value can range from 0 to 1.</para>
  7766. </summary>
  7767. </member>
  7768. <member name="P:Godot.AudioEffectReverb.Damping">
  7769. <summary>
  7770. <para>Defines how reflective the imaginary room's walls are. Value can range from 0 to 1.</para>
  7771. </summary>
  7772. </member>
  7773. <member name="P:Godot.AudioEffectReverb.Spread">
  7774. <summary>
  7775. <para>Widens or narrows the stereo image of the reverb tail. 1 means fully widens. Value can range from 0 to 1.</para>
  7776. </summary>
  7777. </member>
  7778. <member name="P:Godot.AudioEffectReverb.Hipass">
  7779. <summary>
  7780. <para>High-pass filter passes signals with a frequency higher than a certain cutoff frequency and attenuates signals with frequencies lower than the cutoff frequency. Value can range from 0 to 1.</para>
  7781. </summary>
  7782. </member>
  7783. <member name="P:Godot.AudioEffectReverb.Dry">
  7784. <summary>
  7785. <para>Output percent of original sound. At 0, only modified sound is outputted. Value can range from 0 to 1.</para>
  7786. </summary>
  7787. </member>
  7788. <member name="P:Godot.AudioEffectReverb.Wet">
  7789. <summary>
  7790. <para>Output percent of modified sound. At 0, only original sound is outputted. Value can range from 0 to 1.</para>
  7791. </summary>
  7792. </member>
  7793. <member name="F:Godot.AudioEffectSpectrumAnalyzer.FFT_Size.Max">
  7794. <summary>
  7795. <para>Represents the size of the <see cref="T:Godot.AudioEffectSpectrumAnalyzer.FFT_Size"/> enum.</para>
  7796. </summary>
  7797. </member>
  7798. <member name="F:Godot.AudioEffectSpectrumAnalyzerInstance.MagnitudeMode.Average">
  7799. <summary>
  7800. <para>Use the average value as magnitude.</para>
  7801. </summary>
  7802. </member>
  7803. <member name="F:Godot.AudioEffectSpectrumAnalyzerInstance.MagnitudeMode.Max">
  7804. <summary>
  7805. <para>Use the maximum value as magnitude.</para>
  7806. </summary>
  7807. </member>
  7808. <member name="T:Godot.AudioServer">
  7809. <summary>
  7810. <para><see cref="T:Godot.AudioServer"/> is a low-level server interface for audio access. It is in charge of creating sample data (playable audio) as well as its playback via a voice interface.</para>
  7811. </summary>
  7812. </member>
  7813. <member name="F:Godot.AudioServer.SpeakerMode.ModeStereo">
  7814. <summary>
  7815. <para>Two or fewer speakers were detected.</para>
  7816. </summary>
  7817. </member>
  7818. <member name="F:Godot.AudioServer.SpeakerMode.Surround31">
  7819. <summary>
  7820. <para>A 3.1 channel surround setup was detected.</para>
  7821. </summary>
  7822. </member>
  7823. <member name="F:Godot.AudioServer.SpeakerMode.Surround51">
  7824. <summary>
  7825. <para>A 5.1 channel surround setup was detected.</para>
  7826. </summary>
  7827. </member>
  7828. <member name="F:Godot.AudioServer.SpeakerMode.Surround71">
  7829. <summary>
  7830. <para>A 7.1 channel surround setup was detected.</para>
  7831. </summary>
  7832. </member>
  7833. <member name="P:Godot.AudioServer.BusCount">
  7834. <summary>
  7835. <para>Number of available audio buses.</para>
  7836. </summary>
  7837. </member>
  7838. <member name="P:Godot.AudioServer.Device">
  7839. <summary>
  7840. <para>Name of the current device for audio output (see <see cref="M:Godot.AudioServer.GetDeviceList"/>).</para>
  7841. </summary>
  7842. </member>
  7843. <member name="P:Godot.AudioServer.GlobalRateScale">
  7844. <summary>
  7845. <para>Scales the rate at which audio is played (i.e. setting it to <c>0.5</c> will make the audio be played twice as fast).</para>
  7846. </summary>
  7847. </member>
  7848. <member name="M:Godot.AudioServer.RemoveBus(System.Int32)">
  7849. <summary>
  7850. <para>Removes the bus at index <c>index</c>.</para>
  7851. </summary>
  7852. </member>
  7853. <member name="M:Godot.AudioServer.AddBus(System.Int32)">
  7854. <summary>
  7855. <para>Adds a bus at <c>at_position</c>.</para>
  7856. </summary>
  7857. </member>
  7858. <member name="M:Godot.AudioServer.MoveBus(System.Int32,System.Int32)">
  7859. <summary>
  7860. <para>Moves the bus from index <c>index</c> to index <c>to_index</c>.</para>
  7861. </summary>
  7862. </member>
  7863. <member name="M:Godot.AudioServer.SetBusName(System.Int32,System.String)">
  7864. <summary>
  7865. <para>Sets the name of the bus at index <c>bus_idx</c> to <c>name</c>.</para>
  7866. </summary>
  7867. </member>
  7868. <member name="M:Godot.AudioServer.GetBusName(System.Int32)">
  7869. <summary>
  7870. <para>Returns the name of the bus with the index <c>bus_idx</c>.</para>
  7871. </summary>
  7872. </member>
  7873. <member name="M:Godot.AudioServer.GetBusIndex(System.String)">
  7874. <summary>
  7875. <para>Returns the index of the bus with the name <c>bus_name</c>.</para>
  7876. </summary>
  7877. </member>
  7878. <member name="M:Godot.AudioServer.GetBusChannels(System.Int32)">
  7879. <summary>
  7880. <para>Returns the amount of channels of the bus at index <c>bus_idx</c>.</para>
  7881. </summary>
  7882. </member>
  7883. <member name="M:Godot.AudioServer.SetBusVolumeDb(System.Int32,System.Single)">
  7884. <summary>
  7885. <para>Sets the volume of the bus at index <c>bus_idx</c> to <c>volume_db</c>.</para>
  7886. </summary>
  7887. </member>
  7888. <member name="M:Godot.AudioServer.GetBusVolumeDb(System.Int32)">
  7889. <summary>
  7890. <para>Returns the volume of the bus at index <c>bus_idx</c> in dB.</para>
  7891. </summary>
  7892. </member>
  7893. <member name="M:Godot.AudioServer.SetBusSend(System.Int32,System.String)">
  7894. <summary>
  7895. <para>Connects the output of the bus at <c>bus_idx</c> to the bus named <c>send</c>.</para>
  7896. </summary>
  7897. </member>
  7898. <member name="M:Godot.AudioServer.GetBusSend(System.Int32)">
  7899. <summary>
  7900. <para>Returns the name of the bus that the bus at index <c>bus_idx</c> sends to.</para>
  7901. </summary>
  7902. </member>
  7903. <member name="M:Godot.AudioServer.SetBusSolo(System.Int32,System.Boolean)">
  7904. <summary>
  7905. <para>If <c>true</c>, the bus at index <c>bus_idx</c> is in solo mode.</para>
  7906. </summary>
  7907. </member>
  7908. <member name="M:Godot.AudioServer.IsBusSolo(System.Int32)">
  7909. <summary>
  7910. <para>If <c>true</c>, the bus at index <c>bus_idx</c> is in solo mode.</para>
  7911. </summary>
  7912. </member>
  7913. <member name="M:Godot.AudioServer.SetBusMute(System.Int32,System.Boolean)">
  7914. <summary>
  7915. <para>If <c>true</c>, the bus at index <c>bus_idx</c> is muted.</para>
  7916. </summary>
  7917. </member>
  7918. <member name="M:Godot.AudioServer.IsBusMute(System.Int32)">
  7919. <summary>
  7920. <para>If <c>true</c>, the bus at index <c>bus_idx</c> is muted.</para>
  7921. </summary>
  7922. </member>
  7923. <member name="M:Godot.AudioServer.SetBusBypassEffects(System.Int32,System.Boolean)">
  7924. <summary>
  7925. <para>If <c>true</c>, the bus at index <c>bus_idx</c> is bypassing effects.</para>
  7926. </summary>
  7927. </member>
  7928. <member name="M:Godot.AudioServer.IsBusBypassingEffects(System.Int32)">
  7929. <summary>
  7930. <para>If <c>true</c>, the bus at index <c>bus_idx</c> is bypassing effects.</para>
  7931. </summary>
  7932. </member>
  7933. <member name="M:Godot.AudioServer.AddBusEffect(System.Int32,Godot.AudioEffect,System.Int32)">
  7934. <summary>
  7935. <para>Adds an <see cref="T:Godot.AudioEffect"/> effect to the bus <c>bus_idx</c> at <c>at_position</c>.</para>
  7936. </summary>
  7937. </member>
  7938. <member name="M:Godot.AudioServer.RemoveBusEffect(System.Int32,System.Int32)">
  7939. <summary>
  7940. <para>Removes the effect at index <c>effect_idx</c> from the bus at index <c>bus_idx</c>.</para>
  7941. </summary>
  7942. </member>
  7943. <member name="M:Godot.AudioServer.GetBusEffectCount(System.Int32)">
  7944. <summary>
  7945. <para>Returns the number of effects on the bus at <c>bus_idx</c>.</para>
  7946. </summary>
  7947. </member>
  7948. <member name="M:Godot.AudioServer.GetBusEffect(System.Int32,System.Int32)">
  7949. <summary>
  7950. <para>Returns the <see cref="T:Godot.AudioEffect"/> at position <c>effect_idx</c> in bus <c>bus_idx</c>.</para>
  7951. </summary>
  7952. </member>
  7953. <member name="M:Godot.AudioServer.GetBusEffectInstance(System.Int32,System.Int32,System.Int32)">
  7954. <summary>
  7955. <para>Returns the <see cref="T:Godot.AudioEffectInstance"/> assigned to the given bus and effect indices (and optionally channel).</para>
  7956. </summary>
  7957. </member>
  7958. <member name="M:Godot.AudioServer.SwapBusEffects(System.Int32,System.Int32,System.Int32)">
  7959. <summary>
  7960. <para>Swaps the position of two effects in bus <c>bus_idx</c>.</para>
  7961. </summary>
  7962. </member>
  7963. <member name="M:Godot.AudioServer.SetBusEffectEnabled(System.Int32,System.Int32,System.Boolean)">
  7964. <summary>
  7965. <para>If <c>true</c>, the effect at index <c>effect_idx</c> on the bus at index <c>bus_idx</c> is enabled.</para>
  7966. </summary>
  7967. </member>
  7968. <member name="M:Godot.AudioServer.IsBusEffectEnabled(System.Int32,System.Int32)">
  7969. <summary>
  7970. <para>If <c>true</c>, the effect at index <c>effect_idx</c> on the bus at index <c>bus_idx</c> is enabled.</para>
  7971. </summary>
  7972. </member>
  7973. <member name="M:Godot.AudioServer.GetBusPeakVolumeLeftDb(System.Int32,System.Int32)">
  7974. <summary>
  7975. <para>Returns the peak volume of the left speaker at bus index <c>bus_idx</c> and channel index <c>channel</c>.</para>
  7976. </summary>
  7977. </member>
  7978. <member name="M:Godot.AudioServer.GetBusPeakVolumeRightDb(System.Int32,System.Int32)">
  7979. <summary>
  7980. <para>Returns the peak volume of the right speaker at bus index <c>bus_idx</c> and channel index <c>channel</c>.</para>
  7981. </summary>
  7982. </member>
  7983. <member name="M:Godot.AudioServer.Lock">
  7984. <summary>
  7985. <para>Locks the audio driver's main loop.</para>
  7986. <para>Note: Remember to unlock it afterwards.</para>
  7987. </summary>
  7988. </member>
  7989. <member name="M:Godot.AudioServer.Unlock">
  7990. <summary>
  7991. <para>Unlocks the audio driver's main loop. (After locking it, you should always unlock it.)</para>
  7992. </summary>
  7993. </member>
  7994. <member name="M:Godot.AudioServer.GetSpeakerMode">
  7995. <summary>
  7996. <para>Returns the speaker configuration.</para>
  7997. </summary>
  7998. </member>
  7999. <member name="M:Godot.AudioServer.GetMixRate">
  8000. <summary>
  8001. <para>Returns the sample rate at the output of the <see cref="T:Godot.AudioServer"/>.</para>
  8002. </summary>
  8003. </member>
  8004. <member name="M:Godot.AudioServer.GetDeviceList">
  8005. <summary>
  8006. <para>Returns the names of all audio devices detected on the system.</para>
  8007. </summary>
  8008. </member>
  8009. <member name="M:Godot.AudioServer.GetTimeToNextMix">
  8010. <summary>
  8011. <para>Returns the relative time until the next mix occurs.</para>
  8012. </summary>
  8013. </member>
  8014. <member name="M:Godot.AudioServer.GetTimeSinceLastMix">
  8015. <summary>
  8016. <para>Returns the relative time since the last mix occurred.</para>
  8017. </summary>
  8018. </member>
  8019. <member name="M:Godot.AudioServer.GetOutputLatency">
  8020. <summary>
  8021. <para>Returns the audio driver's output latency.</para>
  8022. </summary>
  8023. </member>
  8024. <member name="M:Godot.AudioServer.CaptureGetDeviceList">
  8025. <summary>
  8026. <para>Returns the names of all audio input devices detected on the system.</para>
  8027. </summary>
  8028. </member>
  8029. <member name="M:Godot.AudioServer.CaptureGetDevice">
  8030. <summary>
  8031. <para>Name of the current device for audio input (see <see cref="M:Godot.AudioServer.CaptureGetDeviceList"/>).</para>
  8032. </summary>
  8033. </member>
  8034. <member name="M:Godot.AudioServer.CaptureSetDevice(System.String)">
  8035. <summary>
  8036. <para>Sets which audio input device is used for audio capture.</para>
  8037. </summary>
  8038. </member>
  8039. <member name="M:Godot.AudioServer.SetBusLayout(Godot.AudioBusLayout)">
  8040. <summary>
  8041. <para>Overwrites the currently used <see cref="T:Godot.AudioBusLayout"/>.</para>
  8042. </summary>
  8043. </member>
  8044. <member name="M:Godot.AudioServer.GenerateBusLayout">
  8045. <summary>
  8046. <para>Generates an <see cref="T:Godot.AudioBusLayout"/> using the available buses and effects.</para>
  8047. </summary>
  8048. </member>
  8049. <member name="T:Godot.AudioStream">
  8050. <summary>
  8051. <para>Base class for audio streams. Audio streams are used for sound effects and music playback, and support WAV (via <see cref="T:Godot.AudioStreamSample"/>) and OGG (via <see cref="T:Godot.AudioStreamOGGVorbis"/>) file formats.</para>
  8052. </summary>
  8053. </member>
  8054. <member name="M:Godot.AudioStream.GetLength">
  8055. <summary>
  8056. <para>Returns the length of the audio stream in seconds.</para>
  8057. </summary>
  8058. </member>
  8059. <member name="T:Godot.AudioStreamOGGVorbis">
  8060. <summary>
  8061. <para>OGG Vorbis audio stream driver.</para>
  8062. </summary>
  8063. </member>
  8064. <member name="P:Godot.AudioStreamOGGVorbis.Data">
  8065. <summary>
  8066. <para>Contains the audio data in bytes.</para>
  8067. </summary>
  8068. </member>
  8069. <member name="P:Godot.AudioStreamOGGVorbis.Loop">
  8070. <summary>
  8071. <para>If <c>true</c>, the stream will automatically loop when it reaches the end.</para>
  8072. </summary>
  8073. </member>
  8074. <member name="P:Godot.AudioStreamOGGVorbis.LoopOffset">
  8075. <summary>
  8076. <para>Time in seconds at which the stream starts after being looped.</para>
  8077. </summary>
  8078. </member>
  8079. <member name="T:Godot.AudioStreamPlayback">
  8080. <summary>
  8081. <para>Can play, loop, pause a scroll through audio. See <see cref="T:Godot.AudioStream"/> and <see cref="T:Godot.AudioStreamOGGVorbis"/> for usage.</para>
  8082. </summary>
  8083. </member>
  8084. <member name="T:Godot.AudioStreamPlayer">
  8085. <summary>
  8086. <para>Plays an audio stream non-positionally.</para>
  8087. </summary>
  8088. </member>
  8089. <member name="F:Godot.AudioStreamPlayer.MixTargetEnum.Stereo">
  8090. <summary>
  8091. <para>The audio will be played only on the first channel.</para>
  8092. </summary>
  8093. </member>
  8094. <member name="F:Godot.AudioStreamPlayer.MixTargetEnum.Surround">
  8095. <summary>
  8096. <para>The audio will be played on all surround channels.</para>
  8097. </summary>
  8098. </member>
  8099. <member name="F:Godot.AudioStreamPlayer.MixTargetEnum.Center">
  8100. <summary>
  8101. <para>The audio will be played on the second channel, which is usually the center.</para>
  8102. </summary>
  8103. </member>
  8104. <member name="P:Godot.AudioStreamPlayer.Stream">
  8105. <summary>
  8106. <para>The <see cref="T:Godot.AudioStream"/> object to be played.</para>
  8107. </summary>
  8108. </member>
  8109. <member name="P:Godot.AudioStreamPlayer.VolumeDb">
  8110. <summary>
  8111. <para>Volume of sound, in dB.</para>
  8112. </summary>
  8113. </member>
  8114. <member name="P:Godot.AudioStreamPlayer.PitchScale">
  8115. <summary>
  8116. <para>The pitch and the tempo of the audio, as a multiplier of the audio sample's sample rate.</para>
  8117. </summary>
  8118. </member>
  8119. <member name="P:Godot.AudioStreamPlayer.Playing">
  8120. <summary>
  8121. <para>If <c>true</c>, audio is playing.</para>
  8122. </summary>
  8123. </member>
  8124. <member name="P:Godot.AudioStreamPlayer.Autoplay">
  8125. <summary>
  8126. <para>If <c>true</c>, audio plays when added to scene tree.</para>
  8127. </summary>
  8128. </member>
  8129. <member name="P:Godot.AudioStreamPlayer.StreamPaused">
  8130. <summary>
  8131. <para>If <c>true</c>, the playback is paused. You can resume it by setting <c>stream_paused</c> to <c>false</c>.</para>
  8132. </summary>
  8133. </member>
  8134. <member name="P:Godot.AudioStreamPlayer.MixTarget">
  8135. <summary>
  8136. <para>If the audio configuration has more than two speakers, this sets the target channels. See <see cref="T:Godot.AudioStreamPlayer.MixTargetEnum"/> constants.</para>
  8137. </summary>
  8138. </member>
  8139. <member name="P:Godot.AudioStreamPlayer.Bus">
  8140. <summary>
  8141. <para>Bus on which this audio is playing.</para>
  8142. </summary>
  8143. </member>
  8144. <member name="M:Godot.AudioStreamPlayer.Play(System.Single)">
  8145. <summary>
  8146. <para>Plays the audio from the given <c>from_position</c>, in seconds.</para>
  8147. </summary>
  8148. </member>
  8149. <member name="M:Godot.AudioStreamPlayer.Seek(System.Single)">
  8150. <summary>
  8151. <para>Sets the position from which audio will be played, in seconds.</para>
  8152. </summary>
  8153. </member>
  8154. <member name="M:Godot.AudioStreamPlayer.Stop">
  8155. <summary>
  8156. <para>Stops the audio.</para>
  8157. </summary>
  8158. </member>
  8159. <member name="M:Godot.AudioStreamPlayer.GetPlaybackPosition">
  8160. <summary>
  8161. <para>Returns the position in the <see cref="T:Godot.AudioStream"/> in seconds.</para>
  8162. </summary>
  8163. </member>
  8164. <member name="M:Godot.AudioStreamPlayer.GetStreamPlayback">
  8165. <summary>
  8166. <para>Returns the <see cref="T:Godot.AudioStreamPlayback"/> object associated with this <see cref="T:Godot.AudioStreamPlayer"/>.</para>
  8167. </summary>
  8168. </member>
  8169. <member name="T:Godot.AudioStreamPlayer2D">
  8170. <summary>
  8171. <para>Plays audio that dampens with distance from screen center.</para>
  8172. </summary>
  8173. </member>
  8174. <member name="P:Godot.AudioStreamPlayer2D.Stream">
  8175. <summary>
  8176. <para>The <see cref="T:Godot.AudioStream"/> object to be played.</para>
  8177. </summary>
  8178. </member>
  8179. <member name="P:Godot.AudioStreamPlayer2D.VolumeDb">
  8180. <summary>
  8181. <para>Base volume without dampening.</para>
  8182. </summary>
  8183. </member>
  8184. <member name="P:Godot.AudioStreamPlayer2D.PitchScale">
  8185. <summary>
  8186. <para>The pitch and the tempo of the audio, as a multiplier of the audio sample's sample rate.</para>
  8187. </summary>
  8188. </member>
  8189. <member name="P:Godot.AudioStreamPlayer2D.Playing">
  8190. <summary>
  8191. <para>If <c>true</c>, audio is playing.</para>
  8192. </summary>
  8193. </member>
  8194. <member name="P:Godot.AudioStreamPlayer2D.Autoplay">
  8195. <summary>
  8196. <para>If <c>true</c>, audio plays when added to scene tree.</para>
  8197. </summary>
  8198. </member>
  8199. <member name="P:Godot.AudioStreamPlayer2D.StreamPaused">
  8200. <summary>
  8201. <para>If <c>true</c>, the playback is paused. You can resume it by setting <c>stream_paused</c> to <c>false</c>.</para>
  8202. </summary>
  8203. </member>
  8204. <member name="P:Godot.AudioStreamPlayer2D.MaxDistance">
  8205. <summary>
  8206. <para>Maximum distance from which audio is still hearable.</para>
  8207. </summary>
  8208. </member>
  8209. <member name="P:Godot.AudioStreamPlayer2D.Attenuation">
  8210. <summary>
  8211. <para>Dampens audio over distance with this as an exponent.</para>
  8212. </summary>
  8213. </member>
  8214. <member name="P:Godot.AudioStreamPlayer2D.Bus">
  8215. <summary>
  8216. <para>Bus on which this audio is playing.</para>
  8217. </summary>
  8218. </member>
  8219. <member name="P:Godot.AudioStreamPlayer2D.AreaMask">
  8220. <summary>
  8221. <para>Areas in which this sound plays.</para>
  8222. </summary>
  8223. </member>
  8224. <member name="M:Godot.AudioStreamPlayer2D.Play(System.Single)">
  8225. <summary>
  8226. <para>Plays the audio from the given position <c>from_position</c>, in seconds.</para>
  8227. </summary>
  8228. </member>
  8229. <member name="M:Godot.AudioStreamPlayer2D.Seek(System.Single)">
  8230. <summary>
  8231. <para>Sets the position from which audio will be played, in seconds.</para>
  8232. </summary>
  8233. </member>
  8234. <member name="M:Godot.AudioStreamPlayer2D.Stop">
  8235. <summary>
  8236. <para>Stops the audio.</para>
  8237. </summary>
  8238. </member>
  8239. <member name="M:Godot.AudioStreamPlayer2D.GetPlaybackPosition">
  8240. <summary>
  8241. <para>Returns the position in the <see cref="T:Godot.AudioStream"/>.</para>
  8242. </summary>
  8243. </member>
  8244. <member name="M:Godot.AudioStreamPlayer2D.GetStreamPlayback">
  8245. <summary>
  8246. <para>Returns the <see cref="T:Godot.AudioStreamPlayback"/> object associated with this <see cref="T:Godot.AudioStreamPlayer2D"/>.</para>
  8247. </summary>
  8248. </member>
  8249. <member name="T:Godot.AudioStreamPlayer3D">
  8250. <summary>
  8251. <para>Plays a sound effect with directed sound effects, dampens with distance if needed, generates effect of hearable position in space.</para>
  8252. </summary>
  8253. </member>
  8254. <member name="F:Godot.AudioStreamPlayer3D.AttenuationModelEnum.InverseDistance">
  8255. <summary>
  8256. <para>Linear dampening of loudness according to distance.</para>
  8257. </summary>
  8258. </member>
  8259. <member name="F:Godot.AudioStreamPlayer3D.AttenuationModelEnum.InverseSquareDistance">
  8260. <summary>
  8261. <para>Squared dampening of loudness according to distance.</para>
  8262. </summary>
  8263. </member>
  8264. <member name="F:Godot.AudioStreamPlayer3D.AttenuationModelEnum.Logarithmic">
  8265. <summary>
  8266. <para>Logarithmic dampening of loudness according to distance.</para>
  8267. </summary>
  8268. </member>
  8269. <member name="F:Godot.AudioStreamPlayer3D.AttenuationModelEnum.Disabled">
  8270. <summary>
  8271. <para>No dampening of loudness according to distance.</para>
  8272. </summary>
  8273. </member>
  8274. <member name="F:Godot.AudioStreamPlayer3D.OutOfRangeModeEnum.Mix">
  8275. <summary>
  8276. <para>Mix this audio in, even when it's out of range.</para>
  8277. </summary>
  8278. </member>
  8279. <member name="F:Godot.AudioStreamPlayer3D.OutOfRangeModeEnum.Pause">
  8280. <summary>
  8281. <para>Pause this audio when it gets out of range.</para>
  8282. </summary>
  8283. </member>
  8284. <member name="F:Godot.AudioStreamPlayer3D.DopplerTrackingEnum.Disabled">
  8285. <summary>
  8286. <para>Disables doppler tracking.</para>
  8287. </summary>
  8288. </member>
  8289. <member name="F:Godot.AudioStreamPlayer3D.DopplerTrackingEnum.IdleStep">
  8290. <summary>
  8291. <para>Executes doppler tracking in idle step.</para>
  8292. </summary>
  8293. </member>
  8294. <member name="F:Godot.AudioStreamPlayer3D.DopplerTrackingEnum.PhysicsStep">
  8295. <summary>
  8296. <para>Executes doppler tracking in physics step.</para>
  8297. </summary>
  8298. </member>
  8299. <member name="P:Godot.AudioStreamPlayer3D.Stream">
  8300. <summary>
  8301. <para>The <see cref="T:Godot.AudioStream"/> object to be played.</para>
  8302. </summary>
  8303. </member>
  8304. <member name="P:Godot.AudioStreamPlayer3D.AttenuationModel">
  8305. <summary>
  8306. <para>Decides if audio should get quieter with distance linearly, quadratically, logarithmically, or not be affected by distance, effectively disabling attenuation.</para>
  8307. </summary>
  8308. </member>
  8309. <member name="P:Godot.AudioStreamPlayer3D.UnitDb">
  8310. <summary>
  8311. <para>Base sound level unaffected by dampening, in dB.</para>
  8312. </summary>
  8313. </member>
  8314. <member name="P:Godot.AudioStreamPlayer3D.UnitSize">
  8315. <summary>
  8316. <para>Factor for the attenuation effect.</para>
  8317. </summary>
  8318. </member>
  8319. <member name="P:Godot.AudioStreamPlayer3D.MaxDb">
  8320. <summary>
  8321. <para>Sets the absolute maximum of the soundlevel, in dB.</para>
  8322. </summary>
  8323. </member>
  8324. <member name="P:Godot.AudioStreamPlayer3D.PitchScale">
  8325. <summary>
  8326. <para>The pitch and the tempo of the audio, as a multiplier of the audio sample's sample rate.</para>
  8327. </summary>
  8328. </member>
  8329. <member name="P:Godot.AudioStreamPlayer3D.Playing">
  8330. <summary>
  8331. <para>If <c>true</c>, audio is playing.</para>
  8332. </summary>
  8333. </member>
  8334. <member name="P:Godot.AudioStreamPlayer3D.Autoplay">
  8335. <summary>
  8336. <para>If <c>true</c>, audio plays when added to scene tree.</para>
  8337. </summary>
  8338. </member>
  8339. <member name="P:Godot.AudioStreamPlayer3D.StreamPaused">
  8340. <summary>
  8341. <para>If <c>true</c>, the playback is paused. You can resume it by setting <c>stream_paused</c> to <c>false</c>.</para>
  8342. </summary>
  8343. </member>
  8344. <member name="P:Godot.AudioStreamPlayer3D.MaxDistance">
  8345. <summary>
  8346. <para>Sets the distance from which the <see cref="P:Godot.AudioStreamPlayer3D.OutOfRangeMode"/> takes effect. Has no effect if set to 0.</para>
  8347. </summary>
  8348. </member>
  8349. <member name="P:Godot.AudioStreamPlayer3D.OutOfRangeMode">
  8350. <summary>
  8351. <para>Decides if audio should pause when source is outside of <see cref="P:Godot.AudioStreamPlayer3D.MaxDistance"/> range.</para>
  8352. </summary>
  8353. </member>
  8354. <member name="P:Godot.AudioStreamPlayer3D.Bus">
  8355. <summary>
  8356. <para>Bus on which this audio is playing.</para>
  8357. </summary>
  8358. </member>
  8359. <member name="P:Godot.AudioStreamPlayer3D.AreaMask">
  8360. <summary>
  8361. <para>Areas in which this sound plays.</para>
  8362. </summary>
  8363. </member>
  8364. <member name="P:Godot.AudioStreamPlayer3D.EmissionAngleEnabled">
  8365. <summary>
  8366. <para>If <c>true</c>, the audio should be dampened according to the direction of the sound.</para>
  8367. </summary>
  8368. </member>
  8369. <member name="P:Godot.AudioStreamPlayer3D.EmissionAngleDegrees">
  8370. <summary>
  8371. <para>The angle in which the audio reaches cameras undampened.</para>
  8372. </summary>
  8373. </member>
  8374. <member name="P:Godot.AudioStreamPlayer3D.EmissionAngleFilterAttenuationDb">
  8375. <summary>
  8376. <para>Dampens audio if camera is outside of <see cref="P:Godot.AudioStreamPlayer3D.EmissionAngleDegrees"/> and <see cref="P:Godot.AudioStreamPlayer3D.EmissionAngleEnabled"/> is set by this factor, in dB.</para>
  8377. </summary>
  8378. </member>
  8379. <member name="P:Godot.AudioStreamPlayer3D.AttenuationFilterCutoffHz">
  8380. <summary>
  8381. <para>Dampens audio above this frequency, in Hz.</para>
  8382. </summary>
  8383. </member>
  8384. <member name="P:Godot.AudioStreamPlayer3D.AttenuationFilterDb">
  8385. <summary>
  8386. <para>Amount how much the filter affects the loudness, in dB.</para>
  8387. </summary>
  8388. </member>
  8389. <member name="P:Godot.AudioStreamPlayer3D.DopplerTracking">
  8390. <summary>
  8391. <para>Decides in which step the Doppler effect should be calculated.</para>
  8392. </summary>
  8393. </member>
  8394. <member name="M:Godot.AudioStreamPlayer3D.Play(System.Single)">
  8395. <summary>
  8396. <para>Plays the audio from the given position <c>from_position</c>, in seconds.</para>
  8397. </summary>
  8398. </member>
  8399. <member name="M:Godot.AudioStreamPlayer3D.Seek(System.Single)">
  8400. <summary>
  8401. <para>Sets the position from which audio will be played, in seconds.</para>
  8402. </summary>
  8403. </member>
  8404. <member name="M:Godot.AudioStreamPlayer3D.Stop">
  8405. <summary>
  8406. <para>Stops the audio.</para>
  8407. </summary>
  8408. </member>
  8409. <member name="M:Godot.AudioStreamPlayer3D.GetPlaybackPosition">
  8410. <summary>
  8411. <para>Returns the position in the <see cref="T:Godot.AudioStream"/>.</para>
  8412. </summary>
  8413. </member>
  8414. <member name="M:Godot.AudioStreamPlayer3D.GetStreamPlayback">
  8415. <summary>
  8416. <para>Returns the <see cref="T:Godot.AudioStreamPlayback"/> object associated with this <see cref="T:Godot.AudioStreamPlayer3D"/>.</para>
  8417. </summary>
  8418. </member>
  8419. <member name="T:Godot.AudioStreamRandomPitch">
  8420. <summary>
  8421. <para>Randomly varies pitch on each start.</para>
  8422. </summary>
  8423. </member>
  8424. <member name="P:Godot.AudioStreamRandomPitch.AudioStream">
  8425. <summary>
  8426. <para>The current <see cref="T:Godot.AudioStream"/>.</para>
  8427. </summary>
  8428. </member>
  8429. <member name="P:Godot.AudioStreamRandomPitch.RandomPitch">
  8430. <summary>
  8431. <para>The intensity of random pitch variation.</para>
  8432. </summary>
  8433. </member>
  8434. <member name="T:Godot.AudioStreamSample">
  8435. <summary>
  8436. <para>AudioStreamSample stores sound samples loaded from WAV files. To play the stored sound, use an <see cref="T:Godot.AudioStreamPlayer"/> (for non-positional audio) or <see cref="T:Godot.AudioStreamPlayer2D"/>/<see cref="T:Godot.AudioStreamPlayer3D"/> (for positional audio). The sound can be looped.</para>
  8437. <para>This class can also be used to store dynamically-generated PCM audio data.</para>
  8438. </summary>
  8439. </member>
  8440. <member name="F:Godot.AudioStreamSample.LoopModeEnum.Disabled">
  8441. <summary>
  8442. <para>Audio does not loop.</para>
  8443. </summary>
  8444. </member>
  8445. <member name="F:Godot.AudioStreamSample.LoopModeEnum.Forward">
  8446. <summary>
  8447. <para>Audio loops the data between <see cref="P:Godot.AudioStreamSample.LoopBegin"/> and <see cref="P:Godot.AudioStreamSample.LoopEnd"/>, playing forward only.</para>
  8448. </summary>
  8449. </member>
  8450. <member name="F:Godot.AudioStreamSample.LoopModeEnum.PingPong">
  8451. <summary>
  8452. <para>Audio loops the data between <see cref="P:Godot.AudioStreamSample.LoopBegin"/> and <see cref="P:Godot.AudioStreamSample.LoopEnd"/>, playing back and forth.</para>
  8453. </summary>
  8454. </member>
  8455. <member name="F:Godot.AudioStreamSample.LoopModeEnum.Backward">
  8456. <summary>
  8457. <para>Audio loops the data between <see cref="P:Godot.AudioStreamSample.LoopBegin"/> and <see cref="P:Godot.AudioStreamSample.LoopEnd"/>, playing backward only.</para>
  8458. </summary>
  8459. </member>
  8460. <member name="F:Godot.AudioStreamSample.FormatEnum.Format8Bits">
  8461. <summary>
  8462. <para>8-bit audio codec.</para>
  8463. </summary>
  8464. </member>
  8465. <member name="F:Godot.AudioStreamSample.FormatEnum.Format16Bits">
  8466. <summary>
  8467. <para>16-bit audio codec.</para>
  8468. </summary>
  8469. </member>
  8470. <member name="F:Godot.AudioStreamSample.FormatEnum.ImaAdpcm">
  8471. <summary>
  8472. <para>Audio is compressed using IMA ADPCM.</para>
  8473. </summary>
  8474. </member>
  8475. <member name="P:Godot.AudioStreamSample.Data">
  8476. <summary>
  8477. <para>Contains the audio data in bytes.</para>
  8478. <para>Note: This property expects signed PCM8 data. To convert unsigned PCM8 to signed PCM8, subtract 128 from each byte.</para>
  8479. </summary>
  8480. </member>
  8481. <member name="P:Godot.AudioStreamSample.Format">
  8482. <summary>
  8483. <para>Audio format. See <see cref="T:Godot.AudioStreamSample.FormatEnum"/> constants for values.</para>
  8484. </summary>
  8485. </member>
  8486. <member name="P:Godot.AudioStreamSample.LoopMode">
  8487. <summary>
  8488. <para>The loop mode. This information will be imported automatically from the WAV file if present. See <see cref="T:Godot.AudioStreamSample.LoopModeEnum"/> constants for values.</para>
  8489. </summary>
  8490. </member>
  8491. <member name="P:Godot.AudioStreamSample.LoopBegin">
  8492. <summary>
  8493. <para>The loop start point (in number of samples, relative to the beginning of the sample). This information will be imported automatically from the WAV file if present.</para>
  8494. </summary>
  8495. </member>
  8496. <member name="P:Godot.AudioStreamSample.LoopEnd">
  8497. <summary>
  8498. <para>The loop end point (in number of samples, relative to the beginning of the sample). This information will be imported automatically from the WAV file if present.</para>
  8499. </summary>
  8500. </member>
  8501. <member name="P:Godot.AudioStreamSample.MixRate">
  8502. <summary>
  8503. <para>The sample rate for mixing this audio.</para>
  8504. </summary>
  8505. </member>
  8506. <member name="P:Godot.AudioStreamSample.Stereo">
  8507. <summary>
  8508. <para>If <c>true</c>, audio is stereo.</para>
  8509. </summary>
  8510. </member>
  8511. <member name="M:Godot.AudioStreamSample.SaveToWav(System.String)">
  8512. <summary>
  8513. <para>Saves the AudioStreamSample as a WAV file to <c>path</c>. Samples with IMA ADPCM format can't be saved.</para>
  8514. <para>Note: A <c>.wav</c> extension is automatically appended to <c>path</c> if it is missing.</para>
  8515. </summary>
  8516. </member>
  8517. <member name="T:Godot.BackBufferCopy">
  8518. <summary>
  8519. <para>Node for back-buffering the currently-displayed screen. The region defined in the BackBufferCopy node is bufferized with the content of the screen it covers, or the entire screen according to the copy mode set. Use the <c>texture(SCREEN_TEXTURE, ...)</c> function in your shader scripts to access the buffer.</para>
  8520. <para>Note: Since this node inherits from <see cref="T:Godot.Node2D"/> (and not <see cref="T:Godot.Control"/>), anchors and margins won't apply to child <see cref="T:Godot.Control"/>-derived nodes. This can be problematic when resizing the window. To avoid this, add <see cref="T:Godot.Control"/>-derived nodes as siblings to the BackBufferCopy node instead of adding them as children.</para>
  8521. </summary>
  8522. </member>
  8523. <member name="F:Godot.BackBufferCopy.CopyModeEnum.Disabled">
  8524. <summary>
  8525. <para>Disables the buffering mode. This means the BackBufferCopy node will directly use the portion of screen it covers.</para>
  8526. </summary>
  8527. </member>
  8528. <member name="F:Godot.BackBufferCopy.CopyModeEnum.Rect">
  8529. <summary>
  8530. <para>BackBufferCopy buffers a rectangular region.</para>
  8531. </summary>
  8532. </member>
  8533. <member name="F:Godot.BackBufferCopy.CopyModeEnum.Viewport">
  8534. <summary>
  8535. <para>BackBufferCopy buffers the entire screen.</para>
  8536. </summary>
  8537. </member>
  8538. <member name="P:Godot.BackBufferCopy.CopyMode">
  8539. <summary>
  8540. <para>Buffer mode. See <see cref="T:Godot.BackBufferCopy.CopyModeEnum"/> constants.</para>
  8541. </summary>
  8542. </member>
  8543. <member name="P:Godot.BackBufferCopy.Rect">
  8544. <summary>
  8545. <para>The area covered by the BackBufferCopy. Only used if <see cref="P:Godot.BackBufferCopy.CopyMode"/> is .</para>
  8546. </summary>
  8547. </member>
  8548. <member name="T:Godot.BakedLightmap">
  8549. <summary>
  8550. <para>Baked lightmaps are an alternative workflow for adding indirect (or baked) lighting to a scene. Unlike the <see cref="T:Godot.GIProbe"/> approach, baked lightmaps work fine on low-end PCs and mobile devices as they consume almost no resources in run-time.</para>
  8551. <para>Note: This node has many known bugs and will be <a href="https://godotengine.org/article/godot-40-will-get-new-modernized-lightmapper">rewritten for Godot 4.0</a>. See <a href="https://github.com/godotengine/godot/issues/30929">GitHub issue #30929</a>.</para>
  8552. </summary>
  8553. </member>
  8554. <member name="F:Godot.BakedLightmap.BakeQualityEnum.Low">
  8555. <summary>
  8556. <para>The lowest bake quality mode. Fastest to calculate.</para>
  8557. </summary>
  8558. </member>
  8559. <member name="F:Godot.BakedLightmap.BakeQualityEnum.Medium">
  8560. <summary>
  8561. <para>The default bake quality mode.</para>
  8562. </summary>
  8563. </member>
  8564. <member name="F:Godot.BakedLightmap.BakeQualityEnum.High">
  8565. <summary>
  8566. <para>The highest bake quality mode. Takes longer to calculate.</para>
  8567. </summary>
  8568. </member>
  8569. <member name="F:Godot.BakedLightmap.BakeError.Ok">
  8570. <summary>
  8571. <para>Baking was successful.</para>
  8572. </summary>
  8573. </member>
  8574. <member name="F:Godot.BakedLightmap.BakeError.NoSavePath">
  8575. <summary>
  8576. <para>Returns if no viable save path is found. This can happen where an <see cref="P:Godot.BakedLightmap.ImagePath"/> is not specified or when the save location is invalid.</para>
  8577. </summary>
  8578. </member>
  8579. <member name="F:Godot.BakedLightmap.BakeError.NoMeshes">
  8580. <summary>
  8581. <para>Currently unused.</para>
  8582. </summary>
  8583. </member>
  8584. <member name="F:Godot.BakedLightmap.BakeError.CantCreateImage">
  8585. <summary>
  8586. <para>Returns when the baker cannot save per-mesh textures to file.</para>
  8587. </summary>
  8588. </member>
  8589. <member name="F:Godot.BakedLightmap.BakeError.UserAborted">
  8590. <summary>
  8591. <para>Returns if user cancels baking.</para>
  8592. </summary>
  8593. </member>
  8594. <member name="F:Godot.BakedLightmap.BakeModeEnum.ConeTrace">
  8595. <summary>
  8596. <para>Less precise but faster bake mode.</para>
  8597. </summary>
  8598. </member>
  8599. <member name="F:Godot.BakedLightmap.BakeModeEnum.RayTrace">
  8600. <summary>
  8601. <para>More precise bake mode but can take considerably longer to bake.</para>
  8602. </summary>
  8603. </member>
  8604. <member name="P:Godot.BakedLightmap.BakeCellSize">
  8605. <summary>
  8606. <para>Grid subdivision size for lightmapper calculation. The default value will work for most cases. Increase for better lighting on small details or if your scene is very large.</para>
  8607. </summary>
  8608. </member>
  8609. <member name="P:Godot.BakedLightmap.BakeQuality">
  8610. <summary>
  8611. <para>Three quality modes are available. Higher quality requires more rendering time. See <see cref="T:Godot.BakedLightmap.BakeQualityEnum"/>.</para>
  8612. </summary>
  8613. </member>
  8614. <member name="P:Godot.BakedLightmap.BakeMode">
  8615. <summary>
  8616. <para>Lightmapping mode. See <see cref="T:Godot.BakedLightmap.BakeModeEnum"/>.</para>
  8617. </summary>
  8618. </member>
  8619. <member name="P:Godot.BakedLightmap.BakePropagation">
  8620. <summary>
  8621. <para>Defines how far the light will travel before it is no longer effective. The higher the number, the farther the light will travel. For instance, if the value is set to 2, the light will go twice as far. If the value is set to 0.5, the light will only go half as far.</para>
  8622. </summary>
  8623. </member>
  8624. <member name="P:Godot.BakedLightmap.BakeEnergy">
  8625. <summary>
  8626. <para>Multiplies the light sources' intensity by this value. For instance, if the value is set to 2, lights will be twice as bright. If the value is set to 0.5, lights will be half as bright.</para>
  8627. </summary>
  8628. </member>
  8629. <member name="P:Godot.BakedLightmap.BakeHdr">
  8630. <summary>
  8631. <para>If <c>true</c>, the lightmap can capture light values greater than <c>1.0</c>. Turning this off will result in a smaller file size.</para>
  8632. </summary>
  8633. </member>
  8634. <member name="P:Godot.BakedLightmap.BakeExtents">
  8635. <summary>
  8636. <para>The size of the affected area.</para>
  8637. </summary>
  8638. </member>
  8639. <member name="P:Godot.BakedLightmap.BakeDefaultTexelsPerUnit">
  8640. <summary>
  8641. <para>If a <see cref="P:Godot.Mesh.LightmapSizeHint"/> isn't specified, the lightmap baker will dynamically set the lightmap size using this value. This value is measured in texels per world unit. The maximum lightmap texture size is 4096x4096.</para>
  8642. </summary>
  8643. </member>
  8644. <member name="P:Godot.BakedLightmap.CaptureCellSize">
  8645. <summary>
  8646. <para>Grid size used for real-time capture information on dynamic objects. Cannot be larger than <see cref="P:Godot.BakedLightmap.BakeCellSize"/>.</para>
  8647. </summary>
  8648. </member>
  8649. <member name="P:Godot.BakedLightmap.ImagePath">
  8650. <summary>
  8651. <para>The location where lightmaps will be saved.</para>
  8652. </summary>
  8653. </member>
  8654. <member name="P:Godot.BakedLightmap.LightData">
  8655. <summary>
  8656. <para>The calculated light data.</para>
  8657. </summary>
  8658. </member>
  8659. <member name="M:Godot.BakedLightmap.Bake(Godot.Node,System.Boolean)">
  8660. <summary>
  8661. <para>Bakes the lightmaps within the currently edited scene. Returns a <see cref="T:Godot.BakedLightmap.BakeError"/> to signify if the bake was successful, or if unsuccessful, how the bake failed.</para>
  8662. </summary>
  8663. </member>
  8664. <member name="M:Godot.BakedLightmap.DebugBake">
  8665. <summary>
  8666. <para>Executes a dry run bake of lightmaps within the currently edited scene.</para>
  8667. </summary>
  8668. </member>
  8669. <member name="T:Godot.BaseButton">
  8670. <summary>
  8671. <para>BaseButton is the abstract base class for buttons, so it shouldn't be used directly (it doesn't display anything). Other types of buttons inherit from it.</para>
  8672. </summary>
  8673. </member>
  8674. <member name="F:Godot.BaseButton.ActionModeEnum.Press">
  8675. <summary>
  8676. <para>Require just a press to consider the button clicked.</para>
  8677. </summary>
  8678. </member>
  8679. <member name="F:Godot.BaseButton.ActionModeEnum.Release">
  8680. <summary>
  8681. <para>Require a press and a subsequent release before considering the button clicked.</para>
  8682. </summary>
  8683. </member>
  8684. <member name="F:Godot.BaseButton.DrawMode.Normal">
  8685. <summary>
  8686. <para>The normal state (i.e. not pressed, not hovered, not toggled and enabled) of buttons.</para>
  8687. </summary>
  8688. </member>
  8689. <member name="F:Godot.BaseButton.DrawMode.Pressed">
  8690. <summary>
  8691. <para>The state of buttons are pressed.</para>
  8692. </summary>
  8693. </member>
  8694. <member name="F:Godot.BaseButton.DrawMode.Hover">
  8695. <summary>
  8696. <para>The state of buttons are hovered.</para>
  8697. </summary>
  8698. </member>
  8699. <member name="F:Godot.BaseButton.DrawMode.Disabled">
  8700. <summary>
  8701. <para>The state of buttons are disabled.</para>
  8702. </summary>
  8703. </member>
  8704. <member name="F:Godot.BaseButton.DrawMode.HoverPressed">
  8705. <summary>
  8706. <para>The state of buttons are both hovered and pressed.</para>
  8707. </summary>
  8708. </member>
  8709. <member name="P:Godot.BaseButton.Disabled">
  8710. <summary>
  8711. <para>If <c>true</c>, the button is in disabled state and can't be clicked or toggled.</para>
  8712. </summary>
  8713. </member>
  8714. <member name="P:Godot.BaseButton.ToggleMode">
  8715. <summary>
  8716. <para>If <c>true</c>, the button is in toggle mode. Makes the button flip state between pressed and unpressed each time its area is clicked.</para>
  8717. </summary>
  8718. </member>
  8719. <member name="P:Godot.BaseButton.ShortcutInTooltip">
  8720. <summary>
  8721. <para>If <c>true</c>, the button will add information about its shortcut in the tooltip.</para>
  8722. </summary>
  8723. </member>
  8724. <member name="P:Godot.BaseButton.Pressed">
  8725. <summary>
  8726. <para>If <c>true</c>, the button's state is pressed. Means the button is pressed down or toggled (if <see cref="P:Godot.BaseButton.ToggleMode"/> is active).</para>
  8727. </summary>
  8728. </member>
  8729. <member name="P:Godot.BaseButton.ActionMode">
  8730. <summary>
  8731. <para>Determines when the button is considered clicked, one of the <see cref="T:Godot.BaseButton.ActionModeEnum"/> constants.</para>
  8732. </summary>
  8733. </member>
  8734. <member name="P:Godot.BaseButton.ButtonMask">
  8735. <summary>
  8736. <para>Binary mask to choose which mouse buttons this button will respond to.</para>
  8737. <para>To allow both left-click and right-click, use <c>BUTTON_MASK_LEFT | BUTTON_MASK_RIGHT</c>.</para>
  8738. </summary>
  8739. </member>
  8740. <member name="P:Godot.BaseButton.EnabledFocusMode">
  8741. <summary>
  8742. <para>Focus access mode to use when switching between enabled/disabled (see <see cref="P:Godot.Control.FocusMode"/> and <see cref="P:Godot.BaseButton.Disabled"/>).</para>
  8743. </summary>
  8744. </member>
  8745. <member name="P:Godot.BaseButton.KeepPressedOutside">
  8746. <summary>
  8747. <para>If <c>true</c>, the button stays pressed when moving the cursor outside the button while pressing it.</para>
  8748. <para>Note: This property only affects the button's visual appearance. Signals will be emitted at the same moment regardless of this property's value.</para>
  8749. </summary>
  8750. </member>
  8751. <member name="P:Godot.BaseButton.Shortcut">
  8752. <summary>
  8753. <para><see cref="T:Godot.ShortCut"/> associated to the button.</para>
  8754. </summary>
  8755. </member>
  8756. <member name="P:Godot.BaseButton.Group">
  8757. <summary>
  8758. <para><see cref="T:Godot.ButtonGroup"/> associated to the button.</para>
  8759. </summary>
  8760. </member>
  8761. <member name="M:Godot.BaseButton._Pressed">
  8762. <summary>
  8763. <para>Called when the button is pressed.</para>
  8764. </summary>
  8765. </member>
  8766. <member name="M:Godot.BaseButton._Toggled(System.Boolean)">
  8767. <summary>
  8768. <para>Called when the button is toggled (only if <see cref="P:Godot.BaseButton.ToggleMode"/> is active).</para>
  8769. </summary>
  8770. </member>
  8771. <member name="M:Godot.BaseButton.IsHovered">
  8772. <summary>
  8773. <para>Returns <c>true</c> if the mouse has entered the button and has not left it yet.</para>
  8774. </summary>
  8775. </member>
  8776. <member name="M:Godot.BaseButton.GetDrawMode">
  8777. <summary>
  8778. <para>Returns the visual state used to draw the button. This is useful mainly when implementing your own draw code by either overriding _draw() or connecting to "draw" signal. The visual state of the button is defined by the <see cref="T:Godot.BaseButton.DrawMode"/> enum.</para>
  8779. </summary>
  8780. </member>
  8781. <member name="T:Godot.BitMap">
  8782. <summary>
  8783. <para>A two-dimensional array of boolean values, can be used to efficiently store a binary matrix (every matrix element takes only one bit) and query the values using natural cartesian coordinates.</para>
  8784. </summary>
  8785. </member>
  8786. <member name="M:Godot.BitMap.Create(Godot.Vector2)">
  8787. <summary>
  8788. <para>Creates a bitmap with the specified size, filled with <c>false</c>.</para>
  8789. </summary>
  8790. </member>
  8791. <member name="M:Godot.BitMap.CreateFromImageAlpha(Godot.Image,System.Single)">
  8792. <summary>
  8793. <para>Creates a bitmap that matches the given image dimensions, every element of the bitmap is set to <c>false</c> if the alpha value of the image at that position is equal to <c>threshold</c> or less, and <c>true</c> in other case.</para>
  8794. </summary>
  8795. </member>
  8796. <member name="M:Godot.BitMap.SetBit(Godot.Vector2,System.Boolean)">
  8797. <summary>
  8798. <para>Sets the bitmap's element at the specified position, to the specified value.</para>
  8799. </summary>
  8800. </member>
  8801. <member name="M:Godot.BitMap.GetBit(Godot.Vector2)">
  8802. <summary>
  8803. <para>Returns bitmap's value at the specified position.</para>
  8804. </summary>
  8805. </member>
  8806. <member name="M:Godot.BitMap.SetBitRect(Godot.Rect2,System.Boolean)">
  8807. <summary>
  8808. <para>Sets a rectangular portion of the bitmap to the specified value.</para>
  8809. </summary>
  8810. </member>
  8811. <member name="M:Godot.BitMap.GetTrueBitCount">
  8812. <summary>
  8813. <para>Returns the amount of bitmap elements that are set to <c>true</c>.</para>
  8814. </summary>
  8815. </member>
  8816. <member name="M:Godot.BitMap.GetSize">
  8817. <summary>
  8818. <para>Returns bitmap's dimensions.</para>
  8819. </summary>
  8820. </member>
  8821. <member name="T:Godot.BitmapFont">
  8822. <summary>
  8823. <para>Renders text using <c>*.fnt</c> fonts containing texture atlases. Supports distance fields. For using vector font files like TTF directly, see <see cref="T:Godot.DynamicFont"/>.</para>
  8824. </summary>
  8825. </member>
  8826. <member name="P:Godot.BitmapFont.Height">
  8827. <summary>
  8828. <para>Total font height (ascent plus descent) in pixels.</para>
  8829. </summary>
  8830. </member>
  8831. <member name="P:Godot.BitmapFont.Ascent">
  8832. <summary>
  8833. <para>Ascent (number of pixels above the baseline).</para>
  8834. </summary>
  8835. </member>
  8836. <member name="P:Godot.BitmapFont.DistanceField">
  8837. <summary>
  8838. <para>If <c>true</c>, distance field hint is enabled.</para>
  8839. </summary>
  8840. </member>
  8841. <member name="P:Godot.BitmapFont.Fallback">
  8842. <summary>
  8843. <para>The fallback font.</para>
  8844. </summary>
  8845. </member>
  8846. <member name="M:Godot.BitmapFont.CreateFromFnt(System.String)">
  8847. <summary>
  8848. <para>Creates a BitmapFont from the <c>*.fnt</c> file at <c>path</c>.</para>
  8849. </summary>
  8850. </member>
  8851. <member name="M:Godot.BitmapFont.AddKerningPair(System.Int32,System.Int32,System.Int32)">
  8852. <summary>
  8853. <para>Adds a kerning pair to the <see cref="T:Godot.BitmapFont"/> as a difference. Kerning pairs are special cases where a typeface advance is determined by the next character.</para>
  8854. </summary>
  8855. </member>
  8856. <member name="M:Godot.BitmapFont.GetKerningPair(System.Int32,System.Int32)">
  8857. <summary>
  8858. <para>Returns a kerning pair as a difference.</para>
  8859. </summary>
  8860. </member>
  8861. <member name="M:Godot.BitmapFont.AddTexture(Godot.Texture)">
  8862. <summary>
  8863. <para>Adds a texture to the <see cref="T:Godot.BitmapFont"/>.</para>
  8864. </summary>
  8865. </member>
  8866. <member name="M:Godot.BitmapFont.AddChar(System.Int32,System.Int32,Godot.Rect2,System.Nullable{Godot.Vector2},System.Single)">
  8867. <summary>
  8868. <para>Adds a character to the font, where <c>character</c> is the Unicode value, <c>texture</c> is the texture index, <c>rect</c> is the region in the texture (in pixels!), <c>align</c> is the (optional) alignment for the character and <c>advance</c> is the (optional) advance.</para>
  8869. </summary>
  8870. <param name="align">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  8871. </member>
  8872. <member name="M:Godot.BitmapFont.GetTextureCount">
  8873. <summary>
  8874. <para>Returns the number of textures in the BitmapFont atlas.</para>
  8875. </summary>
  8876. </member>
  8877. <member name="M:Godot.BitmapFont.GetTexture(System.Int32)">
  8878. <summary>
  8879. <para>Returns the font atlas texture at index <c>idx</c>.</para>
  8880. </summary>
  8881. </member>
  8882. <member name="M:Godot.BitmapFont.Clear">
  8883. <summary>
  8884. <para>Clears all the font data and settings.</para>
  8885. </summary>
  8886. </member>
  8887. <member name="T:Godot.Bone2D">
  8888. <summary>
  8889. <para>Use a hierarchy of <c>Bone2D</c> bound to a <see cref="T:Godot.Skeleton2D"/> to control, and animate other <see cref="T:Godot.Node2D"/> nodes.</para>
  8890. <para>You can use <c>Bone2D</c> and <c>Skeleton2D</c> nodes to animate 2D meshes created with the Polygon 2D UV editor.</para>
  8891. <para>Each bone has a <see cref="P:Godot.Bone2D.Rest"/> transform that you can reset to with <see cref="M:Godot.Bone2D.ApplyRest"/>. These rest poses are relative to the bone's parent.</para>
  8892. <para>If in the editor, you can set the rest pose of an entire skeleton using a menu option, from the code, you need to iterate over the bones to set their individual rest poses.</para>
  8893. </summary>
  8894. </member>
  8895. <member name="P:Godot.Bone2D.Rest">
  8896. <summary>
  8897. <para>Rest transform of the bone. You can reset the node's transforms to this value using <see cref="M:Godot.Bone2D.ApplyRest"/>.</para>
  8898. </summary>
  8899. </member>
  8900. <member name="P:Godot.Bone2D.DefaultLength">
  8901. <summary>
  8902. <para>Length of the bone's representation drawn in the editor's viewport in pixels.</para>
  8903. </summary>
  8904. </member>
  8905. <member name="M:Godot.Bone2D.ApplyRest">
  8906. <summary>
  8907. <para>Stores the node's current transforms in <see cref="P:Godot.Bone2D.Rest"/>.</para>
  8908. </summary>
  8909. </member>
  8910. <member name="M:Godot.Bone2D.GetSkeletonRest">
  8911. <summary>
  8912. <para>Returns the node's <see cref="P:Godot.Bone2D.Rest"/> <c>Transform2D</c> if it doesn't have a parent, or its rest pose relative to its parent.</para>
  8913. </summary>
  8914. </member>
  8915. <member name="M:Godot.Bone2D.GetIndexInSkeleton">
  8916. <summary>
  8917. <para>Returns the node's index as part of the entire skeleton. See <see cref="T:Godot.Skeleton2D"/>.</para>
  8918. </summary>
  8919. </member>
  8920. <member name="T:Godot.BoneAttachment">
  8921. <summary>
  8922. <para>This node must be the child of a <see cref="T:Godot.Skeleton"/> node. You can then select a bone for this node to attach to. The BoneAttachment node will copy the transform of the selected bone.</para>
  8923. </summary>
  8924. </member>
  8925. <member name="P:Godot.BoneAttachment.BoneName">
  8926. <summary>
  8927. <para>The name of the attached bone.</para>
  8928. </summary>
  8929. </member>
  8930. <member name="T:Godot.BoxContainer">
  8931. <summary>
  8932. <para>Arranges child controls vertically or horizontally, and rearranges the controls automatically when their minimum size changes.</para>
  8933. </summary>
  8934. </member>
  8935. <member name="F:Godot.BoxContainer.AlignMode.Begin">
  8936. <summary>
  8937. <para>Aligns children with the beginning of the container.</para>
  8938. </summary>
  8939. </member>
  8940. <member name="F:Godot.BoxContainer.AlignMode.Center">
  8941. <summary>
  8942. <para>Aligns children with the center of the container.</para>
  8943. </summary>
  8944. </member>
  8945. <member name="F:Godot.BoxContainer.AlignMode.End">
  8946. <summary>
  8947. <para>Aligns children with the end of the container.</para>
  8948. </summary>
  8949. </member>
  8950. <member name="P:Godot.BoxContainer.Alignment">
  8951. <summary>
  8952. <para>The alignment of the container's children (must be one of , or ).</para>
  8953. </summary>
  8954. </member>
  8955. <member name="M:Godot.BoxContainer.AddSpacer(System.Boolean)">
  8956. <summary>
  8957. <para>Adds a control to the box as a spacer. If <c>true</c>, <c>begin</c> will insert the spacer control in front of other children.</para>
  8958. </summary>
  8959. </member>
  8960. <member name="T:Godot.BoxShape">
  8961. <summary>
  8962. <para>3D box shape that can be a child of a <see cref="T:Godot.PhysicsBody"/> or <see cref="T:Godot.Area"/>.</para>
  8963. </summary>
  8964. </member>
  8965. <member name="P:Godot.BoxShape.Extents">
  8966. <summary>
  8967. <para>The box's half extents. The width, height and depth of this shape is twice the half extents.</para>
  8968. </summary>
  8969. </member>
  8970. <member name="T:Godot.Button">
  8971. <summary>
  8972. <para>Button is the standard themed button. It can contain text and an icon, and will display them according to the current <see cref="T:Godot.Theme"/>.</para>
  8973. </summary>
  8974. </member>
  8975. <member name="F:Godot.Button.TextAlign.Left">
  8976. <summary>
  8977. <para>Align the text to the left.</para>
  8978. </summary>
  8979. </member>
  8980. <member name="F:Godot.Button.TextAlign.Center">
  8981. <summary>
  8982. <para>Align the text to the center.</para>
  8983. </summary>
  8984. </member>
  8985. <member name="F:Godot.Button.TextAlign.Right">
  8986. <summary>
  8987. <para>Align the text to the right.</para>
  8988. </summary>
  8989. </member>
  8990. <member name="P:Godot.Button.Text">
  8991. <summary>
  8992. <para>The button's text that will be displayed inside the button's area.</para>
  8993. </summary>
  8994. </member>
  8995. <member name="P:Godot.Button.Icon">
  8996. <summary>
  8997. <para>Button's icon, if text is present the icon will be placed before the text.</para>
  8998. </summary>
  8999. </member>
  9000. <member name="P:Godot.Button.Flat">
  9001. <summary>
  9002. <para>Flat buttons don't display decoration.</para>
  9003. </summary>
  9004. </member>
  9005. <member name="P:Godot.Button.ClipText">
  9006. <summary>
  9007. <para>When this property is enabled, text that is too large to fit the button is clipped, when disabled the Button will always be wide enough to hold the text.</para>
  9008. </summary>
  9009. </member>
  9010. <member name="P:Godot.Button.Align">
  9011. <summary>
  9012. <para>Text alignment policy for the button's text, use one of the <see cref="T:Godot.Button.TextAlign"/> constants.</para>
  9013. </summary>
  9014. </member>
  9015. <member name="P:Godot.Button.ExpandIcon">
  9016. <summary>
  9017. <para>When enabled, the button's icon will expand/shrink to fit the button's size while keeping its aspect.</para>
  9018. </summary>
  9019. </member>
  9020. <member name="T:Godot.ButtonGroup">
  9021. <summary>
  9022. <para>Group of <see cref="T:Godot.Button"/>. All direct and indirect children buttons become radios. Only one allows being pressed.</para>
  9023. <para><see cref="P:Godot.BaseButton.ToggleMode"/> should be <c>true</c>.</para>
  9024. </summary>
  9025. </member>
  9026. <member name="M:Godot.ButtonGroup.GetPressedButton">
  9027. <summary>
  9028. <para>Returns the current pressed button.</para>
  9029. </summary>
  9030. </member>
  9031. <member name="M:Godot.ButtonGroup.GetButtons">
  9032. <summary>
  9033. <para>Returns an <see cref="T:Godot.Collections.Array"/> of <see cref="T:Godot.Button"/>s who have this as their <see cref="T:Godot.ButtonGroup"/> (see <see cref="P:Godot.BaseButton.Group"/>).</para>
  9034. </summary>
  9035. </member>
  9036. <member name="T:Godot.CPUParticles">
  9037. <summary>
  9038. <para>CPU-based 3D particle node used to create a variety of particle systems and effects.</para>
  9039. <para>See also <see cref="T:Godot.Particles"/>, which provides the same functionality with hardware acceleration, but may not run on older devices.</para>
  9040. </summary>
  9041. </member>
  9042. <member name="F:Godot.CPUParticles.Flags.AlignYToVelocity">
  9043. <summary>
  9044. <para>Use with <see cref="M:Godot.CPUParticles.SetParticleFlag(Godot.CPUParticles.Flags,System.Boolean)"/> to set <see cref="P:Godot.CPUParticles.FlagAlignY"/>.</para>
  9045. </summary>
  9046. </member>
  9047. <member name="F:Godot.CPUParticles.Flags.RotateY">
  9048. <summary>
  9049. <para>Use with <see cref="M:Godot.CPUParticles.SetParticleFlag(Godot.CPUParticles.Flags,System.Boolean)"/> to set <see cref="P:Godot.CPUParticles.FlagRotateY"/>.</para>
  9050. </summary>
  9051. </member>
  9052. <member name="F:Godot.CPUParticles.Flags.DisableZ">
  9053. <summary>
  9054. <para>Use with <see cref="M:Godot.CPUParticles.SetParticleFlag(Godot.CPUParticles.Flags,System.Boolean)"/> to set <see cref="P:Godot.CPUParticles.FlagDisableZ"/>.</para>
  9055. </summary>
  9056. </member>
  9057. <member name="F:Godot.CPUParticles.Flags.Max">
  9058. <summary>
  9059. <para>Represents the size of the <see cref="T:Godot.CPUParticles.Flags"/> enum.</para>
  9060. </summary>
  9061. </member>
  9062. <member name="F:Godot.CPUParticles.EmissionShapeEnum.Point">
  9063. <summary>
  9064. <para>All particles will be emitted from a single point.</para>
  9065. </summary>
  9066. </member>
  9067. <member name="F:Godot.CPUParticles.EmissionShapeEnum.Sphere">
  9068. <summary>
  9069. <para>Particles will be emitted in the volume of a sphere.</para>
  9070. </summary>
  9071. </member>
  9072. <member name="F:Godot.CPUParticles.EmissionShapeEnum.Box">
  9073. <summary>
  9074. <para>Particles will be emitted in the volume of a box.</para>
  9075. </summary>
  9076. </member>
  9077. <member name="F:Godot.CPUParticles.EmissionShapeEnum.Points">
  9078. <summary>
  9079. <para>Particles will be emitted at a position chosen randomly among <see cref="P:Godot.CPUParticles.EmissionPoints"/>. Particle color will be modulated by <see cref="P:Godot.CPUParticles.EmissionColors"/>.</para>
  9080. </summary>
  9081. </member>
  9082. <member name="F:Godot.CPUParticles.EmissionShapeEnum.DirectedPoints">
  9083. <summary>
  9084. <para>Particles will be emitted at a position chosen randomly among <see cref="P:Godot.CPUParticles.EmissionPoints"/>. Particle velocity and rotation will be set based on <see cref="P:Godot.CPUParticles.EmissionNormals"/>. Particle color will be modulated by <see cref="P:Godot.CPUParticles.EmissionColors"/>.</para>
  9085. </summary>
  9086. </member>
  9087. <member name="F:Godot.CPUParticles.EmissionShapeEnum.Max">
  9088. <summary>
  9089. <para>Represents the size of the <see cref="T:Godot.CPUParticles.EmissionShapeEnum"/> enum.</para>
  9090. </summary>
  9091. </member>
  9092. <member name="F:Godot.CPUParticles.Parameter.InitialLinearVelocity">
  9093. <summary>
  9094. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set initial velocity properties.</para>
  9095. </summary>
  9096. </member>
  9097. <member name="F:Godot.CPUParticles.Parameter.AngularVelocity">
  9098. <summary>
  9099. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set angular velocity properties.</para>
  9100. </summary>
  9101. </member>
  9102. <member name="F:Godot.CPUParticles.Parameter.OrbitVelocity">
  9103. <summary>
  9104. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set orbital velocity properties.</para>
  9105. </summary>
  9106. </member>
  9107. <member name="F:Godot.CPUParticles.Parameter.LinearAccel">
  9108. <summary>
  9109. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set linear acceleration properties.</para>
  9110. </summary>
  9111. </member>
  9112. <member name="F:Godot.CPUParticles.Parameter.RadialAccel">
  9113. <summary>
  9114. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set radial acceleration properties.</para>
  9115. </summary>
  9116. </member>
  9117. <member name="F:Godot.CPUParticles.Parameter.TangentialAccel">
  9118. <summary>
  9119. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set tangential acceleration properties.</para>
  9120. </summary>
  9121. </member>
  9122. <member name="F:Godot.CPUParticles.Parameter.Damping">
  9123. <summary>
  9124. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set damping properties.</para>
  9125. </summary>
  9126. </member>
  9127. <member name="F:Godot.CPUParticles.Parameter.Angle">
  9128. <summary>
  9129. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set angle properties.</para>
  9130. </summary>
  9131. </member>
  9132. <member name="F:Godot.CPUParticles.Parameter.Scale">
  9133. <summary>
  9134. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set scale properties.</para>
  9135. </summary>
  9136. </member>
  9137. <member name="F:Godot.CPUParticles.Parameter.HueVariation">
  9138. <summary>
  9139. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set hue variation properties.</para>
  9140. </summary>
  9141. </member>
  9142. <member name="F:Godot.CPUParticles.Parameter.AnimSpeed">
  9143. <summary>
  9144. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set animation speed properties.</para>
  9145. </summary>
  9146. </member>
  9147. <member name="F:Godot.CPUParticles.Parameter.AnimOffset">
  9148. <summary>
  9149. <para>Use with <see cref="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)"/> to set animation offset properties.</para>
  9150. </summary>
  9151. </member>
  9152. <member name="F:Godot.CPUParticles.Parameter.Max">
  9153. <summary>
  9154. <para>Represents the size of the <see cref="T:Godot.CPUParticles.Parameter"/> enum.</para>
  9155. </summary>
  9156. </member>
  9157. <member name="F:Godot.CPUParticles.DrawOrderEnum.Index">
  9158. <summary>
  9159. <para>Particles are drawn in the order emitted.</para>
  9160. </summary>
  9161. </member>
  9162. <member name="F:Godot.CPUParticles.DrawOrderEnum.Lifetime">
  9163. <summary>
  9164. <para>Particles are drawn in order of remaining lifetime.</para>
  9165. </summary>
  9166. </member>
  9167. <member name="F:Godot.CPUParticles.DrawOrderEnum.ViewDepth">
  9168. <summary>
  9169. <para>Particles are drawn in order of depth.</para>
  9170. </summary>
  9171. </member>
  9172. <member name="P:Godot.CPUParticles.Emitting">
  9173. <summary>
  9174. <para>If <c>true</c>, particles are being emitted.</para>
  9175. </summary>
  9176. </member>
  9177. <member name="P:Godot.CPUParticles.Amount">
  9178. <summary>
  9179. <para>Number of particles emitted in one emission cycle.</para>
  9180. </summary>
  9181. </member>
  9182. <member name="P:Godot.CPUParticles.Lifetime">
  9183. <summary>
  9184. <para>Amount of time each particle will exist.</para>
  9185. </summary>
  9186. </member>
  9187. <member name="P:Godot.CPUParticles.OneShot">
  9188. <summary>
  9189. <para>If <c>true</c>, only one emission cycle occurs. If set <c>true</c> during a cycle, emission will stop at the cycle's end.</para>
  9190. </summary>
  9191. </member>
  9192. <member name="P:Godot.CPUParticles.Preprocess">
  9193. <summary>
  9194. <para>Particle system starts as if it had already run for this many seconds.</para>
  9195. </summary>
  9196. </member>
  9197. <member name="P:Godot.CPUParticles.SpeedScale">
  9198. <summary>
  9199. <para>Particle system's running speed scaling ratio. A value of <c>0</c> can be used to pause the particles.</para>
  9200. </summary>
  9201. </member>
  9202. <member name="P:Godot.CPUParticles.Explosiveness">
  9203. <summary>
  9204. <para>How rapidly particles in an emission cycle are emitted. If greater than <c>0</c>, there will be a gap in emissions before the next cycle begins.</para>
  9205. </summary>
  9206. </member>
  9207. <member name="P:Godot.CPUParticles.Randomness">
  9208. <summary>
  9209. <para>Emission lifetime randomness ratio.</para>
  9210. </summary>
  9211. </member>
  9212. <member name="P:Godot.CPUParticles.LifetimeRandomness">
  9213. <summary>
  9214. <para>Particle lifetime randomness ratio.</para>
  9215. </summary>
  9216. </member>
  9217. <member name="P:Godot.CPUParticles.FixedFps">
  9218. <summary>
  9219. <para>The particle system's frame rate is fixed to a value. For instance, changing the value to 2 will make the particles render at 2 frames per second. Note this does not slow down the particle system itself.</para>
  9220. </summary>
  9221. </member>
  9222. <member name="P:Godot.CPUParticles.FractDelta">
  9223. <summary>
  9224. <para>If <c>true</c>, results in fractional delta calculation which has a smoother particles display effect.</para>
  9225. </summary>
  9226. </member>
  9227. <member name="P:Godot.CPUParticles.LocalCoords">
  9228. <summary>
  9229. <para>If <c>true</c>, particles use the parent node's coordinate space. If <c>false</c>, they use global coordinates.</para>
  9230. </summary>
  9231. </member>
  9232. <member name="P:Godot.CPUParticles.DrawOrder">
  9233. <summary>
  9234. <para>Particle draw order. Uses <see cref="T:Godot.CPUParticles.DrawOrderEnum"/> values.</para>
  9235. </summary>
  9236. </member>
  9237. <member name="P:Godot.CPUParticles.Mesh">
  9238. <summary>
  9239. <para>The <see cref="T:Godot.Mesh"/> used for each particle. If <c>null</c>, particles will be spheres.</para>
  9240. </summary>
  9241. </member>
  9242. <member name="P:Godot.CPUParticles.EmissionShape">
  9243. <summary>
  9244. <para>Particles will be emitted inside this region. See <see cref="T:Godot.CPUParticles.EmissionShapeEnum"/> for possible values.</para>
  9245. </summary>
  9246. </member>
  9247. <member name="P:Godot.CPUParticles.EmissionSphereRadius">
  9248. <summary>
  9249. <para>The sphere's radius if <see cref="T:Godot.CPUParticles.EmissionShapeEnum"/> is set to .</para>
  9250. </summary>
  9251. </member>
  9252. <member name="P:Godot.CPUParticles.EmissionBoxExtents">
  9253. <summary>
  9254. <para>The rectangle's extents if <see cref="P:Godot.CPUParticles.EmissionShape"/> is set to .</para>
  9255. </summary>
  9256. </member>
  9257. <member name="P:Godot.CPUParticles.EmissionPoints">
  9258. <summary>
  9259. <para>Sets the initial positions to spawn particles when using or .</para>
  9260. </summary>
  9261. </member>
  9262. <member name="P:Godot.CPUParticles.EmissionNormals">
  9263. <summary>
  9264. <para>Sets the direction the particles will be emitted in when using .</para>
  9265. </summary>
  9266. </member>
  9267. <member name="P:Godot.CPUParticles.EmissionColors">
  9268. <summary>
  9269. <para>Sets the <see cref="T:Godot.Color"/>s to modulate particles by when using or .</para>
  9270. </summary>
  9271. </member>
  9272. <member name="P:Godot.CPUParticles.FlagAlignY">
  9273. <summary>
  9274. <para>Align Y axis of particle with the direction of its velocity.</para>
  9275. </summary>
  9276. </member>
  9277. <member name="P:Godot.CPUParticles.FlagRotateY">
  9278. <summary>
  9279. <para>If <c>true</c>, particles rotate around Y axis by <see cref="P:Godot.CPUParticles.Angle"/>.</para>
  9280. </summary>
  9281. </member>
  9282. <member name="P:Godot.CPUParticles.FlagDisableZ">
  9283. <summary>
  9284. <para>If <c>true</c>, particles will not move on the z axis.</para>
  9285. </summary>
  9286. </member>
  9287. <member name="P:Godot.CPUParticles.Direction">
  9288. <summary>
  9289. <para>Unit vector specifying the particles' emission direction.</para>
  9290. </summary>
  9291. </member>
  9292. <member name="P:Godot.CPUParticles.Spread">
  9293. <summary>
  9294. <para>Each particle's initial direction range from <c>+spread</c> to <c>-spread</c> degrees. Applied to X/Z plane and Y/Z planes.</para>
  9295. </summary>
  9296. </member>
  9297. <member name="P:Godot.CPUParticles.Flatness">
  9298. <summary>
  9299. <para>Amount of <see cref="P:Godot.CPUParticles.Spread"/> in Y/Z plane. A value of <c>1</c> restricts particles to X/Z plane.</para>
  9300. </summary>
  9301. </member>
  9302. <member name="P:Godot.CPUParticles.Gravity">
  9303. <summary>
  9304. <para>Gravity applied to every particle.</para>
  9305. </summary>
  9306. </member>
  9307. <member name="P:Godot.CPUParticles.InitialVelocity">
  9308. <summary>
  9309. <para>Initial velocity magnitude for each particle. Direction comes from <see cref="P:Godot.CPUParticles.Spread"/> and the node's orientation.</para>
  9310. </summary>
  9311. </member>
  9312. <member name="P:Godot.CPUParticles.InitialVelocityRandom">
  9313. <summary>
  9314. <para>Initial velocity randomness ratio.</para>
  9315. </summary>
  9316. </member>
  9317. <member name="P:Godot.CPUParticles.AngularVelocity">
  9318. <summary>
  9319. <para>Initial angular velocity applied to each particle. Sets the speed of rotation of the particle.</para>
  9320. </summary>
  9321. </member>
  9322. <member name="P:Godot.CPUParticles.AngularVelocityRandom">
  9323. <summary>
  9324. <para>Angular velocity randomness ratio.</para>
  9325. </summary>
  9326. </member>
  9327. <member name="P:Godot.CPUParticles.AngularVelocityCurve">
  9328. <summary>
  9329. <para>Each particle's angular velocity will vary along this <see cref="T:Godot.Curve"/>.</para>
  9330. </summary>
  9331. </member>
  9332. <member name="P:Godot.CPUParticles.OrbitVelocity">
  9333. <summary>
  9334. <para>Orbital velocity applied to each particle. Makes the particles circle around origin in the local XY plane. Specified in number of full rotations around origin per second.</para>
  9335. <para>This property is only available when <see cref="P:Godot.CPUParticles.FlagDisableZ"/> is <c>true</c>.</para>
  9336. </summary>
  9337. </member>
  9338. <member name="P:Godot.CPUParticles.OrbitVelocityRandom">
  9339. <summary>
  9340. <para>Orbital velocity randomness ratio.</para>
  9341. </summary>
  9342. </member>
  9343. <member name="P:Godot.CPUParticles.OrbitVelocityCurve">
  9344. <summary>
  9345. <para>Each particle's orbital velocity will vary along this <see cref="T:Godot.Curve"/>.</para>
  9346. </summary>
  9347. </member>
  9348. <member name="P:Godot.CPUParticles.LinearAccel">
  9349. <summary>
  9350. <para>Linear acceleration applied to each particle in the direction of motion.</para>
  9351. </summary>
  9352. </member>
  9353. <member name="P:Godot.CPUParticles.LinearAccelRandom">
  9354. <summary>
  9355. <para>Linear acceleration randomness ratio.</para>
  9356. </summary>
  9357. </member>
  9358. <member name="P:Godot.CPUParticles.LinearAccelCurve">
  9359. <summary>
  9360. <para>Each particle's linear acceleration will vary along this <see cref="T:Godot.Curve"/>.</para>
  9361. </summary>
  9362. </member>
  9363. <member name="P:Godot.CPUParticles.RadialAccel">
  9364. <summary>
  9365. <para>Radial acceleration applied to each particle. Makes particle accelerate away from origin.</para>
  9366. </summary>
  9367. </member>
  9368. <member name="P:Godot.CPUParticles.RadialAccelRandom">
  9369. <summary>
  9370. <para>Radial acceleration randomness ratio.</para>
  9371. </summary>
  9372. </member>
  9373. <member name="P:Godot.CPUParticles.RadialAccelCurve">
  9374. <summary>
  9375. <para>Each particle's radial acceleration will vary along this <see cref="T:Godot.Curve"/>.</para>
  9376. </summary>
  9377. </member>
  9378. <member name="P:Godot.CPUParticles.TangentialAccel">
  9379. <summary>
  9380. <para>Tangential acceleration applied to each particle. Tangential acceleration is perpendicular to the particle's velocity giving the particles a swirling motion.</para>
  9381. </summary>
  9382. </member>
  9383. <member name="P:Godot.CPUParticles.TangentialAccelRandom">
  9384. <summary>
  9385. <para>Tangential acceleration randomness ratio.</para>
  9386. </summary>
  9387. </member>
  9388. <member name="P:Godot.CPUParticles.TangentialAccelCurve">
  9389. <summary>
  9390. <para>Each particle's tangential acceleration will vary along this <see cref="T:Godot.Curve"/>.</para>
  9391. </summary>
  9392. </member>
  9393. <member name="P:Godot.CPUParticles.Damping">
  9394. <summary>
  9395. <para>The rate at which particles lose velocity.</para>
  9396. </summary>
  9397. </member>
  9398. <member name="P:Godot.CPUParticles.DampingRandom">
  9399. <summary>
  9400. <para>Damping randomness ratio.</para>
  9401. </summary>
  9402. </member>
  9403. <member name="P:Godot.CPUParticles.DampingCurve">
  9404. <summary>
  9405. <para>Damping will vary along this <see cref="T:Godot.Curve"/>.</para>
  9406. </summary>
  9407. </member>
  9408. <member name="P:Godot.CPUParticles.Angle">
  9409. <summary>
  9410. <para>Initial rotation applied to each particle, in degrees.</para>
  9411. </summary>
  9412. </member>
  9413. <member name="P:Godot.CPUParticles.AngleRandom">
  9414. <summary>
  9415. <para>Rotation randomness ratio.</para>
  9416. </summary>
  9417. </member>
  9418. <member name="P:Godot.CPUParticles.AngleCurve">
  9419. <summary>
  9420. <para>Each particle's rotation will be animated along this <see cref="T:Godot.Curve"/>.</para>
  9421. </summary>
  9422. </member>
  9423. <member name="P:Godot.CPUParticles.ScaleAmount">
  9424. <summary>
  9425. <para>Initial scale applied to each particle.</para>
  9426. </summary>
  9427. </member>
  9428. <member name="P:Godot.CPUParticles.ScaleAmountRandom">
  9429. <summary>
  9430. <para>Scale randomness ratio.</para>
  9431. </summary>
  9432. </member>
  9433. <member name="P:Godot.CPUParticles.ScaleAmountCurve">
  9434. <summary>
  9435. <para>Each particle's scale will vary along this <see cref="T:Godot.Curve"/>.</para>
  9436. </summary>
  9437. </member>
  9438. <member name="P:Godot.CPUParticles.Color">
  9439. <summary>
  9440. <para>Unused for 3D particles.</para>
  9441. </summary>
  9442. </member>
  9443. <member name="P:Godot.CPUParticles.ColorRamp">
  9444. <summary>
  9445. <para>Unused for 3D particles.</para>
  9446. </summary>
  9447. </member>
  9448. <member name="P:Godot.CPUParticles.HueVariation">
  9449. <summary>
  9450. <para>Initial hue variation applied to each particle.</para>
  9451. </summary>
  9452. </member>
  9453. <member name="P:Godot.CPUParticles.HueVariationRandom">
  9454. <summary>
  9455. <para>Hue variation randomness ratio.</para>
  9456. </summary>
  9457. </member>
  9458. <member name="P:Godot.CPUParticles.HueVariationCurve">
  9459. <summary>
  9460. <para>Each particle's hue will vary along this <see cref="T:Godot.Curve"/>.</para>
  9461. </summary>
  9462. </member>
  9463. <member name="P:Godot.CPUParticles.AnimSpeed">
  9464. <summary>
  9465. <para>Particle animation speed.</para>
  9466. </summary>
  9467. </member>
  9468. <member name="P:Godot.CPUParticles.AnimSpeedRandom">
  9469. <summary>
  9470. <para>Animation speed randomness ratio.</para>
  9471. </summary>
  9472. </member>
  9473. <member name="P:Godot.CPUParticles.AnimSpeedCurve">
  9474. <summary>
  9475. <para>Each particle's animation speed will vary along this <see cref="T:Godot.Curve"/>.</para>
  9476. </summary>
  9477. </member>
  9478. <member name="P:Godot.CPUParticles.AnimOffset">
  9479. <summary>
  9480. <para>Particle animation offset.</para>
  9481. </summary>
  9482. </member>
  9483. <member name="P:Godot.CPUParticles.AnimOffsetRandom">
  9484. <summary>
  9485. <para>Animation offset randomness ratio.</para>
  9486. </summary>
  9487. </member>
  9488. <member name="P:Godot.CPUParticles.AnimOffsetCurve">
  9489. <summary>
  9490. <para>Each particle's animation offset will vary along this <see cref="T:Godot.Curve"/>.</para>
  9491. </summary>
  9492. </member>
  9493. <member name="M:Godot.CPUParticles.Restart">
  9494. <summary>
  9495. <para>Restarts the particle emitter.</para>
  9496. </summary>
  9497. </member>
  9498. <member name="M:Godot.CPUParticles.SetParam(Godot.CPUParticles.Parameter,System.Single)">
  9499. <summary>
  9500. <para>Sets the base value of the parameter specified by <see cref="T:Godot.CPUParticles.Parameter"/>.</para>
  9501. </summary>
  9502. </member>
  9503. <member name="M:Godot.CPUParticles.GetParam(Godot.CPUParticles.Parameter)">
  9504. <summary>
  9505. <para>Returns the base value of the parameter specified by <see cref="T:Godot.CPUParticles.Parameter"/>.</para>
  9506. </summary>
  9507. </member>
  9508. <member name="M:Godot.CPUParticles.SetParamRandomness(Godot.CPUParticles.Parameter,System.Single)">
  9509. <summary>
  9510. <para>Sets the randomness factor of the parameter specified by <see cref="T:Godot.CPUParticles.Parameter"/>.</para>
  9511. </summary>
  9512. </member>
  9513. <member name="M:Godot.CPUParticles.GetParamRandomness(Godot.CPUParticles.Parameter)">
  9514. <summary>
  9515. <para>Returns the randomness factor of the parameter specified by <see cref="T:Godot.CPUParticles.Parameter"/>.</para>
  9516. </summary>
  9517. </member>
  9518. <member name="M:Godot.CPUParticles.SetParamCurve(Godot.CPUParticles.Parameter,Godot.Curve)">
  9519. <summary>
  9520. <para>Sets the <see cref="T:Godot.Curve"/> of the parameter specified by <see cref="T:Godot.CPUParticles.Parameter"/>.</para>
  9521. </summary>
  9522. </member>
  9523. <member name="M:Godot.CPUParticles.GetParamCurve(Godot.CPUParticles.Parameter)">
  9524. <summary>
  9525. <para>Returns the <see cref="T:Godot.Curve"/> of the parameter specified by <see cref="T:Godot.CPUParticles.Parameter"/>.</para>
  9526. </summary>
  9527. </member>
  9528. <member name="M:Godot.CPUParticles.SetParticleFlag(Godot.CPUParticles.Flags,System.Boolean)">
  9529. <summary>
  9530. <para>Enables or disables the given flag (see <see cref="T:Godot.CPUParticles.Flags"/> for options).</para>
  9531. </summary>
  9532. </member>
  9533. <member name="M:Godot.CPUParticles.GetParticleFlag(Godot.CPUParticles.Flags)">
  9534. <summary>
  9535. <para>Returns the enabled state of the given flag (see <see cref="T:Godot.CPUParticles.Flags"/> for options).</para>
  9536. </summary>
  9537. </member>
  9538. <member name="M:Godot.CPUParticles.ConvertFromParticles(Godot.Node)">
  9539. <summary>
  9540. <para>Sets this node's properties to match a given <see cref="T:Godot.Particles"/> node with an assigned <see cref="T:Godot.ParticlesMaterial"/>.</para>
  9541. </summary>
  9542. </member>
  9543. <member name="T:Godot.CPUParticles2D">
  9544. <summary>
  9545. <para>CPU-based 2D particle node used to create a variety of particle systems and effects.</para>
  9546. <para>See also <see cref="T:Godot.Particles2D"/>, which provides the same functionality with hardware acceleration, but may not run on older devices.</para>
  9547. </summary>
  9548. </member>
  9549. <member name="F:Godot.CPUParticles2D.Flags.AlignYToVelocity">
  9550. <summary>
  9551. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParticleFlag(Godot.CPUParticles2D.Flags,System.Boolean)"/> to set <see cref="P:Godot.CPUParticles2D.FlagAlignY"/>.</para>
  9552. </summary>
  9553. </member>
  9554. <member name="F:Godot.CPUParticles2D.Flags.RotateY">
  9555. <summary>
  9556. <para>Present for consistency with 3D particle nodes, not used in 2D.</para>
  9557. </summary>
  9558. </member>
  9559. <member name="F:Godot.CPUParticles2D.Flags.DisableZ">
  9560. <summary>
  9561. <para>Present for consistency with 3D particle nodes, not used in 2D.</para>
  9562. </summary>
  9563. </member>
  9564. <member name="F:Godot.CPUParticles2D.Flags.Max">
  9565. <summary>
  9566. <para>Represents the size of the <see cref="T:Godot.CPUParticles2D.Flags"/> enum.</para>
  9567. </summary>
  9568. </member>
  9569. <member name="F:Godot.CPUParticles2D.EmissionShapeEnum.Point">
  9570. <summary>
  9571. <para>All particles will be emitted from a single point.</para>
  9572. </summary>
  9573. </member>
  9574. <member name="F:Godot.CPUParticles2D.EmissionShapeEnum.Sphere">
  9575. <summary>
  9576. <para>Particles will be emitted on the surface of a sphere flattened to two dimensions.</para>
  9577. </summary>
  9578. </member>
  9579. <member name="F:Godot.CPUParticles2D.EmissionShapeEnum.Rectangle">
  9580. <summary>
  9581. <para>Particles will be emitted in the area of a rectangle.</para>
  9582. </summary>
  9583. </member>
  9584. <member name="F:Godot.CPUParticles2D.EmissionShapeEnum.Points">
  9585. <summary>
  9586. <para>Particles will be emitted at a position chosen randomly among <see cref="P:Godot.CPUParticles2D.EmissionPoints"/>. Particle color will be modulated by <see cref="P:Godot.CPUParticles2D.EmissionColors"/>.</para>
  9587. </summary>
  9588. </member>
  9589. <member name="F:Godot.CPUParticles2D.EmissionShapeEnum.DirectedPoints">
  9590. <summary>
  9591. <para>Particles will be emitted at a position chosen randomly among <see cref="P:Godot.CPUParticles2D.EmissionPoints"/>. Particle velocity and rotation will be set based on <see cref="P:Godot.CPUParticles2D.EmissionNormals"/>. Particle color will be modulated by <see cref="P:Godot.CPUParticles2D.EmissionColors"/>.</para>
  9592. </summary>
  9593. </member>
  9594. <member name="F:Godot.CPUParticles2D.EmissionShapeEnum.Max">
  9595. <summary>
  9596. <para>Represents the size of the <see cref="T:Godot.CPUParticles2D.EmissionShapeEnum"/> enum.</para>
  9597. </summary>
  9598. </member>
  9599. <member name="F:Godot.CPUParticles2D.Parameter.InitialLinearVelocity">
  9600. <summary>
  9601. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set initial velocity properties.</para>
  9602. </summary>
  9603. </member>
  9604. <member name="F:Godot.CPUParticles2D.Parameter.AngularVelocity">
  9605. <summary>
  9606. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set angular velocity properties.</para>
  9607. </summary>
  9608. </member>
  9609. <member name="F:Godot.CPUParticles2D.Parameter.OrbitVelocity">
  9610. <summary>
  9611. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set orbital velocity properties.</para>
  9612. </summary>
  9613. </member>
  9614. <member name="F:Godot.CPUParticles2D.Parameter.LinearAccel">
  9615. <summary>
  9616. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set linear acceleration properties.</para>
  9617. </summary>
  9618. </member>
  9619. <member name="F:Godot.CPUParticles2D.Parameter.RadialAccel">
  9620. <summary>
  9621. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set radial acceleration properties.</para>
  9622. </summary>
  9623. </member>
  9624. <member name="F:Godot.CPUParticles2D.Parameter.TangentialAccel">
  9625. <summary>
  9626. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set tangential acceleration properties.</para>
  9627. </summary>
  9628. </member>
  9629. <member name="F:Godot.CPUParticles2D.Parameter.Damping">
  9630. <summary>
  9631. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set damping properties.</para>
  9632. </summary>
  9633. </member>
  9634. <member name="F:Godot.CPUParticles2D.Parameter.Angle">
  9635. <summary>
  9636. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set angle properties.</para>
  9637. </summary>
  9638. </member>
  9639. <member name="F:Godot.CPUParticles2D.Parameter.Scale">
  9640. <summary>
  9641. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set scale properties.</para>
  9642. </summary>
  9643. </member>
  9644. <member name="F:Godot.CPUParticles2D.Parameter.HueVariation">
  9645. <summary>
  9646. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set hue variation properties.</para>
  9647. </summary>
  9648. </member>
  9649. <member name="F:Godot.CPUParticles2D.Parameter.AnimSpeed">
  9650. <summary>
  9651. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set animation speed properties.</para>
  9652. </summary>
  9653. </member>
  9654. <member name="F:Godot.CPUParticles2D.Parameter.AnimOffset">
  9655. <summary>
  9656. <para>Use with <see cref="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)"/>, <see cref="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)"/>, and <see cref="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)"/> to set animation offset properties.</para>
  9657. </summary>
  9658. </member>
  9659. <member name="F:Godot.CPUParticles2D.Parameter.Max">
  9660. <summary>
  9661. <para>Represents the size of the <see cref="T:Godot.CPUParticles2D.Parameter"/> enum.</para>
  9662. </summary>
  9663. </member>
  9664. <member name="F:Godot.CPUParticles2D.DrawOrderEnum.Index">
  9665. <summary>
  9666. <para>Particles are drawn in the order emitted.</para>
  9667. </summary>
  9668. </member>
  9669. <member name="F:Godot.CPUParticles2D.DrawOrderEnum.Lifetime">
  9670. <summary>
  9671. <para>Particles are drawn in order of remaining lifetime.</para>
  9672. </summary>
  9673. </member>
  9674. <member name="P:Godot.CPUParticles2D.Emitting">
  9675. <summary>
  9676. <para>If <c>true</c>, particles are being emitted.</para>
  9677. </summary>
  9678. </member>
  9679. <member name="P:Godot.CPUParticles2D.Amount">
  9680. <summary>
  9681. <para>Number of particles emitted in one emission cycle.</para>
  9682. </summary>
  9683. </member>
  9684. <member name="P:Godot.CPUParticles2D.Lifetime">
  9685. <summary>
  9686. <para>Amount of time each particle will exist.</para>
  9687. </summary>
  9688. </member>
  9689. <member name="P:Godot.CPUParticles2D.OneShot">
  9690. <summary>
  9691. <para>If <c>true</c>, only one emission cycle occurs. If set <c>true</c> during a cycle, emission will stop at the cycle's end.</para>
  9692. </summary>
  9693. </member>
  9694. <member name="P:Godot.CPUParticles2D.Preprocess">
  9695. <summary>
  9696. <para>Particle system starts as if it had already run for this many seconds.</para>
  9697. </summary>
  9698. </member>
  9699. <member name="P:Godot.CPUParticles2D.SpeedScale">
  9700. <summary>
  9701. <para>Particle system's running speed scaling ratio. A value of <c>0</c> can be used to pause the particles.</para>
  9702. </summary>
  9703. </member>
  9704. <member name="P:Godot.CPUParticles2D.Explosiveness">
  9705. <summary>
  9706. <para>How rapidly particles in an emission cycle are emitted. If greater than <c>0</c>, there will be a gap in emissions before the next cycle begins.</para>
  9707. </summary>
  9708. </member>
  9709. <member name="P:Godot.CPUParticles2D.Randomness">
  9710. <summary>
  9711. <para>Emission lifetime randomness ratio.</para>
  9712. </summary>
  9713. </member>
  9714. <member name="P:Godot.CPUParticles2D.LifetimeRandomness">
  9715. <summary>
  9716. <para>Particle lifetime randomness ratio.</para>
  9717. </summary>
  9718. </member>
  9719. <member name="P:Godot.CPUParticles2D.FixedFps">
  9720. <summary>
  9721. <para>The particle system's frame rate is fixed to a value. For instance, changing the value to 2 will make the particles render at 2 frames per second. Note this does not slow down the simulation of the particle system itself.</para>
  9722. </summary>
  9723. </member>
  9724. <member name="P:Godot.CPUParticles2D.FractDelta">
  9725. <summary>
  9726. <para>If <c>true</c>, results in fractional delta calculation which has a smoother particles display effect.</para>
  9727. </summary>
  9728. </member>
  9729. <member name="P:Godot.CPUParticles2D.LocalCoords">
  9730. <summary>
  9731. <para>If <c>true</c>, particles use the parent node's coordinate space. If <c>false</c>, they use global coordinates.</para>
  9732. </summary>
  9733. </member>
  9734. <member name="P:Godot.CPUParticles2D.DrawOrder">
  9735. <summary>
  9736. <para>Particle draw order. Uses <see cref="T:Godot.CPUParticles2D.DrawOrderEnum"/> values.</para>
  9737. </summary>
  9738. </member>
  9739. <member name="P:Godot.CPUParticles2D.Texture">
  9740. <summary>
  9741. <para>Particle texture. If <c>null</c>, particles will be squares.</para>
  9742. </summary>
  9743. </member>
  9744. <member name="P:Godot.CPUParticles2D.Normalmap">
  9745. <summary>
  9746. <para>Normal map to be used for the <see cref="P:Godot.CPUParticles2D.Texture"/> property.</para>
  9747. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  9748. </summary>
  9749. </member>
  9750. <member name="P:Godot.CPUParticles2D.EmissionShape">
  9751. <summary>
  9752. <para>Particles will be emitted inside this region. See <see cref="T:Godot.CPUParticles2D.EmissionShapeEnum"/> for possible values.</para>
  9753. </summary>
  9754. </member>
  9755. <member name="P:Godot.CPUParticles2D.EmissionSphereRadius">
  9756. <summary>
  9757. <para>The sphere's radius if <see cref="P:Godot.CPUParticles2D.EmissionShape"/> is set to .</para>
  9758. </summary>
  9759. </member>
  9760. <member name="P:Godot.CPUParticles2D.EmissionRectExtents">
  9761. <summary>
  9762. <para>The rectangle's extents if <see cref="P:Godot.CPUParticles2D.EmissionShape"/> is set to .</para>
  9763. </summary>
  9764. </member>
  9765. <member name="P:Godot.CPUParticles2D.EmissionPoints">
  9766. <summary>
  9767. <para>Sets the initial positions to spawn particles when using or .</para>
  9768. </summary>
  9769. </member>
  9770. <member name="P:Godot.CPUParticles2D.EmissionNormals">
  9771. <summary>
  9772. <para>Sets the direction the particles will be emitted in when using .</para>
  9773. </summary>
  9774. </member>
  9775. <member name="P:Godot.CPUParticles2D.EmissionColors">
  9776. <summary>
  9777. <para>Sets the <see cref="T:Godot.Color"/>s to modulate particles by when using or .</para>
  9778. </summary>
  9779. </member>
  9780. <member name="P:Godot.CPUParticles2D.FlagAlignY">
  9781. <summary>
  9782. <para>Align Y axis of particle with the direction of its velocity.</para>
  9783. </summary>
  9784. </member>
  9785. <member name="P:Godot.CPUParticles2D.Direction">
  9786. <summary>
  9787. <para>Unit vector specifying the particles' emission direction.</para>
  9788. </summary>
  9789. </member>
  9790. <member name="P:Godot.CPUParticles2D.Spread">
  9791. <summary>
  9792. <para>Each particle's initial direction range from <c>+spread</c> to <c>-spread</c> degrees.</para>
  9793. </summary>
  9794. </member>
  9795. <member name="P:Godot.CPUParticles2D.Gravity">
  9796. <summary>
  9797. <para>Gravity applied to every particle.</para>
  9798. </summary>
  9799. </member>
  9800. <member name="P:Godot.CPUParticles2D.InitialVelocity">
  9801. <summary>
  9802. <para>Initial velocity magnitude for each particle. Direction comes from <see cref="P:Godot.CPUParticles2D.Spread"/> and the node's orientation.</para>
  9803. </summary>
  9804. </member>
  9805. <member name="P:Godot.CPUParticles2D.InitialVelocityRandom">
  9806. <summary>
  9807. <para>Initial velocity randomness ratio.</para>
  9808. </summary>
  9809. </member>
  9810. <member name="P:Godot.CPUParticles2D.AngularVelocity">
  9811. <summary>
  9812. <para>Initial angular velocity applied to each particle. Sets the speed of rotation of the particle.</para>
  9813. </summary>
  9814. </member>
  9815. <member name="P:Godot.CPUParticles2D.AngularVelocityRandom">
  9816. <summary>
  9817. <para>Angular velocity randomness ratio.</para>
  9818. </summary>
  9819. </member>
  9820. <member name="P:Godot.CPUParticles2D.AngularVelocityCurve">
  9821. <summary>
  9822. <para>Each particle's angular velocity will vary along this <see cref="T:Godot.Curve"/>.</para>
  9823. </summary>
  9824. </member>
  9825. <member name="P:Godot.CPUParticles2D.OrbitVelocity">
  9826. <summary>
  9827. <para>Orbital velocity applied to each particle. Makes the particles circle around origin. Specified in number of full rotations around origin per second.</para>
  9828. </summary>
  9829. </member>
  9830. <member name="P:Godot.CPUParticles2D.OrbitVelocityRandom">
  9831. <summary>
  9832. <para>Orbital velocity randomness ratio.</para>
  9833. </summary>
  9834. </member>
  9835. <member name="P:Godot.CPUParticles2D.OrbitVelocityCurve">
  9836. <summary>
  9837. <para>Each particle's orbital velocity will vary along this <see cref="T:Godot.Curve"/>.</para>
  9838. </summary>
  9839. </member>
  9840. <member name="P:Godot.CPUParticles2D.LinearAccel">
  9841. <summary>
  9842. <para>Linear acceleration applied to each particle in the direction of motion.</para>
  9843. </summary>
  9844. </member>
  9845. <member name="P:Godot.CPUParticles2D.LinearAccelRandom">
  9846. <summary>
  9847. <para>Linear acceleration randomness ratio.</para>
  9848. </summary>
  9849. </member>
  9850. <member name="P:Godot.CPUParticles2D.LinearAccelCurve">
  9851. <summary>
  9852. <para>Each particle's linear acceleration will vary along this <see cref="T:Godot.Curve"/>.</para>
  9853. </summary>
  9854. </member>
  9855. <member name="P:Godot.CPUParticles2D.RadialAccel">
  9856. <summary>
  9857. <para>Radial acceleration applied to each particle. Makes particle accelerate away from origin.</para>
  9858. </summary>
  9859. </member>
  9860. <member name="P:Godot.CPUParticles2D.RadialAccelRandom">
  9861. <summary>
  9862. <para>Radial acceleration randomness ratio.</para>
  9863. </summary>
  9864. </member>
  9865. <member name="P:Godot.CPUParticles2D.RadialAccelCurve">
  9866. <summary>
  9867. <para>Each particle's radial acceleration will vary along this <see cref="T:Godot.Curve"/>.</para>
  9868. </summary>
  9869. </member>
  9870. <member name="P:Godot.CPUParticles2D.TangentialAccel">
  9871. <summary>
  9872. <para>Tangential acceleration applied to each particle. Tangential acceleration is perpendicular to the particle's velocity giving the particles a swirling motion.</para>
  9873. </summary>
  9874. </member>
  9875. <member name="P:Godot.CPUParticles2D.TangentialAccelRandom">
  9876. <summary>
  9877. <para>Tangential acceleration randomness ratio.</para>
  9878. </summary>
  9879. </member>
  9880. <member name="P:Godot.CPUParticles2D.TangentialAccelCurve">
  9881. <summary>
  9882. <para>Each particle's tangential acceleration will vary along this <see cref="T:Godot.Curve"/>.</para>
  9883. </summary>
  9884. </member>
  9885. <member name="P:Godot.CPUParticles2D.Damping">
  9886. <summary>
  9887. <para>The rate at which particles lose velocity.</para>
  9888. </summary>
  9889. </member>
  9890. <member name="P:Godot.CPUParticles2D.DampingRandom">
  9891. <summary>
  9892. <para>Damping randomness ratio.</para>
  9893. </summary>
  9894. </member>
  9895. <member name="P:Godot.CPUParticles2D.DampingCurve">
  9896. <summary>
  9897. <para>Damping will vary along this <see cref="T:Godot.Curve"/>.</para>
  9898. </summary>
  9899. </member>
  9900. <member name="P:Godot.CPUParticles2D.Angle">
  9901. <summary>
  9902. <para>Initial rotation applied to each particle, in degrees.</para>
  9903. </summary>
  9904. </member>
  9905. <member name="P:Godot.CPUParticles2D.AngleRandom">
  9906. <summary>
  9907. <para>Rotation randomness ratio.</para>
  9908. </summary>
  9909. </member>
  9910. <member name="P:Godot.CPUParticles2D.AngleCurve">
  9911. <summary>
  9912. <para>Each particle's rotation will be animated along this <see cref="T:Godot.Curve"/>.</para>
  9913. </summary>
  9914. </member>
  9915. <member name="P:Godot.CPUParticles2D.ScaleAmount">
  9916. <summary>
  9917. <para>Initial scale applied to each particle.</para>
  9918. </summary>
  9919. </member>
  9920. <member name="P:Godot.CPUParticles2D.ScaleAmountRandom">
  9921. <summary>
  9922. <para>Scale randomness ratio.</para>
  9923. </summary>
  9924. </member>
  9925. <member name="P:Godot.CPUParticles2D.ScaleAmountCurve">
  9926. <summary>
  9927. <para>Each particle's scale will vary along this <see cref="T:Godot.Curve"/>.</para>
  9928. </summary>
  9929. </member>
  9930. <member name="P:Godot.CPUParticles2D.Color">
  9931. <summary>
  9932. <para>Each particle's initial color. If <see cref="P:Godot.CPUParticles2D.Texture"/> is defined, it will be multiplied by this color.</para>
  9933. </summary>
  9934. </member>
  9935. <member name="P:Godot.CPUParticles2D.ColorRamp">
  9936. <summary>
  9937. <para>Each particle's color will vary along this <see cref="T:Godot.Gradient"/>.</para>
  9938. </summary>
  9939. </member>
  9940. <member name="P:Godot.CPUParticles2D.HueVariation">
  9941. <summary>
  9942. <para>Initial hue variation applied to each particle.</para>
  9943. </summary>
  9944. </member>
  9945. <member name="P:Godot.CPUParticles2D.HueVariationRandom">
  9946. <summary>
  9947. <para>Hue variation randomness ratio.</para>
  9948. </summary>
  9949. </member>
  9950. <member name="P:Godot.CPUParticles2D.HueVariationCurve">
  9951. <summary>
  9952. <para>Each particle's hue will vary along this <see cref="T:Godot.Curve"/>.</para>
  9953. </summary>
  9954. </member>
  9955. <member name="P:Godot.CPUParticles2D.AnimSpeed">
  9956. <summary>
  9957. <para>Particle animation speed.</para>
  9958. </summary>
  9959. </member>
  9960. <member name="P:Godot.CPUParticles2D.AnimSpeedRandom">
  9961. <summary>
  9962. <para>Animation speed randomness ratio.</para>
  9963. </summary>
  9964. </member>
  9965. <member name="P:Godot.CPUParticles2D.AnimSpeedCurve">
  9966. <summary>
  9967. <para>Each particle's animation speed will vary along this <see cref="T:Godot.Curve"/>.</para>
  9968. </summary>
  9969. </member>
  9970. <member name="P:Godot.CPUParticles2D.AnimOffset">
  9971. <summary>
  9972. <para>Particle animation offset.</para>
  9973. </summary>
  9974. </member>
  9975. <member name="P:Godot.CPUParticles2D.AnimOffsetRandom">
  9976. <summary>
  9977. <para>Animation offset randomness ratio.</para>
  9978. </summary>
  9979. </member>
  9980. <member name="P:Godot.CPUParticles2D.AnimOffsetCurve">
  9981. <summary>
  9982. <para>Each particle's animation offset will vary along this <see cref="T:Godot.Curve"/>.</para>
  9983. </summary>
  9984. </member>
  9985. <member name="M:Godot.CPUParticles2D.Restart">
  9986. <summary>
  9987. <para>Restarts the particle emitter.</para>
  9988. </summary>
  9989. </member>
  9990. <member name="M:Godot.CPUParticles2D.SetParam(Godot.CPUParticles2D.Parameter,System.Single)">
  9991. <summary>
  9992. <para>Sets the base value of the parameter specified by <see cref="T:Godot.CPUParticles2D.Parameter"/>.</para>
  9993. </summary>
  9994. </member>
  9995. <member name="M:Godot.CPUParticles2D.GetParam(Godot.CPUParticles2D.Parameter)">
  9996. <summary>
  9997. <para>Returns the base value of the parameter specified by <see cref="T:Godot.CPUParticles2D.Parameter"/>.</para>
  9998. </summary>
  9999. </member>
  10000. <member name="M:Godot.CPUParticles2D.SetParamRandomness(Godot.CPUParticles2D.Parameter,System.Single)">
  10001. <summary>
  10002. <para>Sets the randomness factor of the parameter specified by <see cref="T:Godot.CPUParticles2D.Parameter"/>.</para>
  10003. </summary>
  10004. </member>
  10005. <member name="M:Godot.CPUParticles2D.GetParamRandomness(Godot.CPUParticles2D.Parameter)">
  10006. <summary>
  10007. <para>Returns the randomness factor of the parameter specified by <see cref="T:Godot.CPUParticles2D.Parameter"/>.</para>
  10008. </summary>
  10009. </member>
  10010. <member name="M:Godot.CPUParticles2D.SetParamCurve(Godot.CPUParticles2D.Parameter,Godot.Curve)">
  10011. <summary>
  10012. <para>Sets the <see cref="T:Godot.Curve"/> of the parameter specified by <see cref="T:Godot.CPUParticles2D.Parameter"/>.</para>
  10013. </summary>
  10014. </member>
  10015. <member name="M:Godot.CPUParticles2D.GetParamCurve(Godot.CPUParticles2D.Parameter)">
  10016. <summary>
  10017. <para>Returns the <see cref="T:Godot.Curve"/> of the parameter specified by <see cref="T:Godot.CPUParticles2D.Parameter"/>.</para>
  10018. </summary>
  10019. </member>
  10020. <member name="M:Godot.CPUParticles2D.SetParticleFlag(Godot.CPUParticles2D.Flags,System.Boolean)">
  10021. <summary>
  10022. <para>Enables or disables the given flag (see <see cref="T:Godot.CPUParticles2D.Flags"/> for options).</para>
  10023. </summary>
  10024. </member>
  10025. <member name="M:Godot.CPUParticles2D.GetParticleFlag(Godot.CPUParticles2D.Flags)">
  10026. <summary>
  10027. <para>Returns the enabled state of the given flag (see <see cref="T:Godot.CPUParticles2D.Flags"/> for options).</para>
  10028. </summary>
  10029. </member>
  10030. <member name="M:Godot.CPUParticles2D.ConvertFromParticles(Godot.Node)">
  10031. <summary>
  10032. <para>Sets this node's properties to match a given <see cref="T:Godot.Particles2D"/> node with an assigned <see cref="T:Godot.ParticlesMaterial"/>.</para>
  10033. </summary>
  10034. </member>
  10035. <member name="T:Godot.CSGBox">
  10036. <summary>
  10037. <para>This node allows you to create a box for use with the CSG system.</para>
  10038. </summary>
  10039. </member>
  10040. <member name="P:Godot.CSGBox.Width">
  10041. <summary>
  10042. <para>Width of the box measured from the center of the box.</para>
  10043. </summary>
  10044. </member>
  10045. <member name="P:Godot.CSGBox.Height">
  10046. <summary>
  10047. <para>Height of the box measured from the center of the box.</para>
  10048. </summary>
  10049. </member>
  10050. <member name="P:Godot.CSGBox.Depth">
  10051. <summary>
  10052. <para>Depth of the box measured from the center of the box.</para>
  10053. </summary>
  10054. </member>
  10055. <member name="P:Godot.CSGBox.Material">
  10056. <summary>
  10057. <para>The material used to render the box.</para>
  10058. </summary>
  10059. </member>
  10060. <member name="T:Godot.CSGCombiner">
  10061. <summary>
  10062. <para>For complex arrangements of shapes, it is sometimes needed to add structure to your CSG nodes. The CSGCombiner node allows you to create this structure. The node encapsulates the result of the CSG operations of its children. In this way, it is possible to do operations on one set of shapes that are children of one CSGCombiner node, and a set of separate operations on a second set of shapes that are children of a second CSGCombiner node, and then do an operation that takes the two end results as its input to create the final shape.</para>
  10063. </summary>
  10064. </member>
  10065. <member name="T:Godot.CSGCylinder">
  10066. <summary>
  10067. <para>This node allows you to create a cylinder (or cone) for use with the CSG system.</para>
  10068. </summary>
  10069. </member>
  10070. <member name="P:Godot.CSGCylinder.Radius">
  10071. <summary>
  10072. <para>The radius of the cylinder.</para>
  10073. </summary>
  10074. </member>
  10075. <member name="P:Godot.CSGCylinder.Height">
  10076. <summary>
  10077. <para>The height of the cylinder.</para>
  10078. </summary>
  10079. </member>
  10080. <member name="P:Godot.CSGCylinder.Sides">
  10081. <summary>
  10082. <para>The number of sides of the cylinder, the higher this number the more detail there will be in the cylinder.</para>
  10083. </summary>
  10084. </member>
  10085. <member name="P:Godot.CSGCylinder.Cone">
  10086. <summary>
  10087. <para>If <c>true</c> a cone is created, the <see cref="P:Godot.CSGCylinder.Radius"/> will only apply to one side.</para>
  10088. </summary>
  10089. </member>
  10090. <member name="P:Godot.CSGCylinder.SmoothFaces">
  10091. <summary>
  10092. <para>If <c>true</c> the normals of the cylinder are set to give a smooth effect making the cylinder seem rounded. If <c>false</c> the cylinder will have a flat shaded look.</para>
  10093. </summary>
  10094. </member>
  10095. <member name="P:Godot.CSGCylinder.Material">
  10096. <summary>
  10097. <para>The material used to render the cylinder.</para>
  10098. </summary>
  10099. </member>
  10100. <member name="T:Godot.CSGMesh">
  10101. <summary>
  10102. <para>This CSG node allows you to use any mesh resource as a CSG shape, provided it is closed, does not self-intersect, does not contain internal faces and has no edges that connect to more then two faces.</para>
  10103. </summary>
  10104. </member>
  10105. <member name="P:Godot.CSGMesh.Mesh">
  10106. <summary>
  10107. <para>The <see cref="T:Godot.Mesh"/> resource to use as a CSG shape.</para>
  10108. </summary>
  10109. </member>
  10110. <member name="P:Godot.CSGMesh.Material">
  10111. <summary>
  10112. <para>The <see cref="T:Godot.Material"/> used in drawing the CSG shape.</para>
  10113. </summary>
  10114. </member>
  10115. <member name="T:Godot.CSGPolygon">
  10116. <summary>
  10117. <para>This node takes a 2D polygon shape and extrudes it to create a 3D mesh.</para>
  10118. </summary>
  10119. </member>
  10120. <member name="F:Godot.CSGPolygon.PathRotationEnum.Polygon">
  10121. <summary>
  10122. <para>Slice is not rotated.</para>
  10123. </summary>
  10124. </member>
  10125. <member name="F:Godot.CSGPolygon.PathRotationEnum.Path">
  10126. <summary>
  10127. <para>Slice is rotated around the up vector of the path.</para>
  10128. </summary>
  10129. </member>
  10130. <member name="F:Godot.CSGPolygon.PathRotationEnum.PathFollow">
  10131. <summary>
  10132. <para>Slice is rotate to match the path exactly.</para>
  10133. </summary>
  10134. </member>
  10135. <member name="F:Godot.CSGPolygon.ModeEnum.Depth">
  10136. <summary>
  10137. <para>Shape is extruded to <see cref="P:Godot.CSGPolygon.Depth"/>.</para>
  10138. </summary>
  10139. </member>
  10140. <member name="F:Godot.CSGPolygon.ModeEnum.Spin">
  10141. <summary>
  10142. <para>Shape is extruded by rotating it around an axis.</para>
  10143. </summary>
  10144. </member>
  10145. <member name="F:Godot.CSGPolygon.ModeEnum.Path">
  10146. <summary>
  10147. <para>Shape is extruded along a path set by a <see cref="T:Godot.Shape"/> set in <see cref="P:Godot.CSGPolygon.PathNode"/>.</para>
  10148. </summary>
  10149. </member>
  10150. <member name="P:Godot.CSGPolygon.Polygon">
  10151. <summary>
  10152. <para>Point array that defines the shape that we'll extrude.</para>
  10153. </summary>
  10154. </member>
  10155. <member name="P:Godot.CSGPolygon.Mode">
  10156. <summary>
  10157. <para>Extrusion mode.</para>
  10158. </summary>
  10159. </member>
  10160. <member name="P:Godot.CSGPolygon.Depth">
  10161. <summary>
  10162. <para>Extrusion depth when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10163. </summary>
  10164. </member>
  10165. <member name="P:Godot.CSGPolygon.SpinDegrees">
  10166. <summary>
  10167. <para>Degrees to rotate our extrusion for each slice when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10168. </summary>
  10169. </member>
  10170. <member name="P:Godot.CSGPolygon.SpinSides">
  10171. <summary>
  10172. <para>Number of extrusion when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10173. </summary>
  10174. </member>
  10175. <member name="P:Godot.CSGPolygon.PathNode">
  10176. <summary>
  10177. <para>The <see cref="T:Godot.Shape"/> object containing the path along which we extrude when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10178. </summary>
  10179. </member>
  10180. <member name="P:Godot.CSGPolygon.PathInterval">
  10181. <summary>
  10182. <para>Interval at which a new extrusion slice is added along the path when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10183. </summary>
  10184. </member>
  10185. <member name="P:Godot.CSGPolygon.PathRotation">
  10186. <summary>
  10187. <para>The method by which each slice is rotated along the path when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10188. </summary>
  10189. </member>
  10190. <member name="P:Godot.CSGPolygon.PathLocal">
  10191. <summary>
  10192. <para>If <c>false</c> we extrude centered on our path, if <c>true</c> we extrude in relation to the position of our CSGPolygon when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10193. </summary>
  10194. </member>
  10195. <member name="P:Godot.CSGPolygon.PathContinuousU">
  10196. <summary>
  10197. <para>If <c>true</c> the u component of our uv will continuously increase in unison with the distance traveled along our path when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10198. </summary>
  10199. </member>
  10200. <member name="P:Godot.CSGPolygon.PathJoined">
  10201. <summary>
  10202. <para>If <c>true</c> the start and end of our path are joined together ensuring there is no seam when <see cref="P:Godot.CSGPolygon.Mode"/> is .</para>
  10203. </summary>
  10204. </member>
  10205. <member name="P:Godot.CSGPolygon.SmoothFaces">
  10206. <summary>
  10207. <para>Generates smooth normals so smooth shading is applied to our mesh.</para>
  10208. </summary>
  10209. </member>
  10210. <member name="P:Godot.CSGPolygon.Material">
  10211. <summary>
  10212. <para>Material to use for the resulting mesh.</para>
  10213. </summary>
  10214. </member>
  10215. <member name="T:Godot.CSGPrimitive">
  10216. <summary>
  10217. <para>Parent class for various CSG primitives. It contains code and functionality that is common between them. It cannot be used directly. Instead use one of the various classes that inherit from it.</para>
  10218. </summary>
  10219. </member>
  10220. <member name="P:Godot.CSGPrimitive.InvertFaces">
  10221. <summary>
  10222. <para>Invert the faces of the mesh.</para>
  10223. </summary>
  10224. </member>
  10225. <member name="T:Godot.CSGShape">
  10226. <summary>
  10227. <para>This is the CSG base class that provides CSG operation support to the various CSG nodes in Godot.</para>
  10228. </summary>
  10229. </member>
  10230. <member name="F:Godot.CSGShape.OperationEnum.Union">
  10231. <summary>
  10232. <para>Geometry of both primitives is merged, intersecting geometry is removed.</para>
  10233. </summary>
  10234. </member>
  10235. <member name="F:Godot.CSGShape.OperationEnum.Intersection">
  10236. <summary>
  10237. <para>Only intersecting geometry remains, the rest is removed.</para>
  10238. </summary>
  10239. </member>
  10240. <member name="F:Godot.CSGShape.OperationEnum.Subtraction">
  10241. <summary>
  10242. <para>The second shape is subtracted from the first, leaving a dent with its shape.</para>
  10243. </summary>
  10244. </member>
  10245. <member name="P:Godot.CSGShape.Operation">
  10246. <summary>
  10247. <para>The operation that is performed on this shape. This is ignored for the first CSG child node as the operation is between this node and the previous child of this nodes parent.</para>
  10248. </summary>
  10249. </member>
  10250. <member name="P:Godot.CSGShape.Snap">
  10251. <summary>
  10252. <para>Snap makes the mesh snap to a given distance so that the faces of two meshes can be perfectly aligned. A lower value results in greater precision but may be harder to adjust.</para>
  10253. </summary>
  10254. </member>
  10255. <member name="P:Godot.CSGShape.CalculateTangents">
  10256. <summary>
  10257. <para>Calculate tangents for the CSG shape which allows the use of normal maps. This is only applied on the root shape, this setting is ignored on any child.</para>
  10258. </summary>
  10259. </member>
  10260. <member name="P:Godot.CSGShape.UseCollision">
  10261. <summary>
  10262. <para>Adds a collision shape to the physics engine for our CSG shape. This will always act like a static body. Note that the collision shape is still active even if the CSG shape itself is hidden.</para>
  10263. </summary>
  10264. </member>
  10265. <member name="P:Godot.CSGShape.CollisionLayer">
  10266. <summary>
  10267. <para>The physics layers this area is in.</para>
  10268. <para>Collidable objects can exist in any of 32 different layers. These layers work like a tagging system, and are not visual. A collidable can use these layers to select with which objects it can collide, using the collision_mask property.</para>
  10269. <para>A contact is detected if object A is in any of the layers that object B scans, or object B is in any layer scanned by object A.</para>
  10270. </summary>
  10271. </member>
  10272. <member name="P:Godot.CSGShape.CollisionMask">
  10273. <summary>
  10274. <para>The physics layers this CSG shape scans for collisions.</para>
  10275. </summary>
  10276. </member>
  10277. <member name="M:Godot.CSGShape.IsRootShape">
  10278. <summary>
  10279. <para>Returns <c>true</c> if this is a root shape and is thus the object that is rendered.</para>
  10280. </summary>
  10281. </member>
  10282. <member name="M:Godot.CSGShape.SetCollisionMaskBit(System.Int32,System.Boolean)">
  10283. <summary>
  10284. <para>Sets individual bits on the collision mask. Use this if you only need to change one layer's value.</para>
  10285. </summary>
  10286. </member>
  10287. <member name="M:Godot.CSGShape.GetCollisionMaskBit(System.Int32)">
  10288. <summary>
  10289. <para>Returns an individual bit on the collision mask.</para>
  10290. </summary>
  10291. </member>
  10292. <member name="M:Godot.CSGShape.SetCollisionLayerBit(System.Int32,System.Boolean)">
  10293. <summary>
  10294. <para>Sets individual bits on the layer mask. Use this if you only need to change one layer's value.</para>
  10295. </summary>
  10296. </member>
  10297. <member name="M:Godot.CSGShape.GetCollisionLayerBit(System.Int32)">
  10298. <summary>
  10299. <para>Returns an individual bit on the collision mask.</para>
  10300. </summary>
  10301. </member>
  10302. <member name="M:Godot.CSGShape.GetMeshes">
  10303. <summary>
  10304. <para>Returns an <see cref="T:Godot.Collections.Array"/> with two elements, the first is the <see cref="T:Godot.Transform"/> of this node and the second is the root <see cref="T:Godot.Mesh"/> of this node. Only works when this node is the root shape.</para>
  10305. </summary>
  10306. </member>
  10307. <member name="T:Godot.CSGSphere">
  10308. <summary>
  10309. <para>This node allows you to create a sphere for use with the CSG system.</para>
  10310. </summary>
  10311. </member>
  10312. <member name="P:Godot.CSGSphere.Radius">
  10313. <summary>
  10314. <para>Radius of the sphere.</para>
  10315. </summary>
  10316. </member>
  10317. <member name="P:Godot.CSGSphere.RadialSegments">
  10318. <summary>
  10319. <para>Number of vertical slices for the sphere.</para>
  10320. </summary>
  10321. </member>
  10322. <member name="P:Godot.CSGSphere.Rings">
  10323. <summary>
  10324. <para>Number of horizontal slices for the sphere.</para>
  10325. </summary>
  10326. </member>
  10327. <member name="P:Godot.CSGSphere.SmoothFaces">
  10328. <summary>
  10329. <para>If <c>true</c> the normals of the sphere are set to give a smooth effect making the sphere seem rounded. If <c>false</c> the sphere will have a flat shaded look.</para>
  10330. </summary>
  10331. </member>
  10332. <member name="P:Godot.CSGSphere.Material">
  10333. <summary>
  10334. <para>The material used to render the sphere.</para>
  10335. </summary>
  10336. </member>
  10337. <member name="T:Godot.CSGTorus">
  10338. <summary>
  10339. <para>This node allows you to create a torus for use with the CSG system.</para>
  10340. </summary>
  10341. </member>
  10342. <member name="P:Godot.CSGTorus.InnerRadius">
  10343. <summary>
  10344. <para>The inner radius of the torus.</para>
  10345. </summary>
  10346. </member>
  10347. <member name="P:Godot.CSGTorus.OuterRadius">
  10348. <summary>
  10349. <para>The outer radius of the torus.</para>
  10350. </summary>
  10351. </member>
  10352. <member name="P:Godot.CSGTorus.Sides">
  10353. <summary>
  10354. <para>The number of slices the torus is constructed of.</para>
  10355. </summary>
  10356. </member>
  10357. <member name="P:Godot.CSGTorus.RingSides">
  10358. <summary>
  10359. <para>The number of edges each ring of the torus is constructed of.</para>
  10360. </summary>
  10361. </member>
  10362. <member name="P:Godot.CSGTorus.SmoothFaces">
  10363. <summary>
  10364. <para>If <c>true</c> the normals of the torus are set to give a smooth effect making the torus seem rounded. If <c>false</c> the torus will have a flat shaded look.</para>
  10365. </summary>
  10366. </member>
  10367. <member name="P:Godot.CSGTorus.Material">
  10368. <summary>
  10369. <para>The material used to render the torus.</para>
  10370. </summary>
  10371. </member>
  10372. <member name="T:Godot.CSharpScript">
  10373. <summary>
  10374. <para>This class represents a C# script. It is the C# equivalent of the <see cref="T:Godot.GDScript"/> class and is only available in Mono-enabled Godot builds.</para>
  10375. <para>See also <see cref="T:Godot.GodotSharp"/>.</para>
  10376. </summary>
  10377. </member>
  10378. <member name="M:Godot.CSharpScript.New(System.Object[])">
  10379. <summary>
  10380. <para>Returns a new instance of the script.</para>
  10381. </summary>
  10382. </member>
  10383. <member name="T:Godot.Camera">
  10384. <summary>
  10385. <para>Camera is a special node that displays what is visible from its current location. Cameras register themselves in the nearest <see cref="T:Godot.Viewport"/> node (when ascending the tree). Only one camera can be active per viewport. If no viewport is available ascending the tree, the camera will register in the global viewport. In other words, a camera just provides 3D display capabilities to a <see cref="T:Godot.Viewport"/>, and, without one, a scene registered in that <see cref="T:Godot.Viewport"/> (or higher viewports) can't be displayed.</para>
  10386. </summary>
  10387. </member>
  10388. <member name="F:Godot.Camera.KeepAspectEnum.Width">
  10389. <summary>
  10390. <para>Preserves the horizontal aspect ratio; also known as Vert- scaling. This is usually the best option for projects running in portrait mode, as taller aspect ratios will benefit from a wider vertical FOV.</para>
  10391. </summary>
  10392. </member>
  10393. <member name="F:Godot.Camera.KeepAspectEnum.Height">
  10394. <summary>
  10395. <para>Preserves the vertical aspect ratio; also known as Hor+ scaling. This is usually the best option for projects running in landscape mode, as wider aspect ratios will automatically benefit from a wider horizontal FOV.</para>
  10396. </summary>
  10397. </member>
  10398. <member name="F:Godot.Camera.ProjectionEnum.Perspective">
  10399. <summary>
  10400. <para>Perspective projection. Objects on the screen becomes smaller when they are far away.</para>
  10401. </summary>
  10402. </member>
  10403. <member name="F:Godot.Camera.ProjectionEnum.Orthogonal">
  10404. <summary>
  10405. <para>Orthogonal projection, also known as orthographic projection. Objects remain the same size on the screen no matter how far away they are.</para>
  10406. </summary>
  10407. </member>
  10408. <member name="F:Godot.Camera.ProjectionEnum.Frustum">
  10409. <summary>
  10410. <para>Frustum projection. This mode allows adjusting <see cref="P:Godot.Camera.FrustumOffset"/> to create "tilted frustum" effects.</para>
  10411. </summary>
  10412. </member>
  10413. <member name="F:Godot.Camera.DopplerTrackingEnum.Disabled">
  10414. <summary>
  10415. <para>Disables <a href="https://en.wikipedia.org/wiki/Doppler_effect">Doppler effect</a> simulation (default).</para>
  10416. </summary>
  10417. </member>
  10418. <member name="F:Godot.Camera.DopplerTrackingEnum.IdleStep">
  10419. <summary>
  10420. <para>Simulate <a href="https://en.wikipedia.org/wiki/Doppler_effect">Doppler effect</a> by tracking positions of objects that are changed in <c>_process</c>. Changes in the relative velocity of this camera compared to those objects affect how Audio is perceived (changing the Audio's <c>pitch shift</c>).</para>
  10421. </summary>
  10422. </member>
  10423. <member name="F:Godot.Camera.DopplerTrackingEnum.PhysicsStep">
  10424. <summary>
  10425. <para>Simulate <a href="https://en.wikipedia.org/wiki/Doppler_effect">Doppler effect</a> by tracking positions of objects that are changed in <c>_physics_process</c>. Changes in the relative velocity of this camera compared to those objects affect how Audio is perceived (changing the Audio's <c>pitch shift</c>).</para>
  10426. </summary>
  10427. </member>
  10428. <member name="P:Godot.Camera.KeepAspect">
  10429. <summary>
  10430. <para>The axis to lock during <see cref="P:Godot.Camera.Fov"/>/<see cref="P:Godot.Camera.Size"/> adjustments. Can be either or .</para>
  10431. </summary>
  10432. </member>
  10433. <member name="P:Godot.Camera.CullMask">
  10434. <summary>
  10435. <para>The culling mask that describes which 3D render layers are rendered by this camera.</para>
  10436. </summary>
  10437. </member>
  10438. <member name="P:Godot.Camera.Environment">
  10439. <summary>
  10440. <para>The <see cref="T:Godot.Environment"/> to use for this camera.</para>
  10441. </summary>
  10442. </member>
  10443. <member name="P:Godot.Camera.HOffset">
  10444. <summary>
  10445. <para>The horizontal (X) offset of the camera viewport.</para>
  10446. </summary>
  10447. </member>
  10448. <member name="P:Godot.Camera.VOffset">
  10449. <summary>
  10450. <para>The vertical (Y) offset of the camera viewport.</para>
  10451. </summary>
  10452. </member>
  10453. <member name="P:Godot.Camera.DopplerTracking">
  10454. <summary>
  10455. <para>If not , this camera will simulate the <a href="https://en.wikipedia.org/wiki/Doppler_effect">Doppler effect</a> for objects changed in particular <c>_process</c> methods. See <see cref="T:Godot.Camera.DopplerTrackingEnum"/> for possible values.</para>
  10456. </summary>
  10457. </member>
  10458. <member name="P:Godot.Camera.Projection">
  10459. <summary>
  10460. <para>The camera's projection mode. In mode, objects' Z distance from the camera's local space scales their perceived size.</para>
  10461. </summary>
  10462. </member>
  10463. <member name="P:Godot.Camera.Current">
  10464. <summary>
  10465. <para>If <c>true</c>, the ancestor <see cref="T:Godot.Viewport"/> is currently using this camera.</para>
  10466. </summary>
  10467. </member>
  10468. <member name="P:Godot.Camera.Fov">
  10469. <summary>
  10470. <para>The camera's field of view angle (in degrees). Only applicable in perspective mode. Since <see cref="P:Godot.Camera.KeepAspect"/> locks one axis, <c>fov</c> sets the other axis' field of view angle.</para>
  10471. </summary>
  10472. </member>
  10473. <member name="P:Godot.Camera.Size">
  10474. <summary>
  10475. <para>The camera's size measured as 1/2 the width or height. Only applicable in orthogonal mode. Since <see cref="P:Godot.Camera.KeepAspect"/> locks on axis, <c>size</c> sets the other axis' size length.</para>
  10476. </summary>
  10477. </member>
  10478. <member name="P:Godot.Camera.FrustumOffset">
  10479. <summary>
  10480. <para>The camera's frustum offset. This can be changed from the default to create "tilted frustum" effects such as <a href="https://zdoom.org/wiki/Y-shearing">Y-shearing</a>.</para>
  10481. </summary>
  10482. </member>
  10483. <member name="P:Godot.Camera.Near">
  10484. <summary>
  10485. <para>The distance to the near culling boundary for this camera relative to its local Z axis.</para>
  10486. </summary>
  10487. </member>
  10488. <member name="P:Godot.Camera.Far">
  10489. <summary>
  10490. <para>The distance to the far culling boundary for this camera relative to its local Z axis.</para>
  10491. </summary>
  10492. </member>
  10493. <member name="M:Godot.Camera.ProjectRayNormal(Godot.Vector2)">
  10494. <summary>
  10495. <para>Returns a normal vector in worldspace, that is the result of projecting a point on the <see cref="T:Godot.Viewport"/> rectangle by the camera projection. This is useful for casting rays in the form of (origin, normal) for object intersection or picking.</para>
  10496. </summary>
  10497. </member>
  10498. <member name="M:Godot.Camera.ProjectLocalRayNormal(Godot.Vector2)">
  10499. <summary>
  10500. <para>Returns a normal vector from the screen point location directed along the camera. Orthogonal cameras are normalized. Perspective cameras account for perspective, screen width/height, etc.</para>
  10501. </summary>
  10502. </member>
  10503. <member name="M:Godot.Camera.ProjectRayOrigin(Godot.Vector2)">
  10504. <summary>
  10505. <para>Returns a 3D position in worldspace, that is the result of projecting a point on the <see cref="T:Godot.Viewport"/> rectangle by the camera projection. This is useful for casting rays in the form of (origin, normal) for object intersection or picking.</para>
  10506. </summary>
  10507. </member>
  10508. <member name="M:Godot.Camera.UnprojectPosition(Godot.Vector3)">
  10509. <summary>
  10510. <para>Returns the 2D coordinate in the <see cref="T:Godot.Viewport"/> rectangle that maps to the given 3D point in worldspace.</para>
  10511. </summary>
  10512. </member>
  10513. <member name="M:Godot.Camera.IsPositionBehind(Godot.Vector3)">
  10514. <summary>
  10515. <para>Returns <c>true</c> if the given position is behind the camera.</para>
  10516. <para>Note: A position which returns <c>false</c> may still be outside the camera's field of view.</para>
  10517. </summary>
  10518. </member>
  10519. <member name="M:Godot.Camera.ProjectPosition(Godot.Vector2,System.Single)">
  10520. <summary>
  10521. <para>Returns the 3D point in worldspace that maps to the given 2D coordinate in the <see cref="T:Godot.Viewport"/> rectangle on a plane that is the given <c>z_depth</c> distance into the scene away from the camera.</para>
  10522. </summary>
  10523. </member>
  10524. <member name="M:Godot.Camera.SetPerspective(System.Single,System.Single,System.Single)">
  10525. <summary>
  10526. <para>Sets the camera projection to perspective mode (see ), by specifying a <c>fov</c> (field of view) angle in degrees, and the <c>z_near</c> and <c>z_far</c> clip planes in world-space units.</para>
  10527. </summary>
  10528. </member>
  10529. <member name="M:Godot.Camera.SetOrthogonal(System.Single,System.Single,System.Single)">
  10530. <summary>
  10531. <para>Sets the camera projection to orthogonal mode (see ), by specifying a <c>size</c>, and the <c>z_near</c> and <c>z_far</c> clip planes in world-space units. (As a hint, 2D games often use this projection, with values specified in pixels.)</para>
  10532. </summary>
  10533. </member>
  10534. <member name="M:Godot.Camera.SetFrustum(System.Single,Godot.Vector2,System.Single,System.Single)">
  10535. <summary>
  10536. <para>Sets the camera projection to frustum mode (see ), by specifying a <c>size</c>, an <c>offset</c>, and the <c>z_near</c> and <c>z_far</c> clip planes in world-space units.</para>
  10537. </summary>
  10538. </member>
  10539. <member name="M:Godot.Camera.MakeCurrent">
  10540. <summary>
  10541. <para>Makes this camera the current camera for the <see cref="T:Godot.Viewport"/> (see class description). If the camera node is outside the scene tree, it will attempt to become current once it's added.</para>
  10542. </summary>
  10543. </member>
  10544. <member name="M:Godot.Camera.ClearCurrent(System.Boolean)">
  10545. <summary>
  10546. <para>If this is the current camera, remove it from being current. If <c>enable_next</c> is <c>true</c>, request to make the next camera current, if any.</para>
  10547. </summary>
  10548. </member>
  10549. <member name="M:Godot.Camera.GetCameraTransform">
  10550. <summary>
  10551. <para>Gets the camera transform. Subclassed cameras such as <see cref="T:Godot.InterpolatedCamera"/> may provide different transforms than the <see cref="T:Godot.Node"/> transform.</para>
  10552. </summary>
  10553. </member>
  10554. <member name="M:Godot.Camera.GetFrustum">
  10555. <summary>
  10556. <para>Returns the camera's frustum planes in world-space units as an array of <see cref="T:Godot.Plane"/>s in the following order: near, far, left, top, right, bottom. Not to be confused with <see cref="P:Godot.Camera.FrustumOffset"/>.</para>
  10557. </summary>
  10558. </member>
  10559. <member name="M:Godot.Camera.GetCameraRid">
  10560. <summary>
  10561. <para>Returns the camera's RID from the <see cref="T:Godot.VisualServer"/>.</para>
  10562. </summary>
  10563. </member>
  10564. <member name="M:Godot.Camera.SetCullMaskBit(System.Int32,System.Boolean)">
  10565. <summary>
  10566. <para>Enables or disables the given <c>layer</c> in the <see cref="P:Godot.Camera.CullMask"/>.</para>
  10567. </summary>
  10568. </member>
  10569. <member name="M:Godot.Camera.GetCullMaskBit(System.Int32)">
  10570. <summary>
  10571. <para>Returns <c>true</c> if the given <c>layer</c> in the <see cref="P:Godot.Camera.CullMask"/> is enabled, <c>false</c> otherwise.</para>
  10572. </summary>
  10573. </member>
  10574. <member name="T:Godot.Camera2D">
  10575. <summary>
  10576. <para>Camera node for 2D scenes. It forces the screen (current layer) to scroll following this node. This makes it easier (and faster) to program scrollable scenes than manually changing the position of <see cref="T:Godot.CanvasItem"/>-based nodes.</para>
  10577. <para>This node is intended to be a simple helper to get things going quickly and it may happen that more functionality is desired to change how the camera works. To make your own custom camera node, inherit from <see cref="T:Godot.Node2D"/> and change the transform of the canvas by setting <see cref="P:Godot.Viewport.CanvasTransform"/> in <see cref="T:Godot.Viewport"/> (you can obtain the current <see cref="T:Godot.Viewport"/> by using <see cref="M:Godot.Node.GetViewport"/>).</para>
  10578. <para>Note that the <see cref="T:Godot.Camera2D"/> node's <c>position</c> doesn't represent the actual position of the screen, which may differ due to applied smoothing or limits. You can use <see cref="M:Godot.Camera2D.GetCameraScreenCenter"/> to get the real position.</para>
  10579. </summary>
  10580. </member>
  10581. <member name="F:Godot.Camera2D.Camera2DProcessMode.Physics">
  10582. <summary>
  10583. <para>The camera updates with the <c>_physics_process</c> callback.</para>
  10584. </summary>
  10585. </member>
  10586. <member name="F:Godot.Camera2D.Camera2DProcessMode.Idle">
  10587. <summary>
  10588. <para>The camera updates with the <c>_process</c> callback.</para>
  10589. </summary>
  10590. </member>
  10591. <member name="F:Godot.Camera2D.AnchorModeEnum.FixedTopLeft">
  10592. <summary>
  10593. <para>The camera's position is fixed so that the top-left corner is always at the origin.</para>
  10594. </summary>
  10595. </member>
  10596. <member name="F:Godot.Camera2D.AnchorModeEnum.DragCenter">
  10597. <summary>
  10598. <para>The camera's position takes into account vertical/horizontal offsets and the screen size.</para>
  10599. </summary>
  10600. </member>
  10601. <member name="P:Godot.Camera2D.Offset">
  10602. <summary>
  10603. <para>The camera's offset, useful for looking around or camera shake animations.</para>
  10604. </summary>
  10605. </member>
  10606. <member name="P:Godot.Camera2D.AnchorMode">
  10607. <summary>
  10608. <para>The Camera2D's anchor point. See <see cref="T:Godot.Camera2D.AnchorModeEnum"/> constants.</para>
  10609. </summary>
  10610. </member>
  10611. <member name="P:Godot.Camera2D.Rotating">
  10612. <summary>
  10613. <para>If <c>true</c>, the camera rotates with the target.</para>
  10614. </summary>
  10615. </member>
  10616. <member name="P:Godot.Camera2D.Current">
  10617. <summary>
  10618. <para>If <c>true</c>, the camera is the active camera for the current scene. Only one camera can be current, so setting a different camera <c>current</c> will disable this one.</para>
  10619. </summary>
  10620. </member>
  10621. <member name="P:Godot.Camera2D.Zoom">
  10622. <summary>
  10623. <para>The camera's zoom relative to the viewport. Values larger than <c>Vector2(1, 1)</c> zoom out and smaller values zoom in. For an example, use <c>Vector2(0.5, 0.5)</c> for a 2× zoom-in, and <c>Vector2(4, 4)</c> for a 4× zoom-out.</para>
  10624. </summary>
  10625. </member>
  10626. <member name="P:Godot.Camera2D.CustomViewport">
  10627. <summary>
  10628. <para>The custom <see cref="T:Godot.Viewport"/> node attached to the <see cref="T:Godot.Camera2D"/>. If <c>null</c> or not a <see cref="T:Godot.Viewport"/>, uses the default viewport instead.</para>
  10629. </summary>
  10630. </member>
  10631. <member name="P:Godot.Camera2D.ProcessMode">
  10632. <summary>
  10633. <para>The camera's process callback. See <see cref="T:Godot.Camera2D.Camera2DProcessMode"/>.</para>
  10634. </summary>
  10635. </member>
  10636. <member name="P:Godot.Camera2D.LimitLeft">
  10637. <summary>
  10638. <para>Left scroll limit in pixels. The camera stops moving when reaching this value.</para>
  10639. </summary>
  10640. </member>
  10641. <member name="P:Godot.Camera2D.LimitTop">
  10642. <summary>
  10643. <para>Top scroll limit in pixels. The camera stops moving when reaching this value.</para>
  10644. </summary>
  10645. </member>
  10646. <member name="P:Godot.Camera2D.LimitRight">
  10647. <summary>
  10648. <para>Right scroll limit in pixels. The camera stops moving when reaching this value.</para>
  10649. </summary>
  10650. </member>
  10651. <member name="P:Godot.Camera2D.LimitBottom">
  10652. <summary>
  10653. <para>Bottom scroll limit in pixels. The camera stops moving when reaching this value.</para>
  10654. </summary>
  10655. </member>
  10656. <member name="P:Godot.Camera2D.LimitSmoothed">
  10657. <summary>
  10658. <para>If <c>true</c>, the camera smoothly stops when reaches its limits.</para>
  10659. </summary>
  10660. </member>
  10661. <member name="P:Godot.Camera2D.DragMarginHEnabled">
  10662. <summary>
  10663. <para>If <c>true</c>, the camera only moves when reaching the horizontal drag margins. If <c>false</c>, the camera moves horizontally regardless of margins.</para>
  10664. </summary>
  10665. </member>
  10666. <member name="P:Godot.Camera2D.DragMarginVEnabled">
  10667. <summary>
  10668. <para>If <c>true</c>, the camera only moves when reaching the vertical drag margins. If <c>false</c>, the camera moves vertically regardless of margins.</para>
  10669. </summary>
  10670. </member>
  10671. <member name="P:Godot.Camera2D.SmoothingEnabled">
  10672. <summary>
  10673. <para>If <c>true</c>, the camera smoothly moves towards the target at <see cref="P:Godot.Camera2D.SmoothingSpeed"/>.</para>
  10674. </summary>
  10675. </member>
  10676. <member name="P:Godot.Camera2D.SmoothingSpeed">
  10677. <summary>
  10678. <para>Speed in pixels per second of the camera's smoothing effect when <see cref="P:Godot.Camera2D.SmoothingEnabled"/> is <c>true</c>.</para>
  10679. </summary>
  10680. </member>
  10681. <member name="P:Godot.Camera2D.OffsetH">
  10682. <summary>
  10683. <para>The horizontal offset of the camera, relative to the drag margins.</para>
  10684. <para>Note: Offset H is used only to force offset relative to margins. It's not updated in any way if drag margins are enabled and can be used to set initial offset.</para>
  10685. </summary>
  10686. </member>
  10687. <member name="P:Godot.Camera2D.OffsetV">
  10688. <summary>
  10689. <para>The vertical offset of the camera, relative to the drag margins.</para>
  10690. <para>Note: Used the same as <see cref="P:Godot.Camera2D.OffsetH"/>.</para>
  10691. </summary>
  10692. </member>
  10693. <member name="P:Godot.Camera2D.DragMarginLeft">
  10694. <summary>
  10695. <para>Left margin needed to drag the camera. A value of <c>1</c> makes the camera move only when reaching the edge of the screen.</para>
  10696. </summary>
  10697. </member>
  10698. <member name="P:Godot.Camera2D.DragMarginTop">
  10699. <summary>
  10700. <para>Top margin needed to drag the camera. A value of <c>1</c> makes the camera move only when reaching the edge of the screen.</para>
  10701. </summary>
  10702. </member>
  10703. <member name="P:Godot.Camera2D.DragMarginRight">
  10704. <summary>
  10705. <para>Right margin needed to drag the camera. A value of <c>1</c> makes the camera move only when reaching the edge of the screen.</para>
  10706. </summary>
  10707. </member>
  10708. <member name="P:Godot.Camera2D.DragMarginBottom">
  10709. <summary>
  10710. <para>Bottom margin needed to drag the camera. A value of <c>1</c> makes the camera move only when reaching the edge of the screen.</para>
  10711. </summary>
  10712. </member>
  10713. <member name="P:Godot.Camera2D.EditorDrawScreen">
  10714. <summary>
  10715. <para>If <c>true</c>, draws the camera's screen rectangle in the editor.</para>
  10716. </summary>
  10717. </member>
  10718. <member name="P:Godot.Camera2D.EditorDrawLimits">
  10719. <summary>
  10720. <para>If <c>true</c>, draws the camera's limits rectangle in the editor.</para>
  10721. </summary>
  10722. </member>
  10723. <member name="P:Godot.Camera2D.EditorDrawDragMargin">
  10724. <summary>
  10725. <para>If <c>true</c>, draws the camera's drag margin rectangle in the editor.</para>
  10726. </summary>
  10727. </member>
  10728. <member name="M:Godot.Camera2D.MakeCurrent">
  10729. <summary>
  10730. <para>Make this the current 2D camera for the scene (viewport and layer), in case there are many cameras in the scene.</para>
  10731. </summary>
  10732. </member>
  10733. <member name="M:Godot.Camera2D.ClearCurrent">
  10734. <summary>
  10735. <para>Removes any <see cref="T:Godot.Camera2D"/> from the ancestor <see cref="T:Godot.Viewport"/>'s internal currently-assigned camera.</para>
  10736. </summary>
  10737. </member>
  10738. <member name="M:Godot.Camera2D.SetLimit(Godot.Margin,System.Int32)">
  10739. <summary>
  10740. <para>Sets the specified camera limit. See also <see cref="P:Godot.Camera2D.LimitBottom"/>, <see cref="P:Godot.Camera2D.LimitTop"/>, <see cref="P:Godot.Camera2D.LimitLeft"/>, and <see cref="P:Godot.Camera2D.LimitRight"/>.</para>
  10741. </summary>
  10742. </member>
  10743. <member name="M:Godot.Camera2D.GetLimit(Godot.Margin)">
  10744. <summary>
  10745. <para>Returns the specified camera limit. See also <see cref="P:Godot.Camera2D.LimitBottom"/>, <see cref="P:Godot.Camera2D.LimitTop"/>, <see cref="P:Godot.Camera2D.LimitLeft"/>, and <see cref="P:Godot.Camera2D.LimitRight"/>.</para>
  10746. </summary>
  10747. </member>
  10748. <member name="M:Godot.Camera2D.SetDragMargin(Godot.Margin,System.Single)">
  10749. <summary>
  10750. <para>Sets the specified margin. See also <see cref="P:Godot.Camera2D.DragMarginBottom"/>, <see cref="P:Godot.Camera2D.DragMarginTop"/>, <see cref="P:Godot.Camera2D.DragMarginLeft"/>, and <see cref="P:Godot.Camera2D.DragMarginRight"/>.</para>
  10751. </summary>
  10752. </member>
  10753. <member name="M:Godot.Camera2D.GetDragMargin(Godot.Margin)">
  10754. <summary>
  10755. <para>Returns the specified margin. See also <see cref="P:Godot.Camera2D.DragMarginBottom"/>, <see cref="P:Godot.Camera2D.DragMarginTop"/>, <see cref="P:Godot.Camera2D.DragMarginLeft"/>, and <see cref="P:Godot.Camera2D.DragMarginRight"/>.</para>
  10756. </summary>
  10757. </member>
  10758. <member name="M:Godot.Camera2D.GetCameraPosition">
  10759. <summary>
  10760. <para>Returns the camera position.</para>
  10761. </summary>
  10762. </member>
  10763. <member name="M:Godot.Camera2D.GetCameraScreenCenter">
  10764. <summary>
  10765. <para>Returns the location of the <see cref="T:Godot.Camera2D"/>'s screen-center, relative to the origin.</para>
  10766. </summary>
  10767. </member>
  10768. <member name="M:Godot.Camera2D.ForceUpdateScroll">
  10769. <summary>
  10770. <para>Forces the camera to update scroll immediately.</para>
  10771. </summary>
  10772. </member>
  10773. <member name="M:Godot.Camera2D.ResetSmoothing">
  10774. <summary>
  10775. <para>Sets the camera's position immediately to its current smoothing destination.</para>
  10776. <para>This has no effect if smoothing is disabled.</para>
  10777. </summary>
  10778. </member>
  10779. <member name="M:Godot.Camera2D.Align">
  10780. <summary>
  10781. <para>Aligns the camera to the tracked node.</para>
  10782. </summary>
  10783. </member>
  10784. <member name="T:Godot.CameraFeed">
  10785. <summary>
  10786. <para>A camera feed gives you access to a single physical camera attached to your device. When enabled, Godot will start capturing frames from the camera which can then be used.</para>
  10787. <para>Note: Many cameras will return YCbCr images which are split into two textures and need to be combined in a shader. Godot does this automatically for you if you set the environment to show the camera image in the background.</para>
  10788. </summary>
  10789. </member>
  10790. <member name="F:Godot.CameraFeed.FeedDataType.Noimage">
  10791. <summary>
  10792. <para>No image set for the feed.</para>
  10793. </summary>
  10794. </member>
  10795. <member name="F:Godot.CameraFeed.FeedDataType.Rgb">
  10796. <summary>
  10797. <para>Feed supplies RGB images.</para>
  10798. </summary>
  10799. </member>
  10800. <member name="F:Godot.CameraFeed.FeedDataType.Ycbcr">
  10801. <summary>
  10802. <para>Feed supplies YCbCr images that need to be converted to RGB.</para>
  10803. </summary>
  10804. </member>
  10805. <member name="F:Godot.CameraFeed.FeedDataType.YcbcrSep">
  10806. <summary>
  10807. <para>Feed supplies separate Y and CbCr images that need to be combined and converted to RGB.</para>
  10808. </summary>
  10809. </member>
  10810. <member name="F:Godot.CameraFeed.FeedPosition.Unspecified">
  10811. <summary>
  10812. <para>Unspecified position.</para>
  10813. </summary>
  10814. </member>
  10815. <member name="F:Godot.CameraFeed.FeedPosition.Front">
  10816. <summary>
  10817. <para>Camera is mounted at the front of the device.</para>
  10818. </summary>
  10819. </member>
  10820. <member name="F:Godot.CameraFeed.FeedPosition.Back">
  10821. <summary>
  10822. <para>Camera is mounted at the back of the device.</para>
  10823. </summary>
  10824. </member>
  10825. <member name="P:Godot.CameraFeed.FeedIsActive">
  10826. <summary>
  10827. <para>If <c>true</c>, the feed is active.</para>
  10828. </summary>
  10829. </member>
  10830. <member name="P:Godot.CameraFeed.FeedTransform">
  10831. <summary>
  10832. <para>The transform applied to the camera's image.</para>
  10833. </summary>
  10834. </member>
  10835. <member name="M:Godot.CameraFeed.GetId">
  10836. <summary>
  10837. <para>Returns the unique ID for this feed.</para>
  10838. </summary>
  10839. </member>
  10840. <member name="M:Godot.CameraFeed.GetName">
  10841. <summary>
  10842. <para>Returns the camera's name.</para>
  10843. </summary>
  10844. </member>
  10845. <member name="M:Godot.CameraFeed.GetPosition">
  10846. <summary>
  10847. <para>Returns the position of camera on the device.</para>
  10848. </summary>
  10849. </member>
  10850. <member name="T:Godot.CameraServer">
  10851. <summary>
  10852. <para>The <see cref="T:Godot.CameraServer"/> keeps track of different cameras accessible in Godot. These are external cameras such as webcams or the cameras on your phone.</para>
  10853. <para>It is notably used to provide AR modules with a video feed from the camera.</para>
  10854. </summary>
  10855. </member>
  10856. <member name="F:Godot.CameraServer.FeedImage.RgbaImage">
  10857. <summary>
  10858. <para>The RGBA camera image.</para>
  10859. </summary>
  10860. </member>
  10861. <member name="F:Godot.CameraServer.FeedImage.YcbcrImage">
  10862. <summary>
  10863. <para>The YCbCr camera image.</para>
  10864. </summary>
  10865. </member>
  10866. <member name="F:Godot.CameraServer.FeedImage.YImage">
  10867. <summary>
  10868. <para>The Y component camera image.</para>
  10869. </summary>
  10870. </member>
  10871. <member name="F:Godot.CameraServer.FeedImage.CbcrImage">
  10872. <summary>
  10873. <para>The CbCr component camera image.</para>
  10874. </summary>
  10875. </member>
  10876. <member name="M:Godot.CameraServer.GetFeed(System.Int32)">
  10877. <summary>
  10878. <para>Returns the <see cref="T:Godot.CameraFeed"/> with this id.</para>
  10879. </summary>
  10880. </member>
  10881. <member name="M:Godot.CameraServer.GetFeedCount">
  10882. <summary>
  10883. <para>Returns the number of <see cref="T:Godot.CameraFeed"/>s registered.</para>
  10884. </summary>
  10885. </member>
  10886. <member name="M:Godot.CameraServer.Feeds">
  10887. <summary>
  10888. <para>Returns an array of <see cref="T:Godot.CameraFeed"/>s.</para>
  10889. </summary>
  10890. </member>
  10891. <member name="M:Godot.CameraServer.AddFeed(Godot.CameraFeed)">
  10892. <summary>
  10893. <para>Adds a camera feed to the camera server.</para>
  10894. </summary>
  10895. </member>
  10896. <member name="M:Godot.CameraServer.RemoveFeed(Godot.CameraFeed)">
  10897. <summary>
  10898. <para>Removes a <see cref="T:Godot.CameraFeed"/>.</para>
  10899. </summary>
  10900. </member>
  10901. <member name="T:Godot.CameraTexture">
  10902. <summary>
  10903. <para>This texture gives access to the camera texture provided by a <see cref="T:Godot.CameraFeed"/>.</para>
  10904. <para>Note: Many cameras supply YCbCr images which need to be converted in a shader.</para>
  10905. </summary>
  10906. </member>
  10907. <member name="P:Godot.CameraTexture.CameraFeedId">
  10908. <summary>
  10909. <para>The ID of the <see cref="T:Godot.CameraFeed"/> for which we want to display the image.</para>
  10910. </summary>
  10911. </member>
  10912. <member name="P:Godot.CameraTexture.WhichFeed">
  10913. <summary>
  10914. <para>Which image within the <see cref="T:Godot.CameraFeed"/> we want access to, important if the camera image is split in a Y and CbCr component.</para>
  10915. </summary>
  10916. </member>
  10917. <member name="P:Godot.CameraTexture.CameraIsActive">
  10918. <summary>
  10919. <para>Convenience property that gives access to the active property of the <see cref="T:Godot.CameraFeed"/>.</para>
  10920. </summary>
  10921. </member>
  10922. <member name="T:Godot.CanvasItem">
  10923. <summary>
  10924. <para>Base class of anything 2D. Canvas items are laid out in a tree; children inherit and extend their parent's transform. <see cref="T:Godot.CanvasItem"/> is extended by <see cref="T:Godot.Control"/> for anything GUI-related, and by <see cref="T:Godot.Node2D"/> for anything related to the 2D engine.</para>
  10925. <para>Any <see cref="T:Godot.CanvasItem"/> can draw. For this, <see cref="M:Godot.CanvasItem.Update"/> must be called, then will be received on idle time to request redraw. Because of this, canvas items don't need to be redrawn on every frame, improving the performance significantly. Several functions for drawing on the <see cref="T:Godot.CanvasItem"/> are provided (see <c>draw_*</c> functions). However, they can only be used inside the <see cref="M:Godot.Object._Notification(System.Int32)"/>, signal or <see cref="M:Godot.CanvasItem._Draw"/> virtual functions.</para>
  10926. <para>Canvas items are drawn in tree order. By default, children are on top of their parents so a root <see cref="T:Godot.CanvasItem"/> will be drawn behind everything. This behavior can be changed on a per-item basis.</para>
  10927. <para>A <see cref="T:Godot.CanvasItem"/> can also be hidden, which will also hide its children. It provides many ways to change parameters such as modulation (for itself and its children) and self modulation (only for itself), as well as its blend mode.</para>
  10928. <para>Ultimately, a transform notification can be requested, which will notify the node that its global position changed in case the parent tree changed.</para>
  10929. <para>Note: Unless otherwise specified, all methods that have angle parameters must have angles specified as radians. To convert degrees to radians, use <c>@GDScript.deg2rad</c>.</para>
  10930. </summary>
  10931. </member>
  10932. <member name="F:Godot.CanvasItem.NotificationTransformChanged">
  10933. <summary>
  10934. <para>The <see cref="T:Godot.CanvasItem"/>'s transform has changed. This notification is only received if enabled by <see cref="M:Godot.CanvasItem.SetNotifyTransform(System.Boolean)"/> or <see cref="M:Godot.CanvasItem.SetNotifyLocalTransform(System.Boolean)"/>.</para>
  10935. </summary>
  10936. </member>
  10937. <member name="F:Godot.CanvasItem.NotificationDraw">
  10938. <summary>
  10939. <para>The <see cref="T:Godot.CanvasItem"/> is requested to draw.</para>
  10940. </summary>
  10941. </member>
  10942. <member name="F:Godot.CanvasItem.NotificationVisibilityChanged">
  10943. <summary>
  10944. <para>The <see cref="T:Godot.CanvasItem"/>'s visibility has changed.</para>
  10945. </summary>
  10946. </member>
  10947. <member name="F:Godot.CanvasItem.NotificationEnterCanvas">
  10948. <summary>
  10949. <para>The <see cref="T:Godot.CanvasItem"/> has entered the canvas.</para>
  10950. </summary>
  10951. </member>
  10952. <member name="F:Godot.CanvasItem.NotificationExitCanvas">
  10953. <summary>
  10954. <para>The <see cref="T:Godot.CanvasItem"/> has exited the canvas.</para>
  10955. </summary>
  10956. </member>
  10957. <member name="F:Godot.CanvasItem.BlendMode.Mix">
  10958. <summary>
  10959. <para>Mix blending mode. Colors are assumed to be independent of the alpha (opacity) value.</para>
  10960. </summary>
  10961. </member>
  10962. <member name="F:Godot.CanvasItem.BlendMode.Add">
  10963. <summary>
  10964. <para>Additive blending mode.</para>
  10965. </summary>
  10966. </member>
  10967. <member name="F:Godot.CanvasItem.BlendMode.Sub">
  10968. <summary>
  10969. <para>Subtractive blending mode.</para>
  10970. </summary>
  10971. </member>
  10972. <member name="F:Godot.CanvasItem.BlendMode.Mul">
  10973. <summary>
  10974. <para>Multiplicative blending mode.</para>
  10975. </summary>
  10976. </member>
  10977. <member name="F:Godot.CanvasItem.BlendMode.PremultAlpha">
  10978. <summary>
  10979. <para>Mix blending mode. Colors are assumed to be premultiplied by the alpha (opacity) value.</para>
  10980. </summary>
  10981. </member>
  10982. <member name="F:Godot.CanvasItem.BlendMode.Disabled">
  10983. <summary>
  10984. <para>Disables blending mode. Colors including alpha are written as-is. Only applicable for render targets with a transparent background. No lighting will be applied.</para>
  10985. </summary>
  10986. </member>
  10987. <member name="P:Godot.CanvasItem.Visible">
  10988. <summary>
  10989. <para>If <c>true</c>, this <see cref="T:Godot.CanvasItem"/> is drawn. For controls that inherit <see cref="T:Godot.Popup"/>, the correct way to make them visible is to call one of the multiple <c>popup*()</c> functions instead.</para>
  10990. </summary>
  10991. </member>
  10992. <member name="P:Godot.CanvasItem.Modulate">
  10993. <summary>
  10994. <para>The color applied to textures on this <see cref="T:Godot.CanvasItem"/>.</para>
  10995. </summary>
  10996. </member>
  10997. <member name="P:Godot.CanvasItem.SelfModulate">
  10998. <summary>
  10999. <para>The color applied to textures on this <see cref="T:Godot.CanvasItem"/>. This is not inherited by children <see cref="T:Godot.CanvasItem"/>s.</para>
  11000. </summary>
  11001. </member>
  11002. <member name="P:Godot.CanvasItem.ShowBehindParent">
  11003. <summary>
  11004. <para>If <c>true</c>, the object draws behind its parent.</para>
  11005. </summary>
  11006. </member>
  11007. <member name="P:Godot.CanvasItem.ShowOnTop">
  11008. <summary>
  11009. <para>If <c>true</c>, the object draws on top of its parent.</para>
  11010. </summary>
  11011. </member>
  11012. <member name="P:Godot.CanvasItem.LightMask">
  11013. <summary>
  11014. <para>The rendering layers in which this <see cref="T:Godot.CanvasItem"/> responds to <see cref="T:Godot.Light2D"/> nodes.</para>
  11015. </summary>
  11016. </member>
  11017. <member name="P:Godot.CanvasItem.Material">
  11018. <summary>
  11019. <para>The material applied to textures on this <see cref="T:Godot.CanvasItem"/>.</para>
  11020. </summary>
  11021. </member>
  11022. <member name="P:Godot.CanvasItem.UseParentMaterial">
  11023. <summary>
  11024. <para>If <c>true</c>, the parent <see cref="T:Godot.CanvasItem"/>'s <see cref="P:Godot.CanvasItem.Material"/> property is used as this one's material.</para>
  11025. </summary>
  11026. </member>
  11027. <member name="M:Godot.CanvasItem._Draw">
  11028. <summary>
  11029. <para>Overridable function called by the engine (if defined) to draw the canvas item.</para>
  11030. </summary>
  11031. </member>
  11032. <member name="M:Godot.CanvasItem.GetCanvasItem">
  11033. <summary>
  11034. <para>Returns the canvas item RID used by <see cref="T:Godot.VisualServer"/> for this item.</para>
  11035. </summary>
  11036. </member>
  11037. <member name="M:Godot.CanvasItem.IsVisibleInTree">
  11038. <summary>
  11039. <para>Returns <c>true</c> if the node is present in the <see cref="T:Godot.SceneTree"/>, its <see cref="P:Godot.CanvasItem.Visible"/> property is <c>true</c> and its inherited visibility is also <c>true</c>.</para>
  11040. </summary>
  11041. </member>
  11042. <member name="M:Godot.CanvasItem.Show">
  11043. <summary>
  11044. <para>Show the <see cref="T:Godot.CanvasItem"/> if it's currently hidden. For controls that inherit <see cref="T:Godot.Popup"/>, the correct way to make them visible is to call one of the multiple <c>popup*()</c> functions instead.</para>
  11045. </summary>
  11046. </member>
  11047. <member name="M:Godot.CanvasItem.Hide">
  11048. <summary>
  11049. <para>Hide the <see cref="T:Godot.CanvasItem"/> if it's currently visible.</para>
  11050. </summary>
  11051. </member>
  11052. <member name="M:Godot.CanvasItem.Update">
  11053. <summary>
  11054. <para>Queue the <see cref="T:Godot.CanvasItem"/> for update. will be called on idle time to request redraw.</para>
  11055. </summary>
  11056. </member>
  11057. <member name="M:Godot.CanvasItem.SetAsToplevel(System.Boolean)">
  11058. <summary>
  11059. <para>If <c>enable</c> is <c>true</c>, the node won't inherit its transform from parent canvas items.</para>
  11060. </summary>
  11061. </member>
  11062. <member name="M:Godot.CanvasItem.IsSetAsToplevel">
  11063. <summary>
  11064. <para>Returns <c>true</c> if the node is set as top-level. See <see cref="M:Godot.CanvasItem.SetAsToplevel(System.Boolean)"/>.</para>
  11065. </summary>
  11066. </member>
  11067. <member name="M:Godot.CanvasItem.DrawLine(Godot.Vector2,Godot.Vector2,Godot.Color,System.Single,System.Boolean)">
  11068. <summary>
  11069. <para>Draws a line from a 2D point to another, with a given color and width. It can be optionally antialiased.</para>
  11070. </summary>
  11071. </member>
  11072. <member name="M:Godot.CanvasItem.DrawPolyline(Godot.Vector2[],Godot.Color,System.Single,System.Boolean)">
  11073. <summary>
  11074. <para>Draws interconnected line segments with a uniform <c>color</c> and <c>width</c> and optional antialiasing.</para>
  11075. </summary>
  11076. </member>
  11077. <member name="M:Godot.CanvasItem.DrawPolylineColors(Godot.Vector2[],Godot.Color[],System.Single,System.Boolean)">
  11078. <summary>
  11079. <para>Draws interconnected line segments with a uniform <c>width</c>, segment-by-segment coloring, and optional antialiasing. Colors assigned to line segments match by index between <c>points</c> and <c>colors</c>.</para>
  11080. </summary>
  11081. </member>
  11082. <member name="M:Godot.CanvasItem.DrawArc(Godot.Vector2,System.Single,System.Single,System.Single,System.Int32,Godot.Color,System.Single,System.Boolean)">
  11083. <summary>
  11084. <para>Draws an arc between the given angles. The larger the value of <c>point_count</c>, the smoother the curve.</para>
  11085. </summary>
  11086. </member>
  11087. <member name="M:Godot.CanvasItem.DrawMultiline(Godot.Vector2[],Godot.Color,System.Single,System.Boolean)">
  11088. <summary>
  11089. <para>Draws multiple, parallel lines with a uniform <c>color</c>. <c>width</c> and <c>antialiased</c> are currently not implemented and have no effect.</para>
  11090. </summary>
  11091. </member>
  11092. <member name="M:Godot.CanvasItem.DrawMultilineColors(Godot.Vector2[],Godot.Color[],System.Single,System.Boolean)">
  11093. <summary>
  11094. <para>Draws multiple, parallel lines with a uniform <c>width</c>, segment-by-segment coloring, and optional antialiasing. Colors assigned to line segments match by index between <c>points</c> and <c>colors</c>.</para>
  11095. </summary>
  11096. </member>
  11097. <member name="M:Godot.CanvasItem.DrawRect(Godot.Rect2,Godot.Color,System.Boolean,System.Single,System.Boolean)">
  11098. <summary>
  11099. <para>Draws a rectangle. If <c>filled</c> is <c>true</c>, the rectangle will be filled with the <c>color</c> specified. If <c>filled</c> is <c>false</c>, the rectangle will be drawn as a stroke with the <c>color</c> and <c>width</c> specified. If <c>antialiased</c> is <c>true</c>, the lines will be antialiased.</para>
  11100. <para>Note: <c>width</c> and <c>antialiased</c> are only effective if <c>filled</c> is <c>false</c>.</para>
  11101. </summary>
  11102. </member>
  11103. <member name="M:Godot.CanvasItem.DrawCircle(Godot.Vector2,System.Single,Godot.Color)">
  11104. <summary>
  11105. <para>Draws a colored circle.</para>
  11106. </summary>
  11107. </member>
  11108. <member name="M:Godot.CanvasItem.DrawTexture(Godot.Texture,Godot.Vector2,System.Nullable{Godot.Color},Godot.Texture)">
  11109. <summary>
  11110. <para>Draws a texture at a given position.</para>
  11111. </summary>
  11112. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  11113. </member>
  11114. <member name="M:Godot.CanvasItem.DrawTextureRect(Godot.Texture,Godot.Rect2,System.Boolean,System.Nullable{Godot.Color},System.Boolean,Godot.Texture)">
  11115. <summary>
  11116. <para>Draws a textured rectangle at a given position, optionally modulated by a color. If <c>transpose</c> is <c>true</c>, the texture will have its X and Y coordinates swapped.</para>
  11117. </summary>
  11118. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  11119. </member>
  11120. <member name="M:Godot.CanvasItem.DrawTextureRectRegion(Godot.Texture,Godot.Rect2,Godot.Rect2,System.Nullable{Godot.Color},System.Boolean,Godot.Texture,System.Boolean)">
  11121. <summary>
  11122. <para>Draws a textured rectangle region at a given position, optionally modulated by a color. If <c>transpose</c> is <c>true</c>, the texture will have its X and Y coordinates swapped.</para>
  11123. </summary>
  11124. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  11125. </member>
  11126. <member name="M:Godot.CanvasItem.DrawStyleBox(Godot.StyleBox,Godot.Rect2)">
  11127. <summary>
  11128. <para>Draws a styled rectangle.</para>
  11129. </summary>
  11130. </member>
  11131. <member name="M:Godot.CanvasItem.DrawPrimitive(Godot.Vector2[],Godot.Color[],Godot.Vector2[],Godot.Texture,System.Single,Godot.Texture)">
  11132. <summary>
  11133. <para>Draws a custom primitive. 1 point for a point, 2 points for a line, 3 points for a triangle and 4 points for a quad.</para>
  11134. </summary>
  11135. </member>
  11136. <member name="M:Godot.CanvasItem.DrawPolygon(Godot.Vector2[],Godot.Color[],Godot.Vector2[],Godot.Texture,Godot.Texture,System.Boolean)">
  11137. <summary>
  11138. <para>Draws a polygon of any amount of points, convex or concave.</para>
  11139. </summary>
  11140. <param name="uvs">If the parameter is null, then the default value is new Vector2[] {}</param>
  11141. </member>
  11142. <member name="M:Godot.CanvasItem.DrawColoredPolygon(Godot.Vector2[],Godot.Color,Godot.Vector2[],Godot.Texture,Godot.Texture,System.Boolean)">
  11143. <summary>
  11144. <para>Draws a colored polygon of any amount of points, convex or concave.</para>
  11145. </summary>
  11146. <param name="uvs">If the parameter is null, then the default value is new Vector2[] {}</param>
  11147. </member>
  11148. <member name="M:Godot.CanvasItem.DrawString(Godot.Font,Godot.Vector2,System.String,System.Nullable{Godot.Color},System.Int32)">
  11149. <summary>
  11150. <para>Draws a string using a custom font.</para>
  11151. </summary>
  11152. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  11153. </member>
  11154. <member name="M:Godot.CanvasItem.DrawChar(Godot.Font,Godot.Vector2,System.String,System.String,System.Nullable{Godot.Color})">
  11155. <summary>
  11156. <para>Draws a string character using a custom font. Returns the advance, depending on the character width and kerning with an optional next character.</para>
  11157. </summary>
  11158. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  11159. </member>
  11160. <member name="M:Godot.CanvasItem.DrawMesh(Godot.Mesh,Godot.Texture,Godot.Texture,System.Nullable{Godot.Transform2D},System.Nullable{Godot.Color})">
  11161. <summary>
  11162. <para>Draws a <see cref="T:Godot.Mesh"/> in 2D, using the provided texture. See <see cref="T:Godot.MeshInstance2D"/> for related documentation.</para>
  11163. </summary>
  11164. <param name="transform">If the parameter is null, then the default value is Transform2D.Identity</param>
  11165. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  11166. </member>
  11167. <member name="M:Godot.CanvasItem.DrawMultimesh(Godot.MultiMesh,Godot.Texture,Godot.Texture)">
  11168. <summary>
  11169. <para>Draws a <see cref="T:Godot.MultiMesh"/> in 2D with the provided texture. See <see cref="T:Godot.MultiMeshInstance2D"/> for related documentation.</para>
  11170. </summary>
  11171. </member>
  11172. <member name="M:Godot.CanvasItem.DrawSetTransform(Godot.Vector2,System.Single,Godot.Vector2)">
  11173. <summary>
  11174. <para>Sets a custom transform for drawing via components. Anything drawn afterwards will be transformed by this.</para>
  11175. </summary>
  11176. </member>
  11177. <member name="M:Godot.CanvasItem.DrawSetTransformMatrix(Godot.Transform2D)">
  11178. <summary>
  11179. <para>Sets a custom transform for drawing via matrix. Anything drawn afterwards will be transformed by this.</para>
  11180. </summary>
  11181. </member>
  11182. <member name="M:Godot.CanvasItem.GetTransform">
  11183. <summary>
  11184. <para>Returns the transform matrix of this item.</para>
  11185. </summary>
  11186. </member>
  11187. <member name="M:Godot.CanvasItem.GetGlobalTransform">
  11188. <summary>
  11189. <para>Returns the global transform matrix of this item.</para>
  11190. </summary>
  11191. </member>
  11192. <member name="M:Godot.CanvasItem.GetGlobalTransformWithCanvas">
  11193. <summary>
  11194. <para>Returns the global transform matrix of this item in relation to the canvas.</para>
  11195. </summary>
  11196. </member>
  11197. <member name="M:Godot.CanvasItem.GetViewportTransform">
  11198. <summary>
  11199. <para>Returns this item's transform in relation to the viewport.</para>
  11200. </summary>
  11201. </member>
  11202. <member name="M:Godot.CanvasItem.GetViewportRect">
  11203. <summary>
  11204. <para>Returns the viewport's boundaries as a <see cref="T:Godot.Rect2"/>.</para>
  11205. </summary>
  11206. </member>
  11207. <member name="M:Godot.CanvasItem.GetCanvasTransform">
  11208. <summary>
  11209. <para>Returns the transform matrix of this item's canvas.</para>
  11210. </summary>
  11211. </member>
  11212. <member name="M:Godot.CanvasItem.GetLocalMousePosition">
  11213. <summary>
  11214. <para>Returns the mouse position relative to this item's position.</para>
  11215. </summary>
  11216. </member>
  11217. <member name="M:Godot.CanvasItem.GetGlobalMousePosition">
  11218. <summary>
  11219. <para>Returns the global position of the mouse.</para>
  11220. </summary>
  11221. </member>
  11222. <member name="M:Godot.CanvasItem.GetCanvas">
  11223. <summary>
  11224. <para>Returns the <see cref="T:Godot.RID"/> of the <see cref="T:Godot.World2D"/> canvas where this item is in.</para>
  11225. </summary>
  11226. </member>
  11227. <member name="M:Godot.CanvasItem.GetWorld2d">
  11228. <summary>
  11229. <para>Returns the <see cref="T:Godot.World2D"/> where this item is in.</para>
  11230. </summary>
  11231. </member>
  11232. <member name="M:Godot.CanvasItem.SetNotifyLocalTransform(System.Boolean)">
  11233. <summary>
  11234. <para>If <c>enable</c> is <c>true</c>, children will be updated with local transform data.</para>
  11235. </summary>
  11236. </member>
  11237. <member name="M:Godot.CanvasItem.IsLocalTransformNotificationEnabled">
  11238. <summary>
  11239. <para>Returns <c>true</c> if local transform notifications are communicated to children.</para>
  11240. </summary>
  11241. </member>
  11242. <member name="M:Godot.CanvasItem.SetNotifyTransform(System.Boolean)">
  11243. <summary>
  11244. <para>If <c>enable</c> is <c>true</c>, children will be updated with global transform data.</para>
  11245. </summary>
  11246. </member>
  11247. <member name="M:Godot.CanvasItem.IsTransformNotificationEnabled">
  11248. <summary>
  11249. <para>Returns <c>true</c> if global transform notifications are communicated to children.</para>
  11250. </summary>
  11251. </member>
  11252. <member name="M:Godot.CanvasItem.ForceUpdateTransform">
  11253. <summary>
  11254. <para>Forces the transform to update. Transform changes in physics are not instant for performance reasons. Transforms are accumulated and then set. Use this if you need an up-to-date transform when doing physics operations.</para>
  11255. </summary>
  11256. </member>
  11257. <member name="M:Godot.CanvasItem.MakeCanvasPositionLocal(Godot.Vector2)">
  11258. <summary>
  11259. <para>Assigns <c>screen_point</c> as this node's new local transform.</para>
  11260. </summary>
  11261. </member>
  11262. <member name="M:Godot.CanvasItem.MakeInputLocal(Godot.InputEvent)">
  11263. <summary>
  11264. <para>Transformations issued by <c>event</c>'s inputs are applied in local space instead of global space.</para>
  11265. </summary>
  11266. </member>
  11267. <member name="T:Godot.CanvasItemMaterial">
  11268. <summary>
  11269. <para><see cref="T:Godot.CanvasItemMaterial"/>s provide a means of modifying the textures associated with a CanvasItem. They specialize in describing blend and lighting behaviors for textures. Use a <see cref="T:Godot.ShaderMaterial"/> to more fully customize a material's interactions with a <see cref="T:Godot.CanvasItem"/>.</para>
  11270. </summary>
  11271. </member>
  11272. <member name="F:Godot.CanvasItemMaterial.LightModeEnum.Normal">
  11273. <summary>
  11274. <para>Render the material using both light and non-light sensitive material properties.</para>
  11275. </summary>
  11276. </member>
  11277. <member name="F:Godot.CanvasItemMaterial.LightModeEnum.Unshaded">
  11278. <summary>
  11279. <para>Render the material as if there were no light.</para>
  11280. </summary>
  11281. </member>
  11282. <member name="F:Godot.CanvasItemMaterial.LightModeEnum.LightOnly">
  11283. <summary>
  11284. <para>Render the material as if there were only light.</para>
  11285. </summary>
  11286. </member>
  11287. <member name="F:Godot.CanvasItemMaterial.BlendModeEnum.Mix">
  11288. <summary>
  11289. <para>Mix blending mode. Colors are assumed to be independent of the alpha (opacity) value.</para>
  11290. </summary>
  11291. </member>
  11292. <member name="F:Godot.CanvasItemMaterial.BlendModeEnum.Add">
  11293. <summary>
  11294. <para>Additive blending mode.</para>
  11295. </summary>
  11296. </member>
  11297. <member name="F:Godot.CanvasItemMaterial.BlendModeEnum.Sub">
  11298. <summary>
  11299. <para>Subtractive blending mode.</para>
  11300. </summary>
  11301. </member>
  11302. <member name="F:Godot.CanvasItemMaterial.BlendModeEnum.Mul">
  11303. <summary>
  11304. <para>Multiplicative blending mode.</para>
  11305. </summary>
  11306. </member>
  11307. <member name="F:Godot.CanvasItemMaterial.BlendModeEnum.PremultAlpha">
  11308. <summary>
  11309. <para>Mix blending mode. Colors are assumed to be premultiplied by the alpha (opacity) value.</para>
  11310. </summary>
  11311. </member>
  11312. <member name="P:Godot.CanvasItemMaterial.BlendMode">
  11313. <summary>
  11314. <para>The manner in which a material's rendering is applied to underlying textures.</para>
  11315. </summary>
  11316. </member>
  11317. <member name="P:Godot.CanvasItemMaterial.LightMode">
  11318. <summary>
  11319. <para>The manner in which material reacts to lighting.</para>
  11320. </summary>
  11321. </member>
  11322. <member name="P:Godot.CanvasItemMaterial.ParticlesAnimation">
  11323. <summary>
  11324. <para>If <c>true</c>, enable spritesheet-based animation features when assigned to <see cref="T:Godot.Particles2D"/> and <see cref="T:Godot.CPUParticles2D"/> nodes. The <see cref="P:Godot.ParticlesMaterial.AnimSpeed"/> or <see cref="P:Godot.CPUParticles2D.AnimSpeed"/> should also be set to a positive value for the animation to play.</para>
  11325. <para>This property (and other <c>particles_anim_*</c> properties that depend on it) has no effect on other types of nodes.</para>
  11326. </summary>
  11327. </member>
  11328. <member name="P:Godot.CanvasItemMaterial.ParticlesAnimHFrames">
  11329. <summary>
  11330. <para>The number of columns in the spritesheet assigned as <see cref="T:Godot.Texture"/> for a <see cref="T:Godot.Particles2D"/> or <see cref="T:Godot.CPUParticles2D"/>.</para>
  11331. <para>Note: This property is only used and visible in the editor if <see cref="P:Godot.CanvasItemMaterial.ParticlesAnimation"/> is <c>true</c>.</para>
  11332. </summary>
  11333. </member>
  11334. <member name="P:Godot.CanvasItemMaterial.ParticlesAnimVFrames">
  11335. <summary>
  11336. <para>The number of rows in the spritesheet assigned as <see cref="T:Godot.Texture"/> for a <see cref="T:Godot.Particles2D"/> or <see cref="T:Godot.CPUParticles2D"/>.</para>
  11337. <para>Note: This property is only used and visible in the editor if <see cref="P:Godot.CanvasItemMaterial.ParticlesAnimation"/> is <c>true</c>.</para>
  11338. </summary>
  11339. </member>
  11340. <member name="P:Godot.CanvasItemMaterial.ParticlesAnimLoop">
  11341. <summary>
  11342. <para>If <c>true</c>, the particles animation will loop.</para>
  11343. <para>Note: This property is only used and visible in the editor if <see cref="P:Godot.CanvasItemMaterial.ParticlesAnimation"/> is <c>true</c>.</para>
  11344. </summary>
  11345. </member>
  11346. <member name="T:Godot.CanvasLayer">
  11347. <summary>
  11348. <para>Canvas drawing layer. <see cref="T:Godot.CanvasItem"/> nodes that are direct or indirect children of a <see cref="T:Godot.CanvasLayer"/> will be drawn in that layer. The layer is a numeric index that defines the draw order. The default 2D scene renders with index 0, so a <see cref="T:Godot.CanvasLayer"/> with index -1 will be drawn below, and one with index 1 will be drawn above. This is very useful for HUDs (in layer 1+ or above), or backgrounds (in layer -1 or below).</para>
  11349. </summary>
  11350. </member>
  11351. <member name="P:Godot.CanvasLayer.Layer">
  11352. <summary>
  11353. <para>Layer index for draw order. Lower values are drawn first.</para>
  11354. </summary>
  11355. </member>
  11356. <member name="P:Godot.CanvasLayer.Offset">
  11357. <summary>
  11358. <para>The layer's base offset.</para>
  11359. </summary>
  11360. </member>
  11361. <member name="P:Godot.CanvasLayer.RotationDegrees">
  11362. <summary>
  11363. <para>The layer's rotation in degrees.</para>
  11364. </summary>
  11365. </member>
  11366. <member name="P:Godot.CanvasLayer.Rotation">
  11367. <summary>
  11368. <para>The layer's rotation in radians.</para>
  11369. </summary>
  11370. </member>
  11371. <member name="P:Godot.CanvasLayer.Scale">
  11372. <summary>
  11373. <para>The layer's scale.</para>
  11374. </summary>
  11375. </member>
  11376. <member name="P:Godot.CanvasLayer.Transform">
  11377. <summary>
  11378. <para>The layer's transform.</para>
  11379. </summary>
  11380. </member>
  11381. <member name="P:Godot.CanvasLayer.CustomViewport">
  11382. <summary>
  11383. <para>The custom <see cref="T:Godot.Viewport"/> node assigned to the <see cref="T:Godot.CanvasLayer"/>. If <c>null</c>, uses the default viewport instead.</para>
  11384. </summary>
  11385. </member>
  11386. <member name="P:Godot.CanvasLayer.FollowViewportEnable">
  11387. <summary>
  11388. <para>Sets the layer to follow the viewport in order to simulate a pseudo 3D effect.</para>
  11389. </summary>
  11390. </member>
  11391. <member name="P:Godot.CanvasLayer.FollowViewportScale">
  11392. <summary>
  11393. <para>Scales the layer when using <see cref="P:Godot.CanvasLayer.FollowViewportEnable"/>. Layers moving into the foreground should have increasing scales, while layers moving into the background should have decreasing scales.</para>
  11394. </summary>
  11395. </member>
  11396. <member name="M:Godot.CanvasLayer.GetCanvas">
  11397. <summary>
  11398. <para>Returns the RID of the canvas used by this layer.</para>
  11399. </summary>
  11400. </member>
  11401. <member name="T:Godot.CanvasModulate">
  11402. <summary>
  11403. <para><see cref="T:Godot.CanvasModulate"/> tints the canvas elements using its assigned <see cref="P:Godot.CanvasModulate.Color"/>.</para>
  11404. </summary>
  11405. </member>
  11406. <member name="P:Godot.CanvasModulate.Color">
  11407. <summary>
  11408. <para>The tint color to apply.</para>
  11409. </summary>
  11410. </member>
  11411. <member name="T:Godot.CapsuleMesh">
  11412. <summary>
  11413. <para>Class representing a capsule-shaped <see cref="T:Godot.PrimitiveMesh"/>.</para>
  11414. </summary>
  11415. </member>
  11416. <member name="P:Godot.CapsuleMesh.Radius">
  11417. <summary>
  11418. <para>Radius of the capsule mesh.</para>
  11419. </summary>
  11420. </member>
  11421. <member name="P:Godot.CapsuleMesh.MidHeight">
  11422. <summary>
  11423. <para>Height of the capsule mesh from the center point.</para>
  11424. </summary>
  11425. </member>
  11426. <member name="P:Godot.CapsuleMesh.RadialSegments">
  11427. <summary>
  11428. <para>Number of radial segments on the capsule mesh.</para>
  11429. </summary>
  11430. </member>
  11431. <member name="P:Godot.CapsuleMesh.Rings">
  11432. <summary>
  11433. <para>Number of rings along the height of the capsule.</para>
  11434. </summary>
  11435. </member>
  11436. <member name="T:Godot.CapsuleShape">
  11437. <summary>
  11438. <para>Capsule shape for collisions.</para>
  11439. </summary>
  11440. </member>
  11441. <member name="P:Godot.CapsuleShape.Radius">
  11442. <summary>
  11443. <para>The capsule's radius.</para>
  11444. </summary>
  11445. </member>
  11446. <member name="P:Godot.CapsuleShape.Height">
  11447. <summary>
  11448. <para>The capsule's height.</para>
  11449. </summary>
  11450. </member>
  11451. <member name="T:Godot.CapsuleShape2D">
  11452. <summary>
  11453. <para>Capsule shape for 2D collisions.</para>
  11454. </summary>
  11455. </member>
  11456. <member name="P:Godot.CapsuleShape2D.Radius">
  11457. <summary>
  11458. <para>The capsule's radius.</para>
  11459. </summary>
  11460. </member>
  11461. <member name="P:Godot.CapsuleShape2D.Height">
  11462. <summary>
  11463. <para>The capsule's height.</para>
  11464. </summary>
  11465. </member>
  11466. <member name="T:Godot.CenterContainer">
  11467. <summary>
  11468. <para>CenterContainer keeps children controls centered. This container keeps all children to their minimum size, in the center.</para>
  11469. </summary>
  11470. </member>
  11471. <member name="P:Godot.CenterContainer.UseTopLeft">
  11472. <summary>
  11473. <para>If <c>true</c>, centers children relative to the <see cref="T:Godot.CenterContainer"/>'s top left corner.</para>
  11474. </summary>
  11475. </member>
  11476. <member name="T:Godot.CharFXTransform">
  11477. <summary>
  11478. <para>By setting various properties on this object, you can control how individual characters will be displayed in a <see cref="T:Godot.RichTextEffect"/>.</para>
  11479. </summary>
  11480. </member>
  11481. <member name="P:Godot.CharFXTransform.RelativeIndex">
  11482. <summary>
  11483. <para>The index of the current character (starting from 0). Setting this property won't affect drawing.</para>
  11484. </summary>
  11485. </member>
  11486. <member name="P:Godot.CharFXTransform.AbsoluteIndex">
  11487. <summary>
  11488. <para>The index of the current character (starting from 0). Setting this property won't affect drawing.</para>
  11489. </summary>
  11490. </member>
  11491. <member name="P:Godot.CharFXTransform.ElapsedTime">
  11492. <summary>
  11493. <para>The time elapsed since the <see cref="T:Godot.RichTextLabel"/> was added to the scene tree (in seconds). Time stops when the project is paused, unless the <see cref="T:Godot.RichTextLabel"/>'s <see cref="P:Godot.Node.PauseMode"/> is set to .</para>
  11494. <para>Note: Time still passes while the <see cref="T:Godot.RichTextLabel"/> is hidden.</para>
  11495. </summary>
  11496. </member>
  11497. <member name="P:Godot.CharFXTransform.Visible">
  11498. <summary>
  11499. <para>If <c>true</c>, the character will be drawn. If <c>false</c>, the character will be hidden. Characters around hidden characters will reflow to take the space of hidden characters. If this is not desired, set their <see cref="P:Godot.CharFXTransform.Color"/> to <c>Color(1, 1, 1, 0)</c> instead.</para>
  11500. </summary>
  11501. </member>
  11502. <member name="P:Godot.CharFXTransform.Offset">
  11503. <summary>
  11504. <para>The position offset the character will be drawn with (in pixels).</para>
  11505. </summary>
  11506. </member>
  11507. <member name="P:Godot.CharFXTransform.Color">
  11508. <summary>
  11509. <para>The color the character will be drawn with.</para>
  11510. </summary>
  11511. </member>
  11512. <member name="P:Godot.CharFXTransform.Env">
  11513. <summary>
  11514. <para>Contains the arguments passed in the opening BBCode tag. By default, arguments are strings; if their contents match a type such as <see cref="T:System.Boolean"/>, <see cref="T:System.Int32"/> or <see cref="T:System.Single"/>, they will be converted automatically. Color codes in the form <c>#rrggbb</c> or <c>#rgb</c> will be converted to an opaque <see cref="T:Godot.Color"/>. String arguments may not contain spaces, even if they're quoted. If present, quotes will also be present in the final string.</para>
  11515. <para>For example, the opening BBCode tag <c>[example foo=hello bar=true baz=42 color=#ffffff]</c> will map to the following <see cref="T:Godot.Collections.Dictionary"/>:</para>
  11516. <para><code>
  11517. {"foo": "hello", "bar": true, "baz": 42, "color": Color(1, 1, 1, 1)}
  11518. </code></para>
  11519. </summary>
  11520. </member>
  11521. <member name="P:Godot.CharFXTransform.Character">
  11522. <summary>
  11523. <para>The Unicode codepoint the character will use. This only affects non-whitespace characters. <c>@GDScript.ord</c> can be useful here. For example, the following will replace all characters with asterisks:</para>
  11524. <para><code>
  11525. # `char_fx` is the CharFXTransform parameter from `_process_custom_fx()`.
  11526. # See the RichTextEffect documentation for details.
  11527. char_fx.character = ord("*")
  11528. </code></para>
  11529. </summary>
  11530. </member>
  11531. <member name="T:Godot.CheckBox">
  11532. <summary>
  11533. <para>A checkbox allows the user to make a binary choice (choosing only one of two possible options). It's similar to <see cref="T:Godot.CheckButton"/> in functionality, but it has a different apperance. To follow established UX patterns, it's recommended to use CheckBox when toggling it has no immediate effect on something. For instance, it should be used when toggling it will only do something once a confirmation button is pressed.</para>
  11534. </summary>
  11535. </member>
  11536. <member name="T:Godot.CheckButton">
  11537. <summary>
  11538. <para>CheckButton is a toggle button displayed as a check field. It's similar to <see cref="T:Godot.CheckBox"/> in functionality, but it has a different apperance. To follow established UX patterns, it's recommended to use CheckButton when toggling it has an immediate effect on something. For instance, it should be used if toggling it enables/disables a setting without requiring the user to press a confirmation button.</para>
  11539. </summary>
  11540. </member>
  11541. <member name="T:Godot.CircleShape2D">
  11542. <summary>
  11543. <para>Circular shape for 2D collisions. This shape is useful for modeling balls or small characters and its collision detection with everything else is very fast.</para>
  11544. </summary>
  11545. </member>
  11546. <member name="P:Godot.CircleShape2D.Radius">
  11547. <summary>
  11548. <para>The circle's radius.</para>
  11549. </summary>
  11550. </member>
  11551. <member name="T:Godot.ClippedCamera">
  11552. <summary>
  11553. <para>This node extends <see cref="T:Godot.Camera"/> to add collisions with <see cref="T:Godot.Area"/> and/or <see cref="T:Godot.PhysicsBody"/> nodes. The camera cannot move through colliding objects.</para>
  11554. </summary>
  11555. </member>
  11556. <member name="F:Godot.ClippedCamera.ProcessModeEnum.Physics">
  11557. <summary>
  11558. <para>The camera updates with the <c>_physics_process</c> callback.</para>
  11559. </summary>
  11560. </member>
  11561. <member name="F:Godot.ClippedCamera.ProcessModeEnum.Idle">
  11562. <summary>
  11563. <para>The camera updates with the <c>_process</c> callback.</para>
  11564. </summary>
  11565. </member>
  11566. <member name="P:Godot.ClippedCamera.Margin">
  11567. <summary>
  11568. <para>The camera's collision margin. The camera can't get closer than this distance to a colliding object.</para>
  11569. </summary>
  11570. </member>
  11571. <member name="P:Godot.ClippedCamera.ProcessMode">
  11572. <summary>
  11573. <para>The camera's process callback. See <see cref="T:Godot.ClippedCamera.ProcessModeEnum"/>.</para>
  11574. </summary>
  11575. </member>
  11576. <member name="P:Godot.ClippedCamera.CollisionMask">
  11577. <summary>
  11578. <para>The camera's collision mask. Only objects in at least one collision layer matching the mask will be detected.</para>
  11579. </summary>
  11580. </member>
  11581. <member name="P:Godot.ClippedCamera.ClipToAreas">
  11582. <summary>
  11583. <para>If <c>true</c>, the camera stops on contact with <see cref="T:Godot.Area"/>s.</para>
  11584. </summary>
  11585. </member>
  11586. <member name="P:Godot.ClippedCamera.ClipToBodies">
  11587. <summary>
  11588. <para>If <c>true</c>, the camera stops on contact with <see cref="T:Godot.PhysicsBody"/>s.</para>
  11589. </summary>
  11590. </member>
  11591. <member name="M:Godot.ClippedCamera.SetCollisionMaskBit(System.Int32,System.Boolean)">
  11592. <summary>
  11593. <para>Sets the specified bit index to the <c>value</c>.</para>
  11594. <para>Note: Bit indices range from 0-19.</para>
  11595. </summary>
  11596. </member>
  11597. <member name="M:Godot.ClippedCamera.GetCollisionMaskBit(System.Int32)">
  11598. <summary>
  11599. <para>Returns <c>true</c> if the specified bit index is on.</para>
  11600. <para>Note: Bit indices range from 0-19.</para>
  11601. </summary>
  11602. </member>
  11603. <member name="M:Godot.ClippedCamera.AddExceptionRid(Godot.RID)">
  11604. <summary>
  11605. <para>Adds a collision exception so the camera does not collide with the specified <see cref="T:Godot.RID"/>.</para>
  11606. </summary>
  11607. </member>
  11608. <member name="M:Godot.ClippedCamera.AddException(Godot.Object)">
  11609. <summary>
  11610. <para>Adds a collision exception so the camera does not collide with the specified node.</para>
  11611. </summary>
  11612. </member>
  11613. <member name="M:Godot.ClippedCamera.RemoveExceptionRid(Godot.RID)">
  11614. <summary>
  11615. <para>Removes a collision exception with the specified <see cref="T:Godot.RID"/>.</para>
  11616. </summary>
  11617. </member>
  11618. <member name="M:Godot.ClippedCamera.RemoveException(Godot.Object)">
  11619. <summary>
  11620. <para>Removes a collision exception with the specified node.</para>
  11621. </summary>
  11622. </member>
  11623. <member name="M:Godot.ClippedCamera.GetClipOffset">
  11624. <summary>
  11625. <para>Returns the distance the camera has been offset due to a collision.</para>
  11626. </summary>
  11627. </member>
  11628. <member name="M:Godot.ClippedCamera.ClearExceptions">
  11629. <summary>
  11630. <para>Removes all collision exceptions.</para>
  11631. </summary>
  11632. </member>
  11633. <member name="T:Godot.CollisionObject">
  11634. <summary>
  11635. <para>CollisionObject is the base class for physics objects. It can hold any number of collision <see cref="T:Godot.Shape"/>s. Each shape must be assigned to a shape owner. The CollisionObject can have any number of shape owners. Shape owners are not nodes and do not appear in the editor, but are accessible through code using the <c>shape_owner_*</c> methods.</para>
  11636. </summary>
  11637. </member>
  11638. <member name="P:Godot.CollisionObject.InputRayPickable">
  11639. <summary>
  11640. <para>If <c>true</c>, the <see cref="T:Godot.CollisionObject"/>'s shapes will respond to <see cref="T:Godot.RayCast"/>s.</para>
  11641. </summary>
  11642. </member>
  11643. <member name="P:Godot.CollisionObject.InputCaptureOnDrag">
  11644. <summary>
  11645. <para>If <c>true</c>, the <see cref="T:Godot.CollisionObject"/> will continue to receive input events as the mouse is dragged across its shapes.</para>
  11646. </summary>
  11647. </member>
  11648. <member name="M:Godot.CollisionObject._InputEvent(Godot.Object,Godot.InputEvent,Godot.Vector3,Godot.Vector3,System.Int32)">
  11649. <summary>
  11650. <para>Accepts unhandled <see cref="T:Godot.InputEvent"/>s. <c>click_position</c> is the clicked location in world space and <c>click_normal</c> is the normal vector extending from the clicked surface of the <see cref="T:Godot.Shape"/> at <c>shape_idx</c>. Connect to the <c>input_event</c> signal to easily pick up these events.</para>
  11651. </summary>
  11652. </member>
  11653. <member name="M:Godot.CollisionObject.GetRid">
  11654. <summary>
  11655. <para>Returns the object's <see cref="T:Godot.RID"/>.</para>
  11656. </summary>
  11657. </member>
  11658. <member name="M:Godot.CollisionObject.CreateShapeOwner(Godot.Object)">
  11659. <summary>
  11660. <para>Creates a new shape owner for the given object. Returns <c>owner_id</c> of the new owner for future reference.</para>
  11661. </summary>
  11662. </member>
  11663. <member name="M:Godot.CollisionObject.RemoveShapeOwner(System.UInt32)">
  11664. <summary>
  11665. <para>Removes the given shape owner.</para>
  11666. </summary>
  11667. </member>
  11668. <member name="M:Godot.CollisionObject.GetShapeOwners">
  11669. <summary>
  11670. <para>Returns an <see cref="T:Godot.Collections.Array"/> of <c>owner_id</c> identifiers. You can use these ids in other methods that take <c>owner_id</c> as an argument.</para>
  11671. </summary>
  11672. </member>
  11673. <member name="M:Godot.CollisionObject.ShapeOwnerSetTransform(System.UInt32,Godot.Transform)">
  11674. <summary>
  11675. <para>Sets the <see cref="T:Godot.Transform"/> of the given shape owner.</para>
  11676. </summary>
  11677. </member>
  11678. <member name="M:Godot.CollisionObject.ShapeOwnerGetTransform(System.UInt32)">
  11679. <summary>
  11680. <para>Returns the shape owner's <see cref="T:Godot.Transform"/>.</para>
  11681. </summary>
  11682. </member>
  11683. <member name="M:Godot.CollisionObject.ShapeOwnerGetOwner(System.UInt32)">
  11684. <summary>
  11685. <para>Returns the parent object of the given shape owner.</para>
  11686. </summary>
  11687. </member>
  11688. <member name="M:Godot.CollisionObject.ShapeOwnerSetDisabled(System.UInt32,System.Boolean)">
  11689. <summary>
  11690. <para>If <c>true</c>, disables the given shape owner.</para>
  11691. </summary>
  11692. </member>
  11693. <member name="M:Godot.CollisionObject.IsShapeOwnerDisabled(System.UInt32)">
  11694. <summary>
  11695. <para>If <c>true</c>, the shape owner and its shapes are disabled.</para>
  11696. </summary>
  11697. </member>
  11698. <member name="M:Godot.CollisionObject.ShapeOwnerAddShape(System.UInt32,Godot.Shape)">
  11699. <summary>
  11700. <para>Adds a <see cref="T:Godot.Shape"/> to the shape owner.</para>
  11701. </summary>
  11702. </member>
  11703. <member name="M:Godot.CollisionObject.ShapeOwnerGetShapeCount(System.UInt32)">
  11704. <summary>
  11705. <para>Returns the number of shapes the given shape owner contains.</para>
  11706. </summary>
  11707. </member>
  11708. <member name="M:Godot.CollisionObject.ShapeOwnerGetShape(System.UInt32,System.Int32)">
  11709. <summary>
  11710. <para>Returns the <see cref="T:Godot.Shape"/> with the given id from the given shape owner.</para>
  11711. </summary>
  11712. </member>
  11713. <member name="M:Godot.CollisionObject.ShapeOwnerGetShapeIndex(System.UInt32,System.Int32)">
  11714. <summary>
  11715. <para>Returns the child index of the <see cref="T:Godot.Shape"/> with the given id from the given shape owner.</para>
  11716. </summary>
  11717. </member>
  11718. <member name="M:Godot.CollisionObject.ShapeOwnerRemoveShape(System.UInt32,System.Int32)">
  11719. <summary>
  11720. <para>Removes a shape from the given shape owner.</para>
  11721. </summary>
  11722. </member>
  11723. <member name="M:Godot.CollisionObject.ShapeOwnerClearShapes(System.UInt32)">
  11724. <summary>
  11725. <para>Removes all shapes from the shape owner.</para>
  11726. </summary>
  11727. </member>
  11728. <member name="M:Godot.CollisionObject.ShapeFindOwner(System.Int32)">
  11729. <summary>
  11730. <para>Returns the <c>owner_id</c> of the given shape.</para>
  11731. </summary>
  11732. </member>
  11733. <member name="T:Godot.CollisionObject2D">
  11734. <summary>
  11735. <para>CollisionObject2D is the base class for 2D physics objects. It can hold any number of 2D collision <see cref="T:Godot.Shape2D"/>s. Each shape must be assigned to a shape owner. The CollisionObject2D can have any number of shape owners. Shape owners are not nodes and do not appear in the editor, but are accessible through code using the <c>shape_owner_*</c> methods.</para>
  11736. </summary>
  11737. </member>
  11738. <member name="P:Godot.CollisionObject2D.InputPickable">
  11739. <summary>
  11740. <para>If <c>true</c>, this object is pickable. A pickable object can detect the mouse pointer entering/leaving, and if the mouse is inside it, report input events. Requires at least one <c>collision_layer</c> bit to be set.</para>
  11741. </summary>
  11742. </member>
  11743. <member name="M:Godot.CollisionObject2D._InputEvent(Godot.Object,Godot.InputEvent,System.Int32)">
  11744. <summary>
  11745. <para>Accepts unhandled <see cref="T:Godot.InputEvent"/>s. Requires <see cref="P:Godot.CollisionObject2D.InputPickable"/> to be <c>true</c>. <c>shape_idx</c> is the child index of the clicked <see cref="T:Godot.Shape2D"/>. Connect to the <c>input_event</c> signal to easily pick up these events.</para>
  11746. </summary>
  11747. </member>
  11748. <member name="M:Godot.CollisionObject2D.GetRid">
  11749. <summary>
  11750. <para>Returns the object's <see cref="T:Godot.RID"/>.</para>
  11751. </summary>
  11752. </member>
  11753. <member name="M:Godot.CollisionObject2D.CreateShapeOwner(Godot.Object)">
  11754. <summary>
  11755. <para>Creates a new shape owner for the given object. Returns <c>owner_id</c> of the new owner for future reference.</para>
  11756. </summary>
  11757. </member>
  11758. <member name="M:Godot.CollisionObject2D.RemoveShapeOwner(System.UInt32)">
  11759. <summary>
  11760. <para>Removes the given shape owner.</para>
  11761. </summary>
  11762. </member>
  11763. <member name="M:Godot.CollisionObject2D.GetShapeOwners">
  11764. <summary>
  11765. <para>Returns an <see cref="T:Godot.Collections.Array"/> of <c>owner_id</c> identifiers. You can use these ids in other methods that take <c>owner_id</c> as an argument.</para>
  11766. </summary>
  11767. </member>
  11768. <member name="M:Godot.CollisionObject2D.ShapeOwnerSetTransform(System.UInt32,Godot.Transform2D)">
  11769. <summary>
  11770. <para>Sets the <see cref="T:Godot.Transform2D"/> of the given shape owner.</para>
  11771. </summary>
  11772. </member>
  11773. <member name="M:Godot.CollisionObject2D.ShapeOwnerGetTransform(System.UInt32)">
  11774. <summary>
  11775. <para>Returns the shape owner's <see cref="T:Godot.Transform2D"/>.</para>
  11776. </summary>
  11777. </member>
  11778. <member name="M:Godot.CollisionObject2D.ShapeOwnerGetOwner(System.UInt32)">
  11779. <summary>
  11780. <para>Returns the parent object of the given shape owner.</para>
  11781. </summary>
  11782. </member>
  11783. <member name="M:Godot.CollisionObject2D.ShapeOwnerSetDisabled(System.UInt32,System.Boolean)">
  11784. <summary>
  11785. <para>If <c>true</c>, disables the given shape owner.</para>
  11786. </summary>
  11787. </member>
  11788. <member name="M:Godot.CollisionObject2D.IsShapeOwnerDisabled(System.UInt32)">
  11789. <summary>
  11790. <para>If <c>true</c>, the shape owner and its shapes are disabled.</para>
  11791. </summary>
  11792. </member>
  11793. <member name="M:Godot.CollisionObject2D.ShapeOwnerSetOneWayCollision(System.UInt32,System.Boolean)">
  11794. <summary>
  11795. <para>If <c>enable</c> is <c>true</c>, collisions for the shape owner originating from this <see cref="T:Godot.CollisionObject2D"/> will not be reported to collided with <see cref="T:Godot.CollisionObject2D"/>s.</para>
  11796. </summary>
  11797. </member>
  11798. <member name="M:Godot.CollisionObject2D.IsShapeOwnerOneWayCollisionEnabled(System.UInt32)">
  11799. <summary>
  11800. <para>Returns <c>true</c> if collisions for the shape owner originating from this <see cref="T:Godot.CollisionObject2D"/> will not be reported to collided with <see cref="T:Godot.CollisionObject2D"/>s.</para>
  11801. </summary>
  11802. </member>
  11803. <member name="M:Godot.CollisionObject2D.ShapeOwnerSetOneWayCollisionMargin(System.UInt32,System.Single)">
  11804. <summary>
  11805. <para>Sets the <c>one_way_collision_margin</c> of the shape owner identified by given <c>owner_id</c> to <c>margin</c> pixels.</para>
  11806. </summary>
  11807. </member>
  11808. <member name="M:Godot.CollisionObject2D.GetShapeOwnerOneWayCollisionMargin(System.UInt32)">
  11809. <summary>
  11810. <para>Returns the <c>one_way_collision_margin</c> of the shape owner identified by given <c>owner_id</c>.</para>
  11811. </summary>
  11812. </member>
  11813. <member name="M:Godot.CollisionObject2D.ShapeOwnerAddShape(System.UInt32,Godot.Shape2D)">
  11814. <summary>
  11815. <para>Adds a <see cref="T:Godot.Shape2D"/> to the shape owner.</para>
  11816. </summary>
  11817. </member>
  11818. <member name="M:Godot.CollisionObject2D.ShapeOwnerGetShapeCount(System.UInt32)">
  11819. <summary>
  11820. <para>Returns the number of shapes the given shape owner contains.</para>
  11821. </summary>
  11822. </member>
  11823. <member name="M:Godot.CollisionObject2D.ShapeOwnerGetShape(System.UInt32,System.Int32)">
  11824. <summary>
  11825. <para>Returns the <see cref="T:Godot.Shape2D"/> with the given id from the given shape owner.</para>
  11826. </summary>
  11827. </member>
  11828. <member name="M:Godot.CollisionObject2D.ShapeOwnerGetShapeIndex(System.UInt32,System.Int32)">
  11829. <summary>
  11830. <para>Returns the child index of the <see cref="T:Godot.Shape2D"/> with the given id from the given shape owner.</para>
  11831. </summary>
  11832. </member>
  11833. <member name="M:Godot.CollisionObject2D.ShapeOwnerRemoveShape(System.UInt32,System.Int32)">
  11834. <summary>
  11835. <para>Removes a shape from the given shape owner.</para>
  11836. </summary>
  11837. </member>
  11838. <member name="M:Godot.CollisionObject2D.ShapeOwnerClearShapes(System.UInt32)">
  11839. <summary>
  11840. <para>Removes all shapes from the shape owner.</para>
  11841. </summary>
  11842. </member>
  11843. <member name="M:Godot.CollisionObject2D.ShapeFindOwner(System.Int32)">
  11844. <summary>
  11845. <para>Returns the <c>owner_id</c> of the given shape.</para>
  11846. </summary>
  11847. </member>
  11848. <member name="T:Godot.CollisionPolygon">
  11849. <summary>
  11850. <para>Allows editing a collision polygon's vertices on a selected plane. Can also set a depth perpendicular to that plane. This class is only available in the editor. It will not appear in the scene tree at run-time. Creates a <see cref="T:Godot.Shape"/> for gameplay. Properties modified during gameplay will have no effect.</para>
  11851. </summary>
  11852. </member>
  11853. <member name="P:Godot.CollisionPolygon.Depth">
  11854. <summary>
  11855. <para>Length that the resulting collision extends in either direction perpendicular to its polygon.</para>
  11856. </summary>
  11857. </member>
  11858. <member name="P:Godot.CollisionPolygon.Disabled">
  11859. <summary>
  11860. <para>If <c>true</c>, no collision will be produced.</para>
  11861. </summary>
  11862. </member>
  11863. <member name="P:Godot.CollisionPolygon.Polygon">
  11864. <summary>
  11865. <para>Array of vertices which define the polygon.</para>
  11866. <para>Note: The returned value is a copy of the original. Methods which mutate the size or properties of the return value will not impact the original polygon. To change properties of the polygon, assign it to a temporary variable and make changes before reassigning the <c>polygon</c> member.</para>
  11867. </summary>
  11868. </member>
  11869. <member name="T:Godot.CollisionPolygon2D">
  11870. <summary>
  11871. <para>Provides a 2D collision polygon to a <see cref="T:Godot.CollisionObject2D"/> parent. Polygons can be drawn in the editor or specified by a list of vertices.</para>
  11872. </summary>
  11873. </member>
  11874. <member name="F:Godot.CollisionPolygon2D.BuildModeEnum.Solids">
  11875. <summary>
  11876. <para>Collisions will include the polygon and its contained area.</para>
  11877. </summary>
  11878. </member>
  11879. <member name="F:Godot.CollisionPolygon2D.BuildModeEnum.Segments">
  11880. <summary>
  11881. <para>Collisions will only include the polygon edges.</para>
  11882. </summary>
  11883. </member>
  11884. <member name="P:Godot.CollisionPolygon2D.BuildMode">
  11885. <summary>
  11886. <para>Collision build mode. Use one of the <see cref="T:Godot.CollisionPolygon2D.BuildModeEnum"/> constants.</para>
  11887. </summary>
  11888. </member>
  11889. <member name="P:Godot.CollisionPolygon2D.Polygon">
  11890. <summary>
  11891. <para>The polygon's list of vertices. The final point will be connected to the first. The returned value is a clone of the <see cref="T:Godot.Vector2"/>, not a reference.</para>
  11892. </summary>
  11893. </member>
  11894. <member name="P:Godot.CollisionPolygon2D.Disabled">
  11895. <summary>
  11896. <para>If <c>true</c>, no collisions will be detected.</para>
  11897. </summary>
  11898. </member>
  11899. <member name="P:Godot.CollisionPolygon2D.OneWayCollision">
  11900. <summary>
  11901. <para>If <c>true</c>, only edges that face up, relative to <see cref="T:Godot.CollisionPolygon2D"/>'s rotation, will collide with other objects.</para>
  11902. </summary>
  11903. </member>
  11904. <member name="P:Godot.CollisionPolygon2D.OneWayCollisionMargin">
  11905. <summary>
  11906. <para>The margin used for one-way collision (in pixels). Higher values will make the shape thicker, and work better for colliders that enter the polygon at a high velocity.</para>
  11907. </summary>
  11908. </member>
  11909. <member name="T:Godot.CollisionShape">
  11910. <summary>
  11911. <para>Editor facility for creating and editing collision shapes in 3D space. You can use this node to represent all sorts of collision shapes, for example, add this to an <see cref="T:Godot.Area"/> to give it a detection shape, or add it to a <see cref="T:Godot.PhysicsBody"/> to create a solid object. IMPORTANT: this is an Editor-only helper to create shapes, use <see cref="M:Godot.CollisionObject.ShapeOwnerGetShape(System.UInt32,System.Int32)"/> to get the actual shape.</para>
  11912. </summary>
  11913. </member>
  11914. <member name="P:Godot.CollisionShape.Shape">
  11915. <summary>
  11916. <para>The actual shape owned by this collision shape.</para>
  11917. </summary>
  11918. </member>
  11919. <member name="P:Godot.CollisionShape.Disabled">
  11920. <summary>
  11921. <para>A disabled collision shape has no effect in the world.</para>
  11922. </summary>
  11923. </member>
  11924. <member name="M:Godot.CollisionShape.ResourceChanged(Godot.Resource)">
  11925. <summary>
  11926. <para>If this method exists within a script it will be called whenever the shape resource has been modified.</para>
  11927. </summary>
  11928. </member>
  11929. <member name="M:Godot.CollisionShape.MakeConvexFromBrothers">
  11930. <summary>
  11931. <para>Sets the collision shape's shape to the addition of all its convexed <see cref="T:Godot.MeshInstance"/> siblings geometry.</para>
  11932. </summary>
  11933. </member>
  11934. <member name="T:Godot.CollisionShape2D">
  11935. <summary>
  11936. <para>Editor facility for creating and editing collision shapes in 2D space. You can use this node to represent all sorts of collision shapes, for example, add this to an <see cref="T:Godot.Area2D"/> to give it a detection shape, or add it to a <see cref="T:Godot.PhysicsBody2D"/> to create a solid object. IMPORTANT: this is an Editor-only helper to create shapes, use <see cref="M:Godot.CollisionObject2D.ShapeOwnerGetShape(System.UInt32,System.Int32)"/> to get the actual shape.</para>
  11937. </summary>
  11938. </member>
  11939. <member name="P:Godot.CollisionShape2D.Shape">
  11940. <summary>
  11941. <para>The actual shape owned by this collision shape.</para>
  11942. </summary>
  11943. </member>
  11944. <member name="P:Godot.CollisionShape2D.Disabled">
  11945. <summary>
  11946. <para>A disabled collision shape has no effect in the world.</para>
  11947. </summary>
  11948. </member>
  11949. <member name="P:Godot.CollisionShape2D.OneWayCollision">
  11950. <summary>
  11951. <para>Sets whether this collision shape should only detect collision on one side (top or bottom).</para>
  11952. </summary>
  11953. </member>
  11954. <member name="P:Godot.CollisionShape2D.OneWayCollisionMargin">
  11955. <summary>
  11956. <para>The margin used for one-way collision (in pixels). Higher values will make the shape thicker, and work better for colliders that enter the shape at a high velocity.</para>
  11957. </summary>
  11958. </member>
  11959. <member name="T:Godot.ColorPicker">
  11960. <summary>
  11961. <para><see cref="T:Godot.Control"/> node displaying a color picker widget. It's useful for selecting a color from an RGB/RGBA colorspace.</para>
  11962. </summary>
  11963. </member>
  11964. <member name="P:Godot.ColorPicker.Color">
  11965. <summary>
  11966. <para>The currently selected color.</para>
  11967. </summary>
  11968. </member>
  11969. <member name="P:Godot.ColorPicker.EditAlpha">
  11970. <summary>
  11971. <para>If <c>true</c>, shows an alpha channel slider (transparency).</para>
  11972. </summary>
  11973. </member>
  11974. <member name="P:Godot.ColorPicker.HsvMode">
  11975. <summary>
  11976. <para>If <c>true</c>, allows editing the color with Hue/Saturation/Value sliders.</para>
  11977. <para>Note: Cannot be enabled if raw mode is on.</para>
  11978. </summary>
  11979. </member>
  11980. <member name="P:Godot.ColorPicker.RawMode">
  11981. <summary>
  11982. <para>If <c>true</c>, allows the color R, G, B component values to go beyond 1.0, which can be used for certain special operations that require it (like tinting without darkening or rendering sprites in HDR).</para>
  11983. <para>Note: Cannot be enabled if HSV mode is on.</para>
  11984. </summary>
  11985. </member>
  11986. <member name="P:Godot.ColorPicker.DeferredMode">
  11987. <summary>
  11988. <para>If <c>true</c>, the color will apply only after the user releases the mouse button, otherwise it will apply immediately even in mouse motion event (which can cause performance issues).</para>
  11989. </summary>
  11990. </member>
  11991. <member name="P:Godot.ColorPicker.PresetsEnabled">
  11992. <summary>
  11993. <para>If <c>true</c>, the "add preset" button is enabled.</para>
  11994. </summary>
  11995. </member>
  11996. <member name="P:Godot.ColorPicker.PresetsVisible">
  11997. <summary>
  11998. <para>If <c>true</c>, saved color presets are visible.</para>
  11999. </summary>
  12000. </member>
  12001. <member name="M:Godot.ColorPicker.AddPreset(Godot.Color)">
  12002. <summary>
  12003. <para>Adds the given color to a list of color presets. The presets are displayed in the color picker and the user will be able to select them.</para>
  12004. <para>Note: the presets list is only for this color picker.</para>
  12005. </summary>
  12006. </member>
  12007. <member name="M:Godot.ColorPicker.ErasePreset(Godot.Color)">
  12008. <summary>
  12009. <para>Removes the given color from the list of color presets of this color picker.</para>
  12010. </summary>
  12011. </member>
  12012. <member name="M:Godot.ColorPicker.GetPresets">
  12013. <summary>
  12014. <para>Returns the list of colors in the presets of the color picker.</para>
  12015. </summary>
  12016. </member>
  12017. <member name="T:Godot.ColorPickerButton">
  12018. <summary>
  12019. <para>Encapsulates a <see cref="T:Godot.ColorPicker"/> making it accessible by pressing a button. Pressing the button will toggle the <see cref="T:Godot.ColorPicker"/> visibility.</para>
  12020. </summary>
  12021. </member>
  12022. <member name="P:Godot.ColorPickerButton.Color">
  12023. <summary>
  12024. <para>The currently selected color.</para>
  12025. </summary>
  12026. </member>
  12027. <member name="P:Godot.ColorPickerButton.EditAlpha">
  12028. <summary>
  12029. <para>If <c>true</c>, the alpha channel in the displayed <see cref="T:Godot.ColorPicker"/> will be visible.</para>
  12030. </summary>
  12031. </member>
  12032. <member name="M:Godot.ColorPickerButton.GetPicker">
  12033. <summary>
  12034. <para>Returns the <see cref="T:Godot.ColorPicker"/> that this node toggles.</para>
  12035. </summary>
  12036. </member>
  12037. <member name="M:Godot.ColorPickerButton.GetPopup">
  12038. <summary>
  12039. <para>Returns the control's <see cref="T:Godot.PopupPanel"/> which allows you to connect to popup signals. This allows you to handle events when the ColorPicker is shown or hidden.</para>
  12040. </summary>
  12041. </member>
  12042. <member name="T:Godot.ColorRect">
  12043. <summary>
  12044. <para>Displays a colored rectangle.</para>
  12045. </summary>
  12046. </member>
  12047. <member name="P:Godot.ColorRect.Color">
  12048. <summary>
  12049. <para>The fill color.</para>
  12050. <para><code>
  12051. $ColorRect.color = Color(1, 0, 0, 1) # Set ColorRect's color to red.
  12052. </code></para>
  12053. </summary>
  12054. </member>
  12055. <member name="T:Godot.ConcavePolygonShape">
  12056. <summary>
  12057. <para>Concave polygon shape resource, which can be set into a <see cref="T:Godot.PhysicsBody"/> or area. This shape is created by feeding a list of triangles.</para>
  12058. <para>Note: when used for collision, <see cref="T:Godot.ConcavePolygonShape"/> is intended to work with static <see cref="T:Godot.PhysicsBody"/> nodes like <see cref="T:Godot.StaticBody"/> and will not work with <see cref="T:Godot.KinematicBody"/> or <see cref="T:Godot.RigidBody"/> with a mode other than Static.</para>
  12059. </summary>
  12060. </member>
  12061. <member name="M:Godot.ConcavePolygonShape.SetFaces(Godot.Vector3[])">
  12062. <summary>
  12063. <para>Sets the faces (an array of triangles).</para>
  12064. </summary>
  12065. </member>
  12066. <member name="M:Godot.ConcavePolygonShape.GetFaces">
  12067. <summary>
  12068. <para>Returns the faces (an array of triangles).</para>
  12069. </summary>
  12070. </member>
  12071. <member name="T:Godot.ConcavePolygonShape2D">
  12072. <summary>
  12073. <para>Concave polygon 2D shape resource for physics. It is made out of segments and is optimal for complex polygonal concave collisions. However, it is not advised to use for <see cref="T:Godot.RigidBody2D"/> nodes. A CollisionPolygon2D in convex decomposition mode (solids) or several convex objects are advised for that instead. Otherwise, a concave polygon 2D shape is better for static collisions.</para>
  12074. <para>The main difference between a <see cref="T:Godot.ConvexPolygonShape2D"/> and a <see cref="T:Godot.ConcavePolygonShape2D"/> is that a concave polygon assumes it is concave and uses a more complex method of collision detection, and a convex one forces itself to be convex in order to speed up collision detection.</para>
  12075. </summary>
  12076. </member>
  12077. <member name="P:Godot.ConcavePolygonShape2D.Segments">
  12078. <summary>
  12079. <para>The array of points that make up the <see cref="T:Godot.ConcavePolygonShape2D"/>'s line segments.</para>
  12080. </summary>
  12081. </member>
  12082. <member name="T:Godot.ConeTwistJoint">
  12083. <summary>
  12084. <para>The joint can rotate the bodies across an axis defined by the local x-axes of the <see cref="T:Godot.Joint"/>.</para>
  12085. <para>The twist axis is initiated as the X axis of the <see cref="T:Godot.Joint"/>.</para>
  12086. <para>Once the Bodies swing, the twist axis is calculated as the middle of the x-axes of the Joint in the local space of the two Bodies.</para>
  12087. </summary>
  12088. </member>
  12089. <member name="F:Godot.ConeTwistJoint.Param.SwingSpan">
  12090. <summary>
  12091. <para>Swing is rotation from side to side, around the axis perpendicular to the twist axis.</para>
  12092. <para>The swing span defines, how much rotation will not get corrected along the swing axis.</para>
  12093. <para>Could be defined as looseness in the <see cref="T:Godot.ConeTwistJoint"/>.</para>
  12094. <para>If below 0.05, this behavior is locked.</para>
  12095. </summary>
  12096. </member>
  12097. <member name="F:Godot.ConeTwistJoint.Param.TwistSpan">
  12098. <summary>
  12099. <para>Twist is the rotation around the twist axis, this value defined how far the joint can twist.</para>
  12100. <para>Twist is locked if below 0.05.</para>
  12101. </summary>
  12102. </member>
  12103. <member name="F:Godot.ConeTwistJoint.Param.Bias">
  12104. <summary>
  12105. <para>The speed with which the swing or twist will take place.</para>
  12106. <para>The higher, the faster.</para>
  12107. </summary>
  12108. </member>
  12109. <member name="F:Godot.ConeTwistJoint.Param.Softness">
  12110. <summary>
  12111. <para>The ease with which the joint starts to twist. If it's too low, it takes more force to start twisting the joint.</para>
  12112. </summary>
  12113. </member>
  12114. <member name="F:Godot.ConeTwistJoint.Param.Relaxation">
  12115. <summary>
  12116. <para>Defines, how fast the swing- and twist-speed-difference on both sides gets synced.</para>
  12117. </summary>
  12118. </member>
  12119. <member name="F:Godot.ConeTwistJoint.Param.Max">
  12120. <summary>
  12121. <para>Represents the size of the <see cref="T:Godot.ConeTwistJoint.Param"/> enum.</para>
  12122. </summary>
  12123. </member>
  12124. <member name="P:Godot.ConeTwistJoint.SwingSpan">
  12125. <summary>
  12126. <para>Swing is rotation from side to side, around the axis perpendicular to the twist axis.</para>
  12127. <para>The swing span defines, how much rotation will not get corrected along the swing axis.</para>
  12128. <para>Could be defined as looseness in the <see cref="T:Godot.ConeTwistJoint"/>.</para>
  12129. <para>If below 0.05, this behavior is locked.</para>
  12130. </summary>
  12131. </member>
  12132. <member name="P:Godot.ConeTwistJoint.TwistSpan">
  12133. <summary>
  12134. <para>Twist is the rotation around the twist axis, this value defined how far the joint can twist.</para>
  12135. <para>Twist is locked if below 0.05.</para>
  12136. </summary>
  12137. </member>
  12138. <member name="P:Godot.ConeTwistJoint.Bias">
  12139. <summary>
  12140. <para>The speed with which the swing or twist will take place.</para>
  12141. <para>The higher, the faster.</para>
  12142. </summary>
  12143. </member>
  12144. <member name="P:Godot.ConeTwistJoint.Softness">
  12145. <summary>
  12146. <para>The ease with which the joint starts to twist. If it's too low, it takes more force to start twisting the joint.</para>
  12147. </summary>
  12148. </member>
  12149. <member name="P:Godot.ConeTwistJoint.Relaxation">
  12150. <summary>
  12151. <para>Defines, how fast the swing- and twist-speed-difference on both sides gets synced.</para>
  12152. </summary>
  12153. </member>
  12154. <member name="T:Godot.ConfigFile">
  12155. <summary>
  12156. <para>This helper class can be used to store <c>Variant</c> values on the filesystem using INI-style formatting. The stored values are identified by a section and a key:</para>
  12157. <para><code>
  12158. [section]
  12159. some_key=42
  12160. string_example="Hello World!"
  12161. a_vector=Vector3( 1, 0, 2 )
  12162. </code></para>
  12163. <para>The stored data can be saved to or parsed from a file, though ConfigFile objects can also be used directly without accessing the filesystem.</para>
  12164. <para>The following example shows how to parse an INI-style file from the system, read its contents and store new values in it:</para>
  12165. <para><code>
  12166. var config = ConfigFile.new()
  12167. var err = config.load("user://settings.cfg")
  12168. if err == OK: # If not, something went wrong with the file loading
  12169. # Look for the display/width pair, and default to 1024 if missing
  12170. var screen_width = config.get_value("display", "width", 1024)
  12171. # Store a variable if and only if it hasn't been defined yet
  12172. if not config.has_section_key("audio", "mute"):
  12173. config.set_value("audio", "mute", false)
  12174. # Save the changes by overwriting the previous file
  12175. config.save("user://settings.cfg")
  12176. </code></para>
  12177. <para>Keep in mind that section and property names can't contain spaces. Anything after a space will be ignored on save and on load.</para>
  12178. <para>ConfigFiles can also contain manually written comment lines starting with a semicolon (<c>;</c>). Those lines will be ignored when parsing the file. Note that comments will be lost when saving the ConfigFile. This can still be useful for dedicated server configuration files, which are typically never overwritten without explicit user action.</para>
  12179. </summary>
  12180. </member>
  12181. <member name="M:Godot.ConfigFile.SetValue(System.String,System.String,System.Object)">
  12182. <summary>
  12183. <para>Assigns a value to the specified key of the specified section. If either the section or the key do not exist, they are created. Passing a <c>null</c> value deletes the specified key if it exists, and deletes the section if it ends up empty once the key has been removed.</para>
  12184. </summary>
  12185. </member>
  12186. <member name="M:Godot.ConfigFile.GetValue(System.String,System.String,System.Object)">
  12187. <summary>
  12188. <para>Returns the current value for the specified section and key. If either the section or the key do not exist, the method returns the fallback <c>default</c> value. If <c>default</c> is not specified or set to <c>null</c>, an error is also raised.</para>
  12189. </summary>
  12190. </member>
  12191. <member name="M:Godot.ConfigFile.HasSection(System.String)">
  12192. <summary>
  12193. <para>Returns <c>true</c> if the specified section exists.</para>
  12194. </summary>
  12195. </member>
  12196. <member name="M:Godot.ConfigFile.HasSectionKey(System.String,System.String)">
  12197. <summary>
  12198. <para>Returns <c>true</c> if the specified section-key pair exists.</para>
  12199. </summary>
  12200. </member>
  12201. <member name="M:Godot.ConfigFile.GetSections">
  12202. <summary>
  12203. <para>Returns an array of all defined section identifiers.</para>
  12204. </summary>
  12205. </member>
  12206. <member name="M:Godot.ConfigFile.GetSectionKeys(System.String)">
  12207. <summary>
  12208. <para>Returns an array of all defined key identifiers in the specified section. Raises an error and returns an empty array if the section does not exist.</para>
  12209. </summary>
  12210. </member>
  12211. <member name="M:Godot.ConfigFile.EraseSection(System.String)">
  12212. <summary>
  12213. <para>Deletes the specified section along with all the key-value pairs inside. Raises an error if the section does not exist.</para>
  12214. </summary>
  12215. </member>
  12216. <member name="M:Godot.ConfigFile.EraseSectionKey(System.String,System.String)">
  12217. <summary>
  12218. <para>Deletes the specified key in a section. Raises an error if either the section or the key do not exist.</para>
  12219. </summary>
  12220. </member>
  12221. <member name="M:Godot.ConfigFile.Load(System.String)">
  12222. <summary>
  12223. <para>Loads the config file specified as a parameter. The file's contents are parsed and loaded in the <see cref="T:Godot.ConfigFile"/> object which the method was called on.</para>
  12224. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  12225. </summary>
  12226. </member>
  12227. <member name="M:Godot.ConfigFile.Parse(System.String)">
  12228. <summary>
  12229. <para>Parses the the passed string as the contents of a config file. The string is parsed and loaded in the ConfigFile object which the method was called on.</para>
  12230. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  12231. </summary>
  12232. </member>
  12233. <member name="M:Godot.ConfigFile.Save(System.String)">
  12234. <summary>
  12235. <para>Saves the contents of the <see cref="T:Godot.ConfigFile"/> object to the file specified as a parameter. The output file uses an INI-style structure.</para>
  12236. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  12237. </summary>
  12238. </member>
  12239. <member name="M:Godot.ConfigFile.LoadEncrypted(System.String,System.Byte[])">
  12240. <summary>
  12241. <para>Loads the encrypted config file specified as a parameter, using the provided <c>key</c> to decrypt it. The file's contents are parsed and loaded in the <see cref="T:Godot.ConfigFile"/> object which the method was called on.</para>
  12242. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  12243. </summary>
  12244. </member>
  12245. <member name="M:Godot.ConfigFile.LoadEncryptedPass(System.String,System.String)">
  12246. <summary>
  12247. <para>Loads the encrypted config file specified as a parameter, using the provided <c>password</c> to decrypt it. The file's contents are parsed and loaded in the <see cref="T:Godot.ConfigFile"/> object which the method was called on.</para>
  12248. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  12249. </summary>
  12250. </member>
  12251. <member name="M:Godot.ConfigFile.SaveEncrypted(System.String,System.Byte[])">
  12252. <summary>
  12253. <para>Saves the contents of the <see cref="T:Godot.ConfigFile"/> object to the AES-256 encrypted file specified as a parameter, using the provided <c>key</c> to encrypt it. The output file uses an INI-style structure.</para>
  12254. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  12255. </summary>
  12256. </member>
  12257. <member name="M:Godot.ConfigFile.SaveEncryptedPass(System.String,System.String)">
  12258. <summary>
  12259. <para>Saves the contents of the <see cref="T:Godot.ConfigFile"/> object to the AES-256 encrypted file specified as a parameter, using the provided <c>password</c> to encrypt it. The output file uses an INI-style structure.</para>
  12260. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  12261. </summary>
  12262. </member>
  12263. <member name="T:Godot.ConfirmationDialog">
  12264. <summary>
  12265. <para>Dialog for confirmation of actions. This dialog inherits from <see cref="T:Godot.AcceptDialog"/>, but has by default an OK and Cancel button (in host OS order).</para>
  12266. <para>To get cancel action, you can use:</para>
  12267. <para><code>
  12268. get_cancel().connect("pressed", self, "cancelled")
  12269. </code>.</para>
  12270. </summary>
  12271. </member>
  12272. <member name="M:Godot.ConfirmationDialog.GetCancel">
  12273. <summary>
  12274. <para>Returns the cancel button.</para>
  12275. </summary>
  12276. </member>
  12277. <member name="T:Godot.Container">
  12278. <summary>
  12279. <para>Base node for containers. A <see cref="T:Godot.Container"/> contains other controls and automatically arranges them in a certain way.</para>
  12280. <para>A Control can inherit this to create custom container classes.</para>
  12281. </summary>
  12282. </member>
  12283. <member name="F:Godot.Container.NotificationSortChildren">
  12284. <summary>
  12285. <para>Notification for when sorting the children, it must be obeyed immediately.</para>
  12286. </summary>
  12287. </member>
  12288. <member name="M:Godot.Container.QueueSort">
  12289. <summary>
  12290. <para>Queue resort of the contained children. This is called automatically anyway, but can be called upon request.</para>
  12291. </summary>
  12292. </member>
  12293. <member name="M:Godot.Container.FitChildInRect(Godot.Control,Godot.Rect2)">
  12294. <summary>
  12295. <para>Fit a child control in a given rect. This is mainly a helper for creating custom container classes.</para>
  12296. </summary>
  12297. </member>
  12298. <member name="T:Godot.Control">
  12299. <summary>
  12300. <para>Base class for all UI-related nodes. <see cref="T:Godot.Control"/> features a bounding rectangle that defines its extents, an anchor position relative to its parent control or the current viewport, and margins that represent an offset to the anchor. The margins update automatically when the node, any of its parents, or the screen size change.</para>
  12301. <para>For more information on Godot's UI system, anchors, margins, and containers, see the related tutorials in the manual. To build flexible UIs, you'll need a mix of UI elements that inherit from <see cref="T:Godot.Control"/> and <see cref="T:Godot.Container"/> nodes.</para>
  12302. <para>User Interface nodes and input</para>
  12303. <para>Godot sends input events to the scene's root node first, by calling <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>. <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> forwards the event down the node tree to the nodes under the mouse cursor, or on keyboard focus. To do so, it calls <see cref="M:Godot.MainLoop._InputEvent(Godot.InputEvent)"/>. Call <see cref="M:Godot.Control.AcceptEvent"/> so no other node receives the event. Once you accepted an input, it becomes handled so <see cref="M:Godot.Node._UnhandledInput(Godot.InputEvent)"/> will not process it.</para>
  12304. <para>Only one <see cref="T:Godot.Control"/> node can be in keyboard focus. Only the node in focus will receive keyboard events. To get the focus, call <see cref="M:Godot.Control.GrabFocus"/>. <see cref="T:Godot.Control"/> nodes lose focus when another node grabs it, or if you hide the node in focus.</para>
  12305. <para>Sets <see cref="P:Godot.Control.MouseFilter"/> to to tell a <see cref="T:Godot.Control"/> node to ignore mouse or touch events. You'll need it if you place an icon on top of a button.</para>
  12306. <para><see cref="T:Godot.Theme"/> resources change the Control's appearance. If you change the <see cref="T:Godot.Theme"/> on a <see cref="T:Godot.Control"/> node, it affects all of its children. To override some of the theme's parameters, call one of the <c>add_*_override</c> methods, like <see cref="M:Godot.Control.AddFontOverride(System.String,Godot.Font)"/>. You can override the theme with the inspector.</para>
  12307. </summary>
  12308. </member>
  12309. <member name="F:Godot.Control.NotificationResized">
  12310. <summary>
  12311. <para>Sent when the node changes size. Use <see cref="P:Godot.Control.RectSize"/> to get the new size.</para>
  12312. </summary>
  12313. </member>
  12314. <member name="F:Godot.Control.NotificationMouseEnter">
  12315. <summary>
  12316. <para>Sent when the mouse pointer enters the node.</para>
  12317. </summary>
  12318. </member>
  12319. <member name="F:Godot.Control.NotificationMouseExit">
  12320. <summary>
  12321. <para>Sent when the mouse pointer exits the node.</para>
  12322. </summary>
  12323. </member>
  12324. <member name="F:Godot.Control.NotificationFocusEnter">
  12325. <summary>
  12326. <para>Sent when the node grabs focus.</para>
  12327. </summary>
  12328. </member>
  12329. <member name="F:Godot.Control.NotificationFocusExit">
  12330. <summary>
  12331. <para>Sent when the node loses focus.</para>
  12332. </summary>
  12333. </member>
  12334. <member name="F:Godot.Control.NotificationThemeChanged">
  12335. <summary>
  12336. <para>Sent when the node's <see cref="P:Godot.Control.Theme"/> changes, right before Godot redraws the control. Happens when you call one of the <c>add_*_override</c> methods.</para>
  12337. </summary>
  12338. </member>
  12339. <member name="F:Godot.Control.NotificationModalClose">
  12340. <summary>
  12341. <para>Sent when an open modal dialog closes. See <see cref="M:Godot.Control.ShowModal(System.Boolean)"/>.</para>
  12342. </summary>
  12343. </member>
  12344. <member name="F:Godot.Control.NotificationScrollBegin">
  12345. <summary>
  12346. <para>Sent when this node is inside a <see cref="T:Godot.ScrollContainer"/> which has begun being scrolled.</para>
  12347. </summary>
  12348. </member>
  12349. <member name="F:Godot.Control.NotificationScrollEnd">
  12350. <summary>
  12351. <para>Sent when this node is inside a <see cref="T:Godot.ScrollContainer"/> which has stopped being scrolled.</para>
  12352. </summary>
  12353. </member>
  12354. <member name="F:Godot.Control.Anchor.Begin">
  12355. <summary>
  12356. <para>Snaps one of the 4 anchor's sides to the origin of the node's <c>Rect</c>, in the top left. Use it with one of the <c>anchor_*</c> member variables, like <see cref="P:Godot.Control.AnchorLeft"/>. To change all 4 anchors at once, use <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12357. </summary>
  12358. </member>
  12359. <member name="F:Godot.Control.Anchor.End">
  12360. <summary>
  12361. <para>Snaps one of the 4 anchor's sides to the end of the node's <c>Rect</c>, in the bottom right. Use it with one of the <c>anchor_*</c> member variables, like <see cref="P:Godot.Control.AnchorLeft"/>. To change all 4 anchors at once, use <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12362. </summary>
  12363. </member>
  12364. <member name="F:Godot.Control.FocusModeEnum.None">
  12365. <summary>
  12366. <para>The node cannot grab focus. Use with <see cref="P:Godot.Control.FocusMode"/>.</para>
  12367. </summary>
  12368. </member>
  12369. <member name="F:Godot.Control.FocusModeEnum.Click">
  12370. <summary>
  12371. <para>The node can only grab focus on mouse clicks. Use with <see cref="P:Godot.Control.FocusMode"/>.</para>
  12372. </summary>
  12373. </member>
  12374. <member name="F:Godot.Control.FocusModeEnum.All">
  12375. <summary>
  12376. <para>The node can grab focus on mouse click or using the arrows and the Tab keys on the keyboard. Use with <see cref="P:Godot.Control.FocusMode"/>.</para>
  12377. </summary>
  12378. </member>
  12379. <member name="F:Godot.Control.LayoutPresetMode.Minsize">
  12380. <summary>
  12381. <para>The control will be resized to its minimum size.</para>
  12382. </summary>
  12383. </member>
  12384. <member name="F:Godot.Control.LayoutPresetMode.KeepWidth">
  12385. <summary>
  12386. <para>The control's width will not change.</para>
  12387. </summary>
  12388. </member>
  12389. <member name="F:Godot.Control.LayoutPresetMode.KeepHeight">
  12390. <summary>
  12391. <para>The control's height will not change.</para>
  12392. </summary>
  12393. </member>
  12394. <member name="F:Godot.Control.LayoutPresetMode.KeepSize">
  12395. <summary>
  12396. <para>The control's size will not change.</para>
  12397. </summary>
  12398. </member>
  12399. <member name="F:Godot.Control.MouseFilterEnum.Stop">
  12400. <summary>
  12401. <para>The control will receive mouse button input events through <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/> if clicked on. And the control will receive the <c>mouse_entered</c> and <c>mouse_exited</c> signals. These events are automatically marked as handled, and they will not propagate further to other controls. This also results in blocking signals in other controls.</para>
  12402. </summary>
  12403. </member>
  12404. <member name="F:Godot.Control.MouseFilterEnum.Pass">
  12405. <summary>
  12406. <para>The control will receive mouse button input events through <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/> if clicked on. And the control will receive the <c>mouse_entered</c> and <c>mouse_exited</c> signals. If this control does not handle the event, the parent control (if any) will be considered, and so on until there is no more parent control to potentially handle it. This also allows signals to fire in other controls. Even if no control handled it at all, the event will still be handled automatically, so unhandled input will not be fired.</para>
  12407. </summary>
  12408. </member>
  12409. <member name="F:Godot.Control.MouseFilterEnum.Ignore">
  12410. <summary>
  12411. <para>The control will not receive mouse button input events through <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/>. The control will also not receive the <c>mouse_entered</c> nor <c>mouse_exited</c> signals. This will not block other controls from receiving these events or firing the signals. Ignored events will not be handled automatically.</para>
  12412. </summary>
  12413. </member>
  12414. <member name="F:Godot.Control.CursorShape.Arrow">
  12415. <summary>
  12416. <para>Show the system's arrow mouse cursor when the user hovers the node. Use with <see cref="P:Godot.Control.MouseDefaultCursorShape"/>.</para>
  12417. </summary>
  12418. </member>
  12419. <member name="F:Godot.Control.CursorShape.Ibeam">
  12420. <summary>
  12421. <para>Show the system's I-beam mouse cursor when the user hovers the node. The I-beam pointer has a shape similar to "I". It tells the user they can highlight or insert text.</para>
  12422. </summary>
  12423. </member>
  12424. <member name="F:Godot.Control.CursorShape.PointingHand">
  12425. <summary>
  12426. <para>Show the system's pointing hand mouse cursor when the user hovers the node.</para>
  12427. </summary>
  12428. </member>
  12429. <member name="F:Godot.Control.CursorShape.Cross">
  12430. <summary>
  12431. <para>Show the system's cross mouse cursor when the user hovers the node.</para>
  12432. </summary>
  12433. </member>
  12434. <member name="F:Godot.Control.CursorShape.Wait">
  12435. <summary>
  12436. <para>Show the system's wait mouse cursor, often an hourglass, when the user hovers the node.</para>
  12437. </summary>
  12438. </member>
  12439. <member name="F:Godot.Control.CursorShape.Busy">
  12440. <summary>
  12441. <para>Show the system's busy mouse cursor when the user hovers the node. Often an hourglass.</para>
  12442. </summary>
  12443. </member>
  12444. <member name="F:Godot.Control.CursorShape.Drag">
  12445. <summary>
  12446. <para>Show the system's drag mouse cursor, often a closed fist or a cross symbol, when the user hovers the node. It tells the user they're currently dragging an item, like a node in the Scene dock.</para>
  12447. </summary>
  12448. </member>
  12449. <member name="F:Godot.Control.CursorShape.CanDrop">
  12450. <summary>
  12451. <para>Show the system's drop mouse cursor when the user hovers the node. It can be an open hand. It tells the user they can drop an item they're currently grabbing, like a node in the Scene dock.</para>
  12452. </summary>
  12453. </member>
  12454. <member name="F:Godot.Control.CursorShape.Forbidden">
  12455. <summary>
  12456. <para>Show the system's forbidden mouse cursor when the user hovers the node. Often a crossed circle.</para>
  12457. </summary>
  12458. </member>
  12459. <member name="F:Godot.Control.CursorShape.Vsize">
  12460. <summary>
  12461. <para>Show the system's vertical resize mouse cursor when the user hovers the node. A double-headed vertical arrow. It tells the user they can resize the window or the panel vertically.</para>
  12462. </summary>
  12463. </member>
  12464. <member name="F:Godot.Control.CursorShape.Hsize">
  12465. <summary>
  12466. <para>Show the system's horizontal resize mouse cursor when the user hovers the node. A double-headed horizontal arrow. It tells the user they can resize the window or the panel horizontally.</para>
  12467. </summary>
  12468. </member>
  12469. <member name="F:Godot.Control.CursorShape.Bdiagsize">
  12470. <summary>
  12471. <para>Show the system's window resize mouse cursor when the user hovers the node. The cursor is a double-headed arrow that goes from the bottom left to the top right. It tells the user they can resize the window or the panel both horizontally and vertically.</para>
  12472. </summary>
  12473. </member>
  12474. <member name="F:Godot.Control.CursorShape.Fdiagsize">
  12475. <summary>
  12476. <para>Show the system's window resize mouse cursor when the user hovers the node. The cursor is a double-headed arrow that goes from the top left to the bottom right, the opposite of . It tells the user they can resize the window or the panel both horizontally and vertically.</para>
  12477. </summary>
  12478. </member>
  12479. <member name="F:Godot.Control.CursorShape.Move">
  12480. <summary>
  12481. <para>Show the system's move mouse cursor when the user hovers the node. It shows 2 double-headed arrows at a 90 degree angle. It tells the user they can move a UI element freely.</para>
  12482. </summary>
  12483. </member>
  12484. <member name="F:Godot.Control.CursorShape.Vsplit">
  12485. <summary>
  12486. <para>Show the system's vertical split mouse cursor when the user hovers the node. On Windows, it's the same as .</para>
  12487. </summary>
  12488. </member>
  12489. <member name="F:Godot.Control.CursorShape.Hsplit">
  12490. <summary>
  12491. <para>Show the system's horizontal split mouse cursor when the user hovers the node. On Windows, it's the same as .</para>
  12492. </summary>
  12493. </member>
  12494. <member name="F:Godot.Control.CursorShape.Help">
  12495. <summary>
  12496. <para>Show the system's help mouse cursor when the user hovers the node, a question mark.</para>
  12497. </summary>
  12498. </member>
  12499. <member name="F:Godot.Control.GrowDirection.Begin">
  12500. <summary>
  12501. <para>The control will grow to the left or top to make up if its minimum size is changed to be greater than its current size on the respective axis.</para>
  12502. </summary>
  12503. </member>
  12504. <member name="F:Godot.Control.GrowDirection.End">
  12505. <summary>
  12506. <para>The control will grow to the right or bottom to make up if its minimum size is changed to be greater than its current size on the respective axis.</para>
  12507. </summary>
  12508. </member>
  12509. <member name="F:Godot.Control.GrowDirection.Both">
  12510. <summary>
  12511. <para>The control will grow in both directions equally to make up if its minimum size is changed to be greater than its current size.</para>
  12512. </summary>
  12513. </member>
  12514. <member name="F:Godot.Control.SizeFlags.Fill">
  12515. <summary>
  12516. <para>Tells the parent <see cref="T:Godot.Container"/> to expand the bounds of this node to fill all the available space without pushing any other node. Use with <see cref="P:Godot.Control.SizeFlagsHorizontal"/> and <see cref="P:Godot.Control.SizeFlagsVertical"/>.</para>
  12517. </summary>
  12518. </member>
  12519. <member name="F:Godot.Control.SizeFlags.Expand">
  12520. <summary>
  12521. <para>Tells the parent <see cref="T:Godot.Container"/> to let this node take all the available space on the axis you flag. If multiple neighboring nodes are set to expand, they'll share the space based on their stretch ratio. See <see cref="P:Godot.Control.SizeFlagsStretchRatio"/>. Use with <see cref="P:Godot.Control.SizeFlagsHorizontal"/> and <see cref="P:Godot.Control.SizeFlagsVertical"/>.</para>
  12522. </summary>
  12523. </member>
  12524. <member name="F:Godot.Control.SizeFlags.ExpandFill">
  12525. <summary>
  12526. <para>Sets the node's size flags to both fill and expand. See the 2 constants above for more information.</para>
  12527. </summary>
  12528. </member>
  12529. <member name="F:Godot.Control.SizeFlags.ShrinkCenter">
  12530. <summary>
  12531. <para>Tells the parent <see cref="T:Godot.Container"/> to center the node in itself. It centers the control based on its bounding box, so it doesn't work with the fill or expand size flags. Use with <see cref="P:Godot.Control.SizeFlagsHorizontal"/> and <see cref="P:Godot.Control.SizeFlagsVertical"/>.</para>
  12532. </summary>
  12533. </member>
  12534. <member name="F:Godot.Control.SizeFlags.ShrinkEnd">
  12535. <summary>
  12536. <para>Tells the parent <see cref="T:Godot.Container"/> to align the node with its end, either the bottom or the right edge. It doesn't work with the fill or expand size flags. Use with <see cref="P:Godot.Control.SizeFlagsHorizontal"/> and <see cref="P:Godot.Control.SizeFlagsVertical"/>.</para>
  12537. </summary>
  12538. </member>
  12539. <member name="F:Godot.Control.LayoutPreset.TopLeft">
  12540. <summary>
  12541. <para>Snap all 4 anchors to the top-left of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12542. </summary>
  12543. </member>
  12544. <member name="F:Godot.Control.LayoutPreset.TopRight">
  12545. <summary>
  12546. <para>Snap all 4 anchors to the top-right of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12547. </summary>
  12548. </member>
  12549. <member name="F:Godot.Control.LayoutPreset.BottomLeft">
  12550. <summary>
  12551. <para>Snap all 4 anchors to the bottom-left of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12552. </summary>
  12553. </member>
  12554. <member name="F:Godot.Control.LayoutPreset.BottomRight">
  12555. <summary>
  12556. <para>Snap all 4 anchors to the bottom-right of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12557. </summary>
  12558. </member>
  12559. <member name="F:Godot.Control.LayoutPreset.CenterLeft">
  12560. <summary>
  12561. <para>Snap all 4 anchors to the center of the left edge of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12562. </summary>
  12563. </member>
  12564. <member name="F:Godot.Control.LayoutPreset.CenterTop">
  12565. <summary>
  12566. <para>Snap all 4 anchors to the center of the top edge of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12567. </summary>
  12568. </member>
  12569. <member name="F:Godot.Control.LayoutPreset.CenterRight">
  12570. <summary>
  12571. <para>Snap all 4 anchors to the center of the right edge of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12572. </summary>
  12573. </member>
  12574. <member name="F:Godot.Control.LayoutPreset.CenterBottom">
  12575. <summary>
  12576. <para>Snap all 4 anchors to the center of the bottom edge of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12577. </summary>
  12578. </member>
  12579. <member name="F:Godot.Control.LayoutPreset.Center">
  12580. <summary>
  12581. <para>Snap all 4 anchors to the center of the parent control's bounds. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12582. </summary>
  12583. </member>
  12584. <member name="F:Godot.Control.LayoutPreset.LeftWide">
  12585. <summary>
  12586. <para>Snap all 4 anchors to the left edge of the parent control. The left margin becomes relative to the left edge and the top margin relative to the top left corner of the node's parent. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12587. </summary>
  12588. </member>
  12589. <member name="F:Godot.Control.LayoutPreset.TopWide">
  12590. <summary>
  12591. <para>Snap all 4 anchors to the top edge of the parent control. The left margin becomes relative to the top left corner, the top margin relative to the top edge, and the right margin relative to the top right corner of the node's parent. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12592. </summary>
  12593. </member>
  12594. <member name="F:Godot.Control.LayoutPreset.RightWide">
  12595. <summary>
  12596. <para>Snap all 4 anchors to the right edge of the parent control. The right margin becomes relative to the right edge and the top margin relative to the top right corner of the node's parent. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12597. </summary>
  12598. </member>
  12599. <member name="F:Godot.Control.LayoutPreset.BottomWide">
  12600. <summary>
  12601. <para>Snap all 4 anchors to the bottom edge of the parent control. The left margin becomes relative to the bottom left corner, the bottom margin relative to the bottom edge, and the right margin relative to the bottom right corner of the node's parent. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12602. </summary>
  12603. </member>
  12604. <member name="F:Godot.Control.LayoutPreset.VcenterWide">
  12605. <summary>
  12606. <para>Snap all 4 anchors to a vertical line that cuts the parent control in half. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12607. </summary>
  12608. </member>
  12609. <member name="F:Godot.Control.LayoutPreset.HcenterWide">
  12610. <summary>
  12611. <para>Snap all 4 anchors to a horizontal line that cuts the parent control in half. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12612. </summary>
  12613. </member>
  12614. <member name="F:Godot.Control.LayoutPreset.Wide">
  12615. <summary>
  12616. <para>Snap all 4 anchors to the respective corners of the parent control. Set all 4 margins to 0 after you applied this preset and the <see cref="T:Godot.Control"/> will fit its parent control. This is equivalent to the "Full Rect" layout option in the editor. Use with <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/>.</para>
  12617. </summary>
  12618. </member>
  12619. <member name="P:Godot.Control.AnchorLeft">
  12620. <summary>
  12621. <para>Anchors the left edge of the node to the origin, the center or the end of its parent control. It changes how the left margin updates when the node moves or changes size. You can use one of the <see cref="T:Godot.Control.Anchor"/> constants for convenience.</para>
  12622. </summary>
  12623. </member>
  12624. <member name="P:Godot.Control.AnchorTop">
  12625. <summary>
  12626. <para>Anchors the top edge of the node to the origin, the center or the end of its parent control. It changes how the top margin updates when the node moves or changes size. You can use one of the <see cref="T:Godot.Control.Anchor"/> constants for convenience.</para>
  12627. </summary>
  12628. </member>
  12629. <member name="P:Godot.Control.AnchorRight">
  12630. <summary>
  12631. <para>Anchors the right edge of the node to the origin, the center or the end of its parent control. It changes how the right margin updates when the node moves or changes size. You can use one of the <see cref="T:Godot.Control.Anchor"/> constants for convenience.</para>
  12632. </summary>
  12633. </member>
  12634. <member name="P:Godot.Control.AnchorBottom">
  12635. <summary>
  12636. <para>Anchors the bottom edge of the node to the origin, the center, or the end of its parent control. It changes how the bottom margin updates when the node moves or changes size. You can use one of the <see cref="T:Godot.Control.Anchor"/> constants for convenience.</para>
  12637. </summary>
  12638. </member>
  12639. <member name="P:Godot.Control.MarginLeft">
  12640. <summary>
  12641. <para>Distance between the node's left edge and its parent control, based on <see cref="P:Godot.Control.AnchorLeft"/>.</para>
  12642. <para>Margins are often controlled by one or multiple parent <see cref="T:Godot.Container"/> nodes, so you should not modify them manually if your node is a direct child of a <see cref="T:Godot.Container"/>. Margins update automatically when you move or resize the node.</para>
  12643. </summary>
  12644. </member>
  12645. <member name="P:Godot.Control.MarginTop">
  12646. <summary>
  12647. <para>Distance between the node's top edge and its parent control, based on <see cref="P:Godot.Control.AnchorTop"/>.</para>
  12648. <para>Margins are often controlled by one or multiple parent <see cref="T:Godot.Container"/> nodes, so you should not modify them manually if your node is a direct child of a <see cref="T:Godot.Container"/>. Margins update automatically when you move or resize the node.</para>
  12649. </summary>
  12650. </member>
  12651. <member name="P:Godot.Control.MarginRight">
  12652. <summary>
  12653. <para>Distance between the node's right edge and its parent control, based on <see cref="P:Godot.Control.AnchorRight"/>.</para>
  12654. <para>Margins are often controlled by one or multiple parent <see cref="T:Godot.Container"/> nodes, so you should not modify them manually if your node is a direct child of a <see cref="T:Godot.Container"/>. Margins update automatically when you move or resize the node.</para>
  12655. </summary>
  12656. </member>
  12657. <member name="P:Godot.Control.MarginBottom">
  12658. <summary>
  12659. <para>Distance between the node's bottom edge and its parent control, based on <see cref="P:Godot.Control.AnchorBottom"/>.</para>
  12660. <para>Margins are often controlled by one or multiple parent <see cref="T:Godot.Container"/> nodes, so you should not modify them manually if your node is a direct child of a <see cref="T:Godot.Container"/>. Margins update automatically when you move or resize the node.</para>
  12661. </summary>
  12662. </member>
  12663. <member name="P:Godot.Control.GrowHorizontal">
  12664. <summary>
  12665. <para>Controls the direction on the horizontal axis in which the control should grow if its horizontal minimum size is changed to be greater than its current size, as the control always has to be at least the minimum size.</para>
  12666. </summary>
  12667. </member>
  12668. <member name="P:Godot.Control.GrowVertical">
  12669. <summary>
  12670. <para>Controls the direction on the vertical axis in which the control should grow if its vertical minimum size is changed to be greater than its current size, as the control always has to be at least the minimum size.</para>
  12671. </summary>
  12672. </member>
  12673. <member name="P:Godot.Control.RectPosition">
  12674. <summary>
  12675. <para>The node's position, relative to its parent. It corresponds to the rectangle's top-left corner. The property is not affected by <see cref="P:Godot.Control.RectPivotOffset"/>.</para>
  12676. </summary>
  12677. </member>
  12678. <member name="P:Godot.Control.RectGlobalPosition">
  12679. <summary>
  12680. <para>The node's global position, relative to the world (usually to the top-left corner of the window).</para>
  12681. </summary>
  12682. </member>
  12683. <member name="P:Godot.Control.RectSize">
  12684. <summary>
  12685. <para>The size of the node's bounding rectangle, in pixels. <see cref="T:Godot.Container"/> nodes update this property automatically.</para>
  12686. </summary>
  12687. </member>
  12688. <member name="P:Godot.Control.RectMinSize">
  12689. <summary>
  12690. <para>The minimum size of the node's bounding rectangle. If you set it to a value greater than (0, 0), the node's bounding rectangle will always have at least this size, even if its content is smaller. If it's set to (0, 0), the node sizes automatically to fit its content, be it a texture or child nodes.</para>
  12691. </summary>
  12692. </member>
  12693. <member name="P:Godot.Control.RectRotation">
  12694. <summary>
  12695. <para>The node's rotation around its pivot, in degrees. See <see cref="P:Godot.Control.RectPivotOffset"/> to change the pivot's position.</para>
  12696. </summary>
  12697. </member>
  12698. <member name="P:Godot.Control.RectScale">
  12699. <summary>
  12700. <para>The node's scale, relative to its <see cref="P:Godot.Control.RectSize"/>. Change this property to scale the node around its <see cref="P:Godot.Control.RectPivotOffset"/>.</para>
  12701. </summary>
  12702. </member>
  12703. <member name="P:Godot.Control.RectPivotOffset">
  12704. <summary>
  12705. <para>By default, the node's pivot is its top-left corner. When you change its <see cref="P:Godot.Control.RectScale"/>, it will scale around this pivot. Set this property to <see cref="P:Godot.Control.RectSize"/> / 2 to center the pivot in the node's rectangle.</para>
  12706. </summary>
  12707. </member>
  12708. <member name="P:Godot.Control.RectClipContent">
  12709. <summary>
  12710. <para>Enables whether rendering of <see cref="T:Godot.CanvasItem"/> based children should be clipped to this control's rectangle. If <c>true</c>, parts of a child which would be visibly outside of this control's rectangle will not be rendered.</para>
  12711. </summary>
  12712. </member>
  12713. <member name="P:Godot.Control.HintTooltip">
  12714. <summary>
  12715. <para>Changes the tooltip text. The tooltip appears when the user's mouse cursor stays idle over this control for a few moments, provided that the <see cref="P:Godot.Control.MouseFilter"/> property is not . You can change the time required for the tooltip to appear with <c>gui/timers/tooltip_delay_sec</c> option in Project Settings.</para>
  12716. </summary>
  12717. </member>
  12718. <member name="P:Godot.Control.FocusNeighbourLeft">
  12719. <summary>
  12720. <para>Tells Godot which node it should give keyboard focus to if the user presses the left arrow on the keyboard or left on a gamepad by default. You can change the key by editing the <c>ui_left</c> input action. The node must be a <see cref="T:Godot.Control"/>. If this property is not set, Godot will give focus to the closest <see cref="T:Godot.Control"/> to the left of this one.</para>
  12721. </summary>
  12722. </member>
  12723. <member name="P:Godot.Control.FocusNeighbourTop">
  12724. <summary>
  12725. <para>Tells Godot which node it should give keyboard focus to if the user presses the top arrow on the keyboard or top on a gamepad by default. You can change the key by editing the <c>ui_top</c> input action. The node must be a <see cref="T:Godot.Control"/>. If this property is not set, Godot will give focus to the closest <see cref="T:Godot.Control"/> to the bottom of this one.</para>
  12726. </summary>
  12727. </member>
  12728. <member name="P:Godot.Control.FocusNeighbourRight">
  12729. <summary>
  12730. <para>Tells Godot which node it should give keyboard focus to if the user presses the right arrow on the keyboard or right on a gamepad by default. You can change the key by editing the <c>ui_right</c> input action. The node must be a <see cref="T:Godot.Control"/>. If this property is not set, Godot will give focus to the closest <see cref="T:Godot.Control"/> to the bottom of this one.</para>
  12731. </summary>
  12732. </member>
  12733. <member name="P:Godot.Control.FocusNeighbourBottom">
  12734. <summary>
  12735. <para>Tells Godot which node it should give keyboard focus to if the user presses the down arrow on the keyboard or down on a gamepad by default. You can change the key by editing the <c>ui_down</c> input action. The node must be a <see cref="T:Godot.Control"/>. If this property is not set, Godot will give focus to the closest <see cref="T:Godot.Control"/> to the bottom of this one.</para>
  12736. </summary>
  12737. </member>
  12738. <member name="P:Godot.Control.FocusNext">
  12739. <summary>
  12740. <para>Tells Godot which node it should give keyboard focus to if the user presses Tab on a keyboard by default. You can change the key by editing the <c>ui_focus_next</c> input action.</para>
  12741. <para>If this property is not set, Godot will select a "best guess" based on surrounding nodes in the scene tree.</para>
  12742. </summary>
  12743. </member>
  12744. <member name="P:Godot.Control.FocusPrevious">
  12745. <summary>
  12746. <para>Tells Godot which node it should give keyboard focus to if the user presses Shift+Tab on a keyboard by default. You can change the key by editing the <c>ui_focus_prev</c> input action.</para>
  12747. <para>If this property is not set, Godot will select a "best guess" based on surrounding nodes in the scene tree.</para>
  12748. </summary>
  12749. </member>
  12750. <member name="P:Godot.Control.FocusMode">
  12751. <summary>
  12752. <para>The focus access mode for the control (None, Click or All). Only one Control can be focused at the same time, and it will receive keyboard signals.</para>
  12753. </summary>
  12754. </member>
  12755. <member name="P:Godot.Control.MouseFilter">
  12756. <summary>
  12757. <para>Controls whether the control will be able to receive mouse button input events through <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/> and how these events should be handled. Also controls whether the control can receive the <c>mouse_entered</c>, and <c>mouse_exited</c> signals. See the constants to learn what each does.</para>
  12758. </summary>
  12759. </member>
  12760. <member name="P:Godot.Control.MouseDefaultCursorShape">
  12761. <summary>
  12762. <para>The default cursor shape for this control. Useful for Godot plugins and applications or games that use the system's mouse cursors.</para>
  12763. <para>Note: On Linux, shapes may vary depending on the cursor theme of the system.</para>
  12764. </summary>
  12765. </member>
  12766. <member name="P:Godot.Control.SizeFlagsHorizontal">
  12767. <summary>
  12768. <para>Tells the parent <see cref="T:Godot.Container"/> nodes how they should resize and place the node on the X axis. Use one of the <see cref="T:Godot.Control.SizeFlags"/> constants to change the flags. See the constants to learn what each does.</para>
  12769. </summary>
  12770. </member>
  12771. <member name="P:Godot.Control.SizeFlagsVertical">
  12772. <summary>
  12773. <para>Tells the parent <see cref="T:Godot.Container"/> nodes how they should resize and place the node on the Y axis. Use one of the <see cref="T:Godot.Control.SizeFlags"/> constants to change the flags. See the constants to learn what each does.</para>
  12774. </summary>
  12775. </member>
  12776. <member name="P:Godot.Control.SizeFlagsStretchRatio">
  12777. <summary>
  12778. <para>If the node and at least one of its neighbours uses the size flag, the parent <see cref="T:Godot.Container"/> will let it take more or less space depending on this property. If this node has a stretch ratio of 2 and its neighbour a ratio of 1, this node will take two thirds of the available space.</para>
  12779. </summary>
  12780. </member>
  12781. <member name="P:Godot.Control.Theme">
  12782. <summary>
  12783. <para>Changing this property replaces the current <see cref="T:Godot.Theme"/> resource this node and all its <see cref="T:Godot.Control"/> children use.</para>
  12784. </summary>
  12785. </member>
  12786. <member name="M:Godot.Control._ClipsInput">
  12787. <summary>
  12788. <para>Virtual method to be implemented by the user. Returns whether <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/> should not be called for children controls outside this control's rectangle. Input will be clipped to the Rect of this <see cref="T:Godot.Control"/>. Similar to <see cref="P:Godot.Control.RectClipContent"/>, but doesn't affect visibility.</para>
  12789. <para>If not overridden, defaults to <c>false</c>.</para>
  12790. </summary>
  12791. </member>
  12792. <member name="M:Godot.Control._GetMinimumSize">
  12793. <summary>
  12794. <para>Virtual method to be implemented by the user. Returns the minimum size for this control. Alternative to <see cref="P:Godot.Control.RectMinSize"/> for controlling minimum size via code. The actual minimum size will be the max value of these two (in each axis separately).</para>
  12795. <para>If not overridden, defaults to .</para>
  12796. </summary>
  12797. </member>
  12798. <member name="M:Godot.Control._GuiInput(Godot.InputEvent)">
  12799. <summary>
  12800. <para>Virtual method to be implemented by the user. Use this method to process and accept inputs on UI elements. See <see cref="M:Godot.Control.AcceptEvent"/>.</para>
  12801. <para>Example: clicking a control.</para>
  12802. <para><code>
  12803. func _gui_input(event):
  12804. if event is InputEventMouseButton:
  12805. if event.button_index == BUTTON_LEFT and event.pressed:
  12806. print("I've been clicked D:")
  12807. </code></para>
  12808. <para>The event won't trigger if:</para>
  12809. <para>* clicking outside the control (see <see cref="M:Godot.Control.HasPoint(Godot.Vector2)"/>);</para>
  12810. <para>* control has <see cref="P:Godot.Control.MouseFilter"/> set to ;</para>
  12811. <para>* control is obstructed by another <see cref="T:Godot.Control"/> on top of it, which doesn't have <see cref="P:Godot.Control.MouseFilter"/> set to ;</para>
  12812. <para>* control's parent has <see cref="P:Godot.Control.MouseFilter"/> set to or has accepted the event;</para>
  12813. <para>* it happens outside parent's rectangle and the parent has either <see cref="P:Godot.Control.RectClipContent"/> or <see cref="M:Godot.Control._ClipsInput"/> enabled.</para>
  12814. </summary>
  12815. </member>
  12816. <member name="M:Godot.Control._MakeCustomTooltip(System.String)">
  12817. <summary>
  12818. <para>Virtual method to be implemented by the user. Returns a <see cref="T:Godot.Control"/> node that should be used as a tooltip instead of the default one. Use <c>for_text</c> parameter to determine what text the tooltip should contain (likely the contents of <see cref="P:Godot.Control.HintTooltip"/>).</para>
  12819. <para>The returned node must be of type <see cref="T:Godot.Control"/> or Control-derieved. It can have child nodes of any type. It is freed when the tooltip disappears, so make sure you always provide a new instance, not e.g. a node from scene. When <c>null</c> or non-Control node is returned, the default tooltip will be used instead.</para>
  12820. <para>Note: The tooltip is shrunk to minimal size. If you want to ensure it's fully visible, you might want to set its <see cref="P:Godot.Control.RectMinSize"/> to some non-zero value.</para>
  12821. <para>Example of usage with custom-constructed node:</para>
  12822. <para><code>
  12823. func _make_custom_tooltip(for_text):
  12824. var label = Label.new()
  12825. label.text = for_text
  12826. return label
  12827. </code></para>
  12828. <para>Example of usage with custom scene instance:</para>
  12829. <para><code>
  12830. func _make_custom_tooltip(for_text):
  12831. var tooltip = preload("SomeTooltipScene.tscn").instance()
  12832. tooltip.get_node("Label").text = for_text
  12833. return tooltip
  12834. </code></para>
  12835. </summary>
  12836. </member>
  12837. <member name="M:Godot.Control.CanDropData(Godot.Vector2,System.Object)">
  12838. <summary>
  12839. <para>Godot calls this method to test if <c>data</c> from a control's <see cref="M:Godot.Control.GetDragData(Godot.Vector2)"/> can be dropped at <c>position</c>. <c>position</c> is local to this control.</para>
  12840. <para>This method should only be used to test the data. Process the data in <see cref="M:Godot.Control.DropData(Godot.Vector2,System.Object)"/>.</para>
  12841. <para><code>
  12842. func can_drop_data(position, data):
  12843. # Check position if it is relevant to you
  12844. # Otherwise, just check data
  12845. return typeof(data) == TYPE_DICTIONARY and data.has("expected")
  12846. </code></para>
  12847. </summary>
  12848. </member>
  12849. <member name="M:Godot.Control.DropData(Godot.Vector2,System.Object)">
  12850. <summary>
  12851. <para>Godot calls this method to pass you the <c>data</c> from a control's <see cref="M:Godot.Control.GetDragData(Godot.Vector2)"/> result. Godot first calls <see cref="M:Godot.Control.CanDropData(Godot.Vector2,System.Object)"/> to test if <c>data</c> is allowed to drop at <c>position</c> where <c>position</c> is local to this control.</para>
  12852. <para><code>
  12853. func can_drop_data(position, data):
  12854. return typeof(data) == TYPE_DICTIONARY and data.has("color")
  12855. func drop_data(position, data):
  12856. color = data["color"]
  12857. </code></para>
  12858. </summary>
  12859. </member>
  12860. <member name="M:Godot.Control.GetDragData(Godot.Vector2)">
  12861. <summary>
  12862. <para>Godot calls this method to get data that can be dragged and dropped onto controls that expect drop data. Returns <c>null</c> if there is no data to drag. Controls that want to receive drop data should implement <see cref="M:Godot.Control.CanDropData(Godot.Vector2,System.Object)"/> and <see cref="M:Godot.Control.DropData(Godot.Vector2,System.Object)"/>. <c>position</c> is local to this control. Drag may be forced with <see cref="M:Godot.Control.ForceDrag(System.Object,Godot.Control)"/>.</para>
  12863. <para>A preview that will follow the mouse that should represent the data can be set with <see cref="M:Godot.Control.SetDragPreview(Godot.Control)"/>. A good time to set the preview is in this method.</para>
  12864. <para><code>
  12865. func get_drag_data(position):
  12866. var mydata = make_data()
  12867. set_drag_preview(make_preview(mydata))
  12868. return mydata
  12869. </code></para>
  12870. </summary>
  12871. </member>
  12872. <member name="M:Godot.Control.HasPoint(Godot.Vector2)">
  12873. <summary>
  12874. <para>Virtual method to be implemented by the user. Returns whether the given <c>point</c> is inside this control.</para>
  12875. <para>If not overridden, default behavior is checking if the point is within control's Rect.</para>
  12876. <para>Note: If you want to check if a point is inside the control, you can use <c>get_rect().has_point(point)</c>.</para>
  12877. </summary>
  12878. </member>
  12879. <member name="M:Godot.Control.AcceptEvent">
  12880. <summary>
  12881. <para>Marks an input event as handled. Once you accept an input event, it stops propagating, even to nodes listening to <see cref="M:Godot.Node._UnhandledInput(Godot.InputEvent)"/> or <see cref="M:Godot.Node._UnhandledKeyInput(Godot.InputEventKey)"/>.</para>
  12882. </summary>
  12883. </member>
  12884. <member name="M:Godot.Control.GetMinimumSize">
  12885. <summary>
  12886. <para>Returns the minimum size for this control. See <see cref="P:Godot.Control.RectMinSize"/>.</para>
  12887. </summary>
  12888. </member>
  12889. <member name="M:Godot.Control.GetCombinedMinimumSize">
  12890. <summary>
  12891. <para>Returns combined minimum size from <see cref="P:Godot.Control.RectMinSize"/> and <see cref="M:Godot.Control.GetMinimumSize"/>.</para>
  12892. </summary>
  12893. </member>
  12894. <member name="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)">
  12895. <summary>
  12896. <para>Sets the anchors to a <c>preset</c> from <see cref="T:Godot.Control.LayoutPreset"/> enum. This is code equivalent of using the Layout menu in 2D editor.</para>
  12897. <para>If <c>keep_margins</c> is <c>true</c>, control's position will also be updated.</para>
  12898. </summary>
  12899. </member>
  12900. <member name="M:Godot.Control.SetMarginsPreset(Godot.Control.LayoutPreset,Godot.Control.LayoutPresetMode,System.Int32)">
  12901. <summary>
  12902. <para>Sets the margins to a <c>preset</c> from <see cref="T:Godot.Control.LayoutPreset"/> enum. This is code equivalent of using the Layout menu in 2D editor.</para>
  12903. <para>Use parameter <c>resize_mode</c> with constants from <see cref="T:Godot.Control.LayoutPresetMode"/> to better determine the resulting size of the <see cref="T:Godot.Control"/>. Constant size will be ignored if used with presets that change size, e.g. <c>PRESET_LEFT_WIDE</c>.</para>
  12904. <para>Use parameter <c>margin</c> to determine the gap between the <see cref="T:Godot.Control"/> and the edges.</para>
  12905. </summary>
  12906. </member>
  12907. <member name="M:Godot.Control.SetAnchorsAndMarginsPreset(Godot.Control.LayoutPreset,Godot.Control.LayoutPresetMode,System.Int32)">
  12908. <summary>
  12909. <para>Sets both anchor preset and margin preset. See <see cref="M:Godot.Control.SetAnchorsPreset(Godot.Control.LayoutPreset,System.Boolean)"/> and <see cref="M:Godot.Control.SetMarginsPreset(Godot.Control.LayoutPreset,Godot.Control.LayoutPresetMode,System.Int32)"/>.</para>
  12910. </summary>
  12911. </member>
  12912. <member name="M:Godot.Control.SetAnchor(Godot.Margin,System.Single,System.Boolean,System.Boolean)">
  12913. <summary>
  12914. <para>Sets the anchor identified by <c>margin</c> constant from <see cref="T:Godot.Margin"/> enum to value <c>anchor</c>. A setter method for <see cref="P:Godot.Control.AnchorBottom"/>, <see cref="P:Godot.Control.AnchorLeft"/>, <see cref="P:Godot.Control.AnchorRight"/> and <see cref="P:Godot.Control.AnchorTop"/>.</para>
  12915. <para>If <c>keep_margin</c> is <c>true</c>, margins aren't updated after this operation.</para>
  12916. <para>If <c>push_opposite_anchor</c> is <c>true</c> and the opposite anchor overlaps this anchor, the opposite one will have its value overridden. For example, when setting left anchor to 1 and the right anchor has value of 0.5, the right anchor will also get value of 1. If <c>push_opposite_anchor</c> was <c>false</c>, the left anchor would get value 0.5.</para>
  12917. </summary>
  12918. </member>
  12919. <member name="M:Godot.Control.GetAnchor(Godot.Margin)">
  12920. <summary>
  12921. <para>Returns the anchor identified by <c>margin</c> constant from <see cref="T:Godot.Margin"/> enum. A getter method for <see cref="P:Godot.Control.AnchorBottom"/>, <see cref="P:Godot.Control.AnchorLeft"/>, <see cref="P:Godot.Control.AnchorRight"/> and <see cref="P:Godot.Control.AnchorTop"/>.</para>
  12922. </summary>
  12923. </member>
  12924. <member name="M:Godot.Control.SetMargin(Godot.Margin,System.Single)">
  12925. <summary>
  12926. <para>Sets the margin identified by <c>margin</c> constant from <see cref="T:Godot.Margin"/> enum to given <c>offset</c>. A setter method for <see cref="P:Godot.Control.MarginBottom"/>, <see cref="P:Godot.Control.MarginLeft"/>, <see cref="P:Godot.Control.MarginRight"/> and <see cref="P:Godot.Control.MarginTop"/>.</para>
  12927. </summary>
  12928. </member>
  12929. <member name="M:Godot.Control.SetAnchorAndMargin(Godot.Margin,System.Single,System.Single,System.Boolean)">
  12930. <summary>
  12931. <para>Works the same as <see cref="M:Godot.Control.SetAnchor(Godot.Margin,System.Single,System.Boolean,System.Boolean)"/>, but instead of <c>keep_margin</c> argument and automatic update of margin, it allows to set the margin offset yourself (see <see cref="M:Godot.Control.SetMargin(Godot.Margin,System.Single)"/>).</para>
  12932. </summary>
  12933. </member>
  12934. <member name="M:Godot.Control.SetBegin(Godot.Vector2)">
  12935. <summary>
  12936. <para>Sets <see cref="P:Godot.Control.MarginLeft"/> and <see cref="P:Godot.Control.MarginTop"/> at the same time. Equivalent of changing <see cref="P:Godot.Control.RectPosition"/>.</para>
  12937. </summary>
  12938. </member>
  12939. <member name="M:Godot.Control.SetEnd(Godot.Vector2)">
  12940. <summary>
  12941. <para>Sets <see cref="P:Godot.Control.MarginRight"/> and <see cref="P:Godot.Control.MarginBottom"/> at the same time.</para>
  12942. </summary>
  12943. </member>
  12944. <member name="M:Godot.Control.SetPosition(Godot.Vector2,System.Boolean)">
  12945. <summary>
  12946. <para>Sets the <see cref="P:Godot.Control.RectPosition"/> to given <c>position</c>.</para>
  12947. <para>If <c>keep_margins</c> is <c>true</c>, control's anchors will be updated instead of margins.</para>
  12948. </summary>
  12949. </member>
  12950. <member name="M:Godot.Control.SetSize(Godot.Vector2,System.Boolean)">
  12951. <summary>
  12952. <para>Sets the size (see <see cref="P:Godot.Control.RectSize"/>).</para>
  12953. <para>If <c>keep_margins</c> is <c>true</c>, control's anchors will be updated instead of margins.</para>
  12954. </summary>
  12955. </member>
  12956. <member name="M:Godot.Control.SetGlobalPosition(Godot.Vector2,System.Boolean)">
  12957. <summary>
  12958. <para>Sets the <see cref="P:Godot.Control.RectGlobalPosition"/> to given <c>position</c>.</para>
  12959. <para>If <c>keep_margins</c> is <c>true</c>, control's anchors will be updated instead of margins.</para>
  12960. </summary>
  12961. </member>
  12962. <member name="M:Godot.Control.SetRotation(System.Single)">
  12963. <summary>
  12964. <para>Sets the rotation (in radians).</para>
  12965. </summary>
  12966. </member>
  12967. <member name="M:Godot.Control.GetMargin(Godot.Margin)">
  12968. <summary>
  12969. <para>Returns the anchor identified by <c>margin</c> constant from <see cref="T:Godot.Margin"/> enum. A getter method for <see cref="P:Godot.Control.MarginBottom"/>, <see cref="P:Godot.Control.MarginLeft"/>, <see cref="P:Godot.Control.MarginRight"/> and <see cref="P:Godot.Control.MarginTop"/>.</para>
  12970. </summary>
  12971. </member>
  12972. <member name="M:Godot.Control.GetBegin">
  12973. <summary>
  12974. <para>Returns <see cref="P:Godot.Control.MarginLeft"/> and <see cref="P:Godot.Control.MarginTop"/>. See also <see cref="P:Godot.Control.RectPosition"/>.</para>
  12975. </summary>
  12976. </member>
  12977. <member name="M:Godot.Control.GetEnd">
  12978. <summary>
  12979. <para>Returns <see cref="P:Godot.Control.MarginRight"/> and <see cref="P:Godot.Control.MarginBottom"/>.</para>
  12980. </summary>
  12981. </member>
  12982. <member name="M:Godot.Control.GetRotation">
  12983. <summary>
  12984. <para>Returns the rotation (in radians).</para>
  12985. </summary>
  12986. </member>
  12987. <member name="M:Godot.Control.GetParentAreaSize">
  12988. <summary>
  12989. <para>Returns the width/height occupied in the parent control.</para>
  12990. </summary>
  12991. </member>
  12992. <member name="M:Godot.Control.GetRect">
  12993. <summary>
  12994. <para>Returns the position and size of the control relative to the top-left corner of the parent Control. See <see cref="P:Godot.Control.RectPosition"/> and <see cref="P:Godot.Control.RectSize"/>.</para>
  12995. </summary>
  12996. </member>
  12997. <member name="M:Godot.Control.GetGlobalRect">
  12998. <summary>
  12999. <para>Returns the position and size of the control relative to the top-left corner of the screen. See <see cref="P:Godot.Control.RectPosition"/> and <see cref="P:Godot.Control.RectSize"/>.</para>
  13000. </summary>
  13001. </member>
  13002. <member name="M:Godot.Control.ShowModal(System.Boolean)">
  13003. <summary>
  13004. <para>Displays a control as modal. Control must be a subwindow. Modal controls capture the input signals until closed or the area outside them is accessed. When a modal control loses focus, or the ESC key is pressed, they automatically hide. Modal controls are used extensively for popup dialogs and menus.</para>
  13005. <para>If <c>exclusive</c> is <c>true</c>, other controls will not receive input and clicking outside this control will not close it.</para>
  13006. </summary>
  13007. </member>
  13008. <member name="M:Godot.Control.HasFocus">
  13009. <summary>
  13010. <para>Returns <c>true</c> if this is the current focused control. See <see cref="P:Godot.Control.FocusMode"/>.</para>
  13011. </summary>
  13012. </member>
  13013. <member name="M:Godot.Control.GrabFocus">
  13014. <summary>
  13015. <para>Steal the focus from another control and become the focused control (see <see cref="P:Godot.Control.FocusMode"/>).</para>
  13016. </summary>
  13017. </member>
  13018. <member name="M:Godot.Control.ReleaseFocus">
  13019. <summary>
  13020. <para>Give up the focus. No other control will be able to receive keyboard input.</para>
  13021. </summary>
  13022. </member>
  13023. <member name="M:Godot.Control.GetFocusOwner">
  13024. <summary>
  13025. <para>Returns the control that has the keyboard focus or <c>null</c> if none.</para>
  13026. </summary>
  13027. </member>
  13028. <member name="M:Godot.Control.AddIconOverride(System.String,Godot.Texture)">
  13029. <summary>
  13030. <para>Overrides the icon with given <c>name</c> in the <see cref="P:Godot.Control.Theme"/> resource the control uses. If <c>icon</c> is empty or invalid, the override is cleared and the icon from assigned <see cref="T:Godot.Theme"/> is used.</para>
  13031. </summary>
  13032. </member>
  13033. <member name="M:Godot.Control.AddShaderOverride(System.String,Godot.Shader)">
  13034. <summary>
  13035. <para>Overrides the <see cref="T:Godot.Shader"/> with given <c>name</c> in the <see cref="P:Godot.Control.Theme"/> resource the control uses. If <c>shader</c> is empty or invalid, the override is cleared and the shader from assigned <see cref="T:Godot.Theme"/> is used.</para>
  13036. </summary>
  13037. </member>
  13038. <member name="M:Godot.Control.AddStyleboxOverride(System.String,Godot.StyleBox)">
  13039. <summary>
  13040. <para>Overrides the <see cref="T:Godot.StyleBox"/> with given <c>name</c> in the <see cref="P:Godot.Control.Theme"/> resource the control uses. If <c>stylebox</c> is empty or invalid, the override is cleared and the <see cref="T:Godot.StyleBox"/> from assigned <see cref="T:Godot.Theme"/> is used.</para>
  13041. </summary>
  13042. </member>
  13043. <member name="M:Godot.Control.AddFontOverride(System.String,Godot.Font)">
  13044. <summary>
  13045. <para>Overrides the font with given <c>name</c> in the <see cref="P:Godot.Control.Theme"/> resource the control uses. If <c>font</c> is empty or invalid, the override is cleared and the font from assigned <see cref="T:Godot.Theme"/> is used.</para>
  13046. </summary>
  13047. </member>
  13048. <member name="M:Godot.Control.AddColorOverride(System.String,Godot.Color)">
  13049. <summary>
  13050. <para>Overrides the <see cref="T:Godot.Color"/> with given <c>name</c> in the <see cref="P:Godot.Control.Theme"/> resource the control uses. If the <c>color</c> is empty or invalid, the override is cleared and the color from assigned <see cref="T:Godot.Theme"/> is used.</para>
  13051. </summary>
  13052. </member>
  13053. <member name="M:Godot.Control.AddConstantOverride(System.String,System.Int32)">
  13054. <summary>
  13055. <para>Overrides an integer constant with given <c>name</c> in the <see cref="P:Godot.Control.Theme"/> resource the control uses. If the <c>constant</c> is empty or invalid, the override is cleared and the constant from assigned <see cref="T:Godot.Theme"/> is used.</para>
  13056. </summary>
  13057. </member>
  13058. <member name="M:Godot.Control.GetIcon(System.String,System.String)">
  13059. <summary>
  13060. <para>Returns an icon from assigned <see cref="T:Godot.Theme"/> with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c>.</para>
  13061. </summary>
  13062. </member>
  13063. <member name="M:Godot.Control.GetStylebox(System.String,System.String)">
  13064. <summary>
  13065. <para>Returns a <see cref="T:Godot.StyleBox"/> from assigned <see cref="T:Godot.Theme"/> with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c>.</para>
  13066. </summary>
  13067. </member>
  13068. <member name="M:Godot.Control.GetFont(System.String,System.String)">
  13069. <summary>
  13070. <para>Returns a font from assigned <see cref="T:Godot.Theme"/> with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c>.</para>
  13071. </summary>
  13072. </member>
  13073. <member name="M:Godot.Control.GetColor(System.String,System.String)">
  13074. <summary>
  13075. <para>Returns a color from assigned <see cref="T:Godot.Theme"/> with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c>.</para>
  13076. <para><code>
  13077. func _ready():
  13078. modulate = get_color("font_color", "Button") #get the color defined for button fonts
  13079. </code></para>
  13080. </summary>
  13081. </member>
  13082. <member name="M:Godot.Control.GetConstant(System.String,System.String)">
  13083. <summary>
  13084. <para>Returns a constant from assigned <see cref="T:Godot.Theme"/> with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c>.</para>
  13085. </summary>
  13086. </member>
  13087. <member name="M:Godot.Control.HasIconOverride(System.String)">
  13088. <summary>
  13089. <para>Returns <c>true</c> if icon with given <c>name</c> has a valid override in this <see cref="T:Godot.Control"/> node.</para>
  13090. </summary>
  13091. </member>
  13092. <member name="M:Godot.Control.HasShaderOverride(System.String)">
  13093. <summary>
  13094. <para>Returns <c>true</c> if <see cref="T:Godot.Shader"/> with given <c>name</c> has a valid override in this <see cref="T:Godot.Control"/> node.</para>
  13095. </summary>
  13096. </member>
  13097. <member name="M:Godot.Control.HasStyleboxOverride(System.String)">
  13098. <summary>
  13099. <para>Returns <c>true</c> if <see cref="T:Godot.StyleBox"/> with given <c>name</c> has a valid override in this <see cref="T:Godot.Control"/> node.</para>
  13100. </summary>
  13101. </member>
  13102. <member name="M:Godot.Control.HasFontOverride(System.String)">
  13103. <summary>
  13104. <para>Returns <c>true</c> if font with given <c>name</c> has a valid override in this <see cref="T:Godot.Control"/> node.</para>
  13105. </summary>
  13106. </member>
  13107. <member name="M:Godot.Control.HasColorOverride(System.String)">
  13108. <summary>
  13109. <para>Returns <c>true</c> if <see cref="T:Godot.Color"/> with given <c>name</c> has a valid override in this <see cref="T:Godot.Control"/> node.</para>
  13110. </summary>
  13111. </member>
  13112. <member name="M:Godot.Control.HasConstantOverride(System.String)">
  13113. <summary>
  13114. <para>Returns <c>true</c> if constant with given <c>name</c> has a valid override in this <see cref="T:Godot.Control"/> node.</para>
  13115. </summary>
  13116. </member>
  13117. <member name="M:Godot.Control.HasIcon(System.String,System.String)">
  13118. <summary>
  13119. <para>Returns <c>true</c> if icon with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c> exists in assigned <see cref="T:Godot.Theme"/>.</para>
  13120. </summary>
  13121. </member>
  13122. <member name="M:Godot.Control.HasStylebox(System.String,System.String)">
  13123. <summary>
  13124. <para>Returns <c>true</c> if <see cref="T:Godot.StyleBox"/> with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c> exists in assigned <see cref="T:Godot.Theme"/>.</para>
  13125. </summary>
  13126. </member>
  13127. <member name="M:Godot.Control.HasFont(System.String,System.String)">
  13128. <summary>
  13129. <para>Returns <c>true</c> if font with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c> exists in assigned <see cref="T:Godot.Theme"/>.</para>
  13130. </summary>
  13131. </member>
  13132. <member name="M:Godot.Control.HasColor(System.String,System.String)">
  13133. <summary>
  13134. <para>Returns <c>true</c> if <see cref="T:Godot.Color"/> with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c> exists in assigned <see cref="T:Godot.Theme"/>.</para>
  13135. </summary>
  13136. </member>
  13137. <member name="M:Godot.Control.HasConstant(System.String,System.String)">
  13138. <summary>
  13139. <para>Returns <c>true</c> if constant with given <c>name</c> and associated with <see cref="T:Godot.Control"/> of given <c>type</c> exists in assigned <see cref="T:Godot.Theme"/>.</para>
  13140. </summary>
  13141. </member>
  13142. <member name="M:Godot.Control.GetParentControl">
  13143. <summary>
  13144. <para>Returns the parent control node.</para>
  13145. </summary>
  13146. </member>
  13147. <member name="M:Godot.Control.GetTooltip(System.Nullable{Godot.Vector2})">
  13148. <summary>
  13149. <para>Returns the tooltip, which will appear when the cursor is resting over this control. See <see cref="P:Godot.Control.HintTooltip"/>.</para>
  13150. </summary>
  13151. <param name="atPosition">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  13152. </member>
  13153. <member name="M:Godot.Control.GetCursorShape(System.Nullable{Godot.Vector2})">
  13154. <summary>
  13155. <para>Returns the mouse cursor shape the control displays on mouse hover. See <see cref="T:Godot.Control.CursorShape"/>.</para>
  13156. </summary>
  13157. <param name="position">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  13158. </member>
  13159. <member name="M:Godot.Control.SetFocusNeighbour(Godot.Margin,Godot.NodePath)">
  13160. <summary>
  13161. <para>Sets the anchor identified by <c>margin</c> constant from <see cref="T:Godot.Margin"/> enum to <see cref="T:Godot.Control"/> at <c>neighbor</c> node path. A setter method for <see cref="P:Godot.Control.FocusNeighbourBottom"/>, <see cref="P:Godot.Control.FocusNeighbourLeft"/>, <see cref="P:Godot.Control.FocusNeighbourRight"/> and <see cref="P:Godot.Control.FocusNeighbourTop"/>.</para>
  13162. </summary>
  13163. </member>
  13164. <member name="M:Godot.Control.GetFocusNeighbour(Godot.Margin)">
  13165. <summary>
  13166. <para>Returns the focus neighbour identified by <c>margin</c> constant from <see cref="T:Godot.Margin"/> enum. A getter method for <see cref="P:Godot.Control.FocusNeighbourBottom"/>, <see cref="P:Godot.Control.FocusNeighbourLeft"/>, <see cref="P:Godot.Control.FocusNeighbourRight"/> and <see cref="P:Godot.Control.FocusNeighbourTop"/>.</para>
  13167. </summary>
  13168. </member>
  13169. <member name="M:Godot.Control.ForceDrag(System.Object,Godot.Control)">
  13170. <summary>
  13171. <para>Forces drag and bypasses <see cref="M:Godot.Control.GetDragData(Godot.Vector2)"/> and <see cref="M:Godot.Control.SetDragPreview(Godot.Control)"/> by passing <c>data</c> and <c>preview</c>. Drag will start even if the mouse is neither over nor pressed on this control.</para>
  13172. <para>The methods <see cref="M:Godot.Control.CanDropData(Godot.Vector2,System.Object)"/> and <see cref="M:Godot.Control.DropData(Godot.Vector2,System.Object)"/> must be implemented on controls that want to receive drop data.</para>
  13173. </summary>
  13174. </member>
  13175. <member name="M:Godot.Control.GrabClickFocus">
  13176. <summary>
  13177. <para>Creates an <see cref="T:Godot.InputEventMouseButton"/> that attempts to click the control. If the event is received, the control acquires focus.</para>
  13178. <para><code>
  13179. func _process(delta):
  13180. grab_click_focus() #when clicking another Control node, this node will be clicked instead
  13181. </code></para>
  13182. </summary>
  13183. </member>
  13184. <member name="M:Godot.Control.SetDragForwarding(Godot.Control)">
  13185. <summary>
  13186. <para>Forwards the handling of this control's drag and drop to <c>target</c> control.</para>
  13187. <para>Forwarding can be implemented in the target control similar to the methods <see cref="M:Godot.Control.GetDragData(Godot.Vector2)"/>, <see cref="M:Godot.Control.CanDropData(Godot.Vector2,System.Object)"/>, and <see cref="M:Godot.Control.DropData(Godot.Vector2,System.Object)"/> but with two differences:</para>
  13188. <para>1. The function name must be suffixed with _fw</para>
  13189. <para>2. The function must take an extra argument that is the control doing the forwarding</para>
  13190. <para><code>
  13191. # ThisControl.gd
  13192. extends Control
  13193. func _ready():
  13194. set_drag_forwarding(target_control)
  13195. # TargetControl.gd
  13196. extends Control
  13197. func can_drop_data_fw(position, data, from_control):
  13198. return true
  13199. func drop_data_fw(position, data, from_control):
  13200. my_handle_data(data)
  13201. func get_drag_data_fw(position, from_control):
  13202. set_drag_preview(my_preview)
  13203. return my_data()
  13204. </code></para>
  13205. </summary>
  13206. </member>
  13207. <member name="M:Godot.Control.SetDragPreview(Godot.Control)">
  13208. <summary>
  13209. <para>Shows the given control at the mouse pointer. A good time to call this method is in <see cref="M:Godot.Control.GetDragData(Godot.Vector2)"/>. The control must not be in the scene tree.</para>
  13210. <para><code>
  13211. export (Color, RGBA) var color = Color(1, 0, 0, 1)
  13212. func get_drag_data(position):
  13213. # Use a control that is not in the tree
  13214. var cpb = ColorPickerButton.new()
  13215. cpb.color = color
  13216. cpb.rect_size = Vector2(50, 50)
  13217. set_drag_preview(cpb)
  13218. return color
  13219. </code></para>
  13220. </summary>
  13221. </member>
  13222. <member name="M:Godot.Control.WarpMouse(Godot.Vector2)">
  13223. <summary>
  13224. <para>Moves the mouse cursor to <c>to_position</c>, relative to <see cref="P:Godot.Control.RectPosition"/> of this <see cref="T:Godot.Control"/>.</para>
  13225. </summary>
  13226. </member>
  13227. <member name="M:Godot.Control.MinimumSizeChanged">
  13228. <summary>
  13229. <para>Invalidates the size cache in this node and in parent nodes up to toplevel. Intended to be used with <see cref="M:Godot.Control.GetMinimumSize"/> when the return value is changed. Setting <see cref="P:Godot.Control.RectMinSize"/> directly calls this method automatically.</para>
  13230. </summary>
  13231. </member>
  13232. <member name="T:Godot.ConvexPolygonShape">
  13233. <summary>
  13234. <para>Convex polygon shape resource, which can be added to a <see cref="T:Godot.PhysicsBody"/> or area.</para>
  13235. </summary>
  13236. </member>
  13237. <member name="P:Godot.ConvexPolygonShape.Points">
  13238. <summary>
  13239. <para>The list of 3D points forming the convex polygon shape.</para>
  13240. </summary>
  13241. </member>
  13242. <member name="T:Godot.ConvexPolygonShape2D">
  13243. <summary>
  13244. <para>Convex polygon shape for 2D physics. A convex polygon, whatever its shape, is internally decomposed into as many convex polygons as needed to ensure all collision checks against it are always done on convex polygons (which are faster to check).</para>
  13245. <para>The main difference between a <see cref="T:Godot.ConvexPolygonShape2D"/> and a <see cref="T:Godot.ConcavePolygonShape2D"/> is that a concave polygon assumes it is concave and uses a more complex method of collision detection, and a convex one forces itself to be convex in order to speed up collision detection.</para>
  13246. </summary>
  13247. </member>
  13248. <member name="P:Godot.ConvexPolygonShape2D.Points">
  13249. <summary>
  13250. <para>The polygon's list of vertices. Can be in either clockwise or counterclockwise order.</para>
  13251. </summary>
  13252. </member>
  13253. <member name="M:Godot.ConvexPolygonShape2D.SetPointCloud(Godot.Vector2[])">
  13254. <summary>
  13255. <para>Based on the set of points provided, this creates and assigns the <see cref="P:Godot.ConvexPolygonShape2D.Points"/> property using the convex hull algorithm. Removing all unneeded points. See <see cref="M:Godot.Geometry.ConvexHull2d(Godot.Vector2[])"/> for details.</para>
  13256. </summary>
  13257. </member>
  13258. <member name="T:Godot.Crypto">
  13259. <summary>
  13260. <para>The Crypto class allows you to access some more advanced cryptographic functionalities in Godot.</para>
  13261. <para>For now, this includes generating cryptographically secure random bytes, and RSA keys and self-signed X509 certificates generation. More functionalities are planned for future releases.</para>
  13262. <para><code>
  13263. extends Node
  13264. var crypto = Crypto.new()
  13265. var key = CryptoKey.new()
  13266. var cert = X509Certificate.new()
  13267. func _ready():
  13268. # Generate new RSA key.
  13269. key = crypto.generate_rsa(4096)
  13270. # Generate new self-signed certificate with the given key.
  13271. cert = crypto.generate_self_signed_certificate(key, "CN=mydomain.com,O=My Game Company,C=IT")
  13272. # Save key and certificate in the user folder.
  13273. key.save("user://generated.key")
  13274. cert.save("user://generated.crt")
  13275. </code></para>
  13276. <para>Note: Not available in HTML5 exports.</para>
  13277. </summary>
  13278. </member>
  13279. <member name="M:Godot.Crypto.GenerateRandomBytes(System.Int32)">
  13280. <summary>
  13281. <para>Generates a <see cref="T:System.Byte"/> of cryptographically secure random bytes with given <c>size</c>.</para>
  13282. </summary>
  13283. </member>
  13284. <member name="M:Godot.Crypto.GenerateRsa(System.Int32)">
  13285. <summary>
  13286. <para>Generates an RSA <see cref="T:Godot.CryptoKey"/> that can be used for creating self-signed certificates and passed to <see cref="M:Godot.StreamPeerSSL.AcceptStream(Godot.StreamPeer,Godot.CryptoKey,Godot.X509Certificate,Godot.X509Certificate)"/>.</para>
  13287. </summary>
  13288. </member>
  13289. <member name="M:Godot.Crypto.GenerateSelfSignedCertificate(Godot.CryptoKey,System.String,System.String,System.String)">
  13290. <summary>
  13291. <para>Generates a self-signed <see cref="T:Godot.X509Certificate"/> from the given <see cref="T:Godot.CryptoKey"/> and <c>issuer_name</c>. The certificate validity will be defined by <c>not_before</c> and <c>not_after</c> (first valid date and last valid date). The <c>issuer_name</c> must contain at least "CN=" (common name, i.e. the domain name), "O=" (organization, i.e. your company name), "C=" (country, i.e. 2 lettered ISO-3166 code of the country the organization is based in).</para>
  13292. <para>A small example to generate an RSA key and a X509 self-signed certificate.</para>
  13293. <para><code>
  13294. var crypto = Crypto.new()
  13295. # Generate 4096 bits RSA key.
  13296. var key = crypto.generate_rsa(4096)
  13297. # Generate self-signed certificate using the given key.
  13298. var cert = crypto.generate_self_signed_certificate(key, "CN=example.com,O=A Game Company,C=IT")
  13299. </code></para>
  13300. </summary>
  13301. </member>
  13302. <member name="T:Godot.CryptoKey">
  13303. <summary>
  13304. <para>The CryptoKey class represents a cryptographic key. Keys can be loaded and saved like any other <see cref="T:Godot.Resource"/>.</para>
  13305. <para>They can be used to generate a self-signed <see cref="T:Godot.X509Certificate"/> via <see cref="M:Godot.Crypto.GenerateSelfSignedCertificate(Godot.CryptoKey,System.String,System.String,System.String)"/> and as private key in <see cref="M:Godot.StreamPeerSSL.AcceptStream(Godot.StreamPeer,Godot.CryptoKey,Godot.X509Certificate,Godot.X509Certificate)"/> along with the appropriate certificate.</para>
  13306. <para>Note: Not available in HTML5 exports.</para>
  13307. </summary>
  13308. </member>
  13309. <member name="M:Godot.CryptoKey.Save(System.String)">
  13310. <summary>
  13311. <para>Saves a key to the given <c>path</c> (should be a "*.key" file).</para>
  13312. </summary>
  13313. </member>
  13314. <member name="M:Godot.CryptoKey.Load(System.String)">
  13315. <summary>
  13316. <para>Loads a key from <c>path</c> ("*.key" file).</para>
  13317. </summary>
  13318. </member>
  13319. <member name="T:Godot.CubeMap">
  13320. <summary>
  13321. <para>A 6-sided 3D texture typically used for faking reflections. It can be used to make an object look as if it's reflecting its surroundings. This usually delivers much better performance than other reflection methods.</para>
  13322. </summary>
  13323. </member>
  13324. <member name="F:Godot.CubeMap.FlagsEnum.Mipmaps">
  13325. <summary>
  13326. <para>Generate mipmaps, to enable smooth zooming out of the texture.</para>
  13327. </summary>
  13328. </member>
  13329. <member name="F:Godot.CubeMap.FlagsEnum.Repeat">
  13330. <summary>
  13331. <para>Repeat (instead of clamp to edge).</para>
  13332. </summary>
  13333. </member>
  13334. <member name="F:Godot.CubeMap.FlagsEnum.Filter">
  13335. <summary>
  13336. <para>Turn on magnifying filter, to enable smooth zooming in of the texture.</para>
  13337. </summary>
  13338. </member>
  13339. <member name="F:Godot.CubeMap.FlagsEnum.Default">
  13340. <summary>
  13341. <para>Default flags. Generate mipmaps, repeat, and filter are enabled.</para>
  13342. </summary>
  13343. </member>
  13344. <member name="F:Godot.CubeMap.Side.Left">
  13345. <summary>
  13346. <para>Identifier for the left face of the <see cref="T:Godot.CubeMap"/>.</para>
  13347. </summary>
  13348. </member>
  13349. <member name="F:Godot.CubeMap.Side.Right">
  13350. <summary>
  13351. <para>Identifier for the right face of the <see cref="T:Godot.CubeMap"/>.</para>
  13352. </summary>
  13353. </member>
  13354. <member name="F:Godot.CubeMap.Side.Bottom">
  13355. <summary>
  13356. <para>Identifier for the bottom face of the <see cref="T:Godot.CubeMap"/>.</para>
  13357. </summary>
  13358. </member>
  13359. <member name="F:Godot.CubeMap.Side.Top">
  13360. <summary>
  13361. <para>Identifier for the top face of the <see cref="T:Godot.CubeMap"/>.</para>
  13362. </summary>
  13363. </member>
  13364. <member name="F:Godot.CubeMap.Side.Front">
  13365. <summary>
  13366. <para>Identifier for the front face of the <see cref="T:Godot.CubeMap"/>.</para>
  13367. </summary>
  13368. </member>
  13369. <member name="F:Godot.CubeMap.Side.Back">
  13370. <summary>
  13371. <para>Identifier for the back face of the <see cref="T:Godot.CubeMap"/>.</para>
  13372. </summary>
  13373. </member>
  13374. <member name="F:Godot.CubeMap.Storage.Raw">
  13375. <summary>
  13376. <para>Store the <see cref="T:Godot.CubeMap"/> without any compression.</para>
  13377. </summary>
  13378. </member>
  13379. <member name="F:Godot.CubeMap.Storage.CompressLossy">
  13380. <summary>
  13381. <para>Store the <see cref="T:Godot.CubeMap"/> with strong compression that reduces image quality.</para>
  13382. </summary>
  13383. </member>
  13384. <member name="F:Godot.CubeMap.Storage.CompressLossless">
  13385. <summary>
  13386. <para>Store the <see cref="T:Godot.CubeMap"/> with moderate compression that doesn't reduce image quality.</para>
  13387. </summary>
  13388. </member>
  13389. <member name="P:Godot.CubeMap.Flags">
  13390. <summary>
  13391. <para>The render flags for the <see cref="T:Godot.CubeMap"/>. See the <see cref="T:Godot.CubeMap.FlagsEnum"/> constants for details.</para>
  13392. </summary>
  13393. </member>
  13394. <member name="P:Godot.CubeMap.StorageMode">
  13395. <summary>
  13396. <para>The <see cref="T:Godot.CubeMap"/>'s storage mode. See <see cref="T:Godot.CubeMap.Storage"/> constants.</para>
  13397. </summary>
  13398. </member>
  13399. <member name="P:Godot.CubeMap.LossyStorageQuality">
  13400. <summary>
  13401. <para>The lossy storage quality of the <see cref="T:Godot.CubeMap"/> if the storage mode is set to .</para>
  13402. </summary>
  13403. </member>
  13404. <member name="M:Godot.CubeMap.GetWidth">
  13405. <summary>
  13406. <para>Returns the <see cref="T:Godot.CubeMap"/>'s width.</para>
  13407. </summary>
  13408. </member>
  13409. <member name="M:Godot.CubeMap.GetHeight">
  13410. <summary>
  13411. <para>Returns the <see cref="T:Godot.CubeMap"/>'s height.</para>
  13412. </summary>
  13413. </member>
  13414. <member name="M:Godot.CubeMap.SetSide(Godot.CubeMap.Side,Godot.Image)">
  13415. <summary>
  13416. <para>Sets an <see cref="T:Godot.Image"/> for a side of the <see cref="T:Godot.CubeMap"/> using one of the <see cref="T:Godot.CubeMap.Side"/> constants.</para>
  13417. </summary>
  13418. </member>
  13419. <member name="M:Godot.CubeMap.GetSide(Godot.CubeMap.Side)">
  13420. <summary>
  13421. <para>Returns an <see cref="T:Godot.Image"/> for a side of the <see cref="T:Godot.CubeMap"/> using one of the <see cref="T:Godot.CubeMap.Side"/> constants.</para>
  13422. </summary>
  13423. </member>
  13424. <member name="T:Godot.CubeMesh">
  13425. <summary>
  13426. <para>Generate an axis-aligned cuboid <see cref="T:Godot.PrimitiveMesh"/>.</para>
  13427. <para>The cube's UV layout is arranged in a 3×2 layout that allows texturing each face individually. To apply the same texture on all faces, change the material's UV property to <c>Vector3(3, 2, 1)</c>.</para>
  13428. </summary>
  13429. </member>
  13430. <member name="P:Godot.CubeMesh.Size">
  13431. <summary>
  13432. <para>Size of the cuboid mesh.</para>
  13433. </summary>
  13434. </member>
  13435. <member name="P:Godot.CubeMesh.SubdivideWidth">
  13436. <summary>
  13437. <para>Number of extra edge loops inserted along the X axis.</para>
  13438. </summary>
  13439. </member>
  13440. <member name="P:Godot.CubeMesh.SubdivideHeight">
  13441. <summary>
  13442. <para>Number of extra edge loops inserted along the Y axis.</para>
  13443. </summary>
  13444. </member>
  13445. <member name="P:Godot.CubeMesh.SubdivideDepth">
  13446. <summary>
  13447. <para>Number of extra edge loops inserted along the Z axis.</para>
  13448. </summary>
  13449. </member>
  13450. <member name="T:Godot.Curve">
  13451. <summary>
  13452. <para>A curve that can be saved and re-used for other objects. By default, it ranges between <c>0</c> and <c>1</c> on the Y axis and positions points relative to the <c>0.5</c> Y position.</para>
  13453. </summary>
  13454. </member>
  13455. <member name="F:Godot.Curve.TangentMode.Free">
  13456. <summary>
  13457. <para>The tangent on this side of the point is user-defined.</para>
  13458. </summary>
  13459. </member>
  13460. <member name="F:Godot.Curve.TangentMode.Linear">
  13461. <summary>
  13462. <para>The curve calculates the tangent on this side of the point as the slope halfway towards the adjacent point.</para>
  13463. </summary>
  13464. </member>
  13465. <member name="F:Godot.Curve.TangentMode.ModeCount">
  13466. <summary>
  13467. <para>The total number of available tangent modes.</para>
  13468. </summary>
  13469. </member>
  13470. <member name="P:Godot.Curve.MinValue">
  13471. <summary>
  13472. <para>The minimum value the curve can reach.</para>
  13473. </summary>
  13474. </member>
  13475. <member name="P:Godot.Curve.MaxValue">
  13476. <summary>
  13477. <para>The maximum value the curve can reach.</para>
  13478. </summary>
  13479. </member>
  13480. <member name="P:Godot.Curve.BakeResolution">
  13481. <summary>
  13482. <para>The number of points to include in the baked (i.e. cached) curve data.</para>
  13483. </summary>
  13484. </member>
  13485. <member name="M:Godot.Curve.GetPointCount">
  13486. <summary>
  13487. <para>Returns the number of points describing the curve.</para>
  13488. </summary>
  13489. </member>
  13490. <member name="M:Godot.Curve.AddPoint(Godot.Vector2,System.Single,System.Single,Godot.Curve.TangentMode,Godot.Curve.TangentMode)">
  13491. <summary>
  13492. <para>Adds a point to the curve. For each side, if the <c>*_mode</c> is , the <c>*_tangent</c> angle (in degrees) uses the slope of the curve halfway to the adjacent point. Allows custom assignments to the <c>*_tangent</c> angle if <c>*_mode</c> is set to .</para>
  13493. </summary>
  13494. </member>
  13495. <member name="M:Godot.Curve.RemovePoint(System.Int32)">
  13496. <summary>
  13497. <para>Removes the point at <c>index</c> from the curve.</para>
  13498. </summary>
  13499. </member>
  13500. <member name="M:Godot.Curve.ClearPoints">
  13501. <summary>
  13502. <para>Removes all points from the curve.</para>
  13503. </summary>
  13504. </member>
  13505. <member name="M:Godot.Curve.GetPointPosition(System.Int32)">
  13506. <summary>
  13507. <para>Returns the curve coordinates for the point at <c>index</c>.</para>
  13508. </summary>
  13509. </member>
  13510. <member name="M:Godot.Curve.SetPointValue(System.Int32,System.Single)">
  13511. <summary>
  13512. <para>Assigns the vertical position <c>y</c> to the point at <c>index</c>.</para>
  13513. </summary>
  13514. </member>
  13515. <member name="M:Godot.Curve.SetPointOffset(System.Int32,System.Single)">
  13516. <summary>
  13517. <para>Sets the offset from <c>0.5</c>.</para>
  13518. </summary>
  13519. </member>
  13520. <member name="M:Godot.Curve.Interpolate(System.Single)">
  13521. <summary>
  13522. <para>Returns the Y value for the point that would exist at the X position <c>offset</c> along the curve.</para>
  13523. </summary>
  13524. </member>
  13525. <member name="M:Godot.Curve.InterpolateBaked(System.Single)">
  13526. <summary>
  13527. <para>Returns the Y value for the point that would exist at the X position <c>offset</c> along the curve using the baked cache. Bakes the curve's points if not already baked.</para>
  13528. </summary>
  13529. </member>
  13530. <member name="M:Godot.Curve.GetPointLeftTangent(System.Int32)">
  13531. <summary>
  13532. <para>Returns the left tangent angle (in degrees) for the point at <c>index</c>.</para>
  13533. </summary>
  13534. </member>
  13535. <member name="M:Godot.Curve.GetPointRightTangent(System.Int32)">
  13536. <summary>
  13537. <para>Returns the right tangent angle (in degrees) for the point at <c>index</c>.</para>
  13538. </summary>
  13539. </member>
  13540. <member name="M:Godot.Curve.GetPointLeftMode(System.Int32)">
  13541. <summary>
  13542. <para>Returns the left <see cref="T:Godot.Curve.TangentMode"/> for the point at <c>index</c>.</para>
  13543. </summary>
  13544. </member>
  13545. <member name="M:Godot.Curve.GetPointRightMode(System.Int32)">
  13546. <summary>
  13547. <para>Returns the right <see cref="T:Godot.Curve.TangentMode"/> for the point at <c>index</c>.</para>
  13548. </summary>
  13549. </member>
  13550. <member name="M:Godot.Curve.SetPointLeftTangent(System.Int32,System.Single)">
  13551. <summary>
  13552. <para>Sets the left tangent angle for the point at <c>index</c> to <c>tangent</c>.</para>
  13553. </summary>
  13554. </member>
  13555. <member name="M:Godot.Curve.SetPointRightTangent(System.Int32,System.Single)">
  13556. <summary>
  13557. <para>Sets the right tangent angle for the point at <c>index</c> to <c>tangent</c>.</para>
  13558. </summary>
  13559. </member>
  13560. <member name="M:Godot.Curve.SetPointLeftMode(System.Int32,Godot.Curve.TangentMode)">
  13561. <summary>
  13562. <para>Sets the left <see cref="T:Godot.Curve.TangentMode"/> for the point at <c>index</c> to <c>mode</c>.</para>
  13563. </summary>
  13564. </member>
  13565. <member name="M:Godot.Curve.SetPointRightMode(System.Int32,Godot.Curve.TangentMode)">
  13566. <summary>
  13567. <para>Sets the right <see cref="T:Godot.Curve.TangentMode"/> for the point at <c>index</c> to <c>mode</c>.</para>
  13568. </summary>
  13569. </member>
  13570. <member name="M:Godot.Curve.CleanDupes">
  13571. <summary>
  13572. <para>Removes points that are closer than <c>CMP_EPSILON</c> (0.00001) units to their neighbor on the curve.</para>
  13573. </summary>
  13574. </member>
  13575. <member name="M:Godot.Curve.Bake">
  13576. <summary>
  13577. <para>Recomputes the baked cache of points for the curve.</para>
  13578. </summary>
  13579. </member>
  13580. <member name="T:Godot.Curve2D">
  13581. <summary>
  13582. <para>This class describes a Bézier curve in 2D space. It is mainly used to give a shape to a <see cref="T:Godot.Path2D"/>, but can be manually sampled for other purposes.</para>
  13583. <para>It keeps a cache of precalculated points along the curve, to speed up further calculations.</para>
  13584. </summary>
  13585. </member>
  13586. <member name="P:Godot.Curve2D.BakeInterval">
  13587. <summary>
  13588. <para>The distance in pixels between two adjacent cached points. Changing it forces the cache to be recomputed the next time the <see cref="M:Godot.Curve2D.GetBakedPoints"/> or <see cref="M:Godot.Curve2D.GetBakedLength"/> function is called. The smaller the distance, the more points in the cache and the more memory it will consume, so use with care.</para>
  13589. </summary>
  13590. </member>
  13591. <member name="M:Godot.Curve2D.GetPointCount">
  13592. <summary>
  13593. <para>Returns the number of points describing the curve.</para>
  13594. </summary>
  13595. </member>
  13596. <member name="M:Godot.Curve2D.AddPoint(Godot.Vector2,System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2},System.Int32)">
  13597. <summary>
  13598. <para>Adds a point to a curve at <c>position</c>, with control points <c>in</c> and <c>out</c>.</para>
  13599. <para>If <c>at_position</c> is given, the point is inserted before the point number <c>at_position</c>, moving that point (and every point after) after the inserted point. If <c>at_position</c> is not given, or is an illegal value (<c>at_position &lt;0</c> or <c>at_position &gt;= [method get_point_count]</c>), the point will be appended at the end of the point list.</para>
  13600. </summary>
  13601. <param name="in">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  13602. <param name="out">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  13603. </member>
  13604. <member name="M:Godot.Curve2D.SetPointPosition(System.Int32,Godot.Vector2)">
  13605. <summary>
  13606. <para>Sets the position for the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console.</para>
  13607. </summary>
  13608. </member>
  13609. <member name="M:Godot.Curve2D.GetPointPosition(System.Int32)">
  13610. <summary>
  13611. <para>Returns the position of the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console, and returns <c>(0, 0)</c>.</para>
  13612. </summary>
  13613. </member>
  13614. <member name="M:Godot.Curve2D.SetPointIn(System.Int32,Godot.Vector2)">
  13615. <summary>
  13616. <para>Sets the position of the control point leading to the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console.</para>
  13617. </summary>
  13618. </member>
  13619. <member name="M:Godot.Curve2D.GetPointIn(System.Int32)">
  13620. <summary>
  13621. <para>Returns the position of the control point leading to the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console, and returns <c>(0, 0)</c>.</para>
  13622. </summary>
  13623. </member>
  13624. <member name="M:Godot.Curve2D.SetPointOut(System.Int32,Godot.Vector2)">
  13625. <summary>
  13626. <para>Sets the position of the control point leading out of the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console.</para>
  13627. </summary>
  13628. </member>
  13629. <member name="M:Godot.Curve2D.GetPointOut(System.Int32)">
  13630. <summary>
  13631. <para>Returns the position of the control point leading out of the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console, and returns <c>(0, 0)</c>.</para>
  13632. </summary>
  13633. </member>
  13634. <member name="M:Godot.Curve2D.RemovePoint(System.Int32)">
  13635. <summary>
  13636. <para>Deletes the point <c>idx</c> from the curve. Sends an error to the console if <c>idx</c> is out of bounds.</para>
  13637. </summary>
  13638. </member>
  13639. <member name="M:Godot.Curve2D.ClearPoints">
  13640. <summary>
  13641. <para>Removes all points from the curve.</para>
  13642. </summary>
  13643. </member>
  13644. <member name="M:Godot.Curve2D.Interpolate(System.Int32,System.Single)">
  13645. <summary>
  13646. <para>Returns the position between the vertex <c>idx</c> and the vertex <c>idx + 1</c>, where <c>t</c> controls if the point is the first vertex (<c>t = 0.0</c>), the last vertex (<c>t = 1.0</c>), or in between. Values of <c>t</c> outside the range (<c>0.0 &gt;= t &lt;=1</c>) give strange, but predictable results.</para>
  13647. <para>If <c>idx</c> is out of bounds it is truncated to the first or last vertex, and <c>t</c> is ignored. If the curve has no points, the function sends an error to the console, and returns <c>(0, 0)</c>.</para>
  13648. </summary>
  13649. </member>
  13650. <member name="M:Godot.Curve2D.Interpolatef(System.Single)">
  13651. <summary>
  13652. <para>Returns the position at the vertex <c>fofs</c>. It calls <see cref="M:Godot.Curve2D.Interpolate(System.Int32,System.Single)"/> using the integer part of <c>fofs</c> as <c>idx</c>, and its fractional part as <c>t</c>.</para>
  13653. </summary>
  13654. </member>
  13655. <member name="M:Godot.Curve2D.GetBakedLength">
  13656. <summary>
  13657. <para>Returns the total length of the curve, based on the cached points. Given enough density (see <see cref="P:Godot.Curve2D.BakeInterval"/>), it should be approximate enough.</para>
  13658. </summary>
  13659. </member>
  13660. <member name="M:Godot.Curve2D.InterpolateBaked(System.Single,System.Boolean)">
  13661. <summary>
  13662. <para>Returns a point within the curve at position <c>offset</c>, where <c>offset</c> is measured as a pixel distance along the curve.</para>
  13663. <para>To do that, it finds the two cached points where the <c>offset</c> lies between, then interpolates the values. This interpolation is cubic if <c>cubic</c> is set to <c>true</c>, or linear if set to <c>false</c>.</para>
  13664. <para>Cubic interpolation tends to follow the curves better, but linear is faster (and often, precise enough).</para>
  13665. </summary>
  13666. </member>
  13667. <member name="M:Godot.Curve2D.GetBakedPoints">
  13668. <summary>
  13669. <para>Returns the cache of points as a <see cref="T:Godot.Vector2"/>.</para>
  13670. </summary>
  13671. </member>
  13672. <member name="M:Godot.Curve2D.GetClosestPoint(Godot.Vector2)">
  13673. <summary>
  13674. <para>Returns the closest point (in curve's local space) to <c>to_point</c>.</para>
  13675. <para><c>to_point</c> must be in this curve's local space.</para>
  13676. </summary>
  13677. </member>
  13678. <member name="M:Godot.Curve2D.GetClosestOffset(Godot.Vector2)">
  13679. <summary>
  13680. <para>Returns the closest offset to <c>to_point</c>. This offset is meant to be used in <see cref="M:Godot.Curve2D.InterpolateBaked(System.Single,System.Boolean)"/>.</para>
  13681. <para><c>to_point</c> must be in this curve's local space.</para>
  13682. </summary>
  13683. </member>
  13684. <member name="M:Godot.Curve2D.Tessellate(System.Int32,System.Single)">
  13685. <summary>
  13686. <para>Returns a list of points along the curve, with a curvature controlled point density. That is, the curvier parts will have more points than the straighter parts.</para>
  13687. <para>This approximation makes straight segments between each point, then subdivides those segments until the resulting shape is similar enough.</para>
  13688. <para><c>max_stages</c> controls how many subdivisions a curve segment may face before it is considered approximate enough. Each subdivision splits the segment in half, so the default 5 stages may mean up to 32 subdivisions per curve segment. Increase with care!</para>
  13689. <para><c>tolerance_degrees</c> controls how many degrees the midpoint of a segment may deviate from the real curve, before the segment has to be subdivided.</para>
  13690. </summary>
  13691. </member>
  13692. <member name="T:Godot.Curve3D">
  13693. <summary>
  13694. <para>This class describes a Bézier curve in 3D space. It is mainly used to give a shape to a <see cref="T:Godot.Path"/>, but can be manually sampled for other purposes.</para>
  13695. <para>It keeps a cache of precalculated points along the curve, to speed up further calculations.</para>
  13696. </summary>
  13697. </member>
  13698. <member name="P:Godot.Curve3D.BakeInterval">
  13699. <summary>
  13700. <para>The distance in meters between two adjacent cached points. Changing it forces the cache to be recomputed the next time the <see cref="M:Godot.Curve3D.GetBakedPoints"/> or <see cref="M:Godot.Curve3D.GetBakedLength"/> function is called. The smaller the distance, the more points in the cache and the more memory it will consume, so use with care.</para>
  13701. </summary>
  13702. </member>
  13703. <member name="P:Godot.Curve3D.UpVectorEnabled">
  13704. <summary>
  13705. <para>If <c>true</c>, the curve will bake up vectors used for orientation. This is used when <see cref="P:Godot.PathFollow.RotationMode"/> is set to . Changing it forces the cache to be recomputed.</para>
  13706. </summary>
  13707. </member>
  13708. <member name="M:Godot.Curve3D.GetPointCount">
  13709. <summary>
  13710. <para>Returns the number of points describing the curve.</para>
  13711. </summary>
  13712. </member>
  13713. <member name="M:Godot.Curve3D.AddPoint(Godot.Vector3,System.Nullable{Godot.Vector3},System.Nullable{Godot.Vector3},System.Int32)">
  13714. <summary>
  13715. <para>Adds a point to a curve at <c>position</c>, with control points <c>in</c> and <c>out</c>.</para>
  13716. <para>If <c>at_position</c> is given, the point is inserted before the point number <c>at_position</c>, moving that point (and every point after) after the inserted point. If <c>at_position</c> is not given, or is an illegal value (<c>at_position &lt;0</c> or <c>at_position &gt;= [method get_point_count]</c>), the point will be appended at the end of the point list.</para>
  13717. </summary>
  13718. <param name="in">If the parameter is null, then the default value is new Vector3(0, 0, 0)</param>
  13719. <param name="out">If the parameter is null, then the default value is new Vector3(0, 0, 0)</param>
  13720. </member>
  13721. <member name="M:Godot.Curve3D.SetPointPosition(System.Int32,Godot.Vector3)">
  13722. <summary>
  13723. <para>Sets the position for the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console.</para>
  13724. </summary>
  13725. </member>
  13726. <member name="M:Godot.Curve3D.GetPointPosition(System.Int32)">
  13727. <summary>
  13728. <para>Returns the position of the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console, and returns <c>(0, 0, 0)</c>.</para>
  13729. </summary>
  13730. </member>
  13731. <member name="M:Godot.Curve3D.SetPointTilt(System.Int32,System.Single)">
  13732. <summary>
  13733. <para>Sets the tilt angle in radians for the point <c>idx</c>. If the index is out of bounds, the function sends an error to the console.</para>
  13734. <para>The tilt controls the rotation along the look-at axis an object traveling the path would have. In the case of a curve controlling a <see cref="T:Godot.PathFollow"/>, this tilt is an offset over the natural tilt the <see cref="T:Godot.PathFollow"/> calculates.</para>
  13735. </summary>
  13736. </member>
  13737. <member name="M:Godot.Curve3D.GetPointTilt(System.Int32)">
  13738. <summary>
  13739. <para>Returns the tilt angle in radians for the point <c>idx</c>. If the index is out of bounds, the function sends an error to the console, and returns <c>0</c>.</para>
  13740. </summary>
  13741. </member>
  13742. <member name="M:Godot.Curve3D.SetPointIn(System.Int32,Godot.Vector3)">
  13743. <summary>
  13744. <para>Sets the position of the control point leading to the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console.</para>
  13745. </summary>
  13746. </member>
  13747. <member name="M:Godot.Curve3D.GetPointIn(System.Int32)">
  13748. <summary>
  13749. <para>Returns the position of the control point leading to the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console, and returns <c>(0, 0, 0)</c>.</para>
  13750. </summary>
  13751. </member>
  13752. <member name="M:Godot.Curve3D.SetPointOut(System.Int32,Godot.Vector3)">
  13753. <summary>
  13754. <para>Sets the position of the control point leading out of the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console.</para>
  13755. </summary>
  13756. </member>
  13757. <member name="M:Godot.Curve3D.GetPointOut(System.Int32)">
  13758. <summary>
  13759. <para>Returns the position of the control point leading out of the vertex <c>idx</c>. If the index is out of bounds, the function sends an error to the console, and returns <c>(0, 0, 0)</c>.</para>
  13760. </summary>
  13761. </member>
  13762. <member name="M:Godot.Curve3D.RemovePoint(System.Int32)">
  13763. <summary>
  13764. <para>Deletes the point <c>idx</c> from the curve. Sends an error to the console if <c>idx</c> is out of bounds.</para>
  13765. </summary>
  13766. </member>
  13767. <member name="M:Godot.Curve3D.ClearPoints">
  13768. <summary>
  13769. <para>Removes all points from the curve.</para>
  13770. </summary>
  13771. </member>
  13772. <member name="M:Godot.Curve3D.Interpolate(System.Int32,System.Single)">
  13773. <summary>
  13774. <para>Returns the position between the vertex <c>idx</c> and the vertex <c>idx + 1</c>, where <c>t</c> controls if the point is the first vertex (<c>t = 0.0</c>), the last vertex (<c>t = 1.0</c>), or in between. Values of <c>t</c> outside the range (<c>0.0 &gt;= t &lt;=1</c>) give strange, but predictable results.</para>
  13775. <para>If <c>idx</c> is out of bounds it is truncated to the first or last vertex, and <c>t</c> is ignored. If the curve has no points, the function sends an error to the console, and returns <c>(0, 0, 0)</c>.</para>
  13776. </summary>
  13777. </member>
  13778. <member name="M:Godot.Curve3D.Interpolatef(System.Single)">
  13779. <summary>
  13780. <para>Returns the position at the vertex <c>fofs</c>. It calls <see cref="M:Godot.Curve3D.Interpolate(System.Int32,System.Single)"/> using the integer part of <c>fofs</c> as <c>idx</c>, and its fractional part as <c>t</c>.</para>
  13781. </summary>
  13782. </member>
  13783. <member name="M:Godot.Curve3D.GetBakedLength">
  13784. <summary>
  13785. <para>Returns the total length of the curve, based on the cached points. Given enough density (see <see cref="P:Godot.Curve3D.BakeInterval"/>), it should be approximate enough.</para>
  13786. </summary>
  13787. </member>
  13788. <member name="M:Godot.Curve3D.InterpolateBaked(System.Single,System.Boolean)">
  13789. <summary>
  13790. <para>Returns a point within the curve at position <c>offset</c>, where <c>offset</c> is measured as a pixel distance along the curve.</para>
  13791. <para>To do that, it finds the two cached points where the <c>offset</c> lies between, then interpolates the values. This interpolation is cubic if <c>cubic</c> is set to <c>true</c>, or linear if set to <c>false</c>.</para>
  13792. <para>Cubic interpolation tends to follow the curves better, but linear is faster (and often, precise enough).</para>
  13793. </summary>
  13794. </member>
  13795. <member name="M:Godot.Curve3D.InterpolateBakedUpVector(System.Single,System.Boolean)">
  13796. <summary>
  13797. <para>Returns an up vector within the curve at position <c>offset</c>, where <c>offset</c> is measured as a distance in 3D units along the curve.</para>
  13798. <para>To do that, it finds the two cached up vectors where the <c>offset</c> lies between, then interpolates the values. If <c>apply_tilt</c> is <c>true</c>, an interpolated tilt is applied to the interpolated up vector.</para>
  13799. <para>If the curve has no up vectors, the function sends an error to the console, and returns <c>(0, 1, 0)</c>.</para>
  13800. </summary>
  13801. </member>
  13802. <member name="M:Godot.Curve3D.GetBakedPoints">
  13803. <summary>
  13804. <para>Returns the cache of points as a <see cref="T:Godot.Vector3"/>.</para>
  13805. </summary>
  13806. </member>
  13807. <member name="M:Godot.Curve3D.GetBakedTilts">
  13808. <summary>
  13809. <para>Returns the cache of tilts as a <see cref="T:System.Single"/>.</para>
  13810. </summary>
  13811. </member>
  13812. <member name="M:Godot.Curve3D.GetBakedUpVectors">
  13813. <summary>
  13814. <para>Returns the cache of up vectors as a <see cref="T:Godot.Vector3"/>.</para>
  13815. <para>If <see cref="P:Godot.Curve3D.UpVectorEnabled"/> is <c>false</c>, the cache will be empty.</para>
  13816. </summary>
  13817. </member>
  13818. <member name="M:Godot.Curve3D.GetClosestPoint(Godot.Vector3)">
  13819. <summary>
  13820. <para>Returns the closest point (in curve's local space) to <c>to_point</c>.</para>
  13821. <para><c>to_point</c> must be in this curve's local space.</para>
  13822. </summary>
  13823. </member>
  13824. <member name="M:Godot.Curve3D.GetClosestOffset(Godot.Vector3)">
  13825. <summary>
  13826. <para>Returns the closest offset to <c>to_point</c>. This offset is meant to be used in <see cref="M:Godot.Curve3D.InterpolateBaked(System.Single,System.Boolean)"/> or <see cref="M:Godot.Curve3D.InterpolateBakedUpVector(System.Single,System.Boolean)"/>.</para>
  13827. <para><c>to_point</c> must be in this curve's local space.</para>
  13828. </summary>
  13829. </member>
  13830. <member name="M:Godot.Curve3D.Tessellate(System.Int32,System.Single)">
  13831. <summary>
  13832. <para>Returns a list of points along the curve, with a curvature controlled point density. That is, the curvier parts will have more points than the straighter parts.</para>
  13833. <para>This approximation makes straight segments between each point, then subdivides those segments until the resulting shape is similar enough.</para>
  13834. <para><c>max_stages</c> controls how many subdivisions a curve segment may face before it is considered approximate enough. Each subdivision splits the segment in half, so the default 5 stages may mean up to 32 subdivisions per curve segment. Increase with care!</para>
  13835. <para><c>tolerance_degrees</c> controls how many degrees the midpoint of a segment may deviate from the real curve, before the segment has to be subdivided.</para>
  13836. </summary>
  13837. </member>
  13838. <member name="T:Godot.CurveTexture">
  13839. <summary>
  13840. <para>Renders a given <see cref="T:Godot.Curve"/> provided to it. Simplifies the task of drawing curves and/or saving them as image files.</para>
  13841. </summary>
  13842. </member>
  13843. <member name="P:Godot.CurveTexture.Width">
  13844. <summary>
  13845. <para>The width of the texture.</para>
  13846. </summary>
  13847. </member>
  13848. <member name="P:Godot.CurveTexture.Curve">
  13849. <summary>
  13850. <para>The <c>curve</c> rendered onto the texture.</para>
  13851. </summary>
  13852. </member>
  13853. <member name="T:Godot.CylinderMesh">
  13854. <summary>
  13855. <para>Class representing a cylindrical <see cref="T:Godot.PrimitiveMesh"/>. This class can be used to create cones by setting either the <see cref="P:Godot.CylinderMesh.TopRadius"/> or <see cref="P:Godot.CylinderMesh.BottomRadius"/> properties to 0.0.</para>
  13856. </summary>
  13857. </member>
  13858. <member name="P:Godot.CylinderMesh.TopRadius">
  13859. <summary>
  13860. <para>Top radius of the cylinder.</para>
  13861. </summary>
  13862. </member>
  13863. <member name="P:Godot.CylinderMesh.BottomRadius">
  13864. <summary>
  13865. <para>Bottom radius of the cylinder.</para>
  13866. </summary>
  13867. </member>
  13868. <member name="P:Godot.CylinderMesh.Height">
  13869. <summary>
  13870. <para>Full height of the cylinder.</para>
  13871. </summary>
  13872. </member>
  13873. <member name="P:Godot.CylinderMesh.RadialSegments">
  13874. <summary>
  13875. <para>Number of radial segments on the cylinder.</para>
  13876. </summary>
  13877. </member>
  13878. <member name="P:Godot.CylinderMesh.Rings">
  13879. <summary>
  13880. <para>Number of edge rings along the height of the cylinder.</para>
  13881. </summary>
  13882. </member>
  13883. <member name="T:Godot.CylinderShape">
  13884. <summary>
  13885. <para>Cylinder shape for collisions.</para>
  13886. </summary>
  13887. </member>
  13888. <member name="P:Godot.CylinderShape.Radius">
  13889. <summary>
  13890. <para>The cylinder's radius.</para>
  13891. </summary>
  13892. </member>
  13893. <member name="P:Godot.CylinderShape.Height">
  13894. <summary>
  13895. <para>The cylinder's height.</para>
  13896. </summary>
  13897. </member>
  13898. <member name="T:Godot.DTLSServer">
  13899. <summary>
  13900. <para>This class is used to store the state of a DTLS server. Upon <see cref="M:Godot.DTLSServer.Setup(Godot.CryptoKey,Godot.X509Certificate,Godot.X509Certificate)"/> it converts connected <see cref="T:Godot.PacketPeerUDP"/> to <see cref="T:Godot.PacketPeerDTLS"/> accepting them via <see cref="M:Godot.DTLSServer.TakeConnection(Godot.PacketPeerUDP)"/> as DTLS clients. Under the hood, this class is used to store the DTLS state and cookies of the server. The reason of why the state and cookies are needed is outside of the scope of this documentation.</para>
  13901. <para>Below a small example of how to use it:</para>
  13902. <para><code>
  13903. # server.gd
  13904. extends Node
  13905. var dtls := DTLSServer.new()
  13906. var server := UDPServer.new()
  13907. var peers = []
  13908. func _ready():
  13909. server.listen(4242)
  13910. var key = load("key.key") # Your private key.
  13911. var cert = load("cert.crt") # Your X509 certificate.
  13912. dtls.setup(key, cert)
  13913. func _process(delta):
  13914. while server.is_connection_available():
  13915. var peer : PacketPeerUDP = server.take_connection()
  13916. var dtls_peer : PacketPeerDTLS = dtls.take_connection(peer)
  13917. if dtls_peer.get_status() != PacketPeerDTLS.STATUS_HANDSHAKING:
  13918. continue # It is normal that 50% of the connections fails due to cookie exchange.
  13919. print("Peer connected!")
  13920. peers.append(dtls_peer)
  13921. for p in peers:
  13922. p.poll() # Must poll to update the state.
  13923. if p.get_status() == PacketPeerDTLS.STATUS_CONNECTED:
  13924. while p.get_available_packet_count() &gt; 0:
  13925. print("Received message from client: %s" % p.get_packet().get_string_from_utf8())
  13926. p.put_packet("Hello DTLS client".to_utf8())
  13927. </code></para>
  13928. <para><code>
  13929. # client.gd
  13930. extends Node
  13931. var dtls := PacketPeerDTLS.new()
  13932. var udp := PacketPeerUDP.new()
  13933. var connected = false
  13934. func _ready():
  13935. udp.connect_to_host("127.0.0.1", 4242)
  13936. dtls.connect_to_peer(udp, false) # Use true in production for certificate validation!
  13937. func _process(delta):
  13938. dtls.poll()
  13939. if dtls.get_status() == PacketPeerDTLS.STATUS_CONNECTED:
  13940. if !connected:
  13941. # Try to contact server
  13942. dtls.put_packet("The answer is... 42!".to_utf8())
  13943. while dtls.get_available_packet_count() &gt; 0:
  13944. print("Connected: %s" % dtls.get_packet().get_string_from_utf8())
  13945. connected = true
  13946. </code></para>
  13947. </summary>
  13948. </member>
  13949. <member name="M:Godot.DTLSServer.Setup(Godot.CryptoKey,Godot.X509Certificate,Godot.X509Certificate)">
  13950. <summary>
  13951. <para>Setup the DTLS server to use the given <c>private_key</c> and provide the given <c>certificate</c> to clients. You can pass the optional <c>chain</c> parameter to provide additional CA chain information along with the certificate.</para>
  13952. </summary>
  13953. </member>
  13954. <member name="M:Godot.DTLSServer.TakeConnection(Godot.PacketPeerUDP)">
  13955. <summary>
  13956. <para>Try to initiate the DTLS handshake with the given <c>udp_peer</c> which must be already connected (see <see cref="M:Godot.PacketPeerUDP.ConnectToHost(System.String,System.Int32)"/>).</para>
  13957. <para>Note: You must check that the state of the return PacketPeerUDP is , as it is normal that 50% of the new connections will be invalid due to cookie exchange.</para>
  13958. </summary>
  13959. </member>
  13960. <member name="T:Godot.DampedSpringJoint2D">
  13961. <summary>
  13962. <para>Damped spring constraint for 2D physics. This resembles a spring joint that always wants to go back to a given length.</para>
  13963. </summary>
  13964. </member>
  13965. <member name="P:Godot.DampedSpringJoint2D.Length">
  13966. <summary>
  13967. <para>The spring joint's maximum length. The two attached bodies cannot stretch it past this value.</para>
  13968. </summary>
  13969. </member>
  13970. <member name="P:Godot.DampedSpringJoint2D.RestLength">
  13971. <summary>
  13972. <para>When the bodies attached to the spring joint move they stretch or squash it. The joint always tries to resize towards this length.</para>
  13973. </summary>
  13974. </member>
  13975. <member name="P:Godot.DampedSpringJoint2D.Stiffness">
  13976. <summary>
  13977. <para>The higher the value, the less the bodies attached to the joint will deform it. The joint applies an opposing force to the bodies, the product of the stiffness multiplied by the size difference from its resting length.</para>
  13978. </summary>
  13979. </member>
  13980. <member name="P:Godot.DampedSpringJoint2D.Damping">
  13981. <summary>
  13982. <para>The spring joint's damping ratio. A value between <c>0</c> and <c>1</c>. When the two bodies move into different directions the system tries to align them to the spring axis again. A high <c>damping</c> value forces the attached bodies to align faster.</para>
  13983. </summary>
  13984. </member>
  13985. <member name="T:Godot.DirectionalLight">
  13986. <summary>
  13987. <para>A directional light is a type of <see cref="T:Godot.Light"/> node that models an infinite number of parallel rays covering the entire scene. It is used for lights with strong intensity that are located far away from the scene to model sunlight or moonlight. The worldspace location of the DirectionalLight transform (origin) is ignored. Only the basis is used to determine light direction.</para>
  13988. </summary>
  13989. </member>
  13990. <member name="F:Godot.DirectionalLight.ShadowMode.Orthogonal">
  13991. <summary>
  13992. <para>Renders the entire scene's shadow map from an orthogonal point of view. This is the fastest directional shadow mode. May result in blurrier shadows on close objects.</para>
  13993. </summary>
  13994. </member>
  13995. <member name="F:Godot.DirectionalLight.ShadowMode.Parallel2Splits">
  13996. <summary>
  13997. <para>Splits the view frustum in 2 areas, each with its own shadow map. This shadow mode is a compromise between and in terms of performance.</para>
  13998. </summary>
  13999. </member>
  14000. <member name="F:Godot.DirectionalLight.ShadowMode.Parallel4Splits">
  14001. <summary>
  14002. <para>Splits the view frustum in 4 areas, each with its own shadow map. This is the slowest directional shadow mode.</para>
  14003. </summary>
  14004. </member>
  14005. <member name="F:Godot.DirectionalLight.ShadowDepthRange.Stable">
  14006. <summary>
  14007. <para>Keeps the shadow stable when the camera moves, at the cost of lower effective shadow resolution.</para>
  14008. </summary>
  14009. </member>
  14010. <member name="F:Godot.DirectionalLight.ShadowDepthRange.Optimized">
  14011. <summary>
  14012. <para>Tries to achieve maximum shadow resolution. May result in saw effect on shadow edges. This mode typically works best in games where the camera will often move at high speeds, such as most racing games.</para>
  14013. </summary>
  14014. </member>
  14015. <member name="P:Godot.DirectionalLight.DirectionalShadowMode">
  14016. <summary>
  14017. <para>The light's shadow rendering algorithm. See <see cref="T:Godot.DirectionalLight.ShadowMode"/>.</para>
  14018. </summary>
  14019. </member>
  14020. <member name="P:Godot.DirectionalLight.DirectionalShadowSplit1">
  14021. <summary>
  14022. <para>The distance from camera to shadow split 1. Relative to <see cref="P:Godot.DirectionalLight.DirectionalShadowMaxDistance"/>. Only used when <see cref="P:Godot.DirectionalLight.DirectionalShadowMode"/> is <c>SHADOW_PARALLEL_2_SPLITS</c> or <c>SHADOW_PARALLEL_4_SPLITS</c>.</para>
  14023. </summary>
  14024. </member>
  14025. <member name="P:Godot.DirectionalLight.DirectionalShadowSplit2">
  14026. <summary>
  14027. <para>The distance from shadow split 1 to split 2. Relative to <see cref="P:Godot.DirectionalLight.DirectionalShadowMaxDistance"/>. Only used when <see cref="P:Godot.DirectionalLight.DirectionalShadowMode"/> is <c>SHADOW_PARALLEL_2_SPLITS</c> or <c>SHADOW_PARALLEL_4_SPLITS</c>.</para>
  14028. </summary>
  14029. </member>
  14030. <member name="P:Godot.DirectionalLight.DirectionalShadowSplit3">
  14031. <summary>
  14032. <para>The distance from shadow split 2 to split 3. Relative to <see cref="P:Godot.DirectionalLight.DirectionalShadowMaxDistance"/>. Only used when <see cref="P:Godot.DirectionalLight.DirectionalShadowMode"/> is <c>SHADOW_PARALLEL_4_SPLITS</c>.</para>
  14033. </summary>
  14034. </member>
  14035. <member name="P:Godot.DirectionalLight.DirectionalShadowBlendSplits">
  14036. <summary>
  14037. <para>If <c>true</c>, shadow detail is sacrificed in exchange for smoother transitions between splits.</para>
  14038. </summary>
  14039. </member>
  14040. <member name="P:Godot.DirectionalLight.DirectionalShadowNormalBias">
  14041. <summary>
  14042. <para>Can be used to fix special cases of self shadowing when objects are perpendicular to the light.</para>
  14043. </summary>
  14044. </member>
  14045. <member name="P:Godot.DirectionalLight.DirectionalShadowBiasSplitScale">
  14046. <summary>
  14047. <para>Amount of extra bias for shadow splits that are far away. If self-shadowing occurs only on the splits far away, increasing this value can fix them.</para>
  14048. </summary>
  14049. </member>
  14050. <member name="P:Godot.DirectionalLight.DirectionalShadowDepthRange">
  14051. <summary>
  14052. <para>Optimizes shadow rendering for detail versus movement. See <see cref="T:Godot.DirectionalLight.ShadowDepthRange"/>.</para>
  14053. </summary>
  14054. </member>
  14055. <member name="P:Godot.DirectionalLight.DirectionalShadowMaxDistance">
  14056. <summary>
  14057. <para>The maximum distance for shadow splits.</para>
  14058. </summary>
  14059. </member>
  14060. <member name="T:Godot.DynamicFont">
  14061. <summary>
  14062. <para>DynamicFont renders vector font files (such as TTF or OTF) dynamically at runtime instead of using a prerendered texture atlas like <see cref="T:Godot.BitmapFont"/>. This trades the faster loading time of <see cref="T:Godot.BitmapFont"/>s for the ability to change font parameters like size and spacing during runtime. <see cref="T:Godot.DynamicFontData"/> is used for referencing the font file paths. DynamicFont also supports defining one or more fallbacks fonts, which will be used when displaying a character not supported by the main font.</para>
  14063. <para>DynamicFont uses the <a href="https://www.freetype.org/">FreeType</a> library for rasterization.</para>
  14064. <para><code>
  14065. var dynamic_font = DynamicFont.new()
  14066. dynamic_font.font_data = load("res://BarlowCondensed-Bold.ttf")
  14067. dynamic_font.size = 64
  14068. $"Label".set("custom_fonts/font", dynamic_font)
  14069. </code></para>
  14070. <para>Note: DynamicFont doesn't support features such as right-to-left typesetting, ligatures, text shaping, variable fonts and optional font features yet. If you wish to "bake" an optional font feature into a TTF font file, you can use <a href="https://fontforge.org/">FontForge</a> to do so. In FontForge, use File &gt; Generate Fonts, click Options, choose the desired features then generate the font.</para>
  14071. </summary>
  14072. </member>
  14073. <member name="F:Godot.DynamicFont.SpacingType.Top">
  14074. <summary>
  14075. <para>Spacing at the top.</para>
  14076. </summary>
  14077. </member>
  14078. <member name="F:Godot.DynamicFont.SpacingType.Bottom">
  14079. <summary>
  14080. <para>Spacing at the bottom.</para>
  14081. </summary>
  14082. </member>
  14083. <member name="F:Godot.DynamicFont.SpacingType.Char">
  14084. <summary>
  14085. <para>Character spacing.</para>
  14086. </summary>
  14087. </member>
  14088. <member name="F:Godot.DynamicFont.SpacingType.Space">
  14089. <summary>
  14090. <para>Space spacing.</para>
  14091. </summary>
  14092. </member>
  14093. <member name="P:Godot.DynamicFont.Size">
  14094. <summary>
  14095. <para>The font size in pixels.</para>
  14096. </summary>
  14097. </member>
  14098. <member name="P:Godot.DynamicFont.OutlineSize">
  14099. <summary>
  14100. <para>The font outline's thickness in pixels (not relative to the font size).</para>
  14101. </summary>
  14102. </member>
  14103. <member name="P:Godot.DynamicFont.OutlineColor">
  14104. <summary>
  14105. <para>The font outline's color.</para>
  14106. <para>Note: It's recommended to leave this at the default value so that you can adjust it in individual controls. For example, if the outline is made black here, it won't be possible to change its color using a Label's font outline modulate theme item.</para>
  14107. </summary>
  14108. </member>
  14109. <member name="P:Godot.DynamicFont.UseMipmaps">
  14110. <summary>
  14111. <para>If <c>true</c>, mipmapping is used. This improves the font's appearance when downscaling it if font oversampling is disabled or ineffective.</para>
  14112. </summary>
  14113. </member>
  14114. <member name="P:Godot.DynamicFont.UseFilter">
  14115. <summary>
  14116. <para>If <c>true</c>, filtering is used. This makes the font blurry instead of pixelated when scaling it if font oversampling is disabled or ineffective. It's recommended to enable this when using the font in a control whose size changes over time, unless a pixel art aesthetic is desired.</para>
  14117. </summary>
  14118. </member>
  14119. <member name="P:Godot.DynamicFont.ExtraSpacingTop">
  14120. <summary>
  14121. <para>Extra spacing at the top in pixels.</para>
  14122. </summary>
  14123. </member>
  14124. <member name="P:Godot.DynamicFont.ExtraSpacingBottom">
  14125. <summary>
  14126. <para>Extra spacing at the bottom in pixels.</para>
  14127. </summary>
  14128. </member>
  14129. <member name="P:Godot.DynamicFont.ExtraSpacingChar">
  14130. <summary>
  14131. <para>Extra character spacing in pixels.</para>
  14132. </summary>
  14133. </member>
  14134. <member name="P:Godot.DynamicFont.ExtraSpacingSpace">
  14135. <summary>
  14136. <para>Extra space spacing in pixels.</para>
  14137. </summary>
  14138. </member>
  14139. <member name="P:Godot.DynamicFont.FontData">
  14140. <summary>
  14141. <para>The font data.</para>
  14142. </summary>
  14143. </member>
  14144. <member name="M:Godot.DynamicFont.SetSpacing(System.Int32,System.Int32)">
  14145. <summary>
  14146. <para>Sets the spacing for <c>type</c> (see <see cref="T:Godot.DynamicFont.SpacingType"/>) to <c>value</c> in pixels (not relative to the font size).</para>
  14147. </summary>
  14148. </member>
  14149. <member name="M:Godot.DynamicFont.GetSpacing(System.Int32)">
  14150. <summary>
  14151. <para>Returns the spacing for the given <c>type</c> (see <see cref="T:Godot.DynamicFont.SpacingType"/>).</para>
  14152. </summary>
  14153. </member>
  14154. <member name="M:Godot.DynamicFont.AddFallback(Godot.DynamicFontData)">
  14155. <summary>
  14156. <para>Adds a fallback font.</para>
  14157. </summary>
  14158. </member>
  14159. <member name="M:Godot.DynamicFont.SetFallback(System.Int32,Godot.DynamicFontData)">
  14160. <summary>
  14161. <para>Sets the fallback font at index <c>idx</c>.</para>
  14162. </summary>
  14163. </member>
  14164. <member name="M:Godot.DynamicFont.GetFallback(System.Int32)">
  14165. <summary>
  14166. <para>Returns the fallback font at index <c>idx</c>.</para>
  14167. </summary>
  14168. </member>
  14169. <member name="M:Godot.DynamicFont.RemoveFallback(System.Int32)">
  14170. <summary>
  14171. <para>Removes the fallback font at index <c>idx</c>.</para>
  14172. </summary>
  14173. </member>
  14174. <member name="M:Godot.DynamicFont.GetFallbackCount">
  14175. <summary>
  14176. <para>Returns the number of fallback fonts.</para>
  14177. </summary>
  14178. </member>
  14179. <member name="T:Godot.DynamicFontData">
  14180. <summary>
  14181. <para>Used with <see cref="T:Godot.DynamicFont"/> to describe the location of a vector font file for dynamic rendering at runtime.</para>
  14182. </summary>
  14183. </member>
  14184. <member name="F:Godot.DynamicFontData.HintingEnum.None">
  14185. <summary>
  14186. <para>Disables font hinting (smoother but less crisp).</para>
  14187. </summary>
  14188. </member>
  14189. <member name="F:Godot.DynamicFontData.HintingEnum.Light">
  14190. <summary>
  14191. <para>Use the light font hinting mode.</para>
  14192. </summary>
  14193. </member>
  14194. <member name="F:Godot.DynamicFontData.HintingEnum.Normal">
  14195. <summary>
  14196. <para>Use the default font hinting mode (crisper but less smooth).</para>
  14197. </summary>
  14198. </member>
  14199. <member name="P:Godot.DynamicFontData.Antialiased">
  14200. <summary>
  14201. <para>If <c>true</c>, the font is rendered with anti-aliasing. This property applies both to the main font and its outline (if it has one).</para>
  14202. </summary>
  14203. </member>
  14204. <member name="P:Godot.DynamicFontData.Hinting">
  14205. <summary>
  14206. <para>The font hinting mode used by FreeType. See <see cref="T:Godot.DynamicFontData.HintingEnum"/> for options.</para>
  14207. </summary>
  14208. </member>
  14209. <member name="P:Godot.DynamicFontData.FontPath">
  14210. <summary>
  14211. <para>The path to the vector font file.</para>
  14212. </summary>
  14213. </member>
  14214. <member name="T:Godot.EncodedObjectAsID">
  14215. <summary>
  14216. <para>Utility class which holds a reference to the internal identifier of an <see cref="T:Godot.Object"/> instance, as given by <see cref="M:Godot.Object.GetInstanceId"/>. This ID can then be used to retrieve the object instance with <c>@GDScript.instance_from_id</c>.</para>
  14217. <para>This class is used internally by the editor inspector and script debugger, but can also be used in plugins to pass and display objects as their IDs.</para>
  14218. </summary>
  14219. </member>
  14220. <member name="P:Godot.EncodedObjectAsID.ObjectId">
  14221. <summary>
  14222. <para>The <see cref="T:Godot.Object"/> identifier stored in this <see cref="T:Godot.EncodedObjectAsID"/> instance. The object instance can be retrieved with <c>@GDScript.instance_from_id</c>.</para>
  14223. </summary>
  14224. </member>
  14225. <member name="T:Godot.Environment">
  14226. <summary>
  14227. <para>Resource for environment nodes (like <see cref="T:Godot.WorldEnvironment"/>) that define multiple environment operations (such as background <see cref="T:Godot.Sky"/> or <see cref="T:Godot.Color"/>, ambient light, fog, depth-of-field...). These parameters affect the final render of the scene. The order of these operations is:</para>
  14228. <para>- Depth of Field Blur</para>
  14229. <para>- Glow</para>
  14230. <para>- Tonemap (Auto Exposure)</para>
  14231. <para>- Adjustments</para>
  14232. <para>These effects will only apply when the <see cref="T:Godot.Viewport"/>'s intended usage is "3D" or "3D Without Effects". This can be configured for the root Viewport with , or for specific Viewports via the <see cref="P:Godot.Viewport.Usage"/> property.</para>
  14233. </summary>
  14234. </member>
  14235. <member name="F:Godot.Environment.SSAOBlur.Disabled">
  14236. <summary>
  14237. <para>No blur for the screen-space ambient occlusion effect (fastest).</para>
  14238. </summary>
  14239. </member>
  14240. <member name="F:Godot.Environment.SSAOBlur.Blur1x1">
  14241. <summary>
  14242. <para>1×1 blur for the screen-space ambient occlusion effect.</para>
  14243. </summary>
  14244. </member>
  14245. <member name="F:Godot.Environment.SSAOBlur.Blur2x2">
  14246. <summary>
  14247. <para>2×2 blur for the screen-space ambient occlusion effect.</para>
  14248. </summary>
  14249. </member>
  14250. <member name="F:Godot.Environment.SSAOBlur.Blur3x3">
  14251. <summary>
  14252. <para>3×3 blur for the screen-space ambient occlusion effect (slowest).</para>
  14253. </summary>
  14254. </member>
  14255. <member name="F:Godot.Environment.ToneMapper.Linear">
  14256. <summary>
  14257. <para>Linear tonemapper operator. Reads the linear data and passes it on unmodified.</para>
  14258. </summary>
  14259. </member>
  14260. <member name="F:Godot.Environment.ToneMapper.Reinhardt">
  14261. <summary>
  14262. <para>Reinhardt tonemapper operator. Performs a variation on rendered pixels' colors by this formula: <c>color = color / (1 + color)</c>.</para>
  14263. </summary>
  14264. </member>
  14265. <member name="F:Godot.Environment.ToneMapper.Filmic">
  14266. <summary>
  14267. <para>Filmic tonemapper operator.</para>
  14268. </summary>
  14269. </member>
  14270. <member name="F:Godot.Environment.ToneMapper.Aces">
  14271. <summary>
  14272. <para>Academy Color Encoding System tonemapper operator.</para>
  14273. </summary>
  14274. </member>
  14275. <member name="F:Godot.Environment.GlowBlendModeEnum.Additive">
  14276. <summary>
  14277. <para>Additive glow blending mode. Mostly used for particles, glows (bloom), lens flare, bright sources.</para>
  14278. </summary>
  14279. </member>
  14280. <member name="F:Godot.Environment.GlowBlendModeEnum.Screen">
  14281. <summary>
  14282. <para>Screen glow blending mode. Increases brightness, used frequently with bloom.</para>
  14283. </summary>
  14284. </member>
  14285. <member name="F:Godot.Environment.GlowBlendModeEnum.Softlight">
  14286. <summary>
  14287. <para>Soft light glow blending mode. Modifies contrast, exposes shadows and highlights (vivid bloom).</para>
  14288. </summary>
  14289. </member>
  14290. <member name="F:Godot.Environment.GlowBlendModeEnum.Replace">
  14291. <summary>
  14292. <para>Replace glow blending mode. Replaces all pixels' color by the glow value. This can be used to simulate a full-screen blur effect by tweaking the glow parameters to match the original image's brightness.</para>
  14293. </summary>
  14294. </member>
  14295. <member name="F:Godot.Environment.BGMode.Keep">
  14296. <summary>
  14297. <para>Keeps on screen every pixel drawn in the background. This is the fastest background mode, but it can only be safely used in fully-interior scenes (no visible sky or sky reflections). If enabled in a scene where the background is visible, "ghost trail" artifacts will be visible when moving the camera.</para>
  14298. </summary>
  14299. </member>
  14300. <member name="F:Godot.Environment.BGMode.ClearColor">
  14301. <summary>
  14302. <para>Clears the background using the clear color defined in .</para>
  14303. </summary>
  14304. </member>
  14305. <member name="F:Godot.Environment.BGMode.Color">
  14306. <summary>
  14307. <para>Clears the background using a custom clear color.</para>
  14308. </summary>
  14309. </member>
  14310. <member name="F:Godot.Environment.BGMode.Sky">
  14311. <summary>
  14312. <para>Displays a user-defined sky in the background.</para>
  14313. </summary>
  14314. </member>
  14315. <member name="F:Godot.Environment.BGMode.ColorSky">
  14316. <summary>
  14317. <para>Clears the background using a custom clear color and allows defining a sky for shading and reflection. This mode is slightly faster than and should be preferred in scenes where reflections can be visible, but the sky itself never is (e.g. top-down camera).</para>
  14318. </summary>
  14319. </member>
  14320. <member name="F:Godot.Environment.BGMode.Canvas">
  14321. <summary>
  14322. <para>Displays a <see cref="T:Godot.CanvasLayer"/> in the background.</para>
  14323. </summary>
  14324. </member>
  14325. <member name="F:Godot.Environment.BGMode.CameraFeed">
  14326. <summary>
  14327. <para>Displays a camera feed in the background.</para>
  14328. </summary>
  14329. </member>
  14330. <member name="F:Godot.Environment.BGMode.Max">
  14331. <summary>
  14332. <para>Represents the size of the <see cref="T:Godot.Environment.BGMode"/> enum.</para>
  14333. </summary>
  14334. </member>
  14335. <member name="F:Godot.Environment.SSAOQuality.Low">
  14336. <summary>
  14337. <para>Low quality for the screen-space ambient occlusion effect (fastest).</para>
  14338. </summary>
  14339. </member>
  14340. <member name="F:Godot.Environment.SSAOQuality.Medium">
  14341. <summary>
  14342. <para>Low quality for the screen-space ambient occlusion effect.</para>
  14343. </summary>
  14344. </member>
  14345. <member name="F:Godot.Environment.SSAOQuality.High">
  14346. <summary>
  14347. <para>Low quality for the screen-space ambient occlusion effect (slowest).</para>
  14348. </summary>
  14349. </member>
  14350. <member name="F:Godot.Environment.DOFBlurQuality.Low">
  14351. <summary>
  14352. <para>Low depth-of-field blur quality (fastest).</para>
  14353. </summary>
  14354. </member>
  14355. <member name="F:Godot.Environment.DOFBlurQuality.Medium">
  14356. <summary>
  14357. <para>Medium depth-of-field blur quality.</para>
  14358. </summary>
  14359. </member>
  14360. <member name="F:Godot.Environment.DOFBlurQuality.High">
  14361. <summary>
  14362. <para>High depth-of-field blur quality (slowest).</para>
  14363. </summary>
  14364. </member>
  14365. <member name="P:Godot.Environment.BackgroundMode">
  14366. <summary>
  14367. <para>The background mode. See <see cref="T:Godot.Environment.BGMode"/> for possible values.</para>
  14368. </summary>
  14369. </member>
  14370. <member name="P:Godot.Environment.BackgroundSky">
  14371. <summary>
  14372. <para>The <see cref="T:Godot.Sky"/> resource defined as background.</para>
  14373. </summary>
  14374. </member>
  14375. <member name="P:Godot.Environment.BackgroundSkyCustomFov">
  14376. <summary>
  14377. <para>The <see cref="T:Godot.Sky"/> resource's custom field of view.</para>
  14378. </summary>
  14379. </member>
  14380. <member name="P:Godot.Environment.BackgroundSkyOrientation">
  14381. <summary>
  14382. <para>The <see cref="T:Godot.Sky"/> resource's rotation expressed as a <see cref="T:Godot.Basis"/>.</para>
  14383. </summary>
  14384. </member>
  14385. <member name="P:Godot.Environment.BackgroundSkyRotation">
  14386. <summary>
  14387. <para>The <see cref="T:Godot.Sky"/> resource's rotation expressed as Euler angles in radians.</para>
  14388. </summary>
  14389. </member>
  14390. <member name="P:Godot.Environment.BackgroundSkyRotationDegrees">
  14391. <summary>
  14392. <para>The <see cref="T:Godot.Sky"/> resource's rotation expressed as Euler angles in degrees.</para>
  14393. </summary>
  14394. </member>
  14395. <member name="P:Godot.Environment.BackgroundColor">
  14396. <summary>
  14397. <para>The <see cref="T:Godot.Color"/> displayed for clear areas of the scene. Only effective when using the or background modes).</para>
  14398. </summary>
  14399. </member>
  14400. <member name="P:Godot.Environment.BackgroundEnergy">
  14401. <summary>
  14402. <para>The power of the light emitted by the background.</para>
  14403. </summary>
  14404. </member>
  14405. <member name="P:Godot.Environment.BackgroundCanvasMaxLayer">
  14406. <summary>
  14407. <para>The maximum layer ID to display. Only effective when using the background mode.</para>
  14408. </summary>
  14409. </member>
  14410. <member name="P:Godot.Environment.BackgroundCameraFeedId">
  14411. <summary>
  14412. <para>The ID of the camera feed to show in the background.</para>
  14413. </summary>
  14414. </member>
  14415. <member name="P:Godot.Environment.AmbientLightColor">
  14416. <summary>
  14417. <para>The ambient light's <see cref="T:Godot.Color"/>.</para>
  14418. </summary>
  14419. </member>
  14420. <member name="P:Godot.Environment.AmbientLightEnergy">
  14421. <summary>
  14422. <para>The ambient light's energy. The higher the value, the stronger the light.</para>
  14423. </summary>
  14424. </member>
  14425. <member name="P:Godot.Environment.AmbientLightSkyContribution">
  14426. <summary>
  14427. <para>Defines the amount of light that the sky brings on the scene. A value of 0 means that the sky's light emission has no effect on the scene illumination, thus all ambient illumination is provided by the ambient light. On the contrary, a value of 1 means that all the light that affects the scene is provided by the sky, thus the ambient light parameter has no effect on the scene.</para>
  14428. </summary>
  14429. </member>
  14430. <member name="P:Godot.Environment.FogEnabled">
  14431. <summary>
  14432. <para>If <c>true</c>, fog effects are enabled. <see cref="P:Godot.Environment.FogHeightEnabled"/> and/or <see cref="P:Godot.Environment.FogDepthEnabled"/> must be set to <c>true</c> to actually display fog.</para>
  14433. </summary>
  14434. </member>
  14435. <member name="P:Godot.Environment.FogColor">
  14436. <summary>
  14437. <para>The fog's <see cref="T:Godot.Color"/>.</para>
  14438. </summary>
  14439. </member>
  14440. <member name="P:Godot.Environment.FogSunColor">
  14441. <summary>
  14442. <para>The depth fog's <see cref="T:Godot.Color"/> when looking towards the sun.</para>
  14443. </summary>
  14444. </member>
  14445. <member name="P:Godot.Environment.FogSunAmount">
  14446. <summary>
  14447. <para>The intensity of the depth fog color transition when looking towards the sun. The sun's direction is determined automatically using the DirectionalLight node in the scene.</para>
  14448. </summary>
  14449. </member>
  14450. <member name="P:Godot.Environment.FogDepthEnabled">
  14451. <summary>
  14452. <para>If <c>true</c>, the depth fog effect is enabled. When enabled, fog will appear in the distance (relative to the camera).</para>
  14453. </summary>
  14454. </member>
  14455. <member name="P:Godot.Environment.FogDepthBegin">
  14456. <summary>
  14457. <para>The fog's depth starting distance from the camera.</para>
  14458. </summary>
  14459. </member>
  14460. <member name="P:Godot.Environment.FogDepthEnd">
  14461. <summary>
  14462. <para>The fog's depth end distance from the camera. If this value is set to 0, it will be equal to the current camera's <see cref="P:Godot.Camera.Far"/> value.</para>
  14463. </summary>
  14464. </member>
  14465. <member name="P:Godot.Environment.FogDepthCurve">
  14466. <summary>
  14467. <para>The fog depth's intensity curve. A number of presets are available in the Inspector by right-clicking the curve.</para>
  14468. </summary>
  14469. </member>
  14470. <member name="P:Godot.Environment.FogTransmitEnabled">
  14471. <summary>
  14472. <para>Enables fog's light transmission effect. If <c>true</c>, light will be more visible in the fog to simulate light scattering as in real life.</para>
  14473. </summary>
  14474. </member>
  14475. <member name="P:Godot.Environment.FogTransmitCurve">
  14476. <summary>
  14477. <para>The intensity of the fog light transmittance effect. Amount of light that the fog transmits.</para>
  14478. </summary>
  14479. </member>
  14480. <member name="P:Godot.Environment.FogHeightEnabled">
  14481. <summary>
  14482. <para>If <c>true</c>, the height fog effect is enabled. When enabled, fog will appear in a defined height range, regardless of the distance from the camera. This can be used to simulate "deep water" effects with a lower performance cost compared to a dedicated shader.</para>
  14483. </summary>
  14484. </member>
  14485. <member name="P:Godot.Environment.FogHeightMin">
  14486. <summary>
  14487. <para>The Y coordinate where the height fog will be the least intense. If this value is greater than <see cref="P:Godot.Environment.FogHeightMax"/>, fog will be displayed from top to bottom. Otherwise, it will be displayed from bottom to top.</para>
  14488. </summary>
  14489. </member>
  14490. <member name="P:Godot.Environment.FogHeightMax">
  14491. <summary>
  14492. <para>The Y coordinate where the height fog will be the most intense. If this value is greater than <see cref="P:Godot.Environment.FogHeightMin"/>, fog will be displayed from bottom to top. Otherwise, it will be displayed from top to bottom.</para>
  14493. </summary>
  14494. </member>
  14495. <member name="P:Godot.Environment.FogHeightCurve">
  14496. <summary>
  14497. <para>The height fog's intensity. A number of presets are available in the Inspector by right-clicking the curve.</para>
  14498. </summary>
  14499. </member>
  14500. <member name="P:Godot.Environment.TonemapMode">
  14501. <summary>
  14502. <para>The tonemapping mode to use. Tonemapping is the process that "converts" HDR values to be suitable for rendering on a LDR display. (Godot doesn't support rendering on HDR displays yet.)</para>
  14503. </summary>
  14504. </member>
  14505. <member name="P:Godot.Environment.TonemapExposure">
  14506. <summary>
  14507. <para>The default exposure used for tonemapping.</para>
  14508. </summary>
  14509. </member>
  14510. <member name="P:Godot.Environment.TonemapWhite">
  14511. <summary>
  14512. <para>The white reference value for tonemapping. Only effective if the <see cref="P:Godot.Environment.TonemapMode"/> isn't set to .</para>
  14513. </summary>
  14514. </member>
  14515. <member name="P:Godot.Environment.AutoExposureEnabled">
  14516. <summary>
  14517. <para>If <c>true</c>, enables the tonemapping auto exposure mode of the scene renderer. If <c>true</c>, the renderer will automatically determine the exposure setting to adapt to the scene's illumination and the observed light.</para>
  14518. </summary>
  14519. </member>
  14520. <member name="P:Godot.Environment.AutoExposureScale">
  14521. <summary>
  14522. <para>The scale of the auto exposure effect. Affects the intensity of auto exposure.</para>
  14523. </summary>
  14524. </member>
  14525. <member name="P:Godot.Environment.AutoExposureMinLuma">
  14526. <summary>
  14527. <para>The minimum luminance value for the auto exposure.</para>
  14528. </summary>
  14529. </member>
  14530. <member name="P:Godot.Environment.AutoExposureMaxLuma">
  14531. <summary>
  14532. <para>The maximum luminance value for the auto exposure.</para>
  14533. </summary>
  14534. </member>
  14535. <member name="P:Godot.Environment.AutoExposureSpeed">
  14536. <summary>
  14537. <para>The speed of the auto exposure effect. Affects the time needed for the camera to perform auto exposure.</para>
  14538. </summary>
  14539. </member>
  14540. <member name="P:Godot.Environment.SsReflectionsEnabled">
  14541. <summary>
  14542. <para>If <c>true</c>, screen-space reflections are enabled. Screen-space reflections are more accurate than reflections from <see cref="T:Godot.GIProbe"/>s or <see cref="T:Godot.ReflectionProbe"/>s, but are slower and can't reflect surfaces occluded by others.</para>
  14543. </summary>
  14544. </member>
  14545. <member name="P:Godot.Environment.SsReflectionsMaxSteps">
  14546. <summary>
  14547. <para>The maximum number of steps for screen-space reflections. Higher values are slower.</para>
  14548. </summary>
  14549. </member>
  14550. <member name="P:Godot.Environment.SsReflectionsFadeIn">
  14551. <summary>
  14552. <para>The fade-in distance for screen-space reflections. Affects the area from the reflected material to the screen-space reflection).</para>
  14553. </summary>
  14554. </member>
  14555. <member name="P:Godot.Environment.SsReflectionsFadeOut">
  14556. <summary>
  14557. <para>The fade-out distance for screen-space reflections. Affects the area from the screen-space reflection to the "global" reflection.</para>
  14558. </summary>
  14559. </member>
  14560. <member name="P:Godot.Environment.SsReflectionsDepthTolerance">
  14561. <summary>
  14562. <para>The depth tolerance for screen-space reflections.</para>
  14563. </summary>
  14564. </member>
  14565. <member name="P:Godot.Environment.SsReflectionsRoughness">
  14566. <summary>
  14567. <para>If <c>true</c>, screen-space reflections will take the material roughness into account.</para>
  14568. </summary>
  14569. </member>
  14570. <member name="P:Godot.Environment.SsaoEnabled">
  14571. <summary>
  14572. <para>If <c>true</c>, the screen-space ambient occlusion effect is enabled. This darkens objects' corners and cavities to simulate ambient light not reaching the entire object as in real life. This works well for small, dynamic objects, but baked lighting or ambient occlusion textures will do a better job at displaying ambient occlusion on large static objects. This is a costly effect and should be disabled first when running into performance issues.</para>
  14573. </summary>
  14574. </member>
  14575. <member name="P:Godot.Environment.SsaoRadius">
  14576. <summary>
  14577. <para>The primary screen-space ambient occlusion radius.</para>
  14578. </summary>
  14579. </member>
  14580. <member name="P:Godot.Environment.SsaoIntensity">
  14581. <summary>
  14582. <para>The primary screen-space ambient occlusion intensity. See also <see cref="P:Godot.Environment.SsaoRadius"/>.</para>
  14583. </summary>
  14584. </member>
  14585. <member name="P:Godot.Environment.SsaoRadius2">
  14586. <summary>
  14587. <para>The secondary screen-space ambient occlusion radius. If set to a value higher than <c>0</c>, enables the secondary screen-space ambient occlusion effect which can be used to improve the effect's appearance (at the cost of performance).</para>
  14588. </summary>
  14589. </member>
  14590. <member name="P:Godot.Environment.SsaoIntensity2">
  14591. <summary>
  14592. <para>The secondary screen-space ambient occlusion intensity. See also <see cref="P:Godot.Environment.SsaoRadius2"/>.</para>
  14593. </summary>
  14594. </member>
  14595. <member name="P:Godot.Environment.SsaoBias">
  14596. <summary>
  14597. <para>The screen-space ambient occlusion bias. This should be kept high enough to prevent "smooth" curves from being affected by ambient occlusion.</para>
  14598. </summary>
  14599. </member>
  14600. <member name="P:Godot.Environment.SsaoLightAffect">
  14601. <summary>
  14602. <para>The screen-space ambient occlusion intensity in direct light. In real life, ambient occlusion only applies to indirect light, which means its effects can't be seen in direct light. Values higher than <c>0</c> will make the SSAO effect visible in direct light.</para>
  14603. </summary>
  14604. </member>
  14605. <member name="P:Godot.Environment.SsaoAoChannelAffect">
  14606. <summary>
  14607. <para>The screen-space ambient occlusion intensity on materials that have an AO texture defined. Values higher than <c>0</c> will make the SSAO effect visible in areas darkened by AO textures.</para>
  14608. </summary>
  14609. </member>
  14610. <member name="P:Godot.Environment.SsaoColor">
  14611. <summary>
  14612. <para>The screen-space ambient occlusion color.</para>
  14613. </summary>
  14614. </member>
  14615. <member name="P:Godot.Environment.SsaoQuality">
  14616. <summary>
  14617. <para>The screen-space ambient occlusion quality. Higher qualities will make better use of small objects for ambient occlusion, but are slower.</para>
  14618. </summary>
  14619. </member>
  14620. <member name="P:Godot.Environment.SsaoBlur">
  14621. <summary>
  14622. <para>The screen-space ambient occlusion blur quality. See <see cref="T:Godot.Environment.SSAOBlur"/> for possible values.</para>
  14623. </summary>
  14624. </member>
  14625. <member name="P:Godot.Environment.SsaoEdgeSharpness">
  14626. <summary>
  14627. <para>The screen-space ambient occlusion edge sharpness.</para>
  14628. </summary>
  14629. </member>
  14630. <member name="P:Godot.Environment.DofBlurFarEnabled">
  14631. <summary>
  14632. <para>If <c>true</c>, enables the depth-of-field far blur effect.</para>
  14633. </summary>
  14634. </member>
  14635. <member name="P:Godot.Environment.DofBlurFarDistance">
  14636. <summary>
  14637. <para>The distance from the camera where the far blur effect affects the rendering.</para>
  14638. </summary>
  14639. </member>
  14640. <member name="P:Godot.Environment.DofBlurFarTransition">
  14641. <summary>
  14642. <para>The length of the transition between the no-blur area and far blur.</para>
  14643. </summary>
  14644. </member>
  14645. <member name="P:Godot.Environment.DofBlurFarAmount">
  14646. <summary>
  14647. <para>The amount of far blur for the depth-of-field effect.</para>
  14648. </summary>
  14649. </member>
  14650. <member name="P:Godot.Environment.DofBlurFarQuality">
  14651. <summary>
  14652. <para>The depth-of-field far blur's quality. Higher values can mitigate the visible banding effect seen at higher strengths, but are much slower.</para>
  14653. </summary>
  14654. </member>
  14655. <member name="P:Godot.Environment.DofBlurNearEnabled">
  14656. <summary>
  14657. <para>If <c>true</c>, enables the depth-of-field near blur effect.</para>
  14658. </summary>
  14659. </member>
  14660. <member name="P:Godot.Environment.DofBlurNearDistance">
  14661. <summary>
  14662. <para>Distance from the camera where the near blur effect affects the rendering.</para>
  14663. </summary>
  14664. </member>
  14665. <member name="P:Godot.Environment.DofBlurNearTransition">
  14666. <summary>
  14667. <para>The length of the transition between the near blur and no-blur area.</para>
  14668. </summary>
  14669. </member>
  14670. <member name="P:Godot.Environment.DofBlurNearAmount">
  14671. <summary>
  14672. <para>The amount of near blur for the depth-of-field effect.</para>
  14673. </summary>
  14674. </member>
  14675. <member name="P:Godot.Environment.DofBlurNearQuality">
  14676. <summary>
  14677. <para>The depth-of-field near blur's quality. Higher values can mitigate the visible banding effect seen at higher strengths, but are much slower.</para>
  14678. </summary>
  14679. </member>
  14680. <member name="P:Godot.Environment.GlowEnabled">
  14681. <summary>
  14682. <para>If <c>true</c>, the glow effect is enabled.</para>
  14683. </summary>
  14684. </member>
  14685. <member name="P:Godot.Environment.GlowLevels__1">
  14686. <summary>
  14687. <para>If <c>true</c>, the 1st level of glow is enabled. This is the most "local" level (least blurry).</para>
  14688. </summary>
  14689. </member>
  14690. <member name="P:Godot.Environment.GlowLevels__2">
  14691. <summary>
  14692. <para>If <c>true</c>, the 2th level of glow is enabled.</para>
  14693. </summary>
  14694. </member>
  14695. <member name="P:Godot.Environment.GlowLevels__3">
  14696. <summary>
  14697. <para>If <c>true</c>, the 3th level of glow is enabled.</para>
  14698. </summary>
  14699. </member>
  14700. <member name="P:Godot.Environment.GlowLevels__4">
  14701. <summary>
  14702. <para>If <c>true</c>, the 4th level of glow is enabled.</para>
  14703. </summary>
  14704. </member>
  14705. <member name="P:Godot.Environment.GlowLevels__5">
  14706. <summary>
  14707. <para>If <c>true</c>, the 5th level of glow is enabled.</para>
  14708. </summary>
  14709. </member>
  14710. <member name="P:Godot.Environment.GlowLevels__6">
  14711. <summary>
  14712. <para>If <c>true</c>, the 6th level of glow is enabled.</para>
  14713. </summary>
  14714. </member>
  14715. <member name="P:Godot.Environment.GlowLevels__7">
  14716. <summary>
  14717. <para>If <c>true</c>, the 7th level of glow is enabled. This is the most "global" level (blurriest).</para>
  14718. </summary>
  14719. </member>
  14720. <member name="P:Godot.Environment.GlowIntensity">
  14721. <summary>
  14722. <para>The glow intensity. When using the GLES2 renderer, this should be increased to 1.5 to compensate for the lack of HDR rendering.</para>
  14723. </summary>
  14724. </member>
  14725. <member name="P:Godot.Environment.GlowStrength">
  14726. <summary>
  14727. <para>The glow strength. When using the GLES2 renderer, this should be increased to 1.3 to compensate for the lack of HDR rendering.</para>
  14728. </summary>
  14729. </member>
  14730. <member name="P:Godot.Environment.GlowBloom">
  14731. <summary>
  14732. <para>The bloom's intensity. If set to a value higher than <c>0</c>, this will make glow visible in areas darker than the <see cref="P:Godot.Environment.GlowHdrThreshold"/>.</para>
  14733. </summary>
  14734. </member>
  14735. <member name="P:Godot.Environment.GlowBlendMode">
  14736. <summary>
  14737. <para>The glow blending mode.</para>
  14738. </summary>
  14739. </member>
  14740. <member name="P:Godot.Environment.GlowHdrThreshold">
  14741. <summary>
  14742. <para>The lower threshold of the HDR glow. When using the GLES2 renderer (which doesn't support HDR), this needs to be below <c>1.0</c> for glow to be visible. A value of <c>0.9</c> works well in this case.</para>
  14743. </summary>
  14744. </member>
  14745. <member name="P:Godot.Environment.GlowHdrLuminanceCap">
  14746. <summary>
  14747. <para>The higher threshold of the HDR glow. Areas brighter than this threshold will be clamped for the purposes of the glow effect.</para>
  14748. </summary>
  14749. </member>
  14750. <member name="P:Godot.Environment.GlowHdrScale">
  14751. <summary>
  14752. <para>The bleed scale of the HDR glow.</para>
  14753. </summary>
  14754. </member>
  14755. <member name="P:Godot.Environment.GlowBicubicUpscale">
  14756. <summary>
  14757. <para>Smooths out the blockiness created by sampling higher levels, at the cost of performance.</para>
  14758. <para>Note: When using the GLES2 renderer, this is only available if the GPU supports the <c>GL_EXT_gpu_shader4</c> extension.</para>
  14759. </summary>
  14760. </member>
  14761. <member name="P:Godot.Environment.AdjustmentEnabled">
  14762. <summary>
  14763. <para>If <c>true</c>, enables the <c>adjustment_*</c> properties provided by this resource. If <c>false</c>, modifications to the <c>adjustment_*</c> properties will have no effect on the rendered scene.</para>
  14764. </summary>
  14765. </member>
  14766. <member name="P:Godot.Environment.AdjustmentBrightness">
  14767. <summary>
  14768. <para>The global brightness value of the rendered scene. Effective only if <c>adjustment_enabled</c> is <c>true</c>.</para>
  14769. </summary>
  14770. </member>
  14771. <member name="P:Godot.Environment.AdjustmentContrast">
  14772. <summary>
  14773. <para>The global contrast value of the rendered scene (default value is 1). Effective only if <c>adjustment_enabled</c> is <c>true</c>.</para>
  14774. </summary>
  14775. </member>
  14776. <member name="P:Godot.Environment.AdjustmentSaturation">
  14777. <summary>
  14778. <para>The global color saturation value of the rendered scene (default value is 1). Effective only if <c>adjustment_enabled</c> is <c>true</c>.</para>
  14779. </summary>
  14780. </member>
  14781. <member name="P:Godot.Environment.AdjustmentColorCorrection">
  14782. <summary>
  14783. <para>Applies the provided <see cref="T:Godot.Texture"/> resource to affect the global color aspect of the rendered scene. Effective only if <c>adjustment_enabled</c> is <c>true</c>.</para>
  14784. </summary>
  14785. </member>
  14786. <member name="M:Godot.Environment.SetGlowLevel(System.Int32,System.Boolean)">
  14787. <summary>
  14788. <para>Enables or disables the glow level at index <c>idx</c>. Each level relies on the previous level. This means that enabling higher glow levels will slow down the glow effect rendering, even if previous levels aren't enabled.</para>
  14789. </summary>
  14790. </member>
  14791. <member name="M:Godot.Environment.IsGlowLevelEnabled(System.Int32)">
  14792. <summary>
  14793. <para>Returns <c>true</c> if the glow level <c>idx</c> is specified, <c>false</c> otherwise.</para>
  14794. </summary>
  14795. </member>
  14796. <member name="T:Godot.Expression">
  14797. <summary>
  14798. <para>An expression can be made of any arithmetic operation, built-in math function call, method call of a passed instance, or built-in type construction call.</para>
  14799. <para>An example expression text using the built-in math functions could be <c>sqrt(pow(3,2) + pow(4,2))</c>.</para>
  14800. <para>In the following example we use a <see cref="T:Godot.LineEdit"/> node to write our expression and show the result.</para>
  14801. <para><code>
  14802. onready var expression = Expression.new()
  14803. func _ready():
  14804. $LineEdit.connect("text_entered", self, "_on_text_entered")
  14805. func _on_text_entered(command):
  14806. var error = expression.parse(command, [])
  14807. if error != OK:
  14808. print(expression.get_error_text())
  14809. return
  14810. var result = expression.execute([], null, true)
  14811. if not expression.has_execute_failed():
  14812. $LineEdit.text = str(result)
  14813. </code></para>
  14814. </summary>
  14815. </member>
  14816. <member name="M:Godot.Expression.Parse(System.String,System.String[])">
  14817. <summary>
  14818. <para>Parses the expression and returns an <see cref="T:Godot.Error"/> code.</para>
  14819. <para>You can optionally specify names of variables that may appear in the expression with <c>input_names</c>, so that you can bind them when it gets executed.</para>
  14820. </summary>
  14821. <param name="inputNames">If the parameter is null, then the default value is new string[] {}</param>
  14822. </member>
  14823. <member name="M:Godot.Expression.Execute(Godot.Collections.Array,Godot.Object,System.Boolean)">
  14824. <summary>
  14825. <para>Executes the expression that was previously parsed by <see cref="M:Godot.Expression.Parse(System.String,System.String[])"/> and returns the result. Before you use the returned object, you should check if the method failed by calling <see cref="M:Godot.Expression.HasExecuteFailed"/>.</para>
  14826. <para>If you defined input variables in <see cref="M:Godot.Expression.Parse(System.String,System.String[])"/>, you can specify their values in the inputs array, in the same order.</para>
  14827. </summary>
  14828. <param name="inputs">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  14829. </member>
  14830. <member name="M:Godot.Expression.HasExecuteFailed">
  14831. <summary>
  14832. <para>Returns <c>true</c> if <see cref="M:Godot.Expression.Execute(Godot.Collections.Array,Godot.Object,System.Boolean)"/> has failed.</para>
  14833. </summary>
  14834. </member>
  14835. <member name="M:Godot.Expression.GetErrorText">
  14836. <summary>
  14837. <para>Returns the error text if <see cref="M:Godot.Expression.Parse(System.String,System.String[])"/> has failed.</para>
  14838. </summary>
  14839. </member>
  14840. <member name="T:Godot.ExternalTexture">
  14841. <summary>
  14842. <para>Enable support for the OpenGL ES external texture extension as defined by <a href="https://www.khronos.org/registry/OpenGL/extensions/OES/OES_EGL_image_external.txt">OES_EGL_image_external</a>.</para>
  14843. <para>Note: This is only supported for Android platforms.</para>
  14844. </summary>
  14845. </member>
  14846. <member name="P:Godot.ExternalTexture.Size">
  14847. <summary>
  14848. <para>External texture size.</para>
  14849. </summary>
  14850. </member>
  14851. <member name="M:Godot.ExternalTexture.GetExternalTextureId">
  14852. <summary>
  14853. <para>Returns the external texture name.</para>
  14854. </summary>
  14855. </member>
  14856. <member name="T:Godot.FileDialog">
  14857. <summary>
  14858. <para>FileDialog is a preset dialog used to choose files and directories in the filesystem. It supports filter masks. The FileDialog automatically sets its window title according to the <see cref="P:Godot.FileDialog.Mode"/>. If you want to use a custom title, disable this by setting <see cref="P:Godot.FileDialog.ModeOverridesTitle"/> to <c>false</c>.</para>
  14859. </summary>
  14860. </member>
  14861. <member name="F:Godot.FileDialog.ModeEnum.OpenFile">
  14862. <summary>
  14863. <para>The dialog allows selecting one, and only one file.</para>
  14864. </summary>
  14865. </member>
  14866. <member name="F:Godot.FileDialog.ModeEnum.OpenFiles">
  14867. <summary>
  14868. <para>The dialog allows selecting multiple files.</para>
  14869. </summary>
  14870. </member>
  14871. <member name="F:Godot.FileDialog.ModeEnum.OpenDir">
  14872. <summary>
  14873. <para>The dialog only allows selecting a directory, disallowing the selection of any file.</para>
  14874. </summary>
  14875. </member>
  14876. <member name="F:Godot.FileDialog.ModeEnum.OpenAny">
  14877. <summary>
  14878. <para>The dialog allows selecting one file or directory.</para>
  14879. </summary>
  14880. </member>
  14881. <member name="F:Godot.FileDialog.ModeEnum.SaveFile">
  14882. <summary>
  14883. <para>The dialog will warn when a file exists.</para>
  14884. </summary>
  14885. </member>
  14886. <member name="F:Godot.FileDialog.AccessEnum.Resources">
  14887. <summary>
  14888. <para>The dialog only allows accessing files under the <see cref="T:Godot.Resource"/> path (<c>res://</c>).</para>
  14889. </summary>
  14890. </member>
  14891. <member name="F:Godot.FileDialog.AccessEnum.Userdata">
  14892. <summary>
  14893. <para>The dialog only allows accessing files under user data path (<c>user://</c>).</para>
  14894. </summary>
  14895. </member>
  14896. <member name="F:Godot.FileDialog.AccessEnum.Filesystem">
  14897. <summary>
  14898. <para>The dialog allows accessing files on the whole file system.</para>
  14899. </summary>
  14900. </member>
  14901. <member name="P:Godot.FileDialog.ModeOverridesTitle">
  14902. <summary>
  14903. <para>If <c>true</c>, changing the <c>Mode</c> property will set the window title accordingly (e.g. setting mode to will change the window title to "Open a File").</para>
  14904. </summary>
  14905. </member>
  14906. <member name="P:Godot.FileDialog.Mode">
  14907. <summary>
  14908. <para>The dialog's open or save mode, which affects the selection behavior. See enum <c>Mode</c> constants.</para>
  14909. </summary>
  14910. </member>
  14911. <member name="P:Godot.FileDialog.Access">
  14912. <summary>
  14913. <para>The file system access scope. See enum <c>Access</c> constants.</para>
  14914. </summary>
  14915. </member>
  14916. <member name="P:Godot.FileDialog.Filters">
  14917. <summary>
  14918. <para>The available file type filters. For example, this shows only <c>.png</c> and <c>.gd</c> files: <c>set_filters(PoolStringArray(["*.png ; PNG Images","*.gd ; GDScript Files"]))</c>.</para>
  14919. </summary>
  14920. </member>
  14921. <member name="P:Godot.FileDialog.ShowHiddenFiles">
  14922. <summary>
  14923. <para>If <c>true</c>, the dialog will show hidden files.</para>
  14924. </summary>
  14925. </member>
  14926. <member name="P:Godot.FileDialog.CurrentDir">
  14927. <summary>
  14928. <para>The current working directory of the file dialog.</para>
  14929. </summary>
  14930. </member>
  14931. <member name="P:Godot.FileDialog.CurrentFile">
  14932. <summary>
  14933. <para>The currently selected file of the file dialog.</para>
  14934. </summary>
  14935. </member>
  14936. <member name="P:Godot.FileDialog.CurrentPath">
  14937. <summary>
  14938. <para>The currently selected file path of the file dialog.</para>
  14939. </summary>
  14940. </member>
  14941. <member name="M:Godot.FileDialog.ClearFilters">
  14942. <summary>
  14943. <para>Clear all the added filters in the dialog.</para>
  14944. </summary>
  14945. </member>
  14946. <member name="M:Godot.FileDialog.AddFilter(System.String)">
  14947. <summary>
  14948. <para>Adds <c>filter</c> as a custom filter; <c>filter</c> should be of the form <c>"filename.extension ; Description"</c>. For example, <c>"*.png ; PNG Images"</c>.</para>
  14949. </summary>
  14950. </member>
  14951. <member name="M:Godot.FileDialog.GetVbox">
  14952. <summary>
  14953. <para>Returns the vertical box container of the dialog, custom controls can be added to it.</para>
  14954. </summary>
  14955. </member>
  14956. <member name="M:Godot.FileDialog.GetLineEdit">
  14957. <summary>
  14958. <para>Returns the LineEdit for the selected file.</para>
  14959. </summary>
  14960. </member>
  14961. <member name="M:Godot.FileDialog.DeselectItems">
  14962. <summary>
  14963. <para>Clear currently selected items in the dialog.</para>
  14964. </summary>
  14965. </member>
  14966. <member name="M:Godot.FileDialog.Invalidate">
  14967. <summary>
  14968. <para>Invalidate and update the current dialog content list.</para>
  14969. </summary>
  14970. </member>
  14971. <member name="T:Godot.Font">
  14972. <summary>
  14973. <para>Font contains a Unicode-compatible character set, as well as the ability to draw it with variable width, ascent, descent and kerning. For creating fonts from TTF files (or other font formats), see the editor support for fonts.</para>
  14974. </summary>
  14975. </member>
  14976. <member name="M:Godot.Font.Draw(Godot.RID,Godot.Vector2,System.String,System.Nullable{Godot.Color},System.Int32,System.Nullable{Godot.Color})">
  14977. <summary>
  14978. <para>Draw <c>string</c> into a canvas item using the font at a given position, with <c>modulate</c> color, and optionally clipping the width. <c>position</c> specifies the baseline, not the top. To draw from the top, ascent must be added to the Y axis.</para>
  14979. </summary>
  14980. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  14981. <param name="outlineModulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  14982. </member>
  14983. <member name="M:Godot.Font.GetAscent">
  14984. <summary>
  14985. <para>Returns the font ascent (number of pixels above the baseline).</para>
  14986. </summary>
  14987. </member>
  14988. <member name="M:Godot.Font.GetDescent">
  14989. <summary>
  14990. <para>Returns the font descent (number of pixels below the baseline).</para>
  14991. </summary>
  14992. </member>
  14993. <member name="M:Godot.Font.GetHeight">
  14994. <summary>
  14995. <para>Returns the total font height (ascent plus descent) in pixels.</para>
  14996. </summary>
  14997. </member>
  14998. <member name="M:Godot.Font.GetCharSize(System.Int32,System.Int32)">
  14999. <summary>
  15000. <para>Returns the size of a character, optionally taking kerning into account if the next character is provided.</para>
  15001. </summary>
  15002. </member>
  15003. <member name="M:Godot.Font.GetStringSize(System.String)">
  15004. <summary>
  15005. <para>Returns the size of a string, taking kerning and advance into account.</para>
  15006. </summary>
  15007. </member>
  15008. <member name="M:Godot.Font.GetWordwrapStringSize(System.String,System.Single)">
  15009. <summary>
  15010. <para>Returns the size that the string would have with word wrapping enabled with a fixed <c>width</c>.</para>
  15011. </summary>
  15012. </member>
  15013. <member name="M:Godot.Font.HasOutline">
  15014. <summary>
  15015. <para>Returns <c>true</c> if the font has an outline.</para>
  15016. </summary>
  15017. </member>
  15018. <member name="M:Godot.Font.DrawChar(Godot.RID,Godot.Vector2,System.Int32,System.Int32,System.Nullable{Godot.Color},System.Boolean)">
  15019. <summary>
  15020. <para>Draw character <c>char</c> into a canvas item using the font at a given position, with <c>modulate</c> color, and optionally kerning if <c>next</c> is passed. clipping the width. <c>position</c> specifies the baseline, not the top. To draw from the top, ascent must be added to the Y axis. The width used by the character is returned, making this function useful for drawing strings character by character.</para>
  15021. </summary>
  15022. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  15023. </member>
  15024. <member name="M:Godot.Font.UpdateChanges">
  15025. <summary>
  15026. <para>After editing a font (changing size, ascent, char rects, etc.). Call this function to propagate changes to controls that might use it.</para>
  15027. </summary>
  15028. </member>
  15029. <member name="T:Godot.FuncRef">
  15030. <summary>
  15031. <para>In GDScript, functions are not first-class objects. This means it is impossible to store them directly as variables, return them from another function, or pass them as arguments.</para>
  15032. <para>However, by creating a <see cref="T:Godot.FuncRef"/> using the <c>@GDScript.funcref</c> function, a reference to a function in a given object can be created, passed around and called.</para>
  15033. </summary>
  15034. </member>
  15035. <member name="M:Godot.FuncRef.CallFunc(System.Object[])">
  15036. <summary>
  15037. <para>Calls the referenced function previously set by <see cref="M:Godot.FuncRef.SetFunction(System.String)"/> or <c>@GDScript.funcref</c>.</para>
  15038. </summary>
  15039. </member>
  15040. <member name="M:Godot.FuncRef.CallFuncv(Godot.Collections.Array)">
  15041. <summary>
  15042. <para>Calls the referenced function previously set by <see cref="M:Godot.FuncRef.SetFunction(System.String)"/> or <c>@GDScript.funcref</c>. Contrarily to <see cref="M:Godot.FuncRef.CallFunc(System.Object[])"/>, this method does not support a variable number of arguments but expects all parameters to be passed via a single <see cref="T:Godot.Collections.Array"/>.</para>
  15043. </summary>
  15044. </member>
  15045. <member name="M:Godot.FuncRef.SetInstance(Godot.Object)">
  15046. <summary>
  15047. <para>The object containing the referenced function. This object must be of a type actually inheriting from <see cref="T:Godot.Object"/>, not a built-in type such as <see cref="T:System.Int32"/>, <see cref="T:Godot.Vector2"/> or <see cref="T:Godot.Collections.Dictionary"/>.</para>
  15048. </summary>
  15049. </member>
  15050. <member name="M:Godot.FuncRef.SetFunction(System.String)">
  15051. <summary>
  15052. <para>The name of the referenced function to call on the object, without parentheses or any parameters.</para>
  15053. </summary>
  15054. </member>
  15055. <member name="M:Godot.FuncRef.IsValid">
  15056. <summary>
  15057. <para>Returns whether the object still exists and has the function assigned.</para>
  15058. </summary>
  15059. </member>
  15060. <member name="T:Godot.GDNativeLibrary">
  15061. <summary>
  15062. <para>A GDNative library can implement <see cref="T:Godot.NativeScript"/>s, global functions to call with the <see cref="T:Godot.GDNative"/> class, or low-level engine extensions through interfaces such as <see cref="T:Godot.ARVRInterfaceGDNative"/>. The library must be compiled for each platform and architecture that the project will run on.</para>
  15063. </summary>
  15064. </member>
  15065. <member name="P:Godot.GDNativeLibrary.ConfigFile">
  15066. <summary>
  15067. <para>This resource in INI-style <see cref="T:Godot.ConfigFile"/> format, as in <c>.gdnlib</c> files.</para>
  15068. </summary>
  15069. </member>
  15070. <member name="P:Godot.GDNativeLibrary.LoadOnce">
  15071. <summary>
  15072. <para>If <c>true</c>, Godot loads only one copy of the library and each script that references the library will share static data like static or global variables.</para>
  15073. <para>If <c>false</c>, Godot loads a separate copy of the library into memory for each script that references it.</para>
  15074. </summary>
  15075. </member>
  15076. <member name="P:Godot.GDNativeLibrary.Singleton">
  15077. <summary>
  15078. <para>If <c>true</c>, Godot loads the library at startup rather than the first time a script uses the library, calling <c>{prefix}gdnative_singleton</c> after initializing the library (where <c>{prefix}</c> is the value of <see cref="P:Godot.GDNativeLibrary.SymbolPrefix"/>). The library remains loaded as long as Godot is running.</para>
  15079. <para>Note: A singleton library cannot be <see cref="P:Godot.GDNativeLibrary.Reloadable"/>.</para>
  15080. </summary>
  15081. </member>
  15082. <member name="P:Godot.GDNativeLibrary.SymbolPrefix">
  15083. <summary>
  15084. <para>The prefix this library's entry point functions begin with. For example, a GDNativeLibrary would declare its <c>gdnative_init</c> function as <c>godot_gdnative_init</c> by default.</para>
  15085. <para>On platforms that require statically linking libraries (currently only iOS), each library must have a different <c>symbol_prefix</c>.</para>
  15086. </summary>
  15087. </member>
  15088. <member name="P:Godot.GDNativeLibrary.Reloadable">
  15089. <summary>
  15090. <para>If <c>true</c>, the editor will temporarily unload the library whenever the user switches away from the editor window, allowing the user to recompile the library without restarting Godot.</para>
  15091. <para>Note: If the library defines tool scripts that run inside the editor, <c>reloadable</c> must be <c>false</c>. Otherwise, the editor will attempt to unload the tool scripts while they're in use and crash.</para>
  15092. </summary>
  15093. </member>
  15094. <member name="M:Godot.GDNativeLibrary.GetCurrentLibraryPath">
  15095. <summary>
  15096. <para>Returns the path to the dynamic library file for the current platform and architecture.</para>
  15097. </summary>
  15098. </member>
  15099. <member name="M:Godot.GDNativeLibrary.GetCurrentDependencies">
  15100. <summary>
  15101. <para>Returns paths to all dependency libraries for the current platform and architecture.</para>
  15102. </summary>
  15103. </member>
  15104. <member name="T:Godot.GDScript">
  15105. <summary>
  15106. <para>A script implemented in the GDScript programming language. The script extends the functionality of all objects that instance it.</para>
  15107. <para><see cref="M:Godot.GDScript.New(System.Object[])"/> creates a new instance of the script. <see cref="M:Godot.Object.SetScript(Godot.Reference)"/> extends an existing object, if that object's class matches one of the script's base classes.</para>
  15108. </summary>
  15109. </member>
  15110. <member name="M:Godot.GDScript.New(System.Object[])">
  15111. <summary>
  15112. <para>Returns a new instance of the script.</para>
  15113. <para>For example:</para>
  15114. <para><code>
  15115. var MyClass = load("myclass.gd")
  15116. var instance = MyClass.new()
  15117. assert(instance.get_script() == MyClass)
  15118. </code></para>
  15119. </summary>
  15120. </member>
  15121. <member name="M:Godot.GDScript.GetAsByteCode">
  15122. <summary>
  15123. <para>Returns byte code for the script source code.</para>
  15124. </summary>
  15125. </member>
  15126. <member name="T:Godot.GDScriptFunctionState">
  15127. <summary>
  15128. <para>Calling <c>@GDScript.yield</c> within a function will cause that function to yield and return its current state as an object of this type. The yielded function call can then be resumed later by calling <see cref="M:Godot.GDScriptFunctionState.Resume(System.Object)"/> on this state object.</para>
  15129. </summary>
  15130. </member>
  15131. <member name="M:Godot.GDScriptFunctionState.Resume(System.Object)">
  15132. <summary>
  15133. <para>Resume execution of the yielded function call.</para>
  15134. <para>If handed an argument, return the argument from the <c>@GDScript.yield</c> call in the yielded function call. You can pass e.g. an <see cref="T:Godot.Collections.Array"/> to hand multiple arguments.</para>
  15135. <para>This function returns what the resumed function call returns, possibly another function state if yielded again.</para>
  15136. </summary>
  15137. </member>
  15138. <member name="M:Godot.GDScriptFunctionState.IsValid(System.Boolean)">
  15139. <summary>
  15140. <para>Check whether the function call may be resumed. This is not the case if the function state was already resumed.</para>
  15141. <para>If <c>extended_check</c> is enabled, it also checks if the associated script and object still exist. The extended check is done in debug mode as part of <see cref="M:Godot.GDScriptFunctionState.Resume(System.Object)"/>, but you can use this if you know you may be trying to resume without knowing for sure the object and/or script have survived up to that point.</para>
  15142. </summary>
  15143. </member>
  15144. <member name="T:Godot.GIProbe">
  15145. <summary>
  15146. <para><see cref="T:Godot.GIProbe"/>s are used to provide high-quality real-time indirect light to scenes. They precompute the effect of objects that emit light and the effect of static geometry to simulate the behavior of complex light in real-time. <see cref="T:Godot.GIProbe"/>s need to be baked before using, however, once baked, dynamic objects will receive light from them. Further, lights can be fully dynamic or baked.</para>
  15147. <para>Having <see cref="T:Godot.GIProbe"/>s in a scene can be expensive, the quality of the probe can be turned down in exchange for better performance in the <see cref="T:Godot.ProjectSettings"/> using .</para>
  15148. </summary>
  15149. </member>
  15150. <member name="F:Godot.GIProbe.SubdivEnum.Subdiv64">
  15151. <summary>
  15152. <para>Use 64 subdivisions. This is the lowest quality setting, but the fastest. Use it if you can, but especially use it on lower-end hardware.</para>
  15153. </summary>
  15154. </member>
  15155. <member name="F:Godot.GIProbe.SubdivEnum.Subdiv128">
  15156. <summary>
  15157. <para>Use 128 subdivisions. This is the default quality setting.</para>
  15158. </summary>
  15159. </member>
  15160. <member name="F:Godot.GIProbe.SubdivEnum.Subdiv256">
  15161. <summary>
  15162. <para>Use 256 subdivisions.</para>
  15163. </summary>
  15164. </member>
  15165. <member name="F:Godot.GIProbe.SubdivEnum.Subdiv512">
  15166. <summary>
  15167. <para>Use 512 subdivisions. This is the highest quality setting, but the slowest. On lower-end hardware this could cause the GPU to stall.</para>
  15168. </summary>
  15169. </member>
  15170. <member name="F:Godot.GIProbe.SubdivEnum.Max">
  15171. <summary>
  15172. <para>Represents the size of the <see cref="T:Godot.GIProbe.SubdivEnum"/> enum.</para>
  15173. </summary>
  15174. </member>
  15175. <member name="P:Godot.GIProbe.Subdiv">
  15176. <summary>
  15177. <para>Number of times to subdivide the grid that the <see cref="T:Godot.GIProbe"/> operates on. A higher number results in finer detail and thus higher visual quality, while lower numbers result in better performance.</para>
  15178. </summary>
  15179. </member>
  15180. <member name="P:Godot.GIProbe.Extents">
  15181. <summary>
  15182. <para>The size of the area covered by the <see cref="T:Godot.GIProbe"/>. If you make the extents larger without increasing the subdivisions with <see cref="P:Godot.GIProbe.Subdiv"/>, the size of each cell will increase and result in lower detailed lighting.</para>
  15183. </summary>
  15184. </member>
  15185. <member name="P:Godot.GIProbe.DynamicRange">
  15186. <summary>
  15187. <para>The maximum brightness that the <see cref="T:Godot.GIProbe"/> will recognize. Brightness will be scaled within this range.</para>
  15188. </summary>
  15189. </member>
  15190. <member name="P:Godot.GIProbe.Energy">
  15191. <summary>
  15192. <para>Energy multiplier. Makes the lighting contribution from the <see cref="T:Godot.GIProbe"/> brighter.</para>
  15193. </summary>
  15194. </member>
  15195. <member name="P:Godot.GIProbe.Propagation">
  15196. <summary>
  15197. <para>How much light propagates through the probe internally. A higher value allows light to spread further.</para>
  15198. </summary>
  15199. </member>
  15200. <member name="P:Godot.GIProbe.Bias">
  15201. <summary>
  15202. <para>Offsets the lookup of the light contribution from the <see cref="T:Godot.GIProbe"/>. This can be used to avoid self-shadowing, but may introduce light leaking at higher values. This and <see cref="P:Godot.GIProbe.NormalBias"/> should be played around with to minimize self-shadowing and light leaking.</para>
  15203. <para>Note: <c>bias</c> should usually be above 1.0 as that is the size of the voxels.</para>
  15204. </summary>
  15205. </member>
  15206. <member name="P:Godot.GIProbe.NormalBias">
  15207. <summary>
  15208. <para>Offsets the lookup into the <see cref="T:Godot.GIProbe"/> based on the object's normal direction. Can be used to reduce some self-shadowing artifacts.</para>
  15209. </summary>
  15210. </member>
  15211. <member name="P:Godot.GIProbe.Interior">
  15212. <summary>
  15213. <para>If <c>true</c>, ignores the sky contribution when calculating lighting.</para>
  15214. </summary>
  15215. </member>
  15216. <member name="P:Godot.GIProbe.Compress">
  15217. <summary>
  15218. <para>If <c>true</c>, the data for this <see cref="T:Godot.GIProbe"/> will be compressed. Compression saves space, but results in far worse visual quality.</para>
  15219. </summary>
  15220. </member>
  15221. <member name="P:Godot.GIProbe.Data">
  15222. <summary>
  15223. <para>The <see cref="T:Godot.GIProbeData"/> resource that holds the data for this <see cref="T:Godot.GIProbe"/>.</para>
  15224. </summary>
  15225. </member>
  15226. <member name="M:Godot.GIProbe.Bake(Godot.Node,System.Boolean)">
  15227. <summary>
  15228. <para>Bakes the effect from all <see cref="T:Godot.GeometryInstance"/>s marked with <see cref="P:Godot.GeometryInstance.UseInBakedLight"/> and <see cref="T:Godot.Light"/>s marked with either or . If <c>create_visual_debug</c> is <c>true</c>, after baking the light, this will generate a <see cref="T:Godot.MultiMesh"/> that has a cube representing each solid cell with each cube colored to the cell's albedo color. This can be used to visualize the <see cref="T:Godot.GIProbe"/>'s data and debug any issues that may be occurring.</para>
  15229. </summary>
  15230. </member>
  15231. <member name="M:Godot.GIProbe.DebugBake">
  15232. <summary>
  15233. <para>Calls <see cref="M:Godot.GIProbe.Bake(Godot.Node,System.Boolean)"/> with <c>create_visual_debug</c> enabled.</para>
  15234. </summary>
  15235. </member>
  15236. <member name="T:Godot.Generic6DOFJoint">
  15237. <summary>
  15238. <para>The first 3 DOF axes are linear axes, which represent translation of Bodies, and the latter 3 DOF axes represent the angular motion. Each axis can be either locked, or limited.</para>
  15239. </summary>
  15240. </member>
  15241. <member name="F:Godot.Generic6DOFJoint.Param.LinearLowerLimit">
  15242. <summary>
  15243. <para>The minimum difference between the pivot points' axes.</para>
  15244. </summary>
  15245. </member>
  15246. <member name="F:Godot.Generic6DOFJoint.Param.LinearUpperLimit">
  15247. <summary>
  15248. <para>The maximum difference between the pivot points' axes.</para>
  15249. </summary>
  15250. </member>
  15251. <member name="F:Godot.Generic6DOFJoint.Param.LinearLimitSoftness">
  15252. <summary>
  15253. <para>A factor applied to the movement across the axes. The lower, the slower the movement.</para>
  15254. </summary>
  15255. </member>
  15256. <member name="F:Godot.Generic6DOFJoint.Param.LinearRestitution">
  15257. <summary>
  15258. <para>The amount of restitution on the axes' movement. The lower, the more momentum gets lost.</para>
  15259. </summary>
  15260. </member>
  15261. <member name="F:Godot.Generic6DOFJoint.Param.LinearDamping">
  15262. <summary>
  15263. <para>The amount of damping that happens at the linear motion across the axes.</para>
  15264. </summary>
  15265. </member>
  15266. <member name="F:Godot.Generic6DOFJoint.Param.LinearMotorTargetVelocity">
  15267. <summary>
  15268. <para>The velocity the linear motor will try to reach.</para>
  15269. </summary>
  15270. </member>
  15271. <member name="F:Godot.Generic6DOFJoint.Param.LinearMotorForceLimit">
  15272. <summary>
  15273. <para>The maximum force the linear motor will apply while trying to reach the velocity target.</para>
  15274. </summary>
  15275. </member>
  15276. <member name="F:Godot.Generic6DOFJoint.Param.AngularLowerLimit">
  15277. <summary>
  15278. <para>The minimum rotation in negative direction to break loose and rotate around the axes.</para>
  15279. </summary>
  15280. </member>
  15281. <member name="F:Godot.Generic6DOFJoint.Param.AngularUpperLimit">
  15282. <summary>
  15283. <para>The minimum rotation in positive direction to break loose and rotate around the axes.</para>
  15284. </summary>
  15285. </member>
  15286. <member name="F:Godot.Generic6DOFJoint.Param.AngularLimitSoftness">
  15287. <summary>
  15288. <para>The speed of all rotations across the axes.</para>
  15289. </summary>
  15290. </member>
  15291. <member name="F:Godot.Generic6DOFJoint.Param.AngularDamping">
  15292. <summary>
  15293. <para>The amount of rotational damping across the axes. The lower, the more dampening occurs.</para>
  15294. </summary>
  15295. </member>
  15296. <member name="F:Godot.Generic6DOFJoint.Param.AngularRestitution">
  15297. <summary>
  15298. <para>The amount of rotational restitution across the axes. The lower, the more restitution occurs.</para>
  15299. </summary>
  15300. </member>
  15301. <member name="F:Godot.Generic6DOFJoint.Param.AngularForceLimit">
  15302. <summary>
  15303. <para>The maximum amount of force that can occur, when rotating around the axes.</para>
  15304. </summary>
  15305. </member>
  15306. <member name="F:Godot.Generic6DOFJoint.Param.AngularErp">
  15307. <summary>
  15308. <para>When rotating across the axes, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower.</para>
  15309. </summary>
  15310. </member>
  15311. <member name="F:Godot.Generic6DOFJoint.Param.AngularMotorTargetVelocity">
  15312. <summary>
  15313. <para>Target speed for the motor at the axes.</para>
  15314. </summary>
  15315. </member>
  15316. <member name="F:Godot.Generic6DOFJoint.Param.AngularMotorForceLimit">
  15317. <summary>
  15318. <para>Maximum acceleration for the motor at the axes.</para>
  15319. </summary>
  15320. </member>
  15321. <member name="F:Godot.Generic6DOFJoint.Param.Max">
  15322. <summary>
  15323. <para>Represents the size of the <see cref="T:Godot.Generic6DOFJoint.Param"/> enum.</para>
  15324. </summary>
  15325. </member>
  15326. <member name="F:Godot.Generic6DOFJoint.Flag.EnableLinearLimit">
  15327. <summary>
  15328. <para>If enabled, linear motion is possible within the given limits.</para>
  15329. </summary>
  15330. </member>
  15331. <member name="F:Godot.Generic6DOFJoint.Flag.EnableAngularLimit">
  15332. <summary>
  15333. <para>If enabled, rotational motion is possible within the given limits.</para>
  15334. </summary>
  15335. </member>
  15336. <member name="F:Godot.Generic6DOFJoint.Flag.EnableMotor">
  15337. <summary>
  15338. <para>If enabled, there is a rotational motor across these axes.</para>
  15339. </summary>
  15340. </member>
  15341. <member name="F:Godot.Generic6DOFJoint.Flag.EnableLinearMotor">
  15342. <summary>
  15343. <para>If enabled, there is a linear motor across these axes.</para>
  15344. </summary>
  15345. </member>
  15346. <member name="F:Godot.Generic6DOFJoint.Flag.Max">
  15347. <summary>
  15348. <para>Represents the size of the <see cref="T:Godot.Generic6DOFJoint.Flag"/> enum.</para>
  15349. </summary>
  15350. </member>
  15351. <member name="P:Godot.Generic6DOFJoint.LinearLimitX__enabled">
  15352. <summary>
  15353. <para>If <c>true</c>, the linear motion across the X axis is limited.</para>
  15354. </summary>
  15355. </member>
  15356. <member name="P:Godot.Generic6DOFJoint.LinearLimitX__upperDistance">
  15357. <summary>
  15358. <para>The maximum difference between the pivot points' X axis.</para>
  15359. </summary>
  15360. </member>
  15361. <member name="P:Godot.Generic6DOFJoint.LinearLimitX__lowerDistance">
  15362. <summary>
  15363. <para>The minimum difference between the pivot points' X axis.</para>
  15364. </summary>
  15365. </member>
  15366. <member name="P:Godot.Generic6DOFJoint.LinearLimitX__softness">
  15367. <summary>
  15368. <para>A factor applied to the movement across the X axis. The lower, the slower the movement.</para>
  15369. </summary>
  15370. </member>
  15371. <member name="P:Godot.Generic6DOFJoint.LinearLimitX__restitution">
  15372. <summary>
  15373. <para>The amount of restitution on the X axis movement. The lower, the more momentum gets lost.</para>
  15374. </summary>
  15375. </member>
  15376. <member name="P:Godot.Generic6DOFJoint.LinearLimitX__damping">
  15377. <summary>
  15378. <para>The amount of damping that happens at the X motion.</para>
  15379. </summary>
  15380. </member>
  15381. <member name="P:Godot.Generic6DOFJoint.LinearMotorX__enabled">
  15382. <summary>
  15383. <para>If <c>true</c>, then there is a linear motor on the X axis. It will attempt to reach the target velocity while staying within the force limits.</para>
  15384. </summary>
  15385. </member>
  15386. <member name="P:Godot.Generic6DOFJoint.LinearMotorX__targetVelocity">
  15387. <summary>
  15388. <para>The speed that the linear motor will attempt to reach on the X axis.</para>
  15389. </summary>
  15390. </member>
  15391. <member name="P:Godot.Generic6DOFJoint.LinearMotorX__forceLimit">
  15392. <summary>
  15393. <para>The maximum force the linear motor can apply on the X axis while trying to reach the target velocity.</para>
  15394. </summary>
  15395. </member>
  15396. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__enabled">
  15397. <summary>
  15398. <para>If <c>true</c>, rotation across the X axis is limited.</para>
  15399. </summary>
  15400. </member>
  15401. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__upperAngle">
  15402. <summary>
  15403. <para>The minimum rotation in positive direction to break loose and rotate around the X axis.</para>
  15404. </summary>
  15405. </member>
  15406. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__lowerAngle">
  15407. <summary>
  15408. <para>The minimum rotation in negative direction to break loose and rotate around the X axis.</para>
  15409. </summary>
  15410. </member>
  15411. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__softness">
  15412. <summary>
  15413. <para>The speed of all rotations across the X axis.</para>
  15414. </summary>
  15415. </member>
  15416. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__restitution">
  15417. <summary>
  15418. <para>The amount of rotational restitution across the X axis. The lower, the more restitution occurs.</para>
  15419. </summary>
  15420. </member>
  15421. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__damping">
  15422. <summary>
  15423. <para>The amount of rotational damping across the X axis.</para>
  15424. <para>The lower, the longer an impulse from one side takes to travel to the other side.</para>
  15425. </summary>
  15426. </member>
  15427. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__forceLimit">
  15428. <summary>
  15429. <para>The maximum amount of force that can occur, when rotating around the X axis.</para>
  15430. </summary>
  15431. </member>
  15432. <member name="P:Godot.Generic6DOFJoint.AngularLimitX__erp">
  15433. <summary>
  15434. <para>When rotating across the X axis, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower.</para>
  15435. </summary>
  15436. </member>
  15437. <member name="P:Godot.Generic6DOFJoint.AngularMotorX__enabled">
  15438. <summary>
  15439. <para>If <c>true</c>, a rotating motor at the X axis is enabled.</para>
  15440. </summary>
  15441. </member>
  15442. <member name="P:Godot.Generic6DOFJoint.AngularMotorX__targetVelocity">
  15443. <summary>
  15444. <para>Target speed for the motor at the X axis.</para>
  15445. </summary>
  15446. </member>
  15447. <member name="P:Godot.Generic6DOFJoint.AngularMotorX__forceLimit">
  15448. <summary>
  15449. <para>Maximum acceleration for the motor at the X axis.</para>
  15450. </summary>
  15451. </member>
  15452. <member name="P:Godot.Generic6DOFJoint.LinearLimitY__enabled">
  15453. <summary>
  15454. <para>If <c>true</c>, the linear motion across the Y axis is limited.</para>
  15455. </summary>
  15456. </member>
  15457. <member name="P:Godot.Generic6DOFJoint.LinearLimitY__upperDistance">
  15458. <summary>
  15459. <para>The maximum difference between the pivot points' Y axis.</para>
  15460. </summary>
  15461. </member>
  15462. <member name="P:Godot.Generic6DOFJoint.LinearLimitY__lowerDistance">
  15463. <summary>
  15464. <para>The minimum difference between the pivot points' Y axis.</para>
  15465. </summary>
  15466. </member>
  15467. <member name="P:Godot.Generic6DOFJoint.LinearLimitY__softness">
  15468. <summary>
  15469. <para>A factor applied to the movement across the Y axis. The lower, the slower the movement.</para>
  15470. </summary>
  15471. </member>
  15472. <member name="P:Godot.Generic6DOFJoint.LinearLimitY__restitution">
  15473. <summary>
  15474. <para>The amount of restitution on the Y axis movement. The lower, the more momentum gets lost.</para>
  15475. </summary>
  15476. </member>
  15477. <member name="P:Godot.Generic6DOFJoint.LinearLimitY__damping">
  15478. <summary>
  15479. <para>The amount of damping that happens at the Y motion.</para>
  15480. </summary>
  15481. </member>
  15482. <member name="P:Godot.Generic6DOFJoint.LinearMotorY__enabled">
  15483. <summary>
  15484. <para>If <c>true</c>, then there is a linear motor on the Y axis. It will attempt to reach the target velocity while staying within the force limits.</para>
  15485. </summary>
  15486. </member>
  15487. <member name="P:Godot.Generic6DOFJoint.LinearMotorY__targetVelocity">
  15488. <summary>
  15489. <para>The speed that the linear motor will attempt to reach on the Y axis.</para>
  15490. </summary>
  15491. </member>
  15492. <member name="P:Godot.Generic6DOFJoint.LinearMotorY__forceLimit">
  15493. <summary>
  15494. <para>The maximum force the linear motor can apply on the Y axis while trying to reach the target velocity.</para>
  15495. </summary>
  15496. </member>
  15497. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__enabled">
  15498. <summary>
  15499. <para>If <c>true</c>, rotation across the Y axis is limited.</para>
  15500. </summary>
  15501. </member>
  15502. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__upperAngle">
  15503. <summary>
  15504. <para>The minimum rotation in positive direction to break loose and rotate around the Y axis.</para>
  15505. </summary>
  15506. </member>
  15507. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__lowerAngle">
  15508. <summary>
  15509. <para>The minimum rotation in negative direction to break loose and rotate around the Y axis.</para>
  15510. </summary>
  15511. </member>
  15512. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__softness">
  15513. <summary>
  15514. <para>The speed of all rotations across the Y axis.</para>
  15515. </summary>
  15516. </member>
  15517. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__restitution">
  15518. <summary>
  15519. <para>The amount of rotational restitution across the Y axis. The lower, the more restitution occurs.</para>
  15520. </summary>
  15521. </member>
  15522. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__damping">
  15523. <summary>
  15524. <para>The amount of rotational damping across the Y axis. The lower, the more dampening occurs.</para>
  15525. </summary>
  15526. </member>
  15527. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__forceLimit">
  15528. <summary>
  15529. <para>The maximum amount of force that can occur, when rotating around the Y axis.</para>
  15530. </summary>
  15531. </member>
  15532. <member name="P:Godot.Generic6DOFJoint.AngularLimitY__erp">
  15533. <summary>
  15534. <para>When rotating across the Y axis, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower.</para>
  15535. </summary>
  15536. </member>
  15537. <member name="P:Godot.Generic6DOFJoint.AngularMotorY__enabled">
  15538. <summary>
  15539. <para>If <c>true</c>, a rotating motor at the Y axis is enabled.</para>
  15540. </summary>
  15541. </member>
  15542. <member name="P:Godot.Generic6DOFJoint.AngularMotorY__targetVelocity">
  15543. <summary>
  15544. <para>Target speed for the motor at the Y axis.</para>
  15545. </summary>
  15546. </member>
  15547. <member name="P:Godot.Generic6DOFJoint.AngularMotorY__forceLimit">
  15548. <summary>
  15549. <para>Maximum acceleration for the motor at the Y axis.</para>
  15550. </summary>
  15551. </member>
  15552. <member name="P:Godot.Generic6DOFJoint.LinearLimitZ__enabled">
  15553. <summary>
  15554. <para>If <c>true</c>, the linear motion across the Z axis is limited.</para>
  15555. </summary>
  15556. </member>
  15557. <member name="P:Godot.Generic6DOFJoint.LinearLimitZ__upperDistance">
  15558. <summary>
  15559. <para>The maximum difference between the pivot points' Z axis.</para>
  15560. </summary>
  15561. </member>
  15562. <member name="P:Godot.Generic6DOFJoint.LinearLimitZ__lowerDistance">
  15563. <summary>
  15564. <para>The minimum difference between the pivot points' Z axis.</para>
  15565. </summary>
  15566. </member>
  15567. <member name="P:Godot.Generic6DOFJoint.LinearLimitZ__softness">
  15568. <summary>
  15569. <para>A factor applied to the movement across the Z axis. The lower, the slower the movement.</para>
  15570. </summary>
  15571. </member>
  15572. <member name="P:Godot.Generic6DOFJoint.LinearLimitZ__restitution">
  15573. <summary>
  15574. <para>The amount of restitution on the Z axis movement. The lower, the more momentum gets lost.</para>
  15575. </summary>
  15576. </member>
  15577. <member name="P:Godot.Generic6DOFJoint.LinearLimitZ__damping">
  15578. <summary>
  15579. <para>The amount of damping that happens at the Z motion.</para>
  15580. </summary>
  15581. </member>
  15582. <member name="P:Godot.Generic6DOFJoint.LinearMotorZ__enabled">
  15583. <summary>
  15584. <para>If <c>true</c>, then there is a linear motor on the Z axis. It will attempt to reach the target velocity while staying within the force limits.</para>
  15585. </summary>
  15586. </member>
  15587. <member name="P:Godot.Generic6DOFJoint.LinearMotorZ__targetVelocity">
  15588. <summary>
  15589. <para>The speed that the linear motor will attempt to reach on the Z axis.</para>
  15590. </summary>
  15591. </member>
  15592. <member name="P:Godot.Generic6DOFJoint.LinearMotorZ__forceLimit">
  15593. <summary>
  15594. <para>The maximum force the linear motor can apply on the Z axis while trying to reach the target velocity.</para>
  15595. </summary>
  15596. </member>
  15597. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__enabled">
  15598. <summary>
  15599. <para>If <c>true</c>, rotation across the Z axis is limited.</para>
  15600. </summary>
  15601. </member>
  15602. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__upperAngle">
  15603. <summary>
  15604. <para>The minimum rotation in positive direction to break loose and rotate around the Z axis.</para>
  15605. </summary>
  15606. </member>
  15607. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__lowerAngle">
  15608. <summary>
  15609. <para>The minimum rotation in negative direction to break loose and rotate around the Z axis.</para>
  15610. </summary>
  15611. </member>
  15612. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__softness">
  15613. <summary>
  15614. <para>The speed of all rotations across the Z axis.</para>
  15615. </summary>
  15616. </member>
  15617. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__restitution">
  15618. <summary>
  15619. <para>The amount of rotational restitution across the Z axis. The lower, the more restitution occurs.</para>
  15620. </summary>
  15621. </member>
  15622. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__damping">
  15623. <summary>
  15624. <para>The amount of rotational damping across the Z axis. The lower, the more dampening occurs.</para>
  15625. </summary>
  15626. </member>
  15627. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__forceLimit">
  15628. <summary>
  15629. <para>The maximum amount of force that can occur, when rotating around the Z axis.</para>
  15630. </summary>
  15631. </member>
  15632. <member name="P:Godot.Generic6DOFJoint.AngularLimitZ__erp">
  15633. <summary>
  15634. <para>When rotating across the Z axis, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower.</para>
  15635. </summary>
  15636. </member>
  15637. <member name="P:Godot.Generic6DOFJoint.AngularMotorZ__enabled">
  15638. <summary>
  15639. <para>If <c>true</c>, a rotating motor at the Z axis is enabled.</para>
  15640. </summary>
  15641. </member>
  15642. <member name="P:Godot.Generic6DOFJoint.AngularMotorZ__targetVelocity">
  15643. <summary>
  15644. <para>Target speed for the motor at the Z axis.</para>
  15645. </summary>
  15646. </member>
  15647. <member name="P:Godot.Generic6DOFJoint.AngularMotorZ__forceLimit">
  15648. <summary>
  15649. <para>Maximum acceleration for the motor at the Z axis.</para>
  15650. </summary>
  15651. </member>
  15652. <member name="T:Godot.GeometryInstance">
  15653. <summary>
  15654. <para>Base node for geometry-based visual instances. Shares some common functionality like visibility and custom materials.</para>
  15655. </summary>
  15656. </member>
  15657. <member name="F:Godot.GeometryInstance.Flags.UseBakedLight">
  15658. <summary>
  15659. <para>Will allow the GeometryInstance to be used when baking lights using a <see cref="T:Godot.GIProbe"/> or <see cref="T:Godot.BakedLightmap"/>.</para>
  15660. </summary>
  15661. </member>
  15662. <member name="F:Godot.GeometryInstance.Flags.DrawNextFrameIfVisible">
  15663. <summary>
  15664. <para>Unused in this class, exposed for consistency with <see cref="T:Godot.VisualServer.InstanceFlags"/>.</para>
  15665. </summary>
  15666. </member>
  15667. <member name="F:Godot.GeometryInstance.Flags.Max">
  15668. <summary>
  15669. <para>Represents the size of the <see cref="T:Godot.GeometryInstance.Flags"/> enum.</para>
  15670. </summary>
  15671. </member>
  15672. <member name="F:Godot.GeometryInstance.ShadowCastingSetting.Off">
  15673. <summary>
  15674. <para>Will not cast any shadows.</para>
  15675. </summary>
  15676. </member>
  15677. <member name="F:Godot.GeometryInstance.ShadowCastingSetting.On">
  15678. <summary>
  15679. <para>Will cast shadows from all visible faces in the GeometryInstance.</para>
  15680. <para>Will take culling into account, so faces not being rendered will not be taken into account when shadow casting.</para>
  15681. </summary>
  15682. </member>
  15683. <member name="F:Godot.GeometryInstance.ShadowCastingSetting.DoubleSided">
  15684. <summary>
  15685. <para>Will cast shadows from all visible faces in the GeometryInstance.</para>
  15686. <para>Will not take culling into account, so all faces will be taken into account when shadow casting.</para>
  15687. </summary>
  15688. </member>
  15689. <member name="F:Godot.GeometryInstance.ShadowCastingSetting.ShadowsOnly">
  15690. <summary>
  15691. <para>Will only show the shadows casted from this object.</para>
  15692. <para>In other words, the actual mesh will not be visible, only the shadows casted from the mesh will be.</para>
  15693. </summary>
  15694. </member>
  15695. <member name="P:Godot.GeometryInstance.MaterialOverride">
  15696. <summary>
  15697. <para>The material override for the whole geometry.</para>
  15698. <para>If a material is assigned to this property, it will be used instead of any material set in any material slot of the mesh.</para>
  15699. </summary>
  15700. </member>
  15701. <member name="P:Godot.GeometryInstance.CastShadow">
  15702. <summary>
  15703. <para>The selected shadow casting flag. See <see cref="T:Godot.GeometryInstance.ShadowCastingSetting"/> for possible values.</para>
  15704. </summary>
  15705. </member>
  15706. <member name="P:Godot.GeometryInstance.ExtraCullMargin">
  15707. <summary>
  15708. <para>The extra distance added to the GeometryInstance's bounding box (<see cref="T:Godot.AABB"/>) to increase its cull box.</para>
  15709. </summary>
  15710. </member>
  15711. <member name="P:Godot.GeometryInstance.UseInBakedLight">
  15712. <summary>
  15713. <para>If <c>true</c>, this GeometryInstance will be used when baking lights using a <see cref="T:Godot.GIProbe"/> or <see cref="T:Godot.BakedLightmap"/>.</para>
  15714. </summary>
  15715. </member>
  15716. <member name="P:Godot.GeometryInstance.LodMinDistance">
  15717. <summary>
  15718. <para>The GeometryInstance's min LOD distance.</para>
  15719. <para>Note: This property currently has no effect.</para>
  15720. </summary>
  15721. </member>
  15722. <member name="P:Godot.GeometryInstance.LodMinHysteresis">
  15723. <summary>
  15724. <para>The GeometryInstance's min LOD margin.</para>
  15725. <para>Note: This property currently has no effect.</para>
  15726. </summary>
  15727. </member>
  15728. <member name="P:Godot.GeometryInstance.LodMaxDistance">
  15729. <summary>
  15730. <para>The GeometryInstance's max LOD distance.</para>
  15731. <para>Note: This property currently has no effect.</para>
  15732. </summary>
  15733. </member>
  15734. <member name="P:Godot.GeometryInstance.LodMaxHysteresis">
  15735. <summary>
  15736. <para>The GeometryInstance's max LOD margin.</para>
  15737. <para>Note: This property currently has no effect.</para>
  15738. </summary>
  15739. </member>
  15740. <member name="M:Godot.GeometryInstance.SetFlag(Godot.GeometryInstance.Flags,System.Boolean)">
  15741. <summary>
  15742. <para>Sets the <see cref="T:Godot.GeometryInstance.Flags"/> specified. See <see cref="T:Godot.GeometryInstance.Flags"/> for options.</para>
  15743. </summary>
  15744. </member>
  15745. <member name="M:Godot.GeometryInstance.GetFlag(Godot.GeometryInstance.Flags)">
  15746. <summary>
  15747. <para>Returns the <see cref="T:Godot.GeometryInstance.Flags"/> that have been set for this object.</para>
  15748. </summary>
  15749. </member>
  15750. <member name="M:Godot.GeometryInstance.SetCustomAabb(Godot.AABB)">
  15751. <summary>
  15752. <para>Overrides the bounding box of this node with a custom one. To remove it, set an <see cref="T:Godot.AABB"/> with all fields set to zero.</para>
  15753. </summary>
  15754. </member>
  15755. <member name="T:Godot.Gradient">
  15756. <summary>
  15757. <para>Given a set of colors, this resource will interpolate them in order. This means that if you have color 1, color 2 and color 3, the ramp will interpolate from color 1 to color 2 and from color 2 to color 3. The ramp will initially have 2 colors (black and white), one (black) at ramp lower offset 0 and the other (white) at the ramp higher offset 1.</para>
  15758. </summary>
  15759. </member>
  15760. <member name="P:Godot.Gradient.Offsets">
  15761. <summary>
  15762. <para>Gradient's offsets returned as a <see cref="T:System.Single"/>.</para>
  15763. </summary>
  15764. </member>
  15765. <member name="P:Godot.Gradient.Colors">
  15766. <summary>
  15767. <para>Gradient's colors returned as a <see cref="T:Godot.Color"/>.</para>
  15768. </summary>
  15769. </member>
  15770. <member name="M:Godot.Gradient.AddPoint(System.Single,Godot.Color)">
  15771. <summary>
  15772. <para>Adds the specified color to the end of the ramp, with the specified offset.</para>
  15773. </summary>
  15774. </member>
  15775. <member name="M:Godot.Gradient.RemovePoint(System.Int32)">
  15776. <summary>
  15777. <para>Removes the color at the index <c>offset</c>.</para>
  15778. </summary>
  15779. </member>
  15780. <member name="M:Godot.Gradient.SetOffset(System.Int32,System.Single)">
  15781. <summary>
  15782. <para>Sets the offset for the ramp color at index <c>point</c>.</para>
  15783. </summary>
  15784. </member>
  15785. <member name="M:Godot.Gradient.GetOffset(System.Int32)">
  15786. <summary>
  15787. <para>Returns the offset of the ramp color at index <c>point</c>.</para>
  15788. </summary>
  15789. </member>
  15790. <member name="M:Godot.Gradient.SetColor(System.Int32,Godot.Color)">
  15791. <summary>
  15792. <para>Sets the color of the ramp color at index <c>point</c>.</para>
  15793. </summary>
  15794. </member>
  15795. <member name="M:Godot.Gradient.GetColor(System.Int32)">
  15796. <summary>
  15797. <para>Returns the color of the ramp color at index <c>point</c>.</para>
  15798. </summary>
  15799. </member>
  15800. <member name="M:Godot.Gradient.Interpolate(System.Single)">
  15801. <summary>
  15802. <para>Returns the interpolated color specified by <c>offset</c>.</para>
  15803. </summary>
  15804. </member>
  15805. <member name="M:Godot.Gradient.GetPointCount">
  15806. <summary>
  15807. <para>Returns the number of colors in the ramp.</para>
  15808. </summary>
  15809. </member>
  15810. <member name="T:Godot.GradientTexture">
  15811. <summary>
  15812. <para>GradientTexture uses a <see cref="T:Godot.Gradient"/> to fill the texture data. The gradient will be filled from left to right using colors obtained from the gradient. This means the texture does not necessarily represent an exact copy of the gradient, but instead an interpolation of samples obtained from the gradient at fixed steps (see <see cref="P:Godot.GradientTexture.Width"/>).</para>
  15813. </summary>
  15814. </member>
  15815. <member name="P:Godot.GradientTexture.Gradient">
  15816. <summary>
  15817. <para>The <see cref="T:Godot.Gradient"/> that will be used to fill the texture.</para>
  15818. </summary>
  15819. </member>
  15820. <member name="P:Godot.GradientTexture.Width">
  15821. <summary>
  15822. <para>The number of color samples that will be obtained from the <see cref="T:Godot.Gradient"/>.</para>
  15823. </summary>
  15824. </member>
  15825. <member name="T:Godot.GraphEdit">
  15826. <summary>
  15827. <para>GraphEdit manages the showing of GraphNodes it contains, as well as connections and disconnections between them. Signals are sent for each of these two events. Disconnection between GraphNode slots is disabled by default.</para>
  15828. <para>It is greatly advised to enable low-processor usage mode (see <see cref="P:Godot.OS.LowProcessorUsageMode"/>) when using GraphEdits.</para>
  15829. </summary>
  15830. </member>
  15831. <member name="P:Godot.GraphEdit.RightDisconnects">
  15832. <summary>
  15833. <para>If <c>true</c>, enables disconnection of existing connections in the GraphEdit by dragging the right end.</para>
  15834. </summary>
  15835. </member>
  15836. <member name="P:Godot.GraphEdit.ScrollOffset">
  15837. <summary>
  15838. <para>The scroll offset.</para>
  15839. </summary>
  15840. </member>
  15841. <member name="P:Godot.GraphEdit.SnapDistance">
  15842. <summary>
  15843. <para>The snapping distance in pixels.</para>
  15844. </summary>
  15845. </member>
  15846. <member name="P:Godot.GraphEdit.UseSnap">
  15847. <summary>
  15848. <para>If <c>true</c>, enables snapping.</para>
  15849. </summary>
  15850. </member>
  15851. <member name="P:Godot.GraphEdit.Zoom">
  15852. <summary>
  15853. <para>The current zoom value.</para>
  15854. </summary>
  15855. </member>
  15856. <member name="M:Godot.GraphEdit.ConnectNode(System.String,System.Int32,System.String,System.Int32)">
  15857. <summary>
  15858. <para>Create a connection between the <c>from_port</c> slot of the <c>from</c> GraphNode and the <c>to_port</c> slot of the <c>to</c> GraphNode. If the connection already exists, no connection is created.</para>
  15859. </summary>
  15860. </member>
  15861. <member name="M:Godot.GraphEdit.IsNodeConnected(System.String,System.Int32,System.String,System.Int32)">
  15862. <summary>
  15863. <para>Returns <c>true</c> if the <c>from_port</c> slot of the <c>from</c> GraphNode is connected to the <c>to_port</c> slot of the <c>to</c> GraphNode.</para>
  15864. </summary>
  15865. </member>
  15866. <member name="M:Godot.GraphEdit.DisconnectNode(System.String,System.Int32,System.String,System.Int32)">
  15867. <summary>
  15868. <para>Removes the connection between the <c>from_port</c> slot of the <c>from</c> GraphNode and the <c>to_port</c> slot of the <c>to</c> GraphNode. If the connection does not exist, no connection is removed.</para>
  15869. </summary>
  15870. </member>
  15871. <member name="M:Godot.GraphEdit.SetConnectionActivity(System.String,System.Int32,System.String,System.Int32,System.Single)">
  15872. <summary>
  15873. <para>Sets the coloration of the connection between <c>from</c>'s <c>from_port</c> and <c>to</c>'s <c>to_port</c> with the color provided in the <c>activity</c> theme property.</para>
  15874. </summary>
  15875. </member>
  15876. <member name="M:Godot.GraphEdit.GetConnectionList">
  15877. <summary>
  15878. <para>Returns an Array containing the list of connections. A connection consists in a structure of the form <c>{ from_port: 0, from: "GraphNode name 0", to_port: 1, to: "GraphNode name 1" }</c>.</para>
  15879. </summary>
  15880. </member>
  15881. <member name="M:Godot.GraphEdit.ClearConnections">
  15882. <summary>
  15883. <para>Removes all connections between nodes.</para>
  15884. </summary>
  15885. </member>
  15886. <member name="M:Godot.GraphEdit.AddValidRightDisconnectType(System.Int32)">
  15887. <summary>
  15888. <para>Makes possible to disconnect nodes when dragging from the slot at the right if it has the specified type.</para>
  15889. </summary>
  15890. </member>
  15891. <member name="M:Godot.GraphEdit.RemoveValidRightDisconnectType(System.Int32)">
  15892. <summary>
  15893. <para>Removes the possibility to disconnect nodes when dragging from the slot at the right if it has the specified type.</para>
  15894. </summary>
  15895. </member>
  15896. <member name="M:Godot.GraphEdit.AddValidLeftDisconnectType(System.Int32)">
  15897. <summary>
  15898. <para>Makes possible to disconnect nodes when dragging from the slot at the left if it has the specified type.</para>
  15899. </summary>
  15900. </member>
  15901. <member name="M:Godot.GraphEdit.RemoveValidLeftDisconnectType(System.Int32)">
  15902. <summary>
  15903. <para>Removes the possibility to disconnect nodes when dragging from the slot at the left if it has the specified type.</para>
  15904. </summary>
  15905. </member>
  15906. <member name="M:Godot.GraphEdit.AddValidConnectionType(System.Int32,System.Int32)">
  15907. <summary>
  15908. <para>Makes possible the connection between two different slot types. The type is defined with the <see cref="M:Godot.GraphNode.SetSlot(System.Int32,System.Boolean,System.Int32,Godot.Color,System.Boolean,System.Int32,Godot.Color,Godot.Texture,Godot.Texture)"/> method.</para>
  15909. </summary>
  15910. </member>
  15911. <member name="M:Godot.GraphEdit.RemoveValidConnectionType(System.Int32,System.Int32)">
  15912. <summary>
  15913. <para>Makes it not possible to connect between two different slot types. The type is defined with the <see cref="M:Godot.GraphNode.SetSlot(System.Int32,System.Boolean,System.Int32,Godot.Color,System.Boolean,System.Int32,Godot.Color,Godot.Texture,Godot.Texture)"/> method.</para>
  15914. </summary>
  15915. </member>
  15916. <member name="M:Godot.GraphEdit.IsValidConnectionType(System.Int32,System.Int32)">
  15917. <summary>
  15918. <para>Returns whether it's possible to connect slots of the specified types.</para>
  15919. </summary>
  15920. </member>
  15921. <member name="M:Godot.GraphEdit.GetZoomHbox">
  15922. <summary>
  15923. <para>Gets the <see cref="T:Godot.HBoxContainer"/> that contains the zooming and grid snap controls in the top left of the graph.</para>
  15924. <para>Warning: The intended usage of this function is to allow you to reposition or add your own custom controls to the container. This is an internal control and as such should not be freed. If you wish to hide this or any of it's children use their <see cref="P:Godot.CanvasItem.Visible"/> property instead.</para>
  15925. </summary>
  15926. </member>
  15927. <member name="M:Godot.GraphEdit.SetSelected(Godot.Node)">
  15928. <summary>
  15929. <para>Sets the specified <c>node</c> as the one selected.</para>
  15930. </summary>
  15931. </member>
  15932. <member name="T:Godot.GraphNode">
  15933. <summary>
  15934. <para>A GraphNode is a container. Each GraphNode can have several input and output slots, sometimes referred to as ports, allowing connections between GraphNodes. To add a slot to GraphNode, add any <see cref="T:Godot.Control"/>-derived child node to it.</para>
  15935. <para>After adding at least one child to GraphNode new sections will be automatically created in the Inspector called 'Slot'. When 'Slot' is expanded you will see list with index number for each slot. You can click on each of them to expand further.</para>
  15936. <para>In the Inspector you can enable (show) or disable (hide) slots. By default all slots are disabled so you may not see any slots on your GraphNode initially. You can assign a type to each slot. Only slots of the same type will be able to connect to each other. You can also assign colors to slots. A tuple of input and output slots is defined for each GUI element included in the GraphNode. Input connections are on the left and output connections are on the right side of GraphNode. Only enabled slots are counted as connections.</para>
  15937. </summary>
  15938. </member>
  15939. <member name="F:Godot.GraphNode.OverlayEnum.Disabled">
  15940. <summary>
  15941. <para>No overlay is shown.</para>
  15942. </summary>
  15943. </member>
  15944. <member name="F:Godot.GraphNode.OverlayEnum.Breakpoint">
  15945. <summary>
  15946. <para>Show overlay set in the <c>breakpoint</c> theme property.</para>
  15947. </summary>
  15948. </member>
  15949. <member name="F:Godot.GraphNode.OverlayEnum.Position">
  15950. <summary>
  15951. <para>Show overlay set in the <c>position</c> theme property.</para>
  15952. </summary>
  15953. </member>
  15954. <member name="P:Godot.GraphNode.Title">
  15955. <summary>
  15956. <para>The text displayed in the GraphNode's title bar.</para>
  15957. </summary>
  15958. </member>
  15959. <member name="P:Godot.GraphNode.Offset">
  15960. <summary>
  15961. <para>The offset of the GraphNode, relative to the scroll offset of the <see cref="T:Godot.GraphEdit"/>.</para>
  15962. <para>Note: You cannot use position directly, as <see cref="T:Godot.GraphEdit"/> is a <see cref="T:Godot.Container"/>.</para>
  15963. </summary>
  15964. </member>
  15965. <member name="P:Godot.GraphNode.ShowClose">
  15966. <summary>
  15967. <para>If <c>true</c>, the close button will be visible.</para>
  15968. <para>Note: Pressing it will only emit the <c>close_request</c> signal, the GraphNode needs to be removed manually.</para>
  15969. </summary>
  15970. </member>
  15971. <member name="P:Godot.GraphNode.Resizable">
  15972. <summary>
  15973. <para>If <c>true</c>, the user can resize the GraphNode.</para>
  15974. <para>Note: Dragging the handle will only emit the <c>resize_request</c> signal, the GraphNode needs to be resized manually.</para>
  15975. </summary>
  15976. </member>
  15977. <member name="P:Godot.GraphNode.Selected">
  15978. <summary>
  15979. <para>If <c>true</c>, the GraphNode is selected.</para>
  15980. </summary>
  15981. </member>
  15982. <member name="P:Godot.GraphNode.Comment">
  15983. <summary>
  15984. <para>If <c>true</c>, the GraphNode is a comment node.</para>
  15985. </summary>
  15986. </member>
  15987. <member name="P:Godot.GraphNode.Overlay">
  15988. <summary>
  15989. <para>Sets the overlay shown above the GraphNode. See <see cref="T:Godot.GraphNode.OverlayEnum"/>.</para>
  15990. </summary>
  15991. </member>
  15992. <member name="M:Godot.GraphNode.SetSlot(System.Int32,System.Boolean,System.Int32,Godot.Color,System.Boolean,System.Int32,Godot.Color,Godot.Texture,Godot.Texture)">
  15993. <summary>
  15994. <para>Sets properties of the slot with ID <c>idx</c>.</para>
  15995. <para>If <c>enable_left</c>/<c>right</c>, a port will appear and the slot will be able to be connected from this side.</para>
  15996. <para><c>type_left</c>/<c>right</c> is an arbitrary type of the port. Only ports with the same type values can be connected.</para>
  15997. <para><c>color_left</c>/<c>right</c> is the tint of the port's icon on this side.</para>
  15998. <para><c>custom_left</c>/<c>right</c> is a custom texture for this side's port.</para>
  15999. <para>Note: This method only sets properties of the slot. To create the slot, add a <see cref="T:Godot.Control"/>-derived child to the GraphNode.</para>
  16000. </summary>
  16001. </member>
  16002. <member name="M:Godot.GraphNode.ClearSlot(System.Int32)">
  16003. <summary>
  16004. <para>Disables input and output slot whose index is <c>idx</c>.</para>
  16005. </summary>
  16006. </member>
  16007. <member name="M:Godot.GraphNode.ClearAllSlots">
  16008. <summary>
  16009. <para>Disables all input and output slots of the GraphNode.</para>
  16010. </summary>
  16011. </member>
  16012. <member name="M:Godot.GraphNode.IsSlotEnabledLeft(System.Int32)">
  16013. <summary>
  16014. <para>Returns <c>true</c> if left (input) slot <c>idx</c> is enabled, <c>false</c> otherwise.</para>
  16015. </summary>
  16016. </member>
  16017. <member name="M:Godot.GraphNode.GetSlotTypeLeft(System.Int32)">
  16018. <summary>
  16019. <para>Returns the (integer) type of left (input) <c>idx</c> slot.</para>
  16020. </summary>
  16021. </member>
  16022. <member name="M:Godot.GraphNode.GetSlotColorLeft(System.Int32)">
  16023. <summary>
  16024. <para>Returns the color set to <c>idx</c> left (input) slot.</para>
  16025. </summary>
  16026. </member>
  16027. <member name="M:Godot.GraphNode.IsSlotEnabledRight(System.Int32)">
  16028. <summary>
  16029. <para>Returns <c>true</c> if right (output) slot <c>idx</c> is enabled, <c>false</c> otherwise.</para>
  16030. </summary>
  16031. </member>
  16032. <member name="M:Godot.GraphNode.GetSlotTypeRight(System.Int32)">
  16033. <summary>
  16034. <para>Returns the (integer) type of right (output) <c>idx</c> slot.</para>
  16035. </summary>
  16036. </member>
  16037. <member name="M:Godot.GraphNode.GetSlotColorRight(System.Int32)">
  16038. <summary>
  16039. <para>Returns the color set to <c>idx</c> right (output) slot.</para>
  16040. </summary>
  16041. </member>
  16042. <member name="M:Godot.GraphNode.GetConnectionOutputCount">
  16043. <summary>
  16044. <para>Returns the number of enabled output slots (connections) of the GraphNode.</para>
  16045. </summary>
  16046. </member>
  16047. <member name="M:Godot.GraphNode.GetConnectionInputCount">
  16048. <summary>
  16049. <para>Returns the number of enabled input slots (connections) to the GraphNode.</para>
  16050. </summary>
  16051. </member>
  16052. <member name="M:Godot.GraphNode.GetConnectionOutputPosition(System.Int32)">
  16053. <summary>
  16054. <para>Returns the position of the output connection <c>idx</c>.</para>
  16055. </summary>
  16056. </member>
  16057. <member name="M:Godot.GraphNode.GetConnectionOutputType(System.Int32)">
  16058. <summary>
  16059. <para>Returns the type of the output connection <c>idx</c>.</para>
  16060. </summary>
  16061. </member>
  16062. <member name="M:Godot.GraphNode.GetConnectionOutputColor(System.Int32)">
  16063. <summary>
  16064. <para>Returns the color of the output connection <c>idx</c>.</para>
  16065. </summary>
  16066. </member>
  16067. <member name="M:Godot.GraphNode.GetConnectionInputPosition(System.Int32)">
  16068. <summary>
  16069. <para>Returns the position of the input connection <c>idx</c>.</para>
  16070. </summary>
  16071. </member>
  16072. <member name="M:Godot.GraphNode.GetConnectionInputType(System.Int32)">
  16073. <summary>
  16074. <para>Returns the type of the input connection <c>idx</c>.</para>
  16075. </summary>
  16076. </member>
  16077. <member name="M:Godot.GraphNode.GetConnectionInputColor(System.Int32)">
  16078. <summary>
  16079. <para>Returns the color of the input connection <c>idx</c>.</para>
  16080. </summary>
  16081. </member>
  16082. <member name="T:Godot.GridContainer">
  16083. <summary>
  16084. <para>Grid container will arrange its children in a grid like structure, the grid columns are specified using the <see cref="P:Godot.GridContainer.Columns"/> property and the number of rows will be equal to the number of children in the container divided by the number of columns. For example, if the container has 5 children, and 2 columns, there will be 3 rows in the container.</para>
  16085. <para>Notice that grid layout will preserve the columns and rows for every size of the container, and that empty columns will be expanded automatically.</para>
  16086. </summary>
  16087. </member>
  16088. <member name="P:Godot.GridContainer.Columns">
  16089. <summary>
  16090. <para>The number of columns in the <see cref="T:Godot.GridContainer"/>. If modified, <see cref="T:Godot.GridContainer"/> reorders its children to accommodate the new layout.</para>
  16091. </summary>
  16092. </member>
  16093. <member name="T:Godot.GridMap">
  16094. <summary>
  16095. <para>GridMap lets you place meshes on a grid interactively. It works both from the editor and from scripts, which can help you create in-game level editors.</para>
  16096. <para>GridMaps use a <see cref="T:Godot.MeshLibrary"/> which contains a list of tiles. Each tile is a mesh with materials plus optional collision and navigation shapes.</para>
  16097. <para>A GridMap contains a collection of cells. Each grid cell refers to a tile in the <see cref="T:Godot.MeshLibrary"/>. All cells in the map have the same dimensions.</para>
  16098. <para>Internally, a GridMap is split into a sparse collection of octants for efficient rendering and physics processing. Every octant has the same dimensions and can contain several cells.</para>
  16099. </summary>
  16100. </member>
  16101. <member name="F:Godot.GridMap.InvalidCellItem">
  16102. <summary>
  16103. <para>Invalid cell item that can be used in <see cref="M:Godot.GridMap.SetCellItem(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)"/> to clear cells (or represent an empty cell in <see cref="M:Godot.GridMap.GetCellItem(System.Int32,System.Int32,System.Int32)"/>).</para>
  16104. </summary>
  16105. </member>
  16106. <member name="P:Godot.GridMap.MeshLibrary">
  16107. <summary>
  16108. <para>The assigned <see cref="T:Godot.MeshLibrary"/>.</para>
  16109. </summary>
  16110. </member>
  16111. <member name="P:Godot.GridMap.CellSize">
  16112. <summary>
  16113. <para>The dimensions of the grid's cells.</para>
  16114. <para>This does not affect the size of the meshes. See <see cref="P:Godot.GridMap.CellScale"/>.</para>
  16115. </summary>
  16116. </member>
  16117. <member name="P:Godot.GridMap.CellOctantSize">
  16118. <summary>
  16119. <para>The size of each octant measured in number of cells. This applies to all three axis.</para>
  16120. </summary>
  16121. </member>
  16122. <member name="P:Godot.GridMap.CellCenterX">
  16123. <summary>
  16124. <para>If <c>true</c>, grid items are centered on the X axis.</para>
  16125. </summary>
  16126. </member>
  16127. <member name="P:Godot.GridMap.CellCenterY">
  16128. <summary>
  16129. <para>If <c>true</c>, grid items are centered on the Y axis.</para>
  16130. </summary>
  16131. </member>
  16132. <member name="P:Godot.GridMap.CellCenterZ">
  16133. <summary>
  16134. <para>If <c>true</c>, grid items are centered on the Z axis.</para>
  16135. </summary>
  16136. </member>
  16137. <member name="P:Godot.GridMap.CellScale">
  16138. <summary>
  16139. <para>The scale of the cell items.</para>
  16140. <para>This does not affect the size of the grid cells themselves, only the items in them. This can be used to make cell items overlap their neighbors.</para>
  16141. </summary>
  16142. </member>
  16143. <member name="P:Godot.GridMap.CollisionLayer">
  16144. <summary>
  16145. <para>The physics layers this GridMap is in.</para>
  16146. <para>GridMaps act as static bodies, meaning they aren't affected by gravity or other forces. They only affect other physics bodies that collide with them.</para>
  16147. </summary>
  16148. </member>
  16149. <member name="P:Godot.GridMap.CollisionMask">
  16150. <summary>
  16151. <para>The physics layers this GridMap detects collisions in.</para>
  16152. </summary>
  16153. </member>
  16154. <member name="M:Godot.GridMap.SetCollisionMaskBit(System.Int32,System.Boolean)">
  16155. <summary>
  16156. <para>Sets an individual bit on the <see cref="P:Godot.GridMap.CollisionMask"/>.</para>
  16157. </summary>
  16158. </member>
  16159. <member name="M:Godot.GridMap.GetCollisionMaskBit(System.Int32)">
  16160. <summary>
  16161. <para>Returns an individual bit on the <see cref="P:Godot.GridMap.CollisionMask"/>.</para>
  16162. </summary>
  16163. </member>
  16164. <member name="M:Godot.GridMap.SetCollisionLayerBit(System.Int32,System.Boolean)">
  16165. <summary>
  16166. <para>Sets an individual bit on the <see cref="P:Godot.GridMap.CollisionLayer"/>.</para>
  16167. </summary>
  16168. </member>
  16169. <member name="M:Godot.GridMap.GetCollisionLayerBit(System.Int32)">
  16170. <summary>
  16171. <para>Returns an individual bit on the <see cref="P:Godot.GridMap.CollisionLayer"/>.</para>
  16172. </summary>
  16173. </member>
  16174. <member name="M:Godot.GridMap.SetCellItem(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  16175. <summary>
  16176. <para>Sets the mesh index for the cell referenced by its grid-based X, Y and Z coordinates.</para>
  16177. <para>A negative item index such as will clear the cell.</para>
  16178. <para>Optionally, the item's orientation can be passed. For valid orientation values, see <c>Basis.get_orthogonal_index</c>.</para>
  16179. </summary>
  16180. </member>
  16181. <member name="M:Godot.GridMap.GetCellItem(System.Int32,System.Int32,System.Int32)">
  16182. <summary>
  16183. <para>The <see cref="T:Godot.MeshLibrary"/> item index located at the grid-based X, Y and Z coordinates. If the cell is empty, will be returned.</para>
  16184. </summary>
  16185. </member>
  16186. <member name="M:Godot.GridMap.GetCellItemOrientation(System.Int32,System.Int32,System.Int32)">
  16187. <summary>
  16188. <para>The orientation of the cell at the grid-based X, Y and Z coordinates. -1 is returned if the cell is empty.</para>
  16189. </summary>
  16190. </member>
  16191. <member name="M:Godot.GridMap.WorldToMap(Godot.Vector3)">
  16192. <summary>
  16193. <para>Returns the coordinates of the grid cell containing the given point.</para>
  16194. <para><c>pos</c> should be in the GridMap's local coordinate space.</para>
  16195. </summary>
  16196. </member>
  16197. <member name="M:Godot.GridMap.MapToWorld(System.Int32,System.Int32,System.Int32)">
  16198. <summary>
  16199. <para>Returns the position of a grid cell in the GridMap's local coordinate space.</para>
  16200. </summary>
  16201. </member>
  16202. <member name="M:Godot.GridMap.Clear">
  16203. <summary>
  16204. <para>Clear all cells.</para>
  16205. </summary>
  16206. </member>
  16207. <member name="M:Godot.GridMap.GetUsedCells">
  16208. <summary>
  16209. <para>Returns an array of <see cref="T:Godot.Vector3"/> with the non-empty cell coordinates in the grid map.</para>
  16210. </summary>
  16211. </member>
  16212. <member name="M:Godot.GridMap.GetMeshes">
  16213. <summary>
  16214. <para>Returns an array of <see cref="T:Godot.Transform"/> and <see cref="T:Godot.Mesh"/> references corresponding to the non-empty cells in the grid. The transforms are specified in world space.</para>
  16215. </summary>
  16216. </member>
  16217. <member name="T:Godot.GrooveJoint2D">
  16218. <summary>
  16219. <para>Groove constraint for 2D physics. This is useful for making a body "slide" through a segment placed in another.</para>
  16220. </summary>
  16221. </member>
  16222. <member name="P:Godot.GrooveJoint2D.Length">
  16223. <summary>
  16224. <para>The groove's length. The groove is from the joint's origin towards <see cref="P:Godot.GrooveJoint2D.Length"/> along the joint's local Y axis.</para>
  16225. </summary>
  16226. </member>
  16227. <member name="P:Godot.GrooveJoint2D.InitialOffset">
  16228. <summary>
  16229. <para>The body B's initial anchor position defined by the joint's origin and a local offset <see cref="P:Godot.GrooveJoint2D.InitialOffset"/> along the joint's Y axis (along the groove).</para>
  16230. </summary>
  16231. </member>
  16232. <member name="T:Godot.HBoxContainer">
  16233. <summary>
  16234. <para>Horizontal box container. See <see cref="T:Godot.BoxContainer"/>.</para>
  16235. </summary>
  16236. </member>
  16237. <member name="T:Godot.HScrollBar">
  16238. <summary>
  16239. <para>Horizontal version of <see cref="T:Godot.ScrollBar"/>, which goes from left (min) to right (max).</para>
  16240. </summary>
  16241. </member>
  16242. <member name="T:Godot.HSeparator">
  16243. <summary>
  16244. <para>Horizontal separator. See <see cref="T:Godot.Separator"/>. Even though it looks horizontal, it is used to separate objects vertically.</para>
  16245. </summary>
  16246. </member>
  16247. <member name="T:Godot.HSlider">
  16248. <summary>
  16249. <para>Horizontal slider. See <see cref="T:Godot.Slider"/>. This one goes from left (min) to right (max).</para>
  16250. </summary>
  16251. </member>
  16252. <member name="T:Godot.HSplitContainer">
  16253. <summary>
  16254. <para>Horizontal split container. See <see cref="T:Godot.SplitContainer"/>. This goes from left to right.</para>
  16255. </summary>
  16256. </member>
  16257. <member name="T:Godot.HTTPClient">
  16258. <summary>
  16259. <para>Hyper-text transfer protocol client (sometimes called "User Agent"). Used to make HTTP requests to download web content, upload files and other data or to communicate with various services, among other use cases. See <see cref="T:Godot.HTTPRequest"/> for an higher-level alternative.</para>
  16260. <para>Note: This client only needs to connect to a host once (see <see cref="M:Godot.HTTPClient.ConnectToHost(System.String,System.Int32,System.Boolean,System.Boolean)"/>) to send multiple requests. Because of this, methods that take URLs usually take just the part after the host instead of the full URL, as the client is already connected to a host. See <see cref="M:Godot.HTTPClient.Request(Godot.HTTPClient.Method,System.String,System.String[],System.String)"/> for a full example and to get started.</para>
  16261. <para>A <see cref="T:Godot.HTTPClient"/> should be reused between multiple requests or to connect to different hosts instead of creating one client per request. Supports SSL and SSL server certificate verification. HTTP status codes in the 2xx range indicate success, 3xx redirection (i.e. "try again, but over here"), 4xx something was wrong with the request, and 5xx something went wrong on the server's side.</para>
  16262. <para>For more information on HTTP, see https://developer.mozilla.org/en-US/docs/Web/HTTP (or read RFC 2616 to get it straight from the source: https://tools.ietf.org/html/rfc2616).</para>
  16263. </summary>
  16264. </member>
  16265. <member name="F:Godot.HTTPClient.Status.Disconnected">
  16266. <summary>
  16267. <para>Status: Disconnected from the server.</para>
  16268. </summary>
  16269. </member>
  16270. <member name="F:Godot.HTTPClient.Status.Resolving">
  16271. <summary>
  16272. <para>Status: Currently resolving the hostname for the given URL into an IP.</para>
  16273. </summary>
  16274. </member>
  16275. <member name="F:Godot.HTTPClient.Status.CantResolve">
  16276. <summary>
  16277. <para>Status: DNS failure: Can't resolve the hostname for the given URL.</para>
  16278. </summary>
  16279. </member>
  16280. <member name="F:Godot.HTTPClient.Status.Connecting">
  16281. <summary>
  16282. <para>Status: Currently connecting to server.</para>
  16283. </summary>
  16284. </member>
  16285. <member name="F:Godot.HTTPClient.Status.CantConnect">
  16286. <summary>
  16287. <para>Status: Can't connect to the server.</para>
  16288. </summary>
  16289. </member>
  16290. <member name="F:Godot.HTTPClient.Status.Connected">
  16291. <summary>
  16292. <para>Status: Connection established.</para>
  16293. </summary>
  16294. </member>
  16295. <member name="F:Godot.HTTPClient.Status.Requesting">
  16296. <summary>
  16297. <para>Status: Currently sending request.</para>
  16298. </summary>
  16299. </member>
  16300. <member name="F:Godot.HTTPClient.Status.Body">
  16301. <summary>
  16302. <para>Status: HTTP body received.</para>
  16303. </summary>
  16304. </member>
  16305. <member name="F:Godot.HTTPClient.Status.ConnectionError">
  16306. <summary>
  16307. <para>Status: Error in HTTP connection.</para>
  16308. </summary>
  16309. </member>
  16310. <member name="F:Godot.HTTPClient.Status.SslHandshakeError">
  16311. <summary>
  16312. <para>Status: Error in SSL handshake.</para>
  16313. </summary>
  16314. </member>
  16315. <member name="F:Godot.HTTPClient.Method.Get">
  16316. <summary>
  16317. <para>HTTP GET method. The GET method requests a representation of the specified resource. Requests using GET should only retrieve data.</para>
  16318. </summary>
  16319. </member>
  16320. <member name="F:Godot.HTTPClient.Method.Head">
  16321. <summary>
  16322. <para>HTTP HEAD method. The HEAD method asks for a response identical to that of a GET request, but without the response body. This is useful to request metadata like HTTP headers or to check if a resource exists.</para>
  16323. </summary>
  16324. </member>
  16325. <member name="F:Godot.HTTPClient.Method.Post">
  16326. <summary>
  16327. <para>HTTP POST method. The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server. This is often used for forms and submitting data or uploading files.</para>
  16328. </summary>
  16329. </member>
  16330. <member name="F:Godot.HTTPClient.Method.Put">
  16331. <summary>
  16332. <para>HTTP PUT method. The PUT method asks to replace all current representations of the target resource with the request payload. (You can think of POST as "create or update" and PUT as "update", although many services tend to not make a clear distinction or change their meaning).</para>
  16333. </summary>
  16334. </member>
  16335. <member name="F:Godot.HTTPClient.Method.Delete">
  16336. <summary>
  16337. <para>HTTP DELETE method. The DELETE method requests to delete the specified resource.</para>
  16338. </summary>
  16339. </member>
  16340. <member name="F:Godot.HTTPClient.Method.Options">
  16341. <summary>
  16342. <para>HTTP OPTIONS method. The OPTIONS method asks for a description of the communication options for the target resource. Rarely used.</para>
  16343. </summary>
  16344. </member>
  16345. <member name="F:Godot.HTTPClient.Method.Trace">
  16346. <summary>
  16347. <para>HTTP TRACE method. The TRACE method performs a message loop-back test along the path to the target resource. Returns the entire HTTP request received in the response body. Rarely used.</para>
  16348. </summary>
  16349. </member>
  16350. <member name="F:Godot.HTTPClient.Method.Connect">
  16351. <summary>
  16352. <para>HTTP CONNECT method. The CONNECT method establishes a tunnel to the server identified by the target resource. Rarely used.</para>
  16353. </summary>
  16354. </member>
  16355. <member name="F:Godot.HTTPClient.Method.Patch">
  16356. <summary>
  16357. <para>HTTP PATCH method. The PATCH method is used to apply partial modifications to a resource.</para>
  16358. </summary>
  16359. </member>
  16360. <member name="F:Godot.HTTPClient.Method.Max">
  16361. <summary>
  16362. <para>Represents the size of the <see cref="T:Godot.HTTPClient.Method"/> enum.</para>
  16363. </summary>
  16364. </member>
  16365. <member name="F:Godot.HTTPClient.ResponseCode.Continue">
  16366. <summary>
  16367. <para>HTTP status code <c>100 Continue</c>. Interim response that indicates everything so far is OK and that the client should continue with the request (or ignore this status if already finished).</para>
  16368. </summary>
  16369. </member>
  16370. <member name="F:Godot.HTTPClient.ResponseCode.SwitchingProtocols">
  16371. <summary>
  16372. <para>HTTP status code <c>101 Switching Protocol</c>. Sent in response to an <c>Upgrade</c> request header by the client. Indicates the protocol the server is switching to.</para>
  16373. </summary>
  16374. </member>
  16375. <member name="F:Godot.HTTPClient.ResponseCode.Processing">
  16376. <summary>
  16377. <para>HTTP status code <c>102 Processing</c> (WebDAV). Indicates that the server has received and is processing the request, but no response is available yet.</para>
  16378. </summary>
  16379. </member>
  16380. <member name="F:Godot.HTTPClient.ResponseCode.Ok">
  16381. <summary>
  16382. <para>HTTP status code <c>200 OK</c>. The request has succeeded. Default response for successful requests. Meaning varies depending on the request. GET: The resource has been fetched and is transmitted in the message body. HEAD: The entity headers are in the message body. POST: The resource describing the result of the action is transmitted in the message body. TRACE: The message body contains the request message as received by the server.</para>
  16383. </summary>
  16384. </member>
  16385. <member name="F:Godot.HTTPClient.ResponseCode.Created">
  16386. <summary>
  16387. <para>HTTP status code <c>201 Created</c>. The request has succeeded and a new resource has been created as a result of it. This is typically the response sent after a PUT request.</para>
  16388. </summary>
  16389. </member>
  16390. <member name="F:Godot.HTTPClient.ResponseCode.Accepted">
  16391. <summary>
  16392. <para>HTTP status code <c>202 Accepted</c>. The request has been received but not yet acted upon. It is non-committal, meaning that there is no way in HTTP to later send an asynchronous response indicating the outcome of processing the request. It is intended for cases where another process or server handles the request, or for batch processing.</para>
  16393. </summary>
  16394. </member>
  16395. <member name="F:Godot.HTTPClient.ResponseCode.NonAuthoritativeInformation">
  16396. <summary>
  16397. <para>HTTP status code <c>203 Non-Authoritative Information</c>. This response code means returned meta-information set is not exact set as available from the origin server, but collected from a local or a third party copy. Except this condition, 200 OK response should be preferred instead of this response.</para>
  16398. </summary>
  16399. </member>
  16400. <member name="F:Godot.HTTPClient.ResponseCode.NoContent">
  16401. <summary>
  16402. <para>HTTP status code <c>204 No Content</c>. There is no content to send for this request, but the headers may be useful. The user-agent may update its cached headers for this resource with the new ones.</para>
  16403. </summary>
  16404. </member>
  16405. <member name="F:Godot.HTTPClient.ResponseCode.ResetContent">
  16406. <summary>
  16407. <para>HTTP status code <c>205 Reset Content</c>. The server has fulfilled the request and desires that the client resets the "document view" that caused the request to be sent to its original state as received from the origin server.</para>
  16408. </summary>
  16409. </member>
  16410. <member name="F:Godot.HTTPClient.ResponseCode.PartialContent">
  16411. <summary>
  16412. <para>HTTP status code <c>206 Partial Content</c>. This response code is used because of a range header sent by the client to separate download into multiple streams.</para>
  16413. </summary>
  16414. </member>
  16415. <member name="F:Godot.HTTPClient.ResponseCode.MultiStatus">
  16416. <summary>
  16417. <para>HTTP status code <c>207 Multi-Status</c> (WebDAV). A Multi-Status response conveys information about multiple resources in situations where multiple status codes might be appropriate.</para>
  16418. </summary>
  16419. </member>
  16420. <member name="F:Godot.HTTPClient.ResponseCode.AlreadyReported">
  16421. <summary>
  16422. <para>HTTP status code <c>208 Already Reported</c> (WebDAV). Used inside a DAV: propstat response element to avoid enumerating the internal members of multiple bindings to the same collection repeatedly.</para>
  16423. </summary>
  16424. </member>
  16425. <member name="F:Godot.HTTPClient.ResponseCode.ImUsed">
  16426. <summary>
  16427. <para>HTTP status code <c>226 IM Used</c> (WebDAV). The server has fulfilled a GET request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance.</para>
  16428. </summary>
  16429. </member>
  16430. <member name="F:Godot.HTTPClient.ResponseCode.MultipleChoices">
  16431. <summary>
  16432. <para>HTTP status code <c>300 Multiple Choice</c>. The request has more than one possible responses and there is no standardized way to choose one of the responses. User-agent or user should choose one of them.</para>
  16433. </summary>
  16434. </member>
  16435. <member name="F:Godot.HTTPClient.ResponseCode.MovedPermanently">
  16436. <summary>
  16437. <para>HTTP status code <c>301 Moved Permanently</c>. Redirection. This response code means the URI of requested resource has been changed. The new URI is usually included in the response.</para>
  16438. </summary>
  16439. </member>
  16440. <member name="F:Godot.HTTPClient.ResponseCode.Found">
  16441. <summary>
  16442. <para>HTTP status code <c>302 Found</c>. Temporary redirection. This response code means the URI of requested resource has been changed temporarily. New changes in the URI might be made in the future. Therefore, this same URI should be used by the client in future requests.</para>
  16443. </summary>
  16444. </member>
  16445. <member name="F:Godot.HTTPClient.ResponseCode.SeeOther">
  16446. <summary>
  16447. <para>HTTP status code <c>303 See Other</c>. The server is redirecting the user agent to a different resource, as indicated by a URI in the Location header field, which is intended to provide an indirect response to the original request.</para>
  16448. </summary>
  16449. </member>
  16450. <member name="F:Godot.HTTPClient.ResponseCode.NotModified">
  16451. <summary>
  16452. <para>HTTP status code <c>304 Not Modified</c>. A conditional GET or HEAD request has been received and would have resulted in a 200 OK response if it were not for the fact that the condition evaluated to <c>false</c>.</para>
  16453. </summary>
  16454. </member>
  16455. <member name="F:Godot.HTTPClient.ResponseCode.UseProxy">
  16456. <summary>
  16457. <para>HTTP status code <c>305 Use Proxy</c>. Deprecated. Do not use.</para>
  16458. </summary>
  16459. </member>
  16460. <member name="F:Godot.HTTPClient.ResponseCode.SwitchProxy">
  16461. <summary>
  16462. <para>HTTP status code <c>306 Switch Proxy</c>. Deprecated. Do not use.</para>
  16463. </summary>
  16464. </member>
  16465. <member name="F:Godot.HTTPClient.ResponseCode.TemporaryRedirect">
  16466. <summary>
  16467. <para>HTTP status code <c>307 Temporary Redirect</c>. The target resource resides temporarily under a different URI and the user agent MUST NOT change the request method if it performs an automatic redirection to that URI.</para>
  16468. </summary>
  16469. </member>
  16470. <member name="F:Godot.HTTPClient.ResponseCode.PermanentRedirect">
  16471. <summary>
  16472. <para>HTTP status code <c>308 Permanent Redirect</c>. The target resource has been assigned a new permanent URI and any future references to this resource ought to use one of the enclosed URIs.</para>
  16473. </summary>
  16474. </member>
  16475. <member name="F:Godot.HTTPClient.ResponseCode.BadRequest">
  16476. <summary>
  16477. <para>HTTP status code <c>400 Bad Request</c>. The request was invalid. The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, invalid request contents, or deceptive request routing).</para>
  16478. </summary>
  16479. </member>
  16480. <member name="F:Godot.HTTPClient.ResponseCode.Unauthorized">
  16481. <summary>
  16482. <para>HTTP status code <c>401 Unauthorized</c>. Credentials required. The request has not been applied because it lacks valid authentication credentials for the target resource.</para>
  16483. </summary>
  16484. </member>
  16485. <member name="F:Godot.HTTPClient.ResponseCode.PaymentRequired">
  16486. <summary>
  16487. <para>HTTP status code <c>402 Payment Required</c>. This response code is reserved for future use. Initial aim for creating this code was using it for digital payment systems, however this is not currently used.</para>
  16488. </summary>
  16489. </member>
  16490. <member name="F:Godot.HTTPClient.ResponseCode.Forbidden">
  16491. <summary>
  16492. <para>HTTP status code <c>403 Forbidden</c>. The client does not have access rights to the content, i.e. they are unauthorized, so server is rejecting to give proper response. Unlike <c>401</c>, the client's identity is known to the server.</para>
  16493. </summary>
  16494. </member>
  16495. <member name="F:Godot.HTTPClient.ResponseCode.NotFound">
  16496. <summary>
  16497. <para>HTTP status code <c>404 Not Found</c>. The server can not find requested resource. Either the URL is not recognized or the endpoint is valid but the resource itself does not exist. May also be sent instead of 403 to hide existence of a resource if the client is not authorized.</para>
  16498. </summary>
  16499. </member>
  16500. <member name="F:Godot.HTTPClient.ResponseCode.MethodNotAllowed">
  16501. <summary>
  16502. <para>HTTP status code <c>405 Method Not Allowed</c>. The request's HTTP method is known by the server but has been disabled and cannot be used. For example, an API may forbid DELETE-ing a resource. The two mandatory methods, GET and HEAD, must never be disabled and should not return this error code.</para>
  16503. </summary>
  16504. </member>
  16505. <member name="F:Godot.HTTPClient.ResponseCode.NotAcceptable">
  16506. <summary>
  16507. <para>HTTP status code <c>406 Not Acceptable</c>. The target resource does not have a current representation that would be acceptable to the user agent, according to the proactive negotiation header fields received in the request. Used when negotiation content.</para>
  16508. </summary>
  16509. </member>
  16510. <member name="F:Godot.HTTPClient.ResponseCode.ProxyAuthenticationRequired">
  16511. <summary>
  16512. <para>HTTP status code <c>407 Proxy Authentication Required</c>. Similar to 401 Unauthorized, but it indicates that the client needs to authenticate itself in order to use a proxy.</para>
  16513. </summary>
  16514. </member>
  16515. <member name="F:Godot.HTTPClient.ResponseCode.RequestTimeout">
  16516. <summary>
  16517. <para>HTTP status code <c>408 Request Timeout</c>. The server did not receive a complete request message within the time that it was prepared to wait.</para>
  16518. </summary>
  16519. </member>
  16520. <member name="F:Godot.HTTPClient.ResponseCode.Conflict">
  16521. <summary>
  16522. <para>HTTP status code <c>409 Conflict</c>. The request could not be completed due to a conflict with the current state of the target resource. This code is used in situations where the user might be able to resolve the conflict and resubmit the request.</para>
  16523. </summary>
  16524. </member>
  16525. <member name="F:Godot.HTTPClient.ResponseCode.Gone">
  16526. <summary>
  16527. <para>HTTP status code <c>410 Gone</c>. The target resource is no longer available at the origin server and this condition is likely permanent.</para>
  16528. </summary>
  16529. </member>
  16530. <member name="F:Godot.HTTPClient.ResponseCode.LengthRequired">
  16531. <summary>
  16532. <para>HTTP status code <c>411 Length Required</c>. The server refuses to accept the request without a defined Content-Length header.</para>
  16533. </summary>
  16534. </member>
  16535. <member name="F:Godot.HTTPClient.ResponseCode.PreconditionFailed">
  16536. <summary>
  16537. <para>HTTP status code <c>412 Precondition Failed</c>. One or more conditions given in the request header fields evaluated to <c>false</c> when tested on the server.</para>
  16538. </summary>
  16539. </member>
  16540. <member name="F:Godot.HTTPClient.ResponseCode.RequestEntityTooLarge">
  16541. <summary>
  16542. <para>HTTP status code <c>413 Entity Too Large</c>. The server is refusing to process a request because the request payload is larger than the server is willing or able to process.</para>
  16543. </summary>
  16544. </member>
  16545. <member name="F:Godot.HTTPClient.ResponseCode.RequestUriTooLong">
  16546. <summary>
  16547. <para>HTTP status code <c>414 Request-URI Too Long</c>. The server is refusing to service the request because the request-target is longer than the server is willing to interpret.</para>
  16548. </summary>
  16549. </member>
  16550. <member name="F:Godot.HTTPClient.ResponseCode.UnsupportedMediaType">
  16551. <summary>
  16552. <para>HTTP status code <c>415 Unsupported Media Type</c>. The origin server is refusing to service the request because the payload is in a format not supported by this method on the target resource.</para>
  16553. </summary>
  16554. </member>
  16555. <member name="F:Godot.HTTPClient.ResponseCode.RequestedRangeNotSatisfiable">
  16556. <summary>
  16557. <para>HTTP status code <c>416 Requested Range Not Satisfiable</c>. None of the ranges in the request's Range header field overlap the current extent of the selected resource or the set of ranges requested has been rejected due to invalid ranges or an excessive request of small or overlapping ranges.</para>
  16558. </summary>
  16559. </member>
  16560. <member name="F:Godot.HTTPClient.ResponseCode.ExpectationFailed">
  16561. <summary>
  16562. <para>HTTP status code <c>417 Expectation Failed</c>. The expectation given in the request's Expect header field could not be met by at least one of the inbound servers.</para>
  16563. </summary>
  16564. </member>
  16565. <member name="F:Godot.HTTPClient.ResponseCode.ImATeapot">
  16566. <summary>
  16567. <para>HTTP status code <c>418 I'm A Teapot</c>. Any attempt to brew coffee with a teapot should result in the error code "418 I'm a teapot". The resulting entity body MAY be short and stout.</para>
  16568. </summary>
  16569. </member>
  16570. <member name="F:Godot.HTTPClient.ResponseCode.MisdirectedRequest">
  16571. <summary>
  16572. <para>HTTP status code <c>421 Misdirected Request</c>. The request was directed at a server that is not able to produce a response. This can be sent by a server that is not configured to produce responses for the combination of scheme and authority that are included in the request URI.</para>
  16573. </summary>
  16574. </member>
  16575. <member name="F:Godot.HTTPClient.ResponseCode.UnprocessableEntity">
  16576. <summary>
  16577. <para>HTTP status code <c>422 Unprocessable Entity</c> (WebDAV). The server understands the content type of the request entity (hence a 415 Unsupported Media Type status code is inappropriate), and the syntax of the request entity is correct (thus a 400 Bad Request status code is inappropriate) but was unable to process the contained instructions.</para>
  16578. </summary>
  16579. </member>
  16580. <member name="F:Godot.HTTPClient.ResponseCode.Locked">
  16581. <summary>
  16582. <para>HTTP status code <c>423 Locked</c> (WebDAV). The source or destination resource of a method is locked.</para>
  16583. </summary>
  16584. </member>
  16585. <member name="F:Godot.HTTPClient.ResponseCode.FailedDependency">
  16586. <summary>
  16587. <para>HTTP status code <c>424 Failed Dependency</c> (WebDAV). The method could not be performed on the resource because the requested action depended on another action and that action failed.</para>
  16588. </summary>
  16589. </member>
  16590. <member name="F:Godot.HTTPClient.ResponseCode.UpgradeRequired">
  16591. <summary>
  16592. <para>HTTP status code <c>426 Upgrade Required</c>. The server refuses to perform the request using the current protocol but might be willing to do so after the client upgrades to a different protocol.</para>
  16593. </summary>
  16594. </member>
  16595. <member name="F:Godot.HTTPClient.ResponseCode.PreconditionRequired">
  16596. <summary>
  16597. <para>HTTP status code <c>428 Precondition Required</c>. The origin server requires the request to be conditional.</para>
  16598. </summary>
  16599. </member>
  16600. <member name="F:Godot.HTTPClient.ResponseCode.TooManyRequests">
  16601. <summary>
  16602. <para>HTTP status code <c>429 Too Many Requests</c>. The user has sent too many requests in a given amount of time (see "rate limiting"). Back off and increase time between requests or try again later.</para>
  16603. </summary>
  16604. </member>
  16605. <member name="F:Godot.HTTPClient.ResponseCode.RequestHeaderFieldsTooLarge">
  16606. <summary>
  16607. <para>HTTP status code <c>431 Request Header Fields Too Large</c>. The server is unwilling to process the request because its header fields are too large. The request MAY be resubmitted after reducing the size of the request header fields.</para>
  16608. </summary>
  16609. </member>
  16610. <member name="F:Godot.HTTPClient.ResponseCode.UnavailableForLegalReasons">
  16611. <summary>
  16612. <para>HTTP status code <c>451 Response Unavailable For Legal Reasons</c>. The server is denying access to the resource as a consequence of a legal demand.</para>
  16613. </summary>
  16614. </member>
  16615. <member name="F:Godot.HTTPClient.ResponseCode.InternalServerError">
  16616. <summary>
  16617. <para>HTTP status code <c>500 Internal Server Error</c>. The server encountered an unexpected condition that prevented it from fulfilling the request.</para>
  16618. </summary>
  16619. </member>
  16620. <member name="F:Godot.HTTPClient.ResponseCode.NotImplemented">
  16621. <summary>
  16622. <para>HTTP status code <c>501 Not Implemented</c>. The server does not support the functionality required to fulfill the request.</para>
  16623. </summary>
  16624. </member>
  16625. <member name="F:Godot.HTTPClient.ResponseCode.BadGateway">
  16626. <summary>
  16627. <para>HTTP status code <c>502 Bad Gateway</c>. The server, while acting as a gateway or proxy, received an invalid response from an inbound server it accessed while attempting to fulfill the request. Usually returned by load balancers or proxies.</para>
  16628. </summary>
  16629. </member>
  16630. <member name="F:Godot.HTTPClient.ResponseCode.ServiceUnavailable">
  16631. <summary>
  16632. <para>HTTP status code <c>503 Service Unavailable</c>. The server is currently unable to handle the request due to a temporary overload or scheduled maintenance, which will likely be alleviated after some delay. Try again later.</para>
  16633. </summary>
  16634. </member>
  16635. <member name="F:Godot.HTTPClient.ResponseCode.GatewayTimeout">
  16636. <summary>
  16637. <para>HTTP status code <c>504 Gateway Timeout</c>. The server, while acting as a gateway or proxy, did not receive a timely response from an upstream server it needed to access in order to complete the request. Usually returned by load balancers or proxies.</para>
  16638. </summary>
  16639. </member>
  16640. <member name="F:Godot.HTTPClient.ResponseCode.HttpVersionNotSupported">
  16641. <summary>
  16642. <para>HTTP status code <c>505 HTTP Version Not Supported</c>. The server does not support, or refuses to support, the major version of HTTP that was used in the request message.</para>
  16643. </summary>
  16644. </member>
  16645. <member name="F:Godot.HTTPClient.ResponseCode.VariantAlsoNegotiates">
  16646. <summary>
  16647. <para>HTTP status code <c>506 Variant Also Negotiates</c>. The server has an internal configuration error: the chosen variant resource is configured to engage in transparent content negotiation itself, and is therefore not a proper end point in the negotiation process.</para>
  16648. </summary>
  16649. </member>
  16650. <member name="F:Godot.HTTPClient.ResponseCode.InsufficientStorage">
  16651. <summary>
  16652. <para>HTTP status code <c>507 Insufficient Storage</c>. The method could not be performed on the resource because the server is unable to store the representation needed to successfully complete the request.</para>
  16653. </summary>
  16654. </member>
  16655. <member name="F:Godot.HTTPClient.ResponseCode.LoopDetected">
  16656. <summary>
  16657. <para>HTTP status code <c>508 Loop Detected</c>. The server terminated an operation because it encountered an infinite loop while processing a request with "Depth: infinity". This status indicates that the entire operation failed.</para>
  16658. </summary>
  16659. </member>
  16660. <member name="F:Godot.HTTPClient.ResponseCode.NotExtended">
  16661. <summary>
  16662. <para>HTTP status code <c>510 Not Extended</c>. The policy for accessing the resource has not been met in the request. The server should send back all the information necessary for the client to issue an extended request.</para>
  16663. </summary>
  16664. </member>
  16665. <member name="F:Godot.HTTPClient.ResponseCode.NetworkAuthRequired">
  16666. <summary>
  16667. <para>HTTP status code <c>511 Network Authentication Required</c>. The client needs to authenticate to gain network access.</para>
  16668. </summary>
  16669. </member>
  16670. <member name="P:Godot.HTTPClient.BlockingModeEnabled">
  16671. <summary>
  16672. <para>If <c>true</c>, execution will block until all data is read from the response.</para>
  16673. </summary>
  16674. </member>
  16675. <member name="P:Godot.HTTPClient.Connection">
  16676. <summary>
  16677. <para>The connection to use for this client.</para>
  16678. </summary>
  16679. </member>
  16680. <member name="P:Godot.HTTPClient.ReadChunkSize">
  16681. <summary>
  16682. <para>The size of the buffer used and maximum bytes to read per iteration. See <see cref="M:Godot.HTTPClient.ReadResponseBodyChunk"/>.</para>
  16683. </summary>
  16684. </member>
  16685. <member name="M:Godot.HTTPClient.ConnectToHost(System.String,System.Int32,System.Boolean,System.Boolean)">
  16686. <summary>
  16687. <para>Connects to a host. This needs to be done before any requests are sent.</para>
  16688. <para>The host should not have http:// prepended but will strip the protocol identifier if provided.</para>
  16689. <para>If no <c>port</c> is specified (or <c>-1</c> is used), it is automatically set to 80 for HTTP and 443 for HTTPS (if <c>use_ssl</c> is enabled).</para>
  16690. <para><c>verify_host</c> will check the SSL identity of the host if set to <c>true</c>.</para>
  16691. </summary>
  16692. </member>
  16693. <member name="M:Godot.HTTPClient.RequestRaw(Godot.HTTPClient.Method,System.String,System.String[],System.Byte[])">
  16694. <summary>
  16695. <para>Sends a raw request to the connected host. The URL parameter is just the part after the host, so for <c>http://somehost.com/index.php</c>, it is <c>index.php</c>.</para>
  16696. <para>Headers are HTTP request headers. For available HTTP methods, see <see cref="T:Godot.HTTPClient.Method"/>.</para>
  16697. <para>Sends the body data raw, as a byte array and does not encode it in any way.</para>
  16698. </summary>
  16699. </member>
  16700. <member name="M:Godot.HTTPClient.Request(Godot.HTTPClient.Method,System.String,System.String[],System.String)">
  16701. <summary>
  16702. <para>Sends a request to the connected host. The URL parameter is just the part after the host, so for <c>http://somehost.com/index.php</c>, it is <c>index.php</c>.</para>
  16703. <para>Headers are HTTP request headers. For available HTTP methods, see <see cref="T:Godot.HTTPClient.Method"/>.</para>
  16704. <para>To create a POST request with query strings to push to the server, do:</para>
  16705. <para><code>
  16706. var fields = {"username" : "user", "password" : "pass"}
  16707. var query_string = http_client.query_string_from_dict(fields)
  16708. var headers = ["Content-Type: application/x-www-form-urlencoded", "Content-Length: " + str(query_string.length())]
  16709. var result = http_client.request(http_client.METHOD_POST, "index.php", headers, query_string)
  16710. </code></para>
  16711. </summary>
  16712. </member>
  16713. <member name="M:Godot.HTTPClient.Close">
  16714. <summary>
  16715. <para>Closes the current connection, allowing reuse of this <see cref="T:Godot.HTTPClient"/>.</para>
  16716. </summary>
  16717. </member>
  16718. <member name="M:Godot.HTTPClient.HasResponse">
  16719. <summary>
  16720. <para>If <c>true</c>, this <see cref="T:Godot.HTTPClient"/> has a response available.</para>
  16721. </summary>
  16722. </member>
  16723. <member name="M:Godot.HTTPClient.IsResponseChunked">
  16724. <summary>
  16725. <para>If <c>true</c>, this <see cref="T:Godot.HTTPClient"/> has a response that is chunked.</para>
  16726. </summary>
  16727. </member>
  16728. <member name="M:Godot.HTTPClient.GetResponseCode">
  16729. <summary>
  16730. <para>Returns the response's HTTP status code.</para>
  16731. </summary>
  16732. </member>
  16733. <member name="M:Godot.HTTPClient.GetResponseHeaders">
  16734. <summary>
  16735. <para>Returns the response headers.</para>
  16736. </summary>
  16737. </member>
  16738. <member name="M:Godot.HTTPClient.GetResponseHeadersAsDictionary">
  16739. <summary>
  16740. <para>Returns all response headers as a Dictionary of structure <c>{ "key": "value1; value2" }</c> where the case-sensitivity of the keys and values is kept like the server delivers it. A value is a simple String, this string can have more than one value where "; " is used as separator.</para>
  16741. <para>Example:</para>
  16742. <para><code>
  16743. {
  16744. "content-length": 12,
  16745. "Content-Type": "application/json; charset=UTF-8",
  16746. }
  16747. </code></para>
  16748. </summary>
  16749. </member>
  16750. <member name="M:Godot.HTTPClient.GetResponseBodyLength">
  16751. <summary>
  16752. <para>Returns the response's body length.</para>
  16753. <para>Note: Some Web servers may not send a body length. In this case, the value returned will be <c>-1</c>. If using chunked transfer encoding, the body length will also be <c>-1</c>.</para>
  16754. </summary>
  16755. </member>
  16756. <member name="M:Godot.HTTPClient.ReadResponseBodyChunk">
  16757. <summary>
  16758. <para>Reads one chunk from the response.</para>
  16759. </summary>
  16760. </member>
  16761. <member name="M:Godot.HTTPClient.GetStatus">
  16762. <summary>
  16763. <para>Returns a <see cref="T:Godot.HTTPClient.Status"/> constant. Need to call <see cref="M:Godot.HTTPClient.Poll"/> in order to get status updates.</para>
  16764. </summary>
  16765. </member>
  16766. <member name="M:Godot.HTTPClient.Poll">
  16767. <summary>
  16768. <para>This needs to be called in order to have any request processed. Check results with <see cref="M:Godot.HTTPClient.GetStatus"/>.</para>
  16769. </summary>
  16770. </member>
  16771. <member name="M:Godot.HTTPClient.QueryStringFromDict(Godot.Collections.Dictionary)">
  16772. <summary>
  16773. <para>Generates a GET/POST application/x-www-form-urlencoded style query string from a provided dictionary, e.g.:</para>
  16774. <para><code>
  16775. var fields = {"username": "user", "password": "pass"}
  16776. var query_string = http_client.query_string_from_dict(fields)
  16777. # Returns "username=user&amp;password=pass"
  16778. </code></para>
  16779. <para>Furthermore, if a key has a <c>null</c> value, only the key itself is added, without equal sign and value. If the value is an array, for each value in it a pair with the same key is added.</para>
  16780. <para><code>
  16781. var fields = {"single": 123, "not_valued": null, "multiple": [22, 33, 44]}
  16782. var query_string = http_client.query_string_from_dict(fields)
  16783. # Returns "single=123&amp;not_valued&amp;multiple=22&amp;multiple=33&amp;multiple=44"
  16784. </code></para>
  16785. </summary>
  16786. </member>
  16787. <member name="T:Godot.HTTPRequest">
  16788. <summary>
  16789. <para>A node with the ability to send HTTP requests. Uses <see cref="T:Godot.HTTPClient"/> internally.</para>
  16790. <para>Can be used to make HTTP requests, i.e. download or upload files or web content via HTTP.</para>
  16791. <para>Example of contacting a REST API and printing one of its returned fields:</para>
  16792. <para><code>
  16793. func _ready():
  16794. # Create an HTTP request node and connect its completion signal.
  16795. var http_request = HTTPRequest.new()
  16796. add_child(http_request)
  16797. http_request.connect("request_completed", self, "_http_request_completed")
  16798. # Perform the HTTP request. The URL below returns some JSON as of writing.
  16799. var error = http_request.request("https://httpbin.org/get")
  16800. if error != OK:
  16801. push_error("An error occurred in the HTTP request.")
  16802. # Called when the HTTP request is completed.
  16803. func _http_request_completed(result, response_code, headers, body):
  16804. var response = parse_json(body.get_string_from_utf8())
  16805. # Will print the user agent string used by the HTTPRequest node (as recognized by httpbin.org).
  16806. print(response.headers["User-Agent"])
  16807. </code></para>
  16808. <para>Example of loading and displaying an image using HTTPRequest:</para>
  16809. <para><code>
  16810. func _ready():
  16811. # Create an HTTP request node and connect its completion signal.
  16812. var http_request = HTTPRequest.new()
  16813. add_child(http_request)
  16814. http_request.connect("request_completed", self, "_http_request_completed")
  16815. # Perform the HTTP request. The URL below returns a PNG image as of writing.
  16816. var error = http_request.request("https://via.placeholder.com/512")
  16817. if error != OK:
  16818. push_error("An error occurred in the HTTP request.")
  16819. # Called when the HTTP request is completed.
  16820. func _http_request_completed(result, response_code, headers, body):
  16821. var image = Image.new()
  16822. var error = image.load_png_from_buffer(body)
  16823. if error != OK:
  16824. push_error("Couldn't load the image.")
  16825. var texture = ImageTexture.new()
  16826. texture.create_from_image(image)
  16827. # Display the image in a TextureRect node.
  16828. var texture_rect = TextureRect.new()
  16829. add_child(texture_rect)
  16830. texture_rect.texture = texture
  16831. </code></para>
  16832. </summary>
  16833. </member>
  16834. <member name="F:Godot.HTTPRequest.Result.Success">
  16835. <summary>
  16836. <para>Request successful.</para>
  16837. </summary>
  16838. </member>
  16839. <member name="F:Godot.HTTPRequest.Result.CantConnect">
  16840. <summary>
  16841. <para>Request failed while connecting.</para>
  16842. </summary>
  16843. </member>
  16844. <member name="F:Godot.HTTPRequest.Result.CantResolve">
  16845. <summary>
  16846. <para>Request failed while resolving.</para>
  16847. </summary>
  16848. </member>
  16849. <member name="F:Godot.HTTPRequest.Result.ConnectionError">
  16850. <summary>
  16851. <para>Request failed due to connection (read/write) error.</para>
  16852. </summary>
  16853. </member>
  16854. <member name="F:Godot.HTTPRequest.Result.SslHandshakeError">
  16855. <summary>
  16856. <para>Request failed on SSL handshake.</para>
  16857. </summary>
  16858. </member>
  16859. <member name="F:Godot.HTTPRequest.Result.NoResponse">
  16860. <summary>
  16861. <para>Request does not have a response (yet).</para>
  16862. </summary>
  16863. </member>
  16864. <member name="F:Godot.HTTPRequest.Result.BodySizeLimitExceeded">
  16865. <summary>
  16866. <para>Request exceeded its maximum size limit, see <see cref="P:Godot.HTTPRequest.BodySizeLimit"/>.</para>
  16867. </summary>
  16868. </member>
  16869. <member name="F:Godot.HTTPRequest.Result.RequestFailed">
  16870. <summary>
  16871. <para>Request failed (currently unused).</para>
  16872. </summary>
  16873. </member>
  16874. <member name="F:Godot.HTTPRequest.Result.DownloadFileCantOpen">
  16875. <summary>
  16876. <para>HTTPRequest couldn't open the download file.</para>
  16877. </summary>
  16878. </member>
  16879. <member name="F:Godot.HTTPRequest.Result.DownloadFileWriteError">
  16880. <summary>
  16881. <para>HTTPRequest couldn't write to the download file.</para>
  16882. </summary>
  16883. </member>
  16884. <member name="F:Godot.HTTPRequest.Result.RedirectLimitReached">
  16885. <summary>
  16886. <para>Request reached its maximum redirect limit, see <see cref="P:Godot.HTTPRequest.MaxRedirects"/>.</para>
  16887. </summary>
  16888. </member>
  16889. <member name="P:Godot.HTTPRequest.DownloadFile">
  16890. <summary>
  16891. <para>The file to download into. Will output any received file into it.</para>
  16892. </summary>
  16893. </member>
  16894. <member name="P:Godot.HTTPRequest.DownloadChunkSize">
  16895. <summary>
  16896. <para>The size of the buffer used and maximum bytes to read per iteration. See <see cref="P:Godot.HTTPClient.ReadChunkSize"/>.</para>
  16897. <para>Set this to a higher value (e.g. 65536 for 64 KiB) when downloading large files to achieve better speeds at the cost of memory.</para>
  16898. </summary>
  16899. </member>
  16900. <member name="P:Godot.HTTPRequest.UseThreads">
  16901. <summary>
  16902. <para>If <c>true</c>, multithreading is used to improve performance.</para>
  16903. </summary>
  16904. </member>
  16905. <member name="P:Godot.HTTPRequest.BodySizeLimit">
  16906. <summary>
  16907. <para>Maximum allowed size for response bodies.</para>
  16908. </summary>
  16909. </member>
  16910. <member name="P:Godot.HTTPRequest.MaxRedirects">
  16911. <summary>
  16912. <para>Maximum number of allowed redirects.</para>
  16913. </summary>
  16914. </member>
  16915. <member name="M:Godot.HTTPRequest.Request(System.String,System.String[],System.Boolean,Godot.HTTPClient.Method,System.String)">
  16916. <summary>
  16917. <para>Creates request on the underlying <see cref="T:Godot.HTTPClient"/>. If there is no configuration errors, it tries to connect using <see cref="M:Godot.HTTPClient.ConnectToHost(System.String,System.Int32,System.Boolean,System.Boolean)"/> and passes parameters onto <see cref="M:Godot.HTTPClient.Request(Godot.HTTPClient.Method,System.String,System.String[],System.String)"/>.</para>
  16918. <para>Returns if request is successfully created. (Does not imply that the server has responded), if not in the tree, if still processing previous request, if given string is not a valid URL format, or if not using thread and the <see cref="T:Godot.HTTPClient"/> cannot connect to host.</para>
  16919. </summary>
  16920. <param name="customHeaders">If the parameter is null, then the default value is new string[] {}</param>
  16921. </member>
  16922. <member name="M:Godot.HTTPRequest.CancelRequest">
  16923. <summary>
  16924. <para>Cancels the current request.</para>
  16925. </summary>
  16926. </member>
  16927. <member name="M:Godot.HTTPRequest.GetHttpClientStatus">
  16928. <summary>
  16929. <para>Returns the current status of the underlying <see cref="T:Godot.HTTPClient"/>. See <see cref="T:Godot.HTTPClient.Status"/>.</para>
  16930. </summary>
  16931. </member>
  16932. <member name="M:Godot.HTTPRequest.GetDownloadedBytes">
  16933. <summary>
  16934. <para>Returns the amount of bytes this HTTPRequest downloaded.</para>
  16935. </summary>
  16936. </member>
  16937. <member name="M:Godot.HTTPRequest.GetBodySize">
  16938. <summary>
  16939. <para>Returns the response body length.</para>
  16940. <para>Note: Some Web servers may not send a body length. In this case, the value returned will be <c>-1</c>. If using chunked transfer encoding, the body length will also be <c>-1</c>.</para>
  16941. </summary>
  16942. </member>
  16943. <member name="T:Godot.HashingContext">
  16944. <summary>
  16945. <para>The HashingContext class provides an interface for computing cryptographic hashes over multiple iterations. This is useful for example when computing hashes of big files (so you don't have to load them all in memory), network streams, and data streams in general (so you don't have to hold buffers).</para>
  16946. <para>The <see cref="T:Godot.HashingContext.HashType"/> enum shows the supported hashing algorithms.</para>
  16947. <para><code>
  16948. const CHUNK_SIZE = 1024
  16949. func hash_file(path):
  16950. var ctx = HashingContext.new()
  16951. var file = File.new()
  16952. # Start a SHA-256 context.
  16953. ctx.start(HashingContext.HASH_SHA256)
  16954. # Check that file exists.
  16955. if not file.file_exists(path):
  16956. return
  16957. # Open the file to hash.
  16958. file.open(path, File.READ)
  16959. # Update the context after reading each chunk.
  16960. while not file.eof_reached():
  16961. ctx.update(file.get_buffer(CHUNK_SIZE))
  16962. # Get the computed hash.
  16963. var res = ctx.finish()
  16964. # Print the result as hex string and array.
  16965. printt(res.hex_encode(), Array(res))
  16966. </code></para>
  16967. <para>Note: Not available in HTML5 exports.</para>
  16968. </summary>
  16969. </member>
  16970. <member name="F:Godot.HashingContext.HashType.Md5">
  16971. <summary>
  16972. <para>Hashing algorithm: MD5.</para>
  16973. </summary>
  16974. </member>
  16975. <member name="F:Godot.HashingContext.HashType.Sha1">
  16976. <summary>
  16977. <para>Hashing algorithm: SHA-1.</para>
  16978. </summary>
  16979. </member>
  16980. <member name="F:Godot.HashingContext.HashType.Sha256">
  16981. <summary>
  16982. <para>Hashing algorithm: SHA-256.</para>
  16983. </summary>
  16984. </member>
  16985. <member name="M:Godot.HashingContext.Start(Godot.HashingContext.HashType)">
  16986. <summary>
  16987. <para>Starts a new hash computation of the given <c>type</c> (e.g. to start computation of a SHA-256).</para>
  16988. </summary>
  16989. </member>
  16990. <member name="M:Godot.HashingContext.Update(System.Byte[])">
  16991. <summary>
  16992. <para>Updates the computation with the given <c>chunk</c> of data.</para>
  16993. </summary>
  16994. </member>
  16995. <member name="M:Godot.HashingContext.Finish">
  16996. <summary>
  16997. <para>Closes the current context, and return the computed hash.</para>
  16998. </summary>
  16999. </member>
  17000. <member name="T:Godot.HeightMapShape">
  17001. <summary>
  17002. <para>Height map shape resource, which can be added to a <see cref="T:Godot.PhysicsBody"/> or <see cref="T:Godot.Area"/>.</para>
  17003. </summary>
  17004. </member>
  17005. <member name="P:Godot.HeightMapShape.MapWidth">
  17006. <summary>
  17007. <para>Width of the height map data. Changing this will resize the <see cref="P:Godot.HeightMapShape.MapData"/>.</para>
  17008. </summary>
  17009. </member>
  17010. <member name="P:Godot.HeightMapShape.MapDepth">
  17011. <summary>
  17012. <para>Depth of the height map data. Changing this will resize the <see cref="P:Godot.HeightMapShape.MapData"/>.</para>
  17013. </summary>
  17014. </member>
  17015. <member name="P:Godot.HeightMapShape.MapData">
  17016. <summary>
  17017. <para>Height map data, pool array must be of <see cref="P:Godot.HeightMapShape.MapWidth"/> * <see cref="P:Godot.HeightMapShape.MapDepth"/> size.</para>
  17018. </summary>
  17019. </member>
  17020. <member name="T:Godot.HingeJoint">
  17021. <summary>
  17022. <para>A HingeJoint normally uses the Z axis of body A as the hinge axis, another axis can be specified when adding it manually though.</para>
  17023. </summary>
  17024. </member>
  17025. <member name="F:Godot.HingeJoint.Param.Bias">
  17026. <summary>
  17027. <para>The speed with which the two bodies get pulled together when they move in different directions.</para>
  17028. </summary>
  17029. </member>
  17030. <member name="F:Godot.HingeJoint.Param.LimitUpper">
  17031. <summary>
  17032. <para>The maximum rotation. Only active if <see cref="P:Godot.HingeJoint.AngularLimit__enable"/> is <c>true</c>.</para>
  17033. </summary>
  17034. </member>
  17035. <member name="F:Godot.HingeJoint.Param.LimitLower">
  17036. <summary>
  17037. <para>The minimum rotation. Only active if <see cref="P:Godot.HingeJoint.AngularLimit__enable"/> is <c>true</c>.</para>
  17038. </summary>
  17039. </member>
  17040. <member name="F:Godot.HingeJoint.Param.LimitBias">
  17041. <summary>
  17042. <para>The speed with which the rotation across the axis perpendicular to the hinge gets corrected.</para>
  17043. </summary>
  17044. </member>
  17045. <member name="F:Godot.HingeJoint.Param.LimitRelaxation">
  17046. <summary>
  17047. <para>The lower this value, the more the rotation gets slowed down.</para>
  17048. </summary>
  17049. </member>
  17050. <member name="F:Godot.HingeJoint.Param.MotorTargetVelocity">
  17051. <summary>
  17052. <para>Target speed for the motor.</para>
  17053. </summary>
  17054. </member>
  17055. <member name="F:Godot.HingeJoint.Param.MotorMaxImpulse">
  17056. <summary>
  17057. <para>Maximum acceleration for the motor.</para>
  17058. </summary>
  17059. </member>
  17060. <member name="F:Godot.HingeJoint.Param.Max">
  17061. <summary>
  17062. <para>Represents the size of the <see cref="T:Godot.HingeJoint.Param"/> enum.</para>
  17063. </summary>
  17064. </member>
  17065. <member name="F:Godot.HingeJoint.Flag.UseLimit">
  17066. <summary>
  17067. <para>If <c>true</c>, the hinges maximum and minimum rotation, defined by <see cref="P:Godot.HingeJoint.AngularLimit__lower"/> and <see cref="P:Godot.HingeJoint.AngularLimit__upper"/> has effects.</para>
  17068. </summary>
  17069. </member>
  17070. <member name="F:Godot.HingeJoint.Flag.EnableMotor">
  17071. <summary>
  17072. <para>When activated, a motor turns the hinge.</para>
  17073. </summary>
  17074. </member>
  17075. <member name="F:Godot.HingeJoint.Flag.Max">
  17076. <summary>
  17077. <para>Represents the size of the <see cref="T:Godot.HingeJoint.Flag"/> enum.</para>
  17078. </summary>
  17079. </member>
  17080. <member name="P:Godot.HingeJoint.Params__bias">
  17081. <summary>
  17082. <para>The speed with which the two bodies get pulled together when they move in different directions.</para>
  17083. </summary>
  17084. </member>
  17085. <member name="P:Godot.HingeJoint.AngularLimit__enable">
  17086. <summary>
  17087. <para>If <c>true</c>, the hinges maximum and minimum rotation, defined by <see cref="P:Godot.HingeJoint.AngularLimit__lower"/> and <see cref="P:Godot.HingeJoint.AngularLimit__upper"/> has effects.</para>
  17088. </summary>
  17089. </member>
  17090. <member name="P:Godot.HingeJoint.AngularLimit__upper">
  17091. <summary>
  17092. <para>The maximum rotation. Only active if <see cref="P:Godot.HingeJoint.AngularLimit__enable"/> is <c>true</c>.</para>
  17093. </summary>
  17094. </member>
  17095. <member name="P:Godot.HingeJoint.AngularLimit__lower">
  17096. <summary>
  17097. <para>The minimum rotation. Only active if <see cref="P:Godot.HingeJoint.AngularLimit__enable"/> is <c>true</c>.</para>
  17098. </summary>
  17099. </member>
  17100. <member name="P:Godot.HingeJoint.AngularLimit__bias">
  17101. <summary>
  17102. <para>The speed with which the rotation across the axis perpendicular to the hinge gets corrected.</para>
  17103. </summary>
  17104. </member>
  17105. <member name="P:Godot.HingeJoint.AngularLimit__relaxation">
  17106. <summary>
  17107. <para>The lower this value, the more the rotation gets slowed down.</para>
  17108. </summary>
  17109. </member>
  17110. <member name="P:Godot.HingeJoint.Motor__enable">
  17111. <summary>
  17112. <para>When activated, a motor turns the hinge.</para>
  17113. </summary>
  17114. </member>
  17115. <member name="P:Godot.HingeJoint.Motor__targetVelocity">
  17116. <summary>
  17117. <para>Target speed for the motor.</para>
  17118. </summary>
  17119. </member>
  17120. <member name="P:Godot.HingeJoint.Motor__maxImpulse">
  17121. <summary>
  17122. <para>Maximum acceleration for the motor.</para>
  17123. </summary>
  17124. </member>
  17125. <member name="M:Godot.HingeJoint.SetParam(Godot.HingeJoint.Param,System.Single)">
  17126. <summary>
  17127. <para>Sets the value of the specified parameter.</para>
  17128. </summary>
  17129. </member>
  17130. <member name="M:Godot.HingeJoint.GetParam(Godot.HingeJoint.Param)">
  17131. <summary>
  17132. <para>Returns the value of the specified parameter.</para>
  17133. </summary>
  17134. </member>
  17135. <member name="M:Godot.HingeJoint.SetFlag(Godot.HingeJoint.Flag,System.Boolean)">
  17136. <summary>
  17137. <para>If <c>true</c>, enables the specified flag.</para>
  17138. </summary>
  17139. </member>
  17140. <member name="M:Godot.HingeJoint.GetFlag(Godot.HingeJoint.Flag)">
  17141. <summary>
  17142. <para>Returns the value of the specified flag.</para>
  17143. </summary>
  17144. </member>
  17145. <member name="T:Godot.IP">
  17146. <summary>
  17147. <para>IP contains support functions for the Internet Protocol (IP). TCP/IP support is in different classes (see <see cref="T:Godot.StreamPeerTCP"/> and <see cref="T:Godot.TCP_Server"/>). IP provides DNS hostname resolution support, both blocking and threaded.</para>
  17148. </summary>
  17149. </member>
  17150. <member name="F:Godot.IP.ResolverMaxQueries">
  17151. <summary>
  17152. <para>Maximum number of concurrent DNS resolver queries allowed, is returned if exceeded.</para>
  17153. </summary>
  17154. </member>
  17155. <member name="F:Godot.IP.ResolverInvalidId">
  17156. <summary>
  17157. <para>Invalid ID constant. Returned if is exceeded.</para>
  17158. </summary>
  17159. </member>
  17160. <member name="F:Godot.IP.ResolverStatus.None">
  17161. <summary>
  17162. <para>DNS hostname resolver status: No status.</para>
  17163. </summary>
  17164. </member>
  17165. <member name="F:Godot.IP.ResolverStatus.Waiting">
  17166. <summary>
  17167. <para>DNS hostname resolver status: Waiting.</para>
  17168. </summary>
  17169. </member>
  17170. <member name="F:Godot.IP.ResolverStatus.Done">
  17171. <summary>
  17172. <para>DNS hostname resolver status: Done.</para>
  17173. </summary>
  17174. </member>
  17175. <member name="F:Godot.IP.ResolverStatus.Error">
  17176. <summary>
  17177. <para>DNS hostname resolver status: Error.</para>
  17178. </summary>
  17179. </member>
  17180. <member name="F:Godot.IP.Type.None">
  17181. <summary>
  17182. <para>Address type: None.</para>
  17183. </summary>
  17184. </member>
  17185. <member name="F:Godot.IP.Type.Ipv4">
  17186. <summary>
  17187. <para>Address type: Internet protocol version 4 (IPv4).</para>
  17188. </summary>
  17189. </member>
  17190. <member name="F:Godot.IP.Type.Ipv6">
  17191. <summary>
  17192. <para>Address type: Internet protocol version 6 (IPv6).</para>
  17193. </summary>
  17194. </member>
  17195. <member name="F:Godot.IP.Type.Any">
  17196. <summary>
  17197. <para>Address type: Any.</para>
  17198. </summary>
  17199. </member>
  17200. <member name="M:Godot.IP.ResolveHostname(System.String,Godot.IP.Type)">
  17201. <summary>
  17202. <para>Returns a given hostname's IPv4 or IPv6 address when resolved (blocking-type method). The address type returned depends on the <see cref="T:Godot.IP.Type"/> constant given as <c>ip_type</c>.</para>
  17203. </summary>
  17204. </member>
  17205. <member name="M:Godot.IP.ResolveHostnameQueueItem(System.String,Godot.IP.Type)">
  17206. <summary>
  17207. <para>Creates a queue item to resolve a hostname to an IPv4 or IPv6 address depending on the <see cref="T:Godot.IP.Type"/> constant given as <c>ip_type</c>. Returns the queue ID if successful, or on error.</para>
  17208. </summary>
  17209. </member>
  17210. <member name="M:Godot.IP.GetResolveItemStatus(System.Int32)">
  17211. <summary>
  17212. <para>Returns a queued hostname's status as a <see cref="T:Godot.IP.ResolverStatus"/> constant, given its queue <c>id</c>.</para>
  17213. </summary>
  17214. </member>
  17215. <member name="M:Godot.IP.GetResolveItemAddress(System.Int32)">
  17216. <summary>
  17217. <para>Returns a queued hostname's IP address, given its queue <c>id</c>. Returns an empty string on error or if resolution hasn't happened yet (see <see cref="M:Godot.IP.GetResolveItemStatus(System.Int32)"/>).</para>
  17218. </summary>
  17219. </member>
  17220. <member name="M:Godot.IP.EraseResolveItem(System.Int32)">
  17221. <summary>
  17222. <para>Removes a given item <c>id</c> from the queue. This should be used to free a queue after it has completed to enable more queries to happen.</para>
  17223. </summary>
  17224. </member>
  17225. <member name="M:Godot.IP.GetLocalAddresses">
  17226. <summary>
  17227. <para>Returns all of the user's current IPv4 and IPv6 addresses as an array.</para>
  17228. </summary>
  17229. </member>
  17230. <member name="M:Godot.IP.GetLocalInterfaces">
  17231. <summary>
  17232. <para>Returns all network adapters as an array.</para>
  17233. <para>Each adapter is a dictionary of the form:</para>
  17234. <para><code>
  17235. {
  17236. "index": "1", # Interface index.
  17237. "name": "eth0", # Interface name.
  17238. "friendly": "Ethernet One", # A friendly name (might be empty).
  17239. "addresses": ["192.168.1.101"], # An array of IP addresses associated to this interface.
  17240. }
  17241. </code></para>
  17242. </summary>
  17243. </member>
  17244. <member name="M:Godot.IP.ClearCache(System.String)">
  17245. <summary>
  17246. <para>Removes all of a <c>hostname</c>'s cached references. If no <c>hostname</c> is given, all cached IP addresses are removed.</para>
  17247. </summary>
  17248. </member>
  17249. <member name="T:Godot.Image">
  17250. <summary>
  17251. <para>Native image datatype. Contains image data, which can be converted to a <see cref="T:Godot.Texture"/>, and several functions to interact with it. The maximum width and height for an <see cref="T:Godot.Image"/> are and .</para>
  17252. <para>Note: The maximum image size is 16384×16384 pixels due to graphics hardware limitations. Larger images will fail to import.</para>
  17253. </summary>
  17254. </member>
  17255. <member name="F:Godot.Image.MaxWidth">
  17256. <summary>
  17257. <para>The maximal width allowed for <see cref="T:Godot.Image"/> resources.</para>
  17258. </summary>
  17259. </member>
  17260. <member name="F:Godot.Image.MaxHeight">
  17261. <summary>
  17262. <para>The maximal height allowed for <see cref="T:Godot.Image"/> resources.</para>
  17263. </summary>
  17264. </member>
  17265. <member name="F:Godot.Image.AlphaMode.None">
  17266. <summary>
  17267. <para>Image does not have alpha.</para>
  17268. </summary>
  17269. </member>
  17270. <member name="F:Godot.Image.AlphaMode.Bit">
  17271. <summary>
  17272. <para>Image stores alpha in a single bit.</para>
  17273. </summary>
  17274. </member>
  17275. <member name="F:Godot.Image.AlphaMode.Blend">
  17276. <summary>
  17277. <para>Image uses alpha.</para>
  17278. </summary>
  17279. </member>
  17280. <member name="F:Godot.Image.CompressSource.Generic">
  17281. <summary>
  17282. <para>Source texture (before compression) is a regular texture. Default for all textures.</para>
  17283. </summary>
  17284. </member>
  17285. <member name="F:Godot.Image.CompressSource.Srgb">
  17286. <summary>
  17287. <para>Source texture (before compression) is in sRGB space.</para>
  17288. </summary>
  17289. </member>
  17290. <member name="F:Godot.Image.CompressSource.Normal">
  17291. <summary>
  17292. <para>Source texture (before compression) is a normal texture (e.g. it can be compressed into two channels).</para>
  17293. </summary>
  17294. </member>
  17295. <member name="F:Godot.Image.Interpolation.Nearest">
  17296. <summary>
  17297. <para>Performs nearest-neighbor interpolation. If the image is resized, it will be pixelated.</para>
  17298. </summary>
  17299. </member>
  17300. <member name="F:Godot.Image.Interpolation.Bilinear">
  17301. <summary>
  17302. <para>Performs bilinear interpolation. If the image is resized, it will be blurry. This mode is faster than , but it results in lower quality.</para>
  17303. </summary>
  17304. </member>
  17305. <member name="F:Godot.Image.Interpolation.Cubic">
  17306. <summary>
  17307. <para>Performs cubic interpolation. If the image is resized, it will be blurry. This mode often gives better results compared to , at the cost of being slower.</para>
  17308. </summary>
  17309. </member>
  17310. <member name="F:Godot.Image.Interpolation.Trilinear">
  17311. <summary>
  17312. <para>Performs bilinear separately on the two most-suited mipmap levels, then linearly interpolates between them.</para>
  17313. <para>It's slower than , but produces higher-quality results with much less aliasing artifacts.</para>
  17314. <para>If the image does not have mipmaps, they will be generated and used internally, but no mipmaps will be generated on the resulting image.</para>
  17315. <para>Note: If you intend to scale multiple copies of the original image, it's better to call <see cref="M:Godot.Image.GenerateMipmaps(System.Boolean)"/>] on it in advance, to avoid wasting processing power in generating them again and again.</para>
  17316. <para>On the other hand, if the image already has mipmaps, they will be used, and a new set will be generated for the resulting image.</para>
  17317. </summary>
  17318. </member>
  17319. <member name="F:Godot.Image.Interpolation.Lanczos">
  17320. <summary>
  17321. <para>Performs Lanczos interpolation. This is the slowest image resizing mode, but it typically gives the best results, especially when downscalng images.</para>
  17322. </summary>
  17323. </member>
  17324. <member name="F:Godot.Image.CompressMode.S3tc">
  17325. <summary>
  17326. <para>Use S3TC compression.</para>
  17327. </summary>
  17328. </member>
  17329. <member name="F:Godot.Image.CompressMode.Pvrtc2">
  17330. <summary>
  17331. <para>Use PVRTC2 compression.</para>
  17332. </summary>
  17333. </member>
  17334. <member name="F:Godot.Image.CompressMode.Pvrtc4">
  17335. <summary>
  17336. <para>Use PVRTC4 compression.</para>
  17337. </summary>
  17338. </member>
  17339. <member name="F:Godot.Image.CompressMode.Etc">
  17340. <summary>
  17341. <para>Use ETC compression.</para>
  17342. </summary>
  17343. </member>
  17344. <member name="F:Godot.Image.CompressMode.Etc2">
  17345. <summary>
  17346. <para>Use ETC2 compression.</para>
  17347. </summary>
  17348. </member>
  17349. <member name="F:Godot.Image.Format.L8">
  17350. <summary>
  17351. <para>Texture format with a single 8-bit depth representing luminance.</para>
  17352. </summary>
  17353. </member>
  17354. <member name="F:Godot.Image.Format.La8">
  17355. <summary>
  17356. <para>OpenGL texture format with two values, luminance and alpha each stored with 8 bits.</para>
  17357. </summary>
  17358. </member>
  17359. <member name="F:Godot.Image.Format.R8">
  17360. <summary>
  17361. <para>OpenGL texture format <c>RED</c> with a single component and a bitdepth of 8.</para>
  17362. </summary>
  17363. </member>
  17364. <member name="F:Godot.Image.Format.Rg8">
  17365. <summary>
  17366. <para>OpenGL texture format <c>RG</c> with two components and a bitdepth of 8 for each.</para>
  17367. </summary>
  17368. </member>
  17369. <member name="F:Godot.Image.Format.Rgb8">
  17370. <summary>
  17371. <para>OpenGL texture format <c>RGB</c> with three components, each with a bitdepth of 8.</para>
  17372. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17373. </summary>
  17374. </member>
  17375. <member name="F:Godot.Image.Format.Rgba8">
  17376. <summary>
  17377. <para>OpenGL texture format <c>RGBA</c> with four components, each with a bitdepth of 8.</para>
  17378. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17379. </summary>
  17380. </member>
  17381. <member name="F:Godot.Image.Format.Rgba4444">
  17382. <summary>
  17383. <para>OpenGL texture format <c>RGBA</c> with four components, each with a bitdepth of 4.</para>
  17384. </summary>
  17385. </member>
  17386. <member name="F:Godot.Image.Format.Rgba5551">
  17387. <summary>
  17388. <para>OpenGL texture format <c>GL_RGB5_A1</c> where 5 bits of depth for each component of RGB and one bit for alpha.</para>
  17389. </summary>
  17390. </member>
  17391. <member name="F:Godot.Image.Format.Rf">
  17392. <summary>
  17393. <para>OpenGL texture format <c>GL_R32F</c> where there's one component, a 32-bit floating-point value.</para>
  17394. </summary>
  17395. </member>
  17396. <member name="F:Godot.Image.Format.Rgf">
  17397. <summary>
  17398. <para>OpenGL texture format <c>GL_RG32F</c> where there are two components, each a 32-bit floating-point values.</para>
  17399. </summary>
  17400. </member>
  17401. <member name="F:Godot.Image.Format.Rgbf">
  17402. <summary>
  17403. <para>OpenGL texture format <c>GL_RGB32F</c> where there are three components, each a 32-bit floating-point values.</para>
  17404. </summary>
  17405. </member>
  17406. <member name="F:Godot.Image.Format.Rgbaf">
  17407. <summary>
  17408. <para>OpenGL texture format <c>GL_RGBA32F</c> where there are four components, each a 32-bit floating-point values.</para>
  17409. </summary>
  17410. </member>
  17411. <member name="F:Godot.Image.Format.Rh">
  17412. <summary>
  17413. <para>OpenGL texture format <c>GL_R32F</c> where there's one component, a 16-bit "half-precision" floating-point value.</para>
  17414. </summary>
  17415. </member>
  17416. <member name="F:Godot.Image.Format.Rgh">
  17417. <summary>
  17418. <para>OpenGL texture format <c>GL_RG32F</c> where there are two components, each a 16-bit "half-precision" floating-point value.</para>
  17419. </summary>
  17420. </member>
  17421. <member name="F:Godot.Image.Format.Rgbh">
  17422. <summary>
  17423. <para>OpenGL texture format <c>GL_RGB32F</c> where there are three components, each a 16-bit "half-precision" floating-point value.</para>
  17424. </summary>
  17425. </member>
  17426. <member name="F:Godot.Image.Format.Rgbah">
  17427. <summary>
  17428. <para>OpenGL texture format <c>GL_RGBA32F</c> where there are four components, each a 16-bit "half-precision" floating-point value.</para>
  17429. </summary>
  17430. </member>
  17431. <member name="F:Godot.Image.Format.Rgbe9995">
  17432. <summary>
  17433. <para>A special OpenGL texture format where the three color components have 9 bits of precision and all three share a single 5-bit exponent.</para>
  17434. </summary>
  17435. </member>
  17436. <member name="F:Godot.Image.Format.Dxt1">
  17437. <summary>
  17438. <para>The <a href="https://en.wikipedia.org/wiki/S3_Texture_Compression">S3TC</a> texture format that uses Block Compression 1, and is the smallest variation of S3TC, only providing 1 bit of alpha and color data being premultiplied with alpha.</para>
  17439. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17440. </summary>
  17441. </member>
  17442. <member name="F:Godot.Image.Format.Dxt3">
  17443. <summary>
  17444. <para>The <a href="https://en.wikipedia.org/wiki/S3_Texture_Compression">S3TC</a> texture format that uses Block Compression 2, and color data is interpreted as not having been premultiplied by alpha. Well suited for images with sharp alpha transitions between translucent and opaque areas.</para>
  17445. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17446. </summary>
  17447. </member>
  17448. <member name="F:Godot.Image.Format.Dxt5">
  17449. <summary>
  17450. <para>The <a href="https://en.wikipedia.org/wiki/S3_Texture_Compression">S3TC</a> texture format also known as Block Compression 3 or BC3 that contains 64 bits of alpha channel data followed by 64 bits of DXT1-encoded color data. Color data is not premultiplied by alpha, same as DXT3. DXT5 generally produces superior results for transparent gradients compared to DXT3.</para>
  17451. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17452. </summary>
  17453. </member>
  17454. <member name="F:Godot.Image.Format.RgtcR">
  17455. <summary>
  17456. <para>Texture format that uses <a href="https://www.khronos.org/opengl/wiki/Red_Green_Texture_Compression">Red Green Texture Compression</a>, normalizing the red channel data using the same compression algorithm that DXT5 uses for the alpha channel.</para>
  17457. </summary>
  17458. </member>
  17459. <member name="F:Godot.Image.Format.RgtcRg">
  17460. <summary>
  17461. <para>Texture format that uses <a href="https://www.khronos.org/opengl/wiki/Red_Green_Texture_Compression">Red Green Texture Compression</a>, normalizing the red and green channel data using the same compression algorithm that DXT5 uses for the alpha channel.</para>
  17462. </summary>
  17463. </member>
  17464. <member name="F:Godot.Image.Format.BptcRgba">
  17465. <summary>
  17466. <para>Texture format that uses <a href="https://www.khronos.org/opengl/wiki/BPTC_Texture_Compression">BPTC</a> compression with unsigned normalized RGBA components.</para>
  17467. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17468. </summary>
  17469. </member>
  17470. <member name="F:Godot.Image.Format.BptcRgbf">
  17471. <summary>
  17472. <para>Texture format that uses <a href="https://www.khronos.org/opengl/wiki/BPTC_Texture_Compression">BPTC</a> compression with signed floating-point RGB components.</para>
  17473. </summary>
  17474. </member>
  17475. <member name="F:Godot.Image.Format.BptcRgbfu">
  17476. <summary>
  17477. <para>Texture format that uses <a href="https://www.khronos.org/opengl/wiki/BPTC_Texture_Compression">BPTC</a> compression with unsigned floating-point RGB components.</para>
  17478. </summary>
  17479. </member>
  17480. <member name="F:Godot.Image.Format.Pvrtc2">
  17481. <summary>
  17482. <para>Texture format used on PowerVR-supported mobile platforms, uses 2-bit color depth with no alpha. More information can be found <a href="https://en.wikipedia.org/wiki/PVRTC">here</a>.</para>
  17483. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17484. </summary>
  17485. </member>
  17486. <member name="F:Godot.Image.Format.Pvrtc2a">
  17487. <summary>
  17488. <para>Same as <a href="https://en.wikipedia.org/wiki/PVRTC">PVRTC2</a>, but with an alpha component.</para>
  17489. </summary>
  17490. </member>
  17491. <member name="F:Godot.Image.Format.Pvrtc4">
  17492. <summary>
  17493. <para>Similar to <a href="https://en.wikipedia.org/wiki/PVRTC">PVRTC2</a>, but with 4-bit color depth and no alpha.</para>
  17494. </summary>
  17495. </member>
  17496. <member name="F:Godot.Image.Format.Pvrtc4a">
  17497. <summary>
  17498. <para>Same as <a href="https://en.wikipedia.org/wiki/PVRTC">PVRTC4</a>, but with an alpha component.</para>
  17499. </summary>
  17500. </member>
  17501. <member name="F:Godot.Image.Format.Etc">
  17502. <summary>
  17503. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC1">Ericsson Texture Compression format 1</a>, also referred to as "ETC1", and is part of the OpenGL ES graphics standard. This format cannot store an alpha channel.</para>
  17504. </summary>
  17505. </member>
  17506. <member name="F:Godot.Image.Format.Etc2R11">
  17507. <summary>
  17508. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC2_and_EAC">Ericsson Texture Compression format 2</a> (<c>R11_EAC</c> variant), which provides one channel of unsigned data.</para>
  17509. </summary>
  17510. </member>
  17511. <member name="F:Godot.Image.Format.Etc2R11s">
  17512. <summary>
  17513. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC2_and_EAC">Ericsson Texture Compression format 2</a> (<c>SIGNED_R11_EAC</c> variant), which provides one channel of signed data.</para>
  17514. </summary>
  17515. </member>
  17516. <member name="F:Godot.Image.Format.Etc2Rg11">
  17517. <summary>
  17518. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC2_and_EAC">Ericsson Texture Compression format 2</a> (<c>RG11_EAC</c> variant), which provides two channels of unsigned data.</para>
  17519. </summary>
  17520. </member>
  17521. <member name="F:Godot.Image.Format.Etc2Rg11s">
  17522. <summary>
  17523. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC2_and_EAC">Ericsson Texture Compression format 2</a> (<c>SIGNED_RG11_EAC</c> variant), which provides two channels of signed data.</para>
  17524. </summary>
  17525. </member>
  17526. <member name="F:Godot.Image.Format.Etc2Rgb8">
  17527. <summary>
  17528. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC2_and_EAC">Ericsson Texture Compression format 2</a> (<c>RGB8</c> variant), which is a follow-up of ETC1 and compresses RGB888 data.</para>
  17529. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17530. </summary>
  17531. </member>
  17532. <member name="F:Godot.Image.Format.Etc2Rgba8">
  17533. <summary>
  17534. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC2_and_EAC">Ericsson Texture Compression format 2</a> (<c>RGBA8</c>variant), which compresses RGBA8888 data with full alpha support.</para>
  17535. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17536. </summary>
  17537. </member>
  17538. <member name="F:Godot.Image.Format.Etc2Rgb8a1">
  17539. <summary>
  17540. <para><a href="https://en.wikipedia.org/wiki/Ericsson_Texture_Compression#ETC2_and_EAC">Ericsson Texture Compression format 2</a> (<c>RGB8_PUNCHTHROUGH_ALPHA1</c> variant), which compresses RGBA data to make alpha either fully transparent or fully opaque.</para>
  17541. <para>Note: When creating an <see cref="T:Godot.ImageTexture"/>, an sRGB to linear color space conversion is performed.</para>
  17542. </summary>
  17543. </member>
  17544. <member name="F:Godot.Image.Format.Max">
  17545. <summary>
  17546. <para>Represents the size of the <see cref="T:Godot.Image.Format"/> enum.</para>
  17547. </summary>
  17548. </member>
  17549. <member name="P:Godot.Image.Data">
  17550. <summary>
  17551. <para>Holds all of the image's color data in a given format. See <see cref="T:Godot.Image.Format"/> constants.</para>
  17552. </summary>
  17553. </member>
  17554. <member name="M:Godot.Image.GetWidth">
  17555. <summary>
  17556. <para>Returns the image's width.</para>
  17557. </summary>
  17558. </member>
  17559. <member name="M:Godot.Image.GetHeight">
  17560. <summary>
  17561. <para>Returns the image's height.</para>
  17562. </summary>
  17563. </member>
  17564. <member name="M:Godot.Image.GetSize">
  17565. <summary>
  17566. <para>Returns the image's size (width and height).</para>
  17567. </summary>
  17568. </member>
  17569. <member name="M:Godot.Image.HasMipmaps">
  17570. <summary>
  17571. <para>Returns <c>true</c> if the image has generated mipmaps.</para>
  17572. </summary>
  17573. </member>
  17574. <member name="M:Godot.Image.GetFormat">
  17575. <summary>
  17576. <para>Returns the image's format. See <see cref="T:Godot.Image.Format"/> constants.</para>
  17577. </summary>
  17578. </member>
  17579. <member name="M:Godot.Image.GetData">
  17580. <summary>
  17581. <para>Returns the image's raw data.</para>
  17582. </summary>
  17583. </member>
  17584. <member name="M:Godot.Image.Convert(Godot.Image.Format)">
  17585. <summary>
  17586. <para>Converts the image's format. See <see cref="T:Godot.Image.Format"/> constants.</para>
  17587. </summary>
  17588. </member>
  17589. <member name="M:Godot.Image.GetMipmapOffset(System.Int32)">
  17590. <summary>
  17591. <para>Returns the offset where the image's mipmap with index <c>mipmap</c> is stored in the <c>data</c> dictionary.</para>
  17592. </summary>
  17593. </member>
  17594. <member name="M:Godot.Image.ResizeToPo2(System.Boolean)">
  17595. <summary>
  17596. <para>Resizes the image to the nearest power of 2 for the width and height. If <c>square</c> is <c>true</c> then set width and height to be the same.</para>
  17597. </summary>
  17598. </member>
  17599. <member name="M:Godot.Image.Resize(System.Int32,System.Int32,Godot.Image.Interpolation)">
  17600. <summary>
  17601. <para>Resizes the image to the given <c>width</c> and <c>height</c>. New pixels are calculated using <c>interpolation</c>. See <c>interpolation</c> constants.</para>
  17602. </summary>
  17603. </member>
  17604. <member name="M:Godot.Image.ShrinkX2">
  17605. <summary>
  17606. <para>Shrinks the image by a factor of 2.</para>
  17607. </summary>
  17608. </member>
  17609. <member name="M:Godot.Image.ExpandX2Hq2x">
  17610. <summary>
  17611. <para>Stretches the image and enlarges it by a factor of 2. No interpolation is done.</para>
  17612. </summary>
  17613. </member>
  17614. <member name="M:Godot.Image.Crop(System.Int32,System.Int32)">
  17615. <summary>
  17616. <para>Crops the image to the given <c>width</c> and <c>height</c>. If the specified size is larger than the current size, the extra area is filled with black pixels.</para>
  17617. </summary>
  17618. </member>
  17619. <member name="M:Godot.Image.FlipX">
  17620. <summary>
  17621. <para>Flips the image horizontally.</para>
  17622. </summary>
  17623. </member>
  17624. <member name="M:Godot.Image.FlipY">
  17625. <summary>
  17626. <para>Flips the image vertically.</para>
  17627. </summary>
  17628. </member>
  17629. <member name="M:Godot.Image.GenerateMipmaps(System.Boolean)">
  17630. <summary>
  17631. <para>Generates mipmaps for the image. Mipmaps are pre-calculated and lower resolution copies of the image. Mipmaps are automatically used if the image needs to be scaled down when rendered. This improves image quality and the performance of the rendering. Returns an error if the image is compressed, in a custom format or if the image's width/height is 0.</para>
  17632. </summary>
  17633. </member>
  17634. <member name="M:Godot.Image.ClearMipmaps">
  17635. <summary>
  17636. <para>Removes the image's mipmaps.</para>
  17637. </summary>
  17638. </member>
  17639. <member name="M:Godot.Image.Create(System.Int32,System.Int32,System.Boolean,Godot.Image.Format)">
  17640. <summary>
  17641. <para>Creates an empty image of given size and format. See <see cref="T:Godot.Image.Format"/> constants. If <c>use_mipmaps</c> is <c>true</c> then generate mipmaps for this image. See the <see cref="M:Godot.Image.GenerateMipmaps(System.Boolean)"/>.</para>
  17642. </summary>
  17643. </member>
  17644. <member name="M:Godot.Image.CreateFromData(System.Int32,System.Int32,System.Boolean,Godot.Image.Format,System.Byte[])">
  17645. <summary>
  17646. <para>Creates a new image of given size and format. See <see cref="T:Godot.Image.Format"/> constants. Fills the image with the given raw data. If <c>use_mipmaps</c> is <c>true</c> then loads mipmaps for this image from <c>data</c>. See <see cref="M:Godot.Image.GenerateMipmaps(System.Boolean)"/>.</para>
  17647. </summary>
  17648. </member>
  17649. <member name="M:Godot.Image.IsEmpty">
  17650. <summary>
  17651. <para>Returns <c>true</c> if the image has no data.</para>
  17652. </summary>
  17653. </member>
  17654. <member name="M:Godot.Image.Load(System.String)">
  17655. <summary>
  17656. <para>Loads an image from file <c>path</c>. See <a href="https://docs.godotengine.org/en/latest/getting_started/workflow/assets/importing_images.html#supported-image-formats">Supported image formats</a> for a list of supported image formats and limitations.</para>
  17657. </summary>
  17658. </member>
  17659. <member name="M:Godot.Image.SavePng(System.String)">
  17660. <summary>
  17661. <para>Saves the image as a PNG file to <c>path</c>.</para>
  17662. </summary>
  17663. </member>
  17664. <member name="M:Godot.Image.SaveExr(System.String,System.Boolean)">
  17665. <summary>
  17666. <para>Saves the image as an EXR file to <c>path</c>. If <c>grayscale</c> is <c>true</c> and the image has only one channel, it will be saved explicitly as monochrome rather than one red channel. This function will return if Godot was compiled without the TinyEXR module.</para>
  17667. </summary>
  17668. </member>
  17669. <member name="M:Godot.Image.DetectAlpha">
  17670. <summary>
  17671. <para>Returns if the image has data for alpha values. Returns if all the alpha values are stored in a single bit. Returns if no data for alpha values is found.</para>
  17672. </summary>
  17673. </member>
  17674. <member name="M:Godot.Image.IsInvisible">
  17675. <summary>
  17676. <para>Returns <c>true</c> if all the image's pixels have an alpha value of 0. Returns <c>false</c> if any pixel has an alpha value higher than 0.</para>
  17677. </summary>
  17678. </member>
  17679. <member name="M:Godot.Image.Compress(Godot.Image.CompressMode,Godot.Image.CompressSource,System.Single)">
  17680. <summary>
  17681. <para>Compresses the image to use less memory. Can not directly access pixel data while the image is compressed. Returns error if the chosen compression mode is not available. See <see cref="T:Godot.Image.CompressMode"/> and <see cref="T:Godot.Image.CompressSource"/> constants.</para>
  17682. </summary>
  17683. </member>
  17684. <member name="M:Godot.Image.Decompress">
  17685. <summary>
  17686. <para>Decompresses the image if it is compressed. Returns an error if decompress function is not available.</para>
  17687. </summary>
  17688. </member>
  17689. <member name="M:Godot.Image.IsCompressed">
  17690. <summary>
  17691. <para>Returns <c>true</c> if the image is compressed.</para>
  17692. </summary>
  17693. </member>
  17694. <member name="M:Godot.Image.FixAlphaEdges">
  17695. <summary>
  17696. <para>Blends low-alpha pixels with nearby pixels.</para>
  17697. </summary>
  17698. </member>
  17699. <member name="M:Godot.Image.PremultiplyAlpha">
  17700. <summary>
  17701. <para>Multiplies color values with alpha values. Resulting color values for a pixel are <c>(color * alpha)/256</c>.</para>
  17702. </summary>
  17703. </member>
  17704. <member name="M:Godot.Image.SrgbToLinear">
  17705. <summary>
  17706. <para>Converts the raw data from the sRGB colorspace to a linear scale.</para>
  17707. </summary>
  17708. </member>
  17709. <member name="M:Godot.Image.NormalmapToXy">
  17710. <summary>
  17711. <para>Converts the image's data to represent coordinates on a 3D plane. This is used when the image represents a normalmap. A normalmap can add lots of detail to a 3D surface without increasing the polygon count.</para>
  17712. </summary>
  17713. </member>
  17714. <member name="M:Godot.Image.RgbeToSrgb">
  17715. <summary>
  17716. <para>Converts a standard RGBE (Red Green Blue Exponent) image to an sRGB image.</para>
  17717. </summary>
  17718. </member>
  17719. <member name="M:Godot.Image.BumpmapToNormalmap(System.Single)">
  17720. <summary>
  17721. <para>Converts a bumpmap to a normalmap. A bumpmap provides a height offset per-pixel, while a normalmap provides a normal direction per pixel.</para>
  17722. </summary>
  17723. </member>
  17724. <member name="M:Godot.Image.BlitRect(Godot.Image,Godot.Rect2,Godot.Vector2)">
  17725. <summary>
  17726. <para>Copies <c>src_rect</c> from <c>src</c> image to this image at coordinates <c>dst</c>.</para>
  17727. </summary>
  17728. </member>
  17729. <member name="M:Godot.Image.BlitRectMask(Godot.Image,Godot.Image,Godot.Rect2,Godot.Vector2)">
  17730. <summary>
  17731. <para>Blits <c>src_rect</c> area from <c>src</c> image to this image at the coordinates given by <c>dst</c>. <c>src</c> pixel is copied onto <c>dst</c> if the corresponding <c>mask</c> pixel's alpha value is not 0. <c>src</c> image and <c>mask</c> image must have the same size (width and height) but they can have different formats.</para>
  17732. </summary>
  17733. </member>
  17734. <member name="M:Godot.Image.BlendRect(Godot.Image,Godot.Rect2,Godot.Vector2)">
  17735. <summary>
  17736. <para>Alpha-blends <c>src_rect</c> from <c>src</c> image to this image at coordinates <c>dest</c>.</para>
  17737. </summary>
  17738. </member>
  17739. <member name="M:Godot.Image.BlendRectMask(Godot.Image,Godot.Image,Godot.Rect2,Godot.Vector2)">
  17740. <summary>
  17741. <para>Alpha-blends <c>src_rect</c> from <c>src</c> image to this image using <c>mask</c> image at coordinates <c>dst</c>. Alpha channels are required for both <c>src</c> and <c>mask</c>. <c>dst</c> pixels and <c>src</c> pixels will blend if the corresponding mask pixel's alpha value is not 0. <c>src</c> image and <c>mask</c> image must have the same size (width and height) but they can have different formats.</para>
  17742. </summary>
  17743. </member>
  17744. <member name="M:Godot.Image.Fill(Godot.Color)">
  17745. <summary>
  17746. <para>Fills the image with a given <see cref="T:Godot.Color"/>.</para>
  17747. </summary>
  17748. </member>
  17749. <member name="M:Godot.Image.GetUsedRect">
  17750. <summary>
  17751. <para>Returns a <see cref="T:Godot.Rect2"/> enclosing the visible portion of the image, considering each pixel with a non-zero alpha channel as visible.</para>
  17752. </summary>
  17753. </member>
  17754. <member name="M:Godot.Image.GetRect(Godot.Rect2)">
  17755. <summary>
  17756. <para>Returns a new image that is a copy of the image's area specified with <c>rect</c>.</para>
  17757. </summary>
  17758. </member>
  17759. <member name="M:Godot.Image.CopyFrom(Godot.Image)">
  17760. <summary>
  17761. <para>Copies <c>src</c> image to this image.</para>
  17762. </summary>
  17763. </member>
  17764. <member name="M:Godot.Image.Lock">
  17765. <summary>
  17766. <para>Locks the data for reading and writing access. Sends an error to the console if the image is not locked when reading or writing a pixel.</para>
  17767. </summary>
  17768. </member>
  17769. <member name="M:Godot.Image.Unlock">
  17770. <summary>
  17771. <para>Unlocks the data and prevents changes.</para>
  17772. </summary>
  17773. </member>
  17774. <member name="M:Godot.Image.GetPixelv(Godot.Vector2)">
  17775. <summary>
  17776. <para>Returns the color of the pixel at <c>src</c> if the image is locked. If the image is unlocked, it always returns a <see cref="T:Godot.Color"/> with the value <c>(0, 0, 0, 1.0)</c>. This is the same as <see cref="M:Godot.Image.GetPixel(System.Int32,System.Int32)"/>, but with a Vector2 argument instead of two integer arguments.</para>
  17777. </summary>
  17778. </member>
  17779. <member name="M:Godot.Image.GetPixel(System.Int32,System.Int32)">
  17780. <summary>
  17781. <para>Returns the color of the pixel at <c>(x, y)</c> if the image is locked. If the image is unlocked, it always returns a <see cref="T:Godot.Color"/> with the value <c>(0, 0, 0, 1.0)</c>. This is the same as <see cref="M:Godot.Image.GetPixelv(Godot.Vector2)"/>, but two integer arguments instead of a Vector2 argument.</para>
  17782. </summary>
  17783. </member>
  17784. <member name="M:Godot.Image.SetPixelv(Godot.Vector2,Godot.Color)">
  17785. <summary>
  17786. <para>Sets the <see cref="T:Godot.Color"/> of the pixel at <c>(dst.x, dst.y)</c> if the image is locked. Note that the <c>dst</c> values must be integers. Example:</para>
  17787. <para><code>
  17788. var img = Image.new()
  17789. img.create(img_width, img_height, false, Image.FORMAT_RGBA8)
  17790. img.lock()
  17791. img.set_pixelv(Vector2(x, y), color) # Works
  17792. img.unlock()
  17793. img.set_pixelv(Vector2(x, y), color) # Does not have an effect
  17794. </code></para>
  17795. </summary>
  17796. </member>
  17797. <member name="M:Godot.Image.SetPixel(System.Int32,System.Int32,Godot.Color)">
  17798. <summary>
  17799. <para>Sets the <see cref="T:Godot.Color"/> of the pixel at <c>(x, y)</c> if the image is locked. Example:</para>
  17800. <para><code>
  17801. var img = Image.new()
  17802. img.create(img_width, img_height, false, Image.FORMAT_RGBA8)
  17803. img.lock()
  17804. img.set_pixel(x, y, color) # Works
  17805. img.unlock()
  17806. img.set_pixel(x, y, color) # Does not have an effect
  17807. </code></para>
  17808. </summary>
  17809. </member>
  17810. <member name="M:Godot.Image.LoadPngFromBuffer(System.Byte[])">
  17811. <summary>
  17812. <para>Loads an image from the binary contents of a PNG file.</para>
  17813. </summary>
  17814. </member>
  17815. <member name="M:Godot.Image.LoadJpgFromBuffer(System.Byte[])">
  17816. <summary>
  17817. <para>Loads an image from the binary contents of a JPEG file.</para>
  17818. </summary>
  17819. </member>
  17820. <member name="M:Godot.Image.LoadWebpFromBuffer(System.Byte[])">
  17821. <summary>
  17822. <para>Loads an image from the binary contents of a WebP file.</para>
  17823. </summary>
  17824. </member>
  17825. <member name="T:Godot.ImageTexture">
  17826. <summary>
  17827. <para>A <see cref="T:Godot.Texture"/> based on an <see cref="T:Godot.Image"/>. Can be created from an <see cref="T:Godot.Image"/> with <see cref="M:Godot.ImageTexture.CreateFromImage(Godot.Image,System.UInt32)"/>.</para>
  17828. <para>Note: The maximum image size is 16384×16384 pixels due to graphics hardware limitations. Larger images will fail to import.</para>
  17829. </summary>
  17830. </member>
  17831. <member name="F:Godot.ImageTexture.StorageEnum.Raw">
  17832. <summary>
  17833. <para><see cref="T:Godot.Image"/> data is stored raw and unaltered.</para>
  17834. </summary>
  17835. </member>
  17836. <member name="F:Godot.ImageTexture.StorageEnum.CompressLossy">
  17837. <summary>
  17838. <para><see cref="T:Godot.Image"/> data is compressed with a lossy algorithm. You can set the storage quality with <see cref="P:Godot.ImageTexture.LossyQuality"/>.</para>
  17839. </summary>
  17840. </member>
  17841. <member name="F:Godot.ImageTexture.StorageEnum.CompressLossless">
  17842. <summary>
  17843. <para><see cref="T:Godot.Image"/> data is compressed with a lossless algorithm.</para>
  17844. </summary>
  17845. </member>
  17846. <member name="P:Godot.ImageTexture.Storage">
  17847. <summary>
  17848. <para>The storage type (raw, lossy, or compressed).</para>
  17849. </summary>
  17850. </member>
  17851. <member name="P:Godot.ImageTexture.LossyQuality">
  17852. <summary>
  17853. <para>The storage quality for .</para>
  17854. </summary>
  17855. </member>
  17856. <member name="M:Godot.ImageTexture.Create(System.Int32,System.Int32,Godot.Image.Format,System.UInt32)">
  17857. <summary>
  17858. <para>Create a new <see cref="T:Godot.ImageTexture"/> with <c>width</c> and <c>height</c>.</para>
  17859. <para><c>format</c> is a value from <see cref="T:Godot.Image.Format"/>, <c>flags</c> is any combination of <see cref="T:Godot.Texture.FlagsEnum"/>.</para>
  17860. </summary>
  17861. </member>
  17862. <member name="M:Godot.ImageTexture.CreateFromImage(Godot.Image,System.UInt32)">
  17863. <summary>
  17864. <para>Create a new <see cref="T:Godot.ImageTexture"/> from an <see cref="T:Godot.Image"/> with <c>flags</c> from <see cref="T:Godot.Texture.FlagsEnum"/>. An sRGB to linear color space conversion can take place, according to <see cref="T:Godot.Image.Format"/>.</para>
  17865. </summary>
  17866. </member>
  17867. <member name="M:Godot.ImageTexture.GetFormat">
  17868. <summary>
  17869. <para>Returns the format of the <see cref="T:Godot.ImageTexture"/>, one of <see cref="T:Godot.Image.Format"/>.</para>
  17870. </summary>
  17871. </member>
  17872. <member name="M:Godot.ImageTexture.Load(System.String)">
  17873. <summary>
  17874. <para>Load an <see cref="T:Godot.ImageTexture"/> from a file path.</para>
  17875. </summary>
  17876. </member>
  17877. <member name="M:Godot.ImageTexture.SetData(Godot.Image)">
  17878. <summary>
  17879. <para>Sets the <see cref="T:Godot.Image"/> of this <see cref="T:Godot.ImageTexture"/>.</para>
  17880. </summary>
  17881. </member>
  17882. <member name="M:Godot.ImageTexture.SetSizeOverride(Godot.Vector2)">
  17883. <summary>
  17884. <para>Resizes the <see cref="T:Godot.ImageTexture"/> to the specified dimensions.</para>
  17885. </summary>
  17886. </member>
  17887. <member name="T:Godot.ImmediateGeometry">
  17888. <summary>
  17889. <para>Draws simple geometry from code. Uses a drawing mode similar to OpenGL 1.x.</para>
  17890. <para>See also <see cref="T:Godot.ArrayMesh"/>, <see cref="T:Godot.MeshDataTool"/> and <see cref="T:Godot.SurfaceTool"/> for procedural geometry generation.</para>
  17891. <para>Note: ImmediateGeometry3D is best suited to small amounts of mesh data that change every frame. It will be slow when handling large amounts of mesh data. If mesh data doesn't change often, use <see cref="T:Godot.ArrayMesh"/>, <see cref="T:Godot.MeshDataTool"/> or <see cref="T:Godot.SurfaceTool"/> instead.</para>
  17892. <para>Note: Godot uses clockwise <a href="https://learnopengl.com/Advanced-OpenGL/Face-culling">winding order</a> for front faces of triangle primitive modes.</para>
  17893. </summary>
  17894. </member>
  17895. <member name="M:Godot.ImmediateGeometry.Begin(Godot.Mesh.PrimitiveType,Godot.Texture)">
  17896. <summary>
  17897. <para>Begin drawing (and optionally pass a texture override). When done call <see cref="M:Godot.ImmediateGeometry.End"/>. For more information on how this works, search for <c>glBegin()</c> and <c>glEnd()</c> references.</para>
  17898. <para>For the type of primitive, see the <see cref="T:Godot.Mesh.PrimitiveType"/> enum.</para>
  17899. </summary>
  17900. </member>
  17901. <member name="M:Godot.ImmediateGeometry.SetNormal(Godot.Vector3)">
  17902. <summary>
  17903. <para>The next vertex's normal.</para>
  17904. </summary>
  17905. </member>
  17906. <member name="M:Godot.ImmediateGeometry.SetTangent(Godot.Plane)">
  17907. <summary>
  17908. <para>The next vertex's tangent (and binormal facing).</para>
  17909. </summary>
  17910. </member>
  17911. <member name="M:Godot.ImmediateGeometry.SetColor(Godot.Color)">
  17912. <summary>
  17913. <para>The current drawing color.</para>
  17914. </summary>
  17915. </member>
  17916. <member name="M:Godot.ImmediateGeometry.SetUv(Godot.Vector2)">
  17917. <summary>
  17918. <para>The next vertex's UV.</para>
  17919. </summary>
  17920. </member>
  17921. <member name="M:Godot.ImmediateGeometry.SetUv2(Godot.Vector2)">
  17922. <summary>
  17923. <para>The next vertex's second layer UV.</para>
  17924. </summary>
  17925. </member>
  17926. <member name="M:Godot.ImmediateGeometry.AddVertex(Godot.Vector3)">
  17927. <summary>
  17928. <para>Adds a vertex in local coordinate space with the currently set color/uv/etc.</para>
  17929. </summary>
  17930. </member>
  17931. <member name="M:Godot.ImmediateGeometry.AddSphere(System.Int32,System.Int32,System.Single,System.Boolean)">
  17932. <summary>
  17933. <para>Simple helper to draw an UV sphere with given latitude, longitude and radius.</para>
  17934. </summary>
  17935. </member>
  17936. <member name="M:Godot.ImmediateGeometry.End">
  17937. <summary>
  17938. <para>Ends a drawing context and displays the results.</para>
  17939. </summary>
  17940. </member>
  17941. <member name="M:Godot.ImmediateGeometry.Clear">
  17942. <summary>
  17943. <para>Clears everything that was drawn using begin/end.</para>
  17944. </summary>
  17945. </member>
  17946. <member name="T:Godot.Input">
  17947. <summary>
  17948. <para>A singleton that deals with inputs. This includes key presses, mouse buttons and movement, joypads, and input actions. Actions and their events can be set in the Input Map tab in the Project &gt; Project Settings, or with the <see cref="T:Godot.InputMap"/> class.</para>
  17949. </summary>
  17950. </member>
  17951. <member name="F:Godot.Input.MouseMode.Visible">
  17952. <summary>
  17953. <para>Makes the mouse cursor visible if it is hidden.</para>
  17954. </summary>
  17955. </member>
  17956. <member name="F:Godot.Input.MouseMode.Hidden">
  17957. <summary>
  17958. <para>Makes the mouse cursor hidden if it is visible.</para>
  17959. </summary>
  17960. </member>
  17961. <member name="F:Godot.Input.MouseMode.Captured">
  17962. <summary>
  17963. <para>Captures the mouse. The mouse will be hidden and unable to leave the game window, but it will still register movement and mouse button presses. On Windows and Linux, the mouse will use raw input mode, which means the reported movement will be unaffected by the OS' mouse acceleration settings.</para>
  17964. </summary>
  17965. </member>
  17966. <member name="F:Godot.Input.MouseMode.Confined">
  17967. <summary>
  17968. <para>Makes the mouse cursor visible but confines it to the game window.</para>
  17969. </summary>
  17970. </member>
  17971. <member name="F:Godot.Input.CursorShape.Arrow">
  17972. <summary>
  17973. <para>Arrow cursor. Standard, default pointing cursor.</para>
  17974. </summary>
  17975. </member>
  17976. <member name="F:Godot.Input.CursorShape.Ibeam">
  17977. <summary>
  17978. <para>I-beam cursor. Usually used to show where the text cursor will appear when the mouse is clicked.</para>
  17979. </summary>
  17980. </member>
  17981. <member name="F:Godot.Input.CursorShape.PointingHand">
  17982. <summary>
  17983. <para>Pointing hand cursor. Usually used to indicate the pointer is over a link or other interactable item.</para>
  17984. </summary>
  17985. </member>
  17986. <member name="F:Godot.Input.CursorShape.Cross">
  17987. <summary>
  17988. <para>Cross cursor. Typically appears over regions in which a drawing operation can be performed or for selections.</para>
  17989. </summary>
  17990. </member>
  17991. <member name="F:Godot.Input.CursorShape.Wait">
  17992. <summary>
  17993. <para>Wait cursor. Indicates that the application is busy performing an operation. This cursor shape denotes that the application is still usable during the operation.</para>
  17994. </summary>
  17995. </member>
  17996. <member name="F:Godot.Input.CursorShape.Busy">
  17997. <summary>
  17998. <para>Busy cursor. Indicates that the application is busy performing an operation. This cursor shape denotes that the application isn't usable during the operation (e.g. something is blocking its main thread).</para>
  17999. </summary>
  18000. </member>
  18001. <member name="F:Godot.Input.CursorShape.Drag">
  18002. <summary>
  18003. <para>Drag cursor. Usually displayed when dragging something.</para>
  18004. </summary>
  18005. </member>
  18006. <member name="F:Godot.Input.CursorShape.CanDrop">
  18007. <summary>
  18008. <para>Can drop cursor. Usually displayed when dragging something to indicate that it can be dropped at the current position.</para>
  18009. </summary>
  18010. </member>
  18011. <member name="F:Godot.Input.CursorShape.Forbidden">
  18012. <summary>
  18013. <para>Forbidden cursor. Indicates that the current action is forbidden (for example, when dragging something) or that the control at a position is disabled.</para>
  18014. </summary>
  18015. </member>
  18016. <member name="F:Godot.Input.CursorShape.Vsize">
  18017. <summary>
  18018. <para>Vertical resize mouse cursor. A double-headed vertical arrow. It tells the user they can resize the window or the panel vertically.</para>
  18019. </summary>
  18020. </member>
  18021. <member name="F:Godot.Input.CursorShape.Hsize">
  18022. <summary>
  18023. <para>Horizontal resize mouse cursor. A double-headed horizontal arrow. It tells the user they can resize the window or the panel horizontally.</para>
  18024. </summary>
  18025. </member>
  18026. <member name="F:Godot.Input.CursorShape.Bdiagsize">
  18027. <summary>
  18028. <para>Window resize mouse cursor. The cursor is a double-headed arrow that goes from the bottom left to the top right. It tells the user they can resize the window or the panel both horizontally and vertically.</para>
  18029. </summary>
  18030. </member>
  18031. <member name="F:Godot.Input.CursorShape.Fdiagsize">
  18032. <summary>
  18033. <para>Window resize mouse cursor. The cursor is a double-headed arrow that goes from the top left to the bottom right, the opposite of . It tells the user they can resize the window or the panel both horizontally and vertically.</para>
  18034. </summary>
  18035. </member>
  18036. <member name="F:Godot.Input.CursorShape.Move">
  18037. <summary>
  18038. <para>Move cursor. Indicates that something can be moved.</para>
  18039. </summary>
  18040. </member>
  18041. <member name="F:Godot.Input.CursorShape.Vsplit">
  18042. <summary>
  18043. <para>Vertical split mouse cursor. On Windows, it's the same as .</para>
  18044. </summary>
  18045. </member>
  18046. <member name="F:Godot.Input.CursorShape.Hsplit">
  18047. <summary>
  18048. <para>Horizontal split mouse cursor. On Windows, it's the same as .</para>
  18049. </summary>
  18050. </member>
  18051. <member name="F:Godot.Input.CursorShape.Help">
  18052. <summary>
  18053. <para>Help cursor. Usually a question mark.</para>
  18054. </summary>
  18055. </member>
  18056. <member name="M:Godot.Input.IsKeyPressed(System.Int32)">
  18057. <summary>
  18058. <para>Returns <c>true</c> if you are pressing the key. You can pass a <see cref="T:Godot.KeyList"/> constant.</para>
  18059. </summary>
  18060. </member>
  18061. <member name="M:Godot.Input.IsMouseButtonPressed(System.Int32)">
  18062. <summary>
  18063. <para>Returns <c>true</c> if you are pressing the mouse button specified with <see cref="T:Godot.ButtonList"/>.</para>
  18064. </summary>
  18065. </member>
  18066. <member name="M:Godot.Input.IsJoyButtonPressed(System.Int32,System.Int32)">
  18067. <summary>
  18068. <para>Returns <c>true</c> if you are pressing the joypad button (see <see cref="T:Godot.JoystickList"/>).</para>
  18069. </summary>
  18070. </member>
  18071. <member name="M:Godot.Input.IsActionPressed(System.String)">
  18072. <summary>
  18073. <para>Returns <c>true</c> if you are pressing the action event. Note that if an action has multiple buttons assigned and more than one of them is pressed, releasing one button will release the action, even if some other button assigned to this action is still pressed.</para>
  18074. </summary>
  18075. </member>
  18076. <member name="M:Godot.Input.IsActionJustPressed(System.String)">
  18077. <summary>
  18078. <para>Returns <c>true</c> when the user starts pressing the action event, meaning it's <c>true</c> only on the frame that the user pressed down the button.</para>
  18079. <para>This is useful for code that needs to run only once when an action is pressed, instead of every frame while it's pressed.</para>
  18080. </summary>
  18081. </member>
  18082. <member name="M:Godot.Input.IsActionJustReleased(System.String)">
  18083. <summary>
  18084. <para>Returns <c>true</c> when the user stops pressing the action event, meaning it's <c>true</c> only on the frame that the user released the button.</para>
  18085. </summary>
  18086. </member>
  18087. <member name="M:Godot.Input.GetActionStrength(System.String)">
  18088. <summary>
  18089. <para>Returns a value between 0 and 1 representing the intensity of the given action. In a joypad, for example, the further away the axis (analog sticks or L2, R2 triggers) is from the dead zone, the closer the value will be to 1. If the action is mapped to a control that has no axis as the keyboard, the value returned will be 0 or 1.</para>
  18090. </summary>
  18091. </member>
  18092. <member name="M:Godot.Input.AddJoyMapping(System.String,System.Boolean)">
  18093. <summary>
  18094. <para>Adds a new mapping entry (in SDL2 format) to the mapping database. Optionally update already connected devices.</para>
  18095. </summary>
  18096. </member>
  18097. <member name="M:Godot.Input.RemoveJoyMapping(System.String)">
  18098. <summary>
  18099. <para>Removes all mappings from the internal database that match the given GUID.</para>
  18100. </summary>
  18101. </member>
  18102. <member name="M:Godot.Input.JoyConnectionChanged(System.Int32,System.Boolean,System.String,System.String)">
  18103. <summary>
  18104. <para>Notifies the <see cref="T:Godot.Input"/> singleton that a connection has changed, to update the state for the <c>device</c> index.</para>
  18105. <para>This is used internally and should not have to be called from user scripts. See <c>joy_connection_changed</c> for the signal emitted when this is triggered internally.</para>
  18106. </summary>
  18107. </member>
  18108. <member name="M:Godot.Input.IsJoyKnown(System.Int32)">
  18109. <summary>
  18110. <para>Returns <c>true</c> if the system knows the specified device. This means that it sets all button and axis indices exactly as defined in <see cref="T:Godot.JoystickList"/>. Unknown joypads are not expected to match these constants, but you can still retrieve events from them.</para>
  18111. </summary>
  18112. </member>
  18113. <member name="M:Godot.Input.GetJoyAxis(System.Int32,System.Int32)">
  18114. <summary>
  18115. <para>Returns the current value of the joypad axis at given index (see <see cref="T:Godot.JoystickList"/>).</para>
  18116. </summary>
  18117. </member>
  18118. <member name="M:Godot.Input.GetJoyName(System.Int32)">
  18119. <summary>
  18120. <para>Returns the name of the joypad at the specified device index.</para>
  18121. </summary>
  18122. </member>
  18123. <member name="M:Godot.Input.GetJoyGuid(System.Int32)">
  18124. <summary>
  18125. <para>Returns a SDL2-compatible device GUID on platforms that use gamepad remapping. Returns <c>"Default Gamepad"</c> otherwise.</para>
  18126. </summary>
  18127. </member>
  18128. <member name="M:Godot.Input.GetConnectedJoypads">
  18129. <summary>
  18130. <para>Returns an <see cref="T:Godot.Collections.Array"/> containing the device IDs of all currently connected joypads.</para>
  18131. </summary>
  18132. </member>
  18133. <member name="M:Godot.Input.GetJoyVibrationStrength(System.Int32)">
  18134. <summary>
  18135. <para>Returns the strength of the joypad vibration: x is the strength of the weak motor, and y is the strength of the strong motor.</para>
  18136. </summary>
  18137. </member>
  18138. <member name="M:Godot.Input.GetJoyVibrationDuration(System.Int32)">
  18139. <summary>
  18140. <para>Returns the duration of the current vibration effect in seconds.</para>
  18141. </summary>
  18142. </member>
  18143. <member name="M:Godot.Input.GetJoyButtonString(System.Int32)">
  18144. <summary>
  18145. <para>Receives a gamepad button from <see cref="T:Godot.JoystickList"/> and returns its equivalent name as a string.</para>
  18146. </summary>
  18147. </member>
  18148. <member name="M:Godot.Input.GetJoyButtonIndexFromString(System.String)">
  18149. <summary>
  18150. <para>Returns the index of the provided button name.</para>
  18151. </summary>
  18152. </member>
  18153. <member name="M:Godot.Input.GetJoyAxisString(System.Int32)">
  18154. <summary>
  18155. <para>Receives a <see cref="T:Godot.JoystickList"/> axis and returns its equivalent name as a string.</para>
  18156. </summary>
  18157. </member>
  18158. <member name="M:Godot.Input.GetJoyAxisIndexFromString(System.String)">
  18159. <summary>
  18160. <para>Returns the index of the provided axis name.</para>
  18161. </summary>
  18162. </member>
  18163. <member name="M:Godot.Input.StartJoyVibration(System.Int32,System.Single,System.Single,System.Single)">
  18164. <summary>
  18165. <para>Starts to vibrate the joypad. Joypads usually come with two rumble motors, a strong and a weak one. <c>weak_magnitude</c> is the strength of the weak motor (between 0 and 1) and <c>strong_magnitude</c> is the strength of the strong motor (between 0 and 1). <c>duration</c> is the duration of the effect in seconds (a duration of 0 will try to play the vibration indefinitely).</para>
  18166. <para>Note: Not every hardware is compatible with long effect durations; it is recommended to restart an effect if it has to be played for more than a few seconds.</para>
  18167. </summary>
  18168. </member>
  18169. <member name="M:Godot.Input.StopJoyVibration(System.Int32)">
  18170. <summary>
  18171. <para>Stops the vibration of the joypad.</para>
  18172. </summary>
  18173. </member>
  18174. <member name="M:Godot.Input.VibrateHandheld(System.Int32)">
  18175. <summary>
  18176. <para>Vibrate Android and iOS devices.</para>
  18177. <para>Note: It needs VIBRATE permission for Android at export settings. iOS does not support duration.</para>
  18178. </summary>
  18179. </member>
  18180. <member name="M:Godot.Input.GetGravity">
  18181. <summary>
  18182. <para>If the device has an accelerometer, this will return the gravity. Otherwise, it returns an empty <see cref="T:Godot.Vector3"/>.</para>
  18183. </summary>
  18184. </member>
  18185. <member name="M:Godot.Input.GetAccelerometer">
  18186. <summary>
  18187. <para>If the device has an accelerometer, this will return the acceleration. Otherwise, it returns an empty <see cref="T:Godot.Vector3"/>.</para>
  18188. <para>Note this method returns an empty <see cref="T:Godot.Vector3"/> when running from the editor even when your device has an accelerometer. You must export your project to a supported device to read values from the accelerometer.</para>
  18189. </summary>
  18190. </member>
  18191. <member name="M:Godot.Input.GetMagnetometer">
  18192. <summary>
  18193. <para>If the device has a magnetometer, this will return the magnetic field strength in micro-Tesla for all axes.</para>
  18194. </summary>
  18195. </member>
  18196. <member name="M:Godot.Input.GetGyroscope">
  18197. <summary>
  18198. <para>If the device has a gyroscope, this will return the rate of rotation in rad/s around a device's X, Y, and Z axes. Otherwise, it returns an empty <see cref="T:Godot.Vector3"/>.</para>
  18199. </summary>
  18200. </member>
  18201. <member name="M:Godot.Input.GetLastMouseSpeed">
  18202. <summary>
  18203. <para>Returns the mouse speed for the last time the cursor was moved, and this until the next frame where the mouse moves. This means that even if the mouse is not moving, this function will still return the value of the last motion.</para>
  18204. </summary>
  18205. </member>
  18206. <member name="M:Godot.Input.GetMouseButtonMask">
  18207. <summary>
  18208. <para>Returns mouse buttons as a bitmask. If multiple mouse buttons are pressed at the same time, the bits are added together.</para>
  18209. </summary>
  18210. </member>
  18211. <member name="M:Godot.Input.SetMouseMode(Godot.Input.MouseMode)">
  18212. <summary>
  18213. <para>Sets the mouse mode. See the constants for more information.</para>
  18214. </summary>
  18215. </member>
  18216. <member name="M:Godot.Input.GetMouseMode">
  18217. <summary>
  18218. <para>Returns the mouse mode. See the constants for more information.</para>
  18219. </summary>
  18220. </member>
  18221. <member name="M:Godot.Input.WarpMousePosition(Godot.Vector2)">
  18222. <summary>
  18223. <para>Sets the mouse position to the specified vector.</para>
  18224. </summary>
  18225. </member>
  18226. <member name="M:Godot.Input.ActionPress(System.String,System.Single)">
  18227. <summary>
  18228. <para>This will simulate pressing the specified action.</para>
  18229. <para>The strength can be used for non-boolean actions, it's ranged between 0 and 1 representing the intensity of the given action.</para>
  18230. <para>Note: This method will not cause any <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> calls. It is intended to be used with <see cref="M:Godot.Input.IsActionPressed(System.String)"/> and <see cref="M:Godot.Input.IsActionJustPressed(System.String)"/>. If you want to simulate <c>_input</c>, use <see cref="M:Godot.Input.ParseInputEvent(Godot.InputEvent)"/> instead.</para>
  18231. </summary>
  18232. </member>
  18233. <member name="M:Godot.Input.ActionRelease(System.String)">
  18234. <summary>
  18235. <para>If the specified action is already pressed, this will release it.</para>
  18236. </summary>
  18237. </member>
  18238. <member name="M:Godot.Input.SetDefaultCursorShape(Godot.Input.CursorShape)">
  18239. <summary>
  18240. <para>Sets the default cursor shape to be used in the viewport instead of .</para>
  18241. <para>Note: If you want to change the default cursor shape for <see cref="T:Godot.Control"/>'s nodes, use <see cref="P:Godot.Control.MouseDefaultCursorShape"/> instead.</para>
  18242. <para>Note: This method generates an <see cref="T:Godot.InputEventMouseMotion"/> to update cursor immediately.</para>
  18243. </summary>
  18244. </member>
  18245. <member name="M:Godot.Input.GetCurrentCursorShape">
  18246. <summary>
  18247. <para>Returns the currently assigned cursor shape (see <see cref="T:Godot.Input.CursorShape"/>).</para>
  18248. </summary>
  18249. </member>
  18250. <member name="M:Godot.Input.SetCustomMouseCursor(Godot.Resource,Godot.Input.CursorShape,System.Nullable{Godot.Vector2})">
  18251. <summary>
  18252. <para>Sets a custom mouse cursor image, which is only visible inside the game window. The hotspot can also be specified. Passing <c>null</c> to the image parameter resets to the system cursor. See <see cref="T:Godot.Input.CursorShape"/> for the list of shapes.</para>
  18253. <para><c>image</c>'s size must be lower than 256×256.</para>
  18254. <para><c>hotspot</c> must be within <c>image</c>'s size.</para>
  18255. <para>Note: <see cref="T:Godot.AnimatedTexture"/>s aren't supported as custom mouse cursors. If using an <see cref="T:Godot.AnimatedTexture"/>, only the first frame will be displayed.</para>
  18256. <para>Note: Only images imported with the Lossless, Lossy or Uncompressed compression modes are supported. The Video RAM compression mode can't be used for custom cursors.</para>
  18257. </summary>
  18258. <param name="hotspot">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  18259. </member>
  18260. <member name="M:Godot.Input.ParseInputEvent(Godot.InputEvent)">
  18261. <summary>
  18262. <para>Feeds an <see cref="T:Godot.InputEvent"/> to the game. Can be used to artificially trigger input events from code. Also generates <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> calls.</para>
  18263. <para>Example:</para>
  18264. <para><code>
  18265. var a = InputEventAction.new()
  18266. a.action = "ui_cancel"
  18267. a.pressed = true
  18268. Input.parse_input_event(a)
  18269. </code></para>
  18270. </summary>
  18271. </member>
  18272. <member name="M:Godot.Input.SetUseAccumulatedInput(System.Boolean)">
  18273. <summary>
  18274. <para>Enables or disables the accumulation of similar input events sent by the operating system. When input accumulation is enabled, all input events generated during a frame will be merged and emitted when the frame is done rendering. Therefore, this limits the number of input method calls per second to the rendering FPS.</para>
  18275. <para>Input accumulation is enabled by default. It can be disabled to get slightly more precise/reactive input at the cost of increased CPU usage. In applications where drawing freehand lines is required, input accumulation should generally be disabled while the user is drawing the line to get results that closely follow the actual input.</para>
  18276. </summary>
  18277. </member>
  18278. <member name="T:Godot.InputEvent">
  18279. <summary>
  18280. <para>Base class of all sort of input event. See <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>.</para>
  18281. </summary>
  18282. </member>
  18283. <member name="P:Godot.InputEvent.Device">
  18284. <summary>
  18285. <para>The event's device ID.</para>
  18286. <para>Note: This device ID will always be <c>-1</c> for emulated mouse input from a touchscreen. This can be used to distinguish emulated mouse input from physical mouse input.</para>
  18287. </summary>
  18288. </member>
  18289. <member name="M:Godot.InputEvent.IsAction(System.String)">
  18290. <summary>
  18291. <para>Returns <c>true</c> if this input event matches a pre-defined action of any type.</para>
  18292. </summary>
  18293. </member>
  18294. <member name="M:Godot.InputEvent.IsActionPressed(System.String,System.Boolean)">
  18295. <summary>
  18296. <para>Returns <c>true</c> if the given action is being pressed (and is not an echo event for <see cref="T:Godot.InputEventKey"/> events, unless <c>allow_echo</c> is <c>true</c>). Not relevant for events of type <see cref="T:Godot.InputEventMouseMotion"/> or <see cref="T:Godot.InputEventScreenDrag"/>.</para>
  18297. </summary>
  18298. </member>
  18299. <member name="M:Godot.InputEvent.IsActionReleased(System.String)">
  18300. <summary>
  18301. <para>Returns <c>true</c> if the given action is released (i.e. not pressed). Not relevant for events of type <see cref="T:Godot.InputEventMouseMotion"/> or <see cref="T:Godot.InputEventScreenDrag"/>.</para>
  18302. </summary>
  18303. </member>
  18304. <member name="M:Godot.InputEvent.GetActionStrength(System.String)">
  18305. <summary>
  18306. <para>Returns a value between 0.0 and 1.0 depending on the given actions' state. Useful for getting the value of events of type <see cref="T:Godot.InputEventJoypadMotion"/>.</para>
  18307. </summary>
  18308. </member>
  18309. <member name="M:Godot.InputEvent.IsPressed">
  18310. <summary>
  18311. <para>Returns <c>true</c> if this input event is pressed. Not relevant for events of type <see cref="T:Godot.InputEventMouseMotion"/> or <see cref="T:Godot.InputEventScreenDrag"/>.</para>
  18312. </summary>
  18313. </member>
  18314. <member name="M:Godot.InputEvent.IsEcho">
  18315. <summary>
  18316. <para>Returns <c>true</c> if this input event is an echo event (only for events of type <see cref="T:Godot.InputEventKey"/>).</para>
  18317. </summary>
  18318. </member>
  18319. <member name="M:Godot.InputEvent.AsText">
  18320. <summary>
  18321. <para>Returns a <see cref="T:System.String"/> representation of the event.</para>
  18322. </summary>
  18323. </member>
  18324. <member name="M:Godot.InputEvent.ShortcutMatch(Godot.InputEvent)">
  18325. <summary>
  18326. <para>Returns <c>true</c> if the given input event is checking for the same key (<see cref="T:Godot.InputEventKey"/>), button (<see cref="T:Godot.InputEventJoypadButton"/>) or action (<see cref="T:Godot.InputEventAction"/>).</para>
  18327. </summary>
  18328. </member>
  18329. <member name="M:Godot.InputEvent.IsActionType">
  18330. <summary>
  18331. <para>Returns <c>true</c> if this input event's type is one that can be assigned to an input action.</para>
  18332. </summary>
  18333. </member>
  18334. <member name="M:Godot.InputEvent.Accumulate(Godot.InputEvent)">
  18335. <summary>
  18336. <para>Returns <c>true</c> if the given input event and this input event can be added together (only for events of type <see cref="T:Godot.InputEventMouseMotion"/>).</para>
  18337. <para>The given input event's position, global position and speed will be copied. The resulting <c>relative</c> is a sum of both events. Both events' modifiers have to be identical.</para>
  18338. </summary>
  18339. </member>
  18340. <member name="M:Godot.InputEvent.XformedBy(Godot.Transform2D,System.Nullable{Godot.Vector2})">
  18341. <summary>
  18342. <para>Returns a copy of the given input event which has been offset by <c>local_ofs</c> and transformed by <c>xform</c>. Relevant for events of type <see cref="T:Godot.InputEventMouseButton"/>, <see cref="T:Godot.InputEventMouseMotion"/>, <see cref="T:Godot.InputEventScreenTouch"/>, <see cref="T:Godot.InputEventScreenDrag"/>, <see cref="T:Godot.InputEventMagnifyGesture"/> and <see cref="T:Godot.InputEventPanGesture"/>.</para>
  18343. </summary>
  18344. <param name="localOfs">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  18345. </member>
  18346. <member name="T:Godot.InputEventAction">
  18347. <summary>
  18348. <para>Contains a generic action which can be targeted from several types of inputs. Actions can be created from the Input Map tab in the Project &gt; Project Settings menu. See <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>.</para>
  18349. </summary>
  18350. </member>
  18351. <member name="P:Godot.InputEventAction.Action">
  18352. <summary>
  18353. <para>The action's name. Actions are accessed via this <see cref="T:System.String"/>.</para>
  18354. </summary>
  18355. </member>
  18356. <member name="P:Godot.InputEventAction.Pressed">
  18357. <summary>
  18358. <para>If <c>true</c>, the action's state is pressed. If <c>false</c>, the action's state is released.</para>
  18359. </summary>
  18360. </member>
  18361. <member name="P:Godot.InputEventAction.Strength">
  18362. <summary>
  18363. <para>The action's strength between 0 and 1. This value is considered as equal to 0 if pressed is <c>false</c>. The event strength allows faking analog joypad motion events, by precising how strongly is the joypad axis bent or pressed.</para>
  18364. </summary>
  18365. </member>
  18366. <member name="P:Godot.InputEventGesture.Position">
  18367. <summary>
  18368. <para>The local gesture position relative to the <see cref="T:Godot.Viewport"/>. If used in <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/>, the position is relative to the current <see cref="T:Godot.Control"/> that received this gesture.</para>
  18369. </summary>
  18370. </member>
  18371. <member name="T:Godot.InputEventJoypadButton">
  18372. <summary>
  18373. <para>Input event type for gamepad buttons. For gamepad analog sticks and joysticks, see <see cref="T:Godot.InputEventJoypadMotion"/>.</para>
  18374. </summary>
  18375. </member>
  18376. <member name="P:Godot.InputEventJoypadButton.ButtonIndex">
  18377. <summary>
  18378. <para>Button identifier. One of the <see cref="T:Godot.JoystickList"/> button constants.</para>
  18379. </summary>
  18380. </member>
  18381. <member name="P:Godot.InputEventJoypadButton.Pressure">
  18382. <summary>
  18383. <para>Represents the pressure the user puts on the button with his finger, if the controller supports it. Ranges from <c>0</c> to <c>1</c>.</para>
  18384. </summary>
  18385. </member>
  18386. <member name="P:Godot.InputEventJoypadButton.Pressed">
  18387. <summary>
  18388. <para>If <c>true</c>, the button's state is pressed. If <c>false</c>, the button's state is released.</para>
  18389. </summary>
  18390. </member>
  18391. <member name="T:Godot.InputEventJoypadMotion">
  18392. <summary>
  18393. <para>Stores information about joystick motions. One <see cref="T:Godot.InputEventJoypadMotion"/> represents one axis at a time.</para>
  18394. </summary>
  18395. </member>
  18396. <member name="P:Godot.InputEventJoypadMotion.Axis">
  18397. <summary>
  18398. <para>Axis identifier. Use one of the <see cref="T:Godot.JoystickList"/> axis constants.</para>
  18399. </summary>
  18400. </member>
  18401. <member name="P:Godot.InputEventJoypadMotion.AxisValue">
  18402. <summary>
  18403. <para>Current position of the joystick on the given axis. The value ranges from <c>-1.0</c> to <c>1.0</c>. A value of <c>0</c> means the axis is in its resting position.</para>
  18404. </summary>
  18405. </member>
  18406. <member name="T:Godot.InputEventKey">
  18407. <summary>
  18408. <para>Stores key presses on the keyboard. Supports key presses, key releases and <see cref="P:Godot.InputEventKey.Echo"/> events.</para>
  18409. </summary>
  18410. </member>
  18411. <member name="P:Godot.InputEventKey.Pressed">
  18412. <summary>
  18413. <para>If <c>true</c>, the key's state is pressed. If <c>false</c>, the key's state is released.</para>
  18414. </summary>
  18415. </member>
  18416. <member name="P:Godot.InputEventKey.Scancode">
  18417. <summary>
  18418. <para>The key scancode, which corresponds to one of the <see cref="T:Godot.KeyList"/> constants.</para>
  18419. <para>To get a human-readable representation of the <see cref="T:Godot.InputEventKey"/>, use <c>OS.get_scancode_string(event.scancode)</c> where <c>event</c> is the <see cref="T:Godot.InputEventKey"/>.</para>
  18420. </summary>
  18421. </member>
  18422. <member name="P:Godot.InputEventKey.Unicode">
  18423. <summary>
  18424. <para>The key Unicode identifier (when relevant). Unicode identifiers for the composite characters and complex scripts may not be available unless IME input mode is active. See <see cref="M:Godot.OS.SetImeActive(System.Boolean)"/> for more information.</para>
  18425. </summary>
  18426. </member>
  18427. <member name="P:Godot.InputEventKey.Echo">
  18428. <summary>
  18429. <para>If <c>true</c>, the key was already pressed before this event. It means the user is holding the key down.</para>
  18430. </summary>
  18431. </member>
  18432. <member name="M:Godot.InputEventKey.GetScancodeWithModifiers">
  18433. <summary>
  18434. <para>Returns the scancode combined with modifier keys such as <c>Shift</c> or <c>Alt</c>. See also <see cref="T:Godot.InputEventWithModifiers"/>.</para>
  18435. <para>To get a human-readable representation of the <see cref="T:Godot.InputEventKey"/> with modifiers, use <c>OS.get_scancode_string(event.get_scancode_with_modifiers())</c> where <c>event</c> is the <see cref="T:Godot.InputEventKey"/>.</para>
  18436. </summary>
  18437. </member>
  18438. <member name="T:Godot.InputEventMouse">
  18439. <summary>
  18440. <para>Stores general mouse events information.</para>
  18441. </summary>
  18442. </member>
  18443. <member name="P:Godot.InputEventMouse.ButtonMask">
  18444. <summary>
  18445. <para>The mouse button mask identifier, one of or a bitwise combination of the <see cref="T:Godot.ButtonList"/> button masks.</para>
  18446. </summary>
  18447. </member>
  18448. <member name="P:Godot.InputEventMouse.Position">
  18449. <summary>
  18450. <para>The local mouse position relative to the <see cref="T:Godot.Viewport"/>. If used in <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/>, the position is relative to the current <see cref="T:Godot.Control"/> which is under the mouse.</para>
  18451. </summary>
  18452. </member>
  18453. <member name="P:Godot.InputEventMouse.GlobalPosition">
  18454. <summary>
  18455. <para>The global mouse position relative to the current <see cref="T:Godot.Viewport"/> when used in <see cref="M:Godot.Control._GuiInput(Godot.InputEvent)"/>, otherwise is at 0,0.</para>
  18456. </summary>
  18457. </member>
  18458. <member name="T:Godot.InputEventMouseButton">
  18459. <summary>
  18460. <para>Contains mouse click information. See <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>.</para>
  18461. </summary>
  18462. </member>
  18463. <member name="P:Godot.InputEventMouseButton.Factor">
  18464. <summary>
  18465. <para>The amount (or delta) of the event. When used for high-precision scroll events, this indicates the scroll amount (vertical or horizontal). This is only supported on some platforms; the reported sensitivity varies depending on the platform. May be <c>0</c> if not supported.</para>
  18466. </summary>
  18467. </member>
  18468. <member name="P:Godot.InputEventMouseButton.ButtonIndex">
  18469. <summary>
  18470. <para>The mouse button identifier, one of the <see cref="T:Godot.ButtonList"/> button or button wheel constants.</para>
  18471. </summary>
  18472. </member>
  18473. <member name="P:Godot.InputEventMouseButton.Pressed">
  18474. <summary>
  18475. <para>If <c>true</c>, the mouse button's state is pressed. If <c>false</c>, the mouse button's state is released.</para>
  18476. </summary>
  18477. </member>
  18478. <member name="P:Godot.InputEventMouseButton.Doubleclick">
  18479. <summary>
  18480. <para>If <c>true</c>, the mouse button's state is a double-click.</para>
  18481. </summary>
  18482. </member>
  18483. <member name="T:Godot.InputEventMouseMotion">
  18484. <summary>
  18485. <para>Contains mouse and pen motion information. Supports relative, absolute positions and speed. See <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>.</para>
  18486. </summary>
  18487. </member>
  18488. <member name="P:Godot.InputEventMouseMotion.Tilt">
  18489. <summary>
  18490. <para>Represents the angles of tilt of the pen. Positive X-coordinate value indicates a tilt to the right. Positive Y-coordinate value indicates a tilt toward the user. Ranges from <c>-1.0</c> to <c>1.0</c> for both axes.</para>
  18491. </summary>
  18492. </member>
  18493. <member name="P:Godot.InputEventMouseMotion.Pressure">
  18494. <summary>
  18495. <para>Represents the pressure the user puts on the pen. Ranges from <c>0.0</c> to <c>1.0</c>.</para>
  18496. </summary>
  18497. </member>
  18498. <member name="P:Godot.InputEventMouseMotion.Relative">
  18499. <summary>
  18500. <para>The mouse position relative to the previous position (position at the last frame). </para>
  18501. <para>Note: Since <see cref="T:Godot.InputEventMouseMotion"/> is only emitted when the mouse moves, the last event won't have a relative position of <c>Vector2(0, 0)</c> when the user stops moving the mouse.</para>
  18502. </summary>
  18503. </member>
  18504. <member name="P:Godot.InputEventMouseMotion.Speed">
  18505. <summary>
  18506. <para>The mouse speed in pixels per second.</para>
  18507. </summary>
  18508. </member>
  18509. <member name="T:Godot.InputEventScreenDrag">
  18510. <summary>
  18511. <para>Contains screen drag information. See <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>.</para>
  18512. </summary>
  18513. </member>
  18514. <member name="P:Godot.InputEventScreenDrag.Index">
  18515. <summary>
  18516. <para>The drag event index in the case of a multi-drag event.</para>
  18517. </summary>
  18518. </member>
  18519. <member name="P:Godot.InputEventScreenDrag.Position">
  18520. <summary>
  18521. <para>The drag position.</para>
  18522. </summary>
  18523. </member>
  18524. <member name="P:Godot.InputEventScreenDrag.Relative">
  18525. <summary>
  18526. <para>The drag position relative to its start position.</para>
  18527. </summary>
  18528. </member>
  18529. <member name="P:Godot.InputEventScreenDrag.Speed">
  18530. <summary>
  18531. <para>The drag speed.</para>
  18532. </summary>
  18533. </member>
  18534. <member name="T:Godot.InputEventScreenTouch">
  18535. <summary>
  18536. <para>Stores multi-touch press/release information. Supports touch press, touch release and <see cref="P:Godot.InputEventScreenTouch.Index"/> for multi-touch count and order.</para>
  18537. </summary>
  18538. </member>
  18539. <member name="P:Godot.InputEventScreenTouch.Index">
  18540. <summary>
  18541. <para>The touch index in the case of a multi-touch event. One index = one finger.</para>
  18542. </summary>
  18543. </member>
  18544. <member name="P:Godot.InputEventScreenTouch.Position">
  18545. <summary>
  18546. <para>The touch position.</para>
  18547. </summary>
  18548. </member>
  18549. <member name="P:Godot.InputEventScreenTouch.Pressed">
  18550. <summary>
  18551. <para>If <c>true</c>, the touch's state is pressed. If <c>false</c>, the touch's state is released.</para>
  18552. </summary>
  18553. </member>
  18554. <member name="T:Godot.InputEventWithModifiers">
  18555. <summary>
  18556. <para>Contains keys events information with modifiers support like <c>Shift</c> or <c>Alt</c>. See <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>.</para>
  18557. </summary>
  18558. </member>
  18559. <member name="P:Godot.InputEventWithModifiers.Alt">
  18560. <summary>
  18561. <para>State of the <c>Alt</c> modifier.</para>
  18562. </summary>
  18563. </member>
  18564. <member name="P:Godot.InputEventWithModifiers.Shift">
  18565. <summary>
  18566. <para>State of the <c>Shift</c> modifier.</para>
  18567. </summary>
  18568. </member>
  18569. <member name="P:Godot.InputEventWithModifiers.Control">
  18570. <summary>
  18571. <para>State of the <c>Ctrl</c> modifier.</para>
  18572. </summary>
  18573. </member>
  18574. <member name="P:Godot.InputEventWithModifiers.Meta">
  18575. <summary>
  18576. <para>State of the <c>Meta</c> modifier.</para>
  18577. </summary>
  18578. </member>
  18579. <member name="P:Godot.InputEventWithModifiers.Command">
  18580. <summary>
  18581. <para>State of the <c>Command</c> modifier.</para>
  18582. </summary>
  18583. </member>
  18584. <member name="T:Godot.InputMap">
  18585. <summary>
  18586. <para>Manages all <see cref="T:Godot.InputEventAction"/> which can be created/modified from the project settings menu Project &gt; Project Settings &gt; Input Map or in code with <see cref="M:Godot.InputMap.AddAction(System.String,System.Single)"/> and <see cref="M:Godot.InputMap.ActionAddEvent(System.String,Godot.InputEvent)"/>. See <see cref="M:Godot.Node._Input(Godot.InputEvent)"/>.</para>
  18587. </summary>
  18588. </member>
  18589. <member name="M:Godot.InputMap.HasAction(System.String)">
  18590. <summary>
  18591. <para>Returns <c>true</c> if the <see cref="T:Godot.InputMap"/> has a registered action with the given name.</para>
  18592. </summary>
  18593. </member>
  18594. <member name="M:Godot.InputMap.GetActions">
  18595. <summary>
  18596. <para>Returns an array of all actions in the <see cref="T:Godot.InputMap"/>.</para>
  18597. </summary>
  18598. </member>
  18599. <member name="M:Godot.InputMap.AddAction(System.String,System.Single)">
  18600. <summary>
  18601. <para>Adds an empty action to the <see cref="T:Godot.InputMap"/> with a configurable <c>deadzone</c>.</para>
  18602. <para>An <see cref="T:Godot.InputEvent"/> can then be added to this action with <see cref="M:Godot.InputMap.ActionAddEvent(System.String,Godot.InputEvent)"/>.</para>
  18603. </summary>
  18604. </member>
  18605. <member name="M:Godot.InputMap.EraseAction(System.String)">
  18606. <summary>
  18607. <para>Removes an action from the <see cref="T:Godot.InputMap"/>.</para>
  18608. </summary>
  18609. </member>
  18610. <member name="M:Godot.InputMap.ActionSetDeadzone(System.String,System.Single)">
  18611. <summary>
  18612. <para>Sets a deadzone value for the action.</para>
  18613. </summary>
  18614. </member>
  18615. <member name="M:Godot.InputMap.ActionAddEvent(System.String,Godot.InputEvent)">
  18616. <summary>
  18617. <para>Adds an <see cref="T:Godot.InputEvent"/> to an action. This <see cref="T:Godot.InputEvent"/> will trigger the action.</para>
  18618. </summary>
  18619. </member>
  18620. <member name="M:Godot.InputMap.ActionHasEvent(System.String,Godot.InputEvent)">
  18621. <summary>
  18622. <para>Returns <c>true</c> if the action has the given <see cref="T:Godot.InputEvent"/> associated with it.</para>
  18623. </summary>
  18624. </member>
  18625. <member name="M:Godot.InputMap.ActionEraseEvent(System.String,Godot.InputEvent)">
  18626. <summary>
  18627. <para>Removes an <see cref="T:Godot.InputEvent"/> from an action.</para>
  18628. </summary>
  18629. </member>
  18630. <member name="M:Godot.InputMap.ActionEraseEvents(System.String)">
  18631. <summary>
  18632. <para>Removes all events from an action.</para>
  18633. </summary>
  18634. </member>
  18635. <member name="M:Godot.InputMap.GetActionList(System.String)">
  18636. <summary>
  18637. <para>Returns an array of <see cref="T:Godot.InputEvent"/>s associated with a given action.</para>
  18638. </summary>
  18639. </member>
  18640. <member name="M:Godot.InputMap.EventIsAction(Godot.InputEvent,System.String)">
  18641. <summary>
  18642. <para>Returns <c>true</c> if the given event is part of an existing action. This method ignores keyboard modifiers if the given <see cref="T:Godot.InputEvent"/> is not pressed (for proper release detection). See <see cref="M:Godot.InputMap.ActionHasEvent(System.String,Godot.InputEvent)"/> if you don't want this behavior.</para>
  18643. </summary>
  18644. </member>
  18645. <member name="M:Godot.InputMap.LoadFromGlobals">
  18646. <summary>
  18647. <para>Clears all <see cref="T:Godot.InputEventAction"/> in the <see cref="T:Godot.InputMap"/> and load it anew from <see cref="T:Godot.ProjectSettings"/>.</para>
  18648. </summary>
  18649. </member>
  18650. <member name="T:Godot.InstancePlaceholder">
  18651. <summary>
  18652. <para>Turning on the option Load As Placeholder for an instanced scene in the editor causes it to be replaced by an InstancePlaceholder when running the game. This makes it possible to delay actually loading the scene until calling <see cref="M:Godot.InstancePlaceholder.ReplaceByInstance(Godot.PackedScene)"/>. This is useful to avoid loading large scenes all at once by loading parts of it selectively.</para>
  18653. <para>The InstancePlaceholder does not have a transform. This causes any child nodes to be positioned relatively to the Viewport from point (0,0), rather than their parent as displayed in the editor. Replacing the placeholder with a scene with a transform will transform children relatively to their parent again.</para>
  18654. </summary>
  18655. </member>
  18656. <member name="M:Godot.InstancePlaceholder.ReplaceByInstance(Godot.PackedScene)">
  18657. <summary>
  18658. <para>Replaces this placeholder by the scene handed as an argument, or the original scene if no argument is given. As for all resources, the scene is loaded only if it's not loaded already. By manually loading the scene beforehand, delays caused by this function can be avoided.</para>
  18659. </summary>
  18660. </member>
  18661. <member name="M:Godot.InstancePlaceholder.GetInstancePath">
  18662. <summary>
  18663. <para>Gets the path to the <see cref="T:Godot.PackedScene"/> resource file that is loaded by default when calling <see cref="M:Godot.InstancePlaceholder.ReplaceByInstance(Godot.PackedScene)"/>.</para>
  18664. </summary>
  18665. </member>
  18666. <member name="T:Godot.InterpolatedCamera">
  18667. <summary>
  18668. <para>InterpolatedCamera is a <see cref="T:Godot.Camera"/> which smoothly moves to match a target node's position and rotation.</para>
  18669. <para>If it is not <see cref="P:Godot.InterpolatedCamera.Enabled"/> or does not have a valid target set, InterpolatedCamera acts like a normal Camera.</para>
  18670. </summary>
  18671. </member>
  18672. <member name="P:Godot.InterpolatedCamera.Target">
  18673. <summary>
  18674. <para>The target's <see cref="T:Godot.NodePath"/>.</para>
  18675. </summary>
  18676. </member>
  18677. <member name="P:Godot.InterpolatedCamera.Speed">
  18678. <summary>
  18679. <para>How quickly the camera moves toward its target. Higher values will result in tighter camera motion.</para>
  18680. </summary>
  18681. </member>
  18682. <member name="P:Godot.InterpolatedCamera.Enabled">
  18683. <summary>
  18684. <para>If <c>true</c>, and a target is set, the camera will move automatically.</para>
  18685. </summary>
  18686. </member>
  18687. <member name="M:Godot.InterpolatedCamera.SetTarget(Godot.Object)">
  18688. <summary>
  18689. <para>Sets the node to move toward and orient with.</para>
  18690. </summary>
  18691. </member>
  18692. <member name="T:Godot.ItemList">
  18693. <summary>
  18694. <para>This control provides a selectable list of items that may be in a single (or multiple columns) with option of text, icons, or both text and icon. Tooltips are supported and may be different for every item in the list.</para>
  18695. <para>Selectable items in the list may be selected or deselected and multiple selection may be enabled. Selection with right mouse button may also be enabled to allow use of popup context menus. Items may also be "activated" by double-clicking them or by pressing Enter.</para>
  18696. <para>Item text only supports single-line strings, newline characters (e.g. <c>\n</c>) in the string won't produce a newline. Text wrapping is enabled in mode, but column's width is adjusted to fully fit its content by default. You need to set <see cref="P:Godot.ItemList.FixedColumnWidth"/> greater than zero to wrap the text.</para>
  18697. </summary>
  18698. </member>
  18699. <member name="F:Godot.ItemList.SelectModeEnum.Single">
  18700. <summary>
  18701. <para>Only allow selecting a single item.</para>
  18702. </summary>
  18703. </member>
  18704. <member name="F:Godot.ItemList.SelectModeEnum.Multi">
  18705. <summary>
  18706. <para>Allows selecting multiple items by holding Ctrl or Shift.</para>
  18707. </summary>
  18708. </member>
  18709. <member name="F:Godot.ItemList.IconModeEnum.Top">
  18710. <summary>
  18711. <para>Icon is drawn above the text.</para>
  18712. </summary>
  18713. </member>
  18714. <member name="F:Godot.ItemList.IconModeEnum.Left">
  18715. <summary>
  18716. <para>Icon is drawn to the left of the text.</para>
  18717. </summary>
  18718. </member>
  18719. <member name="P:Godot.ItemList.SelectMode">
  18720. <summary>
  18721. <para>Allows single or multiple item selection. See the <see cref="T:Godot.ItemList.SelectModeEnum"/> constants.</para>
  18722. </summary>
  18723. </member>
  18724. <member name="P:Godot.ItemList.AllowReselect">
  18725. <summary>
  18726. <para>If <c>true</c>, the currently selected item can be selected again.</para>
  18727. </summary>
  18728. </member>
  18729. <member name="P:Godot.ItemList.AllowRmbSelect">
  18730. <summary>
  18731. <para>If <c>true</c>, right mouse button click can select items.</para>
  18732. </summary>
  18733. </member>
  18734. <member name="P:Godot.ItemList.MaxTextLines">
  18735. <summary>
  18736. <para>Maximum lines of text allowed in each item. Space will be reserved even when there is not enough lines of text to display.</para>
  18737. <para>Note: This property takes effect only when <see cref="P:Godot.ItemList.IconMode"/> is . To make the text wrap, <see cref="P:Godot.ItemList.FixedColumnWidth"/> should be greater than zero.</para>
  18738. </summary>
  18739. </member>
  18740. <member name="P:Godot.ItemList.AutoHeight">
  18741. <summary>
  18742. <para>If <c>true</c>, the control will automatically resize the height to fit its content.</para>
  18743. </summary>
  18744. </member>
  18745. <member name="P:Godot.ItemList.MaxColumns">
  18746. <summary>
  18747. <para>Maximum columns the list will have.</para>
  18748. <para>If greater than zero, the content will be split among the specified columns.</para>
  18749. <para>A value of zero means unlimited columns, i.e. all items will be put in the same row.</para>
  18750. </summary>
  18751. </member>
  18752. <member name="P:Godot.ItemList.SameColumnWidth">
  18753. <summary>
  18754. <para>Whether all columns will have the same width.</para>
  18755. <para>If <c>true</c>, the width is equal to the largest column width of all columns.</para>
  18756. </summary>
  18757. </member>
  18758. <member name="P:Godot.ItemList.FixedColumnWidth">
  18759. <summary>
  18760. <para>The width all columns will be adjusted to.</para>
  18761. <para>A value of zero disables the adjustment, each item will have a width equal to the width of its content and the columns will have an uneven width.</para>
  18762. </summary>
  18763. </member>
  18764. <member name="P:Godot.ItemList.IconMode">
  18765. <summary>
  18766. <para>The icon position, whether above or to the left of the text. See the <see cref="T:Godot.ItemList.IconModeEnum"/> constants.</para>
  18767. </summary>
  18768. </member>
  18769. <member name="P:Godot.ItemList.IconScale">
  18770. <summary>
  18771. <para>The scale of icon applied after <see cref="P:Godot.ItemList.FixedIconSize"/> and transposing takes effect.</para>
  18772. </summary>
  18773. </member>
  18774. <member name="P:Godot.ItemList.FixedIconSize">
  18775. <summary>
  18776. <para>The size all icons will be adjusted to.</para>
  18777. <para>If either X or Y component is not greater than zero, icon size won't be affected.</para>
  18778. </summary>
  18779. </member>
  18780. <member name="M:Godot.ItemList.AddItem(System.String,Godot.Texture,System.Boolean)">
  18781. <summary>
  18782. <para>Adds an item to the item list with specified text. Specify an <c>icon</c>, or use <c>null</c> as the <c>icon</c> for a list item with no icon.</para>
  18783. <para>If selectable is <c>true</c>, the list item will be selectable.</para>
  18784. </summary>
  18785. </member>
  18786. <member name="M:Godot.ItemList.AddIconItem(Godot.Texture,System.Boolean)">
  18787. <summary>
  18788. <para>Adds an item to the item list with no text, only an icon.</para>
  18789. </summary>
  18790. </member>
  18791. <member name="M:Godot.ItemList.SetItemText(System.Int32,System.String)">
  18792. <summary>
  18793. <para>Sets text of the item associated with the specified index.</para>
  18794. </summary>
  18795. </member>
  18796. <member name="M:Godot.ItemList.GetItemText(System.Int32)">
  18797. <summary>
  18798. <para>Returns the text associated with the specified index.</para>
  18799. </summary>
  18800. </member>
  18801. <member name="M:Godot.ItemList.SetItemIcon(System.Int32,Godot.Texture)">
  18802. <summary>
  18803. <para>Sets (or replaces) the icon's <see cref="T:Godot.Texture"/> associated with the specified index.</para>
  18804. </summary>
  18805. </member>
  18806. <member name="M:Godot.ItemList.GetItemIcon(System.Int32)">
  18807. <summary>
  18808. <para>Returns the icon associated with the specified index.</para>
  18809. </summary>
  18810. </member>
  18811. <member name="M:Godot.ItemList.SetItemIconTransposed(System.Int32,System.Boolean)">
  18812. <summary>
  18813. <para>Sets whether the item icon will be drawn transposed.</para>
  18814. </summary>
  18815. </member>
  18816. <member name="M:Godot.ItemList.IsItemIconTransposed(System.Int32)">
  18817. <summary>
  18818. <para>Returns <c>true</c> if the item icon will be drawn transposed, i.e. the X and Y axes are swapped.</para>
  18819. </summary>
  18820. </member>
  18821. <member name="M:Godot.ItemList.SetItemIconRegion(System.Int32,Godot.Rect2)">
  18822. <summary>
  18823. <para>Sets the region of item's icon used. The whole icon will be used if the region has no area.</para>
  18824. </summary>
  18825. </member>
  18826. <member name="M:Godot.ItemList.GetItemIconRegion(System.Int32)">
  18827. <summary>
  18828. <para>Returns the region of item's icon used. The whole icon will be used if the region has no area.</para>
  18829. </summary>
  18830. </member>
  18831. <member name="M:Godot.ItemList.SetItemIconModulate(System.Int32,Godot.Color)">
  18832. <summary>
  18833. <para>Sets a modulating <see cref="T:Godot.Color"/> of the item associated with the specified index.</para>
  18834. </summary>
  18835. </member>
  18836. <member name="M:Godot.ItemList.GetItemIconModulate(System.Int32)">
  18837. <summary>
  18838. <para>Returns a <see cref="T:Godot.Color"/> modulating item's icon at the specified index.</para>
  18839. </summary>
  18840. </member>
  18841. <member name="M:Godot.ItemList.SetItemSelectable(System.Int32,System.Boolean)">
  18842. <summary>
  18843. <para>Allows or disallows selection of the item associated with the specified index.</para>
  18844. </summary>
  18845. </member>
  18846. <member name="M:Godot.ItemList.IsItemSelectable(System.Int32)">
  18847. <summary>
  18848. <para>Returns <c>true</c> if the item at the specified index is selectable.</para>
  18849. </summary>
  18850. </member>
  18851. <member name="M:Godot.ItemList.SetItemDisabled(System.Int32,System.Boolean)">
  18852. <summary>
  18853. <para>Disables (or enables) the item at the specified index.</para>
  18854. <para>Disabled items cannot be selected and do not trigger activation signals (when double-clicking or pressing Enter).</para>
  18855. </summary>
  18856. </member>
  18857. <member name="M:Godot.ItemList.IsItemDisabled(System.Int32)">
  18858. <summary>
  18859. <para>Returns <c>true</c> if the item at the specified index is disabled.</para>
  18860. </summary>
  18861. </member>
  18862. <member name="M:Godot.ItemList.SetItemMetadata(System.Int32,System.Object)">
  18863. <summary>
  18864. <para>Sets a value (of any type) to be stored with the item associated with the specified index.</para>
  18865. </summary>
  18866. </member>
  18867. <member name="M:Godot.ItemList.GetItemMetadata(System.Int32)">
  18868. <summary>
  18869. <para>Returns the metadata value of the specified index.</para>
  18870. </summary>
  18871. </member>
  18872. <member name="M:Godot.ItemList.SetItemCustomBgColor(System.Int32,Godot.Color)">
  18873. <summary>
  18874. <para>Sets the background color of the item specified by <c>idx</c> index to the specified <see cref="T:Godot.Color"/>.</para>
  18875. <para><code>
  18876. var some_string = "Some text"
  18877. some_string.set_item_custom_bg_color(0,Color(1, 0, 0, 1) # This will set the background color of the first item of the control to red.
  18878. </code></para>
  18879. </summary>
  18880. </member>
  18881. <member name="M:Godot.ItemList.GetItemCustomBgColor(System.Int32)">
  18882. <summary>
  18883. <para>Returns the custom background color of the item specified by <c>idx</c> index.</para>
  18884. </summary>
  18885. </member>
  18886. <member name="M:Godot.ItemList.SetItemCustomFgColor(System.Int32,Godot.Color)">
  18887. <summary>
  18888. <para>Sets the foreground color of the item specified by <c>idx</c> index to the specified <see cref="T:Godot.Color"/>.</para>
  18889. <para><code>
  18890. var some_string = "Some text"
  18891. some_string.set_item_custom_fg_color(0,Color(1, 0, 0, 1) # This will set the foreground color of the first item of the control to red.
  18892. </code></para>
  18893. </summary>
  18894. </member>
  18895. <member name="M:Godot.ItemList.GetItemCustomFgColor(System.Int32)">
  18896. <summary>
  18897. <para>Returns the custom foreground color of the item specified by <c>idx</c> index.</para>
  18898. </summary>
  18899. </member>
  18900. <member name="M:Godot.ItemList.SetItemTooltipEnabled(System.Int32,System.Boolean)">
  18901. <summary>
  18902. <para>Sets whether the tooltip hint is enabled for specified item index.</para>
  18903. </summary>
  18904. </member>
  18905. <member name="M:Godot.ItemList.IsItemTooltipEnabled(System.Int32)">
  18906. <summary>
  18907. <para>Returns <c>true</c> if the tooltip is enabled for specified item index.</para>
  18908. </summary>
  18909. </member>
  18910. <member name="M:Godot.ItemList.SetItemTooltip(System.Int32,System.String)">
  18911. <summary>
  18912. <para>Sets the tooltip hint for the item associated with the specified index.</para>
  18913. </summary>
  18914. </member>
  18915. <member name="M:Godot.ItemList.GetItemTooltip(System.Int32)">
  18916. <summary>
  18917. <para>Returns the tooltip hint associated with the specified index.</para>
  18918. </summary>
  18919. </member>
  18920. <member name="M:Godot.ItemList.Select(System.Int32,System.Boolean)">
  18921. <summary>
  18922. <para>Select the item at the specified index.</para>
  18923. <para>Note: This method does not trigger the item selection signal.</para>
  18924. </summary>
  18925. </member>
  18926. <member name="M:Godot.ItemList.Unselect(System.Int32)">
  18927. <summary>
  18928. <para>Ensures the item associated with the specified index is not selected.</para>
  18929. </summary>
  18930. </member>
  18931. <member name="M:Godot.ItemList.UnselectAll">
  18932. <summary>
  18933. <para>Ensures there are no items selected.</para>
  18934. </summary>
  18935. </member>
  18936. <member name="M:Godot.ItemList.IsSelected(System.Int32)">
  18937. <summary>
  18938. <para>Returns <c>true</c> if the item at the specified index is currently selected.</para>
  18939. </summary>
  18940. </member>
  18941. <member name="M:Godot.ItemList.GetSelectedItems">
  18942. <summary>
  18943. <para>Returns an array with the indexes of the selected items.</para>
  18944. </summary>
  18945. </member>
  18946. <member name="M:Godot.ItemList.MoveItem(System.Int32,System.Int32)">
  18947. <summary>
  18948. <para>Moves item from index <c>from_idx</c> to <c>to_idx</c>.</para>
  18949. </summary>
  18950. </member>
  18951. <member name="M:Godot.ItemList.GetItemCount">
  18952. <summary>
  18953. <para>Returns the number of items currently in the list.</para>
  18954. </summary>
  18955. </member>
  18956. <member name="M:Godot.ItemList.RemoveItem(System.Int32)">
  18957. <summary>
  18958. <para>Removes the item specified by <c>idx</c> index from the list.</para>
  18959. </summary>
  18960. </member>
  18961. <member name="M:Godot.ItemList.Clear">
  18962. <summary>
  18963. <para>Removes all items from the list.</para>
  18964. </summary>
  18965. </member>
  18966. <member name="M:Godot.ItemList.SortItemsByText">
  18967. <summary>
  18968. <para>Sorts items in the list by their text.</para>
  18969. </summary>
  18970. </member>
  18971. <member name="M:Godot.ItemList.IsAnythingSelected">
  18972. <summary>
  18973. <para>Returns <c>true</c> if one or more items are selected.</para>
  18974. </summary>
  18975. </member>
  18976. <member name="M:Godot.ItemList.GetItemAtPosition(Godot.Vector2,System.Boolean)">
  18977. <summary>
  18978. <para>Returns the item index at the given <c>position</c>.</para>
  18979. <para>When there is no item at that point, -1 will be returned if <c>exact</c> is <c>true</c>, and the closest item index will be returned otherwise.</para>
  18980. </summary>
  18981. </member>
  18982. <member name="M:Godot.ItemList.EnsureCurrentIsVisible">
  18983. <summary>
  18984. <para>Ensure current selection is visible, adjusting the scroll position as necessary.</para>
  18985. </summary>
  18986. </member>
  18987. <member name="M:Godot.ItemList.GetVScroll">
  18988. <summary>
  18989. <para>Returns the <see cref="T:Godot.Object"/> ID associated with the list.</para>
  18990. </summary>
  18991. </member>
  18992. <member name="T:Godot.JSONParseResult">
  18993. <summary>
  18994. <para>Returned by <see cref="M:Godot.JSON.Parse(System.String)"/>, <see cref="T:Godot.JSONParseResult"/> contains the decoded JSON or error information if the JSON source wasn't successfully parsed. You can check if the JSON source was successfully parsed with <c>if json_result.error == OK</c>.</para>
  18995. </summary>
  18996. </member>
  18997. <member name="P:Godot.JSONParseResult.Error">
  18998. <summary>
  18999. <para>The error type if the JSON source was not successfully parsed. See the <see cref="T:Godot.Error"/> constants.</para>
  19000. </summary>
  19001. </member>
  19002. <member name="P:Godot.JSONParseResult.ErrorString">
  19003. <summary>
  19004. <para>The error message if JSON source was not successfully parsed. See the <see cref="T:Godot.Error"/> constants.</para>
  19005. </summary>
  19006. </member>
  19007. <member name="P:Godot.JSONParseResult.ErrorLine">
  19008. <summary>
  19009. <para>The line number where the error occurred if JSON source was not successfully parsed.</para>
  19010. </summary>
  19011. </member>
  19012. <member name="P:Godot.JSONParseResult.Result">
  19013. <summary>
  19014. <para>A <c>Variant</c> containing the parsed JSON. Use <c>@GDScript.typeof</c> or the <c>is</c> keyword to check if it is what you expect. For example, if the JSON source starts with curly braces (<c>{}</c>), a <see cref="T:Godot.Collections.Dictionary"/> will be returned. If the JSON source starts with braces (<c>[]</c>), an <see cref="T:Godot.Collections.Array"/> will be returned.</para>
  19015. <para>Note: The JSON specification does not define integer or float types, but only a number type. Therefore, parsing a JSON text will convert all numerical values to float types.</para>
  19016. <para>Note: JSON objects do not preserve key order like Godot dictionaries, thus, you should not rely on keys being in a certain order if a dictionary is constructed from JSON. In contrast, JSON arrays retain the order of their elements:</para>
  19017. <para><code>
  19018. var p = JSON.parse('["hello", "world", "!"]')
  19019. if typeof(p.result) == TYPE_ARRAY:
  19020. print(p.result[0]) # Prints "hello"
  19021. else:
  19022. print("unexpected results")
  19023. </code></para>
  19024. </summary>
  19025. </member>
  19026. <member name="T:Godot.JavaScript">
  19027. <summary>
  19028. <para>The JavaScript singleton is implemented only in the HTML5 export. It's used to access the browser's JavaScript context. This allows interaction with embedding pages or calling third-party JavaScript APIs.</para>
  19029. </summary>
  19030. </member>
  19031. <member name="M:Godot.JavaScript.Eval(System.String,System.Boolean)">
  19032. <summary>
  19033. <para>Execute the string <c>code</c> as JavaScript code within the browser window. This is a call to the actual global JavaScript function <c>eval()</c>.</para>
  19034. <para>If <c>use_global_execution_context</c> is <c>true</c>, the code will be evaluated in the global execution context. Otherwise, it is evaluated in the execution context of a function within the engine's runtime environment.</para>
  19035. </summary>
  19036. </member>
  19037. <member name="T:Godot.Joint">
  19038. <summary>
  19039. <para>Joints are used to bind together two physics bodies. They have a solver priority and can define if the bodies of the two attached nodes should be able to collide with each other.</para>
  19040. </summary>
  19041. </member>
  19042. <member name="P:Godot.Joint.Nodes__nodeA">
  19043. <summary>
  19044. <para>The node attached to the first side (A) of the joint.</para>
  19045. </summary>
  19046. </member>
  19047. <member name="P:Godot.Joint.Nodes__nodeB">
  19048. <summary>
  19049. <para>The node attached to the second side (B) of the joint.</para>
  19050. </summary>
  19051. </member>
  19052. <member name="P:Godot.Joint.Solver__priority">
  19053. <summary>
  19054. <para>The priority used to define which solver is executed first for multiple joints. The lower the value, the higher the priority.</para>
  19055. </summary>
  19056. </member>
  19057. <member name="P:Godot.Joint.Collision__excludeNodes">
  19058. <summary>
  19059. <para>If <c>true</c>, the two bodies of the nodes are not able to collide with each other.</para>
  19060. </summary>
  19061. </member>
  19062. <member name="T:Godot.Joint2D">
  19063. <summary>
  19064. <para>Base node for all joint constraints in 2D physics. Joints take 2 bodies and apply a custom constraint.</para>
  19065. </summary>
  19066. </member>
  19067. <member name="P:Godot.Joint2D.NodeA">
  19068. <summary>
  19069. <para>The first body attached to the joint. Must derive from <see cref="T:Godot.PhysicsBody2D"/>.</para>
  19070. </summary>
  19071. </member>
  19072. <member name="P:Godot.Joint2D.NodeB">
  19073. <summary>
  19074. <para>The second body attached to the joint. Must derive from <see cref="T:Godot.PhysicsBody2D"/>.</para>
  19075. </summary>
  19076. </member>
  19077. <member name="P:Godot.Joint2D.Bias">
  19078. <summary>
  19079. <para>When <see cref="P:Godot.Joint2D.NodeA"/> and <see cref="P:Godot.Joint2D.NodeB"/> move in different directions the <c>bias</c> controls how fast the joint pulls them back to their original position. The lower the <c>bias</c> the more the two bodies can pull on the joint.</para>
  19080. </summary>
  19081. </member>
  19082. <member name="P:Godot.Joint2D.DisableCollision">
  19083. <summary>
  19084. <para>If <c>true</c>, <see cref="P:Godot.Joint2D.NodeA"/> and <see cref="P:Godot.Joint2D.NodeB"/> can not collide.</para>
  19085. </summary>
  19086. </member>
  19087. <member name="T:Godot.KinematicBody">
  19088. <summary>
  19089. <para>Kinematic bodies are special types of bodies that are meant to be user-controlled. They are not affected by physics at all; to other types of bodies, such as a character or a rigid body, these are the same as a static body. However, they have two main uses:</para>
  19090. <para>Simulated motion: When these bodies are moved manually, either from code or from an <see cref="T:Godot.AnimationPlayer"/> (with <see cref="P:Godot.AnimationPlayer.PlaybackProcessMode"/> set to "physics"), the physics will automatically compute an estimate of their linear and angular velocity. This makes them very useful for moving platforms or other AnimationPlayer-controlled objects (like a door, a bridge that opens, etc).</para>
  19091. <para>Kinematic characters: KinematicBody also has an API for moving objects (the <see cref="M:Godot.KinematicBody.MoveAndCollide(Godot.Vector3,System.Boolean,System.Boolean,System.Boolean)"/> and <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/> methods) while performing collision tests. This makes them really useful to implement characters that collide against a world, but that don't require advanced physics.</para>
  19092. </summary>
  19093. </member>
  19094. <member name="P:Godot.KinematicBody.MoveLockX">
  19095. <summary>
  19096. <para>Lock the body's X axis movement.</para>
  19097. </summary>
  19098. </member>
  19099. <member name="P:Godot.KinematicBody.MoveLockY">
  19100. <summary>
  19101. <para>Lock the body's Y axis movement.</para>
  19102. </summary>
  19103. </member>
  19104. <member name="P:Godot.KinematicBody.MoveLockZ">
  19105. <summary>
  19106. <para>Lock the body's Z axis movement.</para>
  19107. </summary>
  19108. </member>
  19109. <member name="P:Godot.KinematicBody.Collision__safeMargin">
  19110. <summary>
  19111. <para>If the body is at least this close to another body, this body will consider them to be colliding.</para>
  19112. </summary>
  19113. </member>
  19114. <member name="M:Godot.KinematicBody.MoveAndCollide(Godot.Vector3,System.Boolean,System.Boolean,System.Boolean)">
  19115. <summary>
  19116. <para>Moves the body along the vector <c>rel_vec</c>. The body will stop if it collides. Returns a <see cref="T:Godot.KinematicCollision"/>, which contains information about the collision.</para>
  19117. <para>If <c>test_only</c> is <c>true</c>, the body does not move but the would-be collision information is given.</para>
  19118. </summary>
  19119. </member>
  19120. <member name="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)">
  19121. <summary>
  19122. <para>Moves the body along a vector. If the body collides with another, it will slide along the other body rather than stop immediately. If the other body is a <see cref="T:Godot.KinematicBody"/> or <see cref="T:Godot.RigidBody"/>, it will also be affected by the motion of the other body. You can use this to make moving or rotating platforms, or to make nodes push other nodes.</para>
  19123. <para>This method should be used in <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> (or in a method called by <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/>), as it uses the physics step's <c>delta</c> value automatically in calculations. Otherwise, the simulation will run at an incorrect speed.</para>
  19124. <para><c>linear_velocity</c> is the velocity vector (typically meters per second). Unlike in <see cref="M:Godot.KinematicBody.MoveAndCollide(Godot.Vector3,System.Boolean,System.Boolean,System.Boolean)"/>, you should not multiply it by <c>delta</c> — the physics engine handles applying the velocity. </para>
  19125. <para><c>up_direction</c> is the up direction, used to determine what is a wall and what is a floor or a ceiling. If set to the default value of <c>Vector3(0, 0, 0)</c>, everything is considered a wall.</para>
  19126. <para>If <c>stop_on_slope</c> is <c>true</c>, body will not slide on slopes when you include gravity in <c>linear_velocity</c> and the body is standing still.</para>
  19127. <para>If the body collides, it will change direction a maximum of <c>max_slides</c> times before it stops.</para>
  19128. <para><c>floor_max_angle</c> is the maximum angle (in radians) where a slope is still considered a floor (or a ceiling), rather than a wall. The default value equals 45 degrees.</para>
  19129. <para>If <c>infinite_inertia</c> is <c>true</c>, body will be able to push <see cref="T:Godot.RigidBody"/> nodes, but it won't also detect any collisions with them. If <c>false</c>, it will interact with <see cref="T:Godot.RigidBody"/> nodes like with <see cref="T:Godot.StaticBody"/>.</para>
  19130. <para>Returns the <c>linear_velocity</c> vector, rotated and/or scaled if a slide collision occurred. To get detailed information about collisions that occurred, use <see cref="M:Godot.KinematicBody.GetSlideCollision(System.Int32)"/>.</para>
  19131. </summary>
  19132. <param name="upDirection">If the parameter is null, then the default value is new Vector3(0, 0, 0)</param>
  19133. </member>
  19134. <member name="M:Godot.KinematicBody.MoveAndSlideWithSnap(Godot.Vector3,Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)">
  19135. <summary>
  19136. <para>Moves the body while keeping it attached to slopes. Similar to <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19137. <para>As long as the <c>snap</c> vector is in contact with the ground, the body will remain attached to the surface. This means you must disable snap in order to jump, for example. You can do this by setting <c>snap</c> to <c>(0, 0, 0)</c> or by using <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/> instead.</para>
  19138. </summary>
  19139. <param name="upDirection">If the parameter is null, then the default value is new Vector3(0, 0, 0)</param>
  19140. </member>
  19141. <member name="M:Godot.KinematicBody.TestMove(Godot.Transform,Godot.Vector3,System.Boolean)">
  19142. <summary>
  19143. <para>Checks for collisions without moving the body. Virtually sets the node's position, scale and rotation to that of the given <see cref="T:Godot.Transform"/>, then tries to move the body along the vector <c>rel_vec</c>. Returns <c>true</c> if a collision would occur.</para>
  19144. </summary>
  19145. </member>
  19146. <member name="M:Godot.KinematicBody.IsOnFloor">
  19147. <summary>
  19148. <para>Returns <c>true</c> if the body is on the floor. Only updates when calling <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19149. </summary>
  19150. </member>
  19151. <member name="M:Godot.KinematicBody.IsOnCeiling">
  19152. <summary>
  19153. <para>Returns <c>true</c> if the body is on the ceiling. Only updates when calling <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19154. </summary>
  19155. </member>
  19156. <member name="M:Godot.KinematicBody.IsOnWall">
  19157. <summary>
  19158. <para>Returns <c>true</c> if the body is on a wall. Only updates when calling <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19159. </summary>
  19160. </member>
  19161. <member name="M:Godot.KinematicBody.GetFloorNormal">
  19162. <summary>
  19163. <para>Returns the surface normal of the floor at the last collision point. Only valid after calling <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/> or <see cref="M:Godot.KinematicBody.MoveAndSlideWithSnap(Godot.Vector3,Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/> and when <see cref="M:Godot.KinematicBody.IsOnFloor"/> returns <c>true</c>.</para>
  19164. </summary>
  19165. </member>
  19166. <member name="M:Godot.KinematicBody.GetFloorVelocity">
  19167. <summary>
  19168. <para>Returns the linear velocity of the floor at the last collision point. Only valid after calling <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/> or <see cref="M:Godot.KinematicBody.MoveAndSlideWithSnap(Godot.Vector3,Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/> and when <see cref="M:Godot.KinematicBody.IsOnFloor"/> returns <c>true</c>.</para>
  19169. </summary>
  19170. </member>
  19171. <member name="M:Godot.KinematicBody.SetAxisLock(Godot.PhysicsServer.BodyAxis,System.Boolean)">
  19172. <summary>
  19173. <para>Locks or unlocks the specified <c>axis</c> depending on the value of <c>lock</c>. See also <see cref="P:Godot.KinematicBody.MoveLockX"/>, <see cref="P:Godot.KinematicBody.MoveLockY"/> and <see cref="P:Godot.KinematicBody.MoveLockZ"/>.</para>
  19174. </summary>
  19175. </member>
  19176. <member name="M:Godot.KinematicBody.GetAxisLock(Godot.PhysicsServer.BodyAxis)">
  19177. <summary>
  19178. <para>Returns <c>true</c> if the specified <c>axis</c> is locked. See also <see cref="P:Godot.KinematicBody.MoveLockX"/>, <see cref="P:Godot.KinematicBody.MoveLockY"/> and <see cref="P:Godot.KinematicBody.MoveLockZ"/>.</para>
  19179. </summary>
  19180. </member>
  19181. <member name="M:Godot.KinematicBody.GetSlideCount">
  19182. <summary>
  19183. <para>Returns the number of times the body collided and changed direction during the last call to <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19184. </summary>
  19185. </member>
  19186. <member name="M:Godot.KinematicBody.GetSlideCollision(System.Int32)">
  19187. <summary>
  19188. <para>Returns a <see cref="T:Godot.KinematicCollision"/>, which contains information about a collision that occurred during the last <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/> call. Since the body can collide several times in a single call to <see cref="M:Godot.KinematicBody.MoveAndSlide(Godot.Vector3,System.Nullable{Godot.Vector3},System.Boolean,System.Int32,System.Single,System.Boolean)"/>, you must specify the index of the collision in the range 0 to (<see cref="M:Godot.KinematicBody.GetSlideCount"/> - 1).</para>
  19189. </summary>
  19190. </member>
  19191. <member name="T:Godot.KinematicBody2D">
  19192. <summary>
  19193. <para>Kinematic bodies are special types of bodies that are meant to be user-controlled. They are not affected by physics at all; to other types of bodies, such as a character or a rigid body, these are the same as a static body. However, they have two main uses:</para>
  19194. <para>Simulated motion: When these bodies are moved manually, either from code or from an <see cref="T:Godot.AnimationPlayer"/> (with <see cref="P:Godot.AnimationPlayer.PlaybackProcessMode"/> set to "physics"), the physics will automatically compute an estimate of their linear and angular velocity. This makes them very useful for moving platforms or other AnimationPlayer-controlled objects (like a door, a bridge that opens, etc).</para>
  19195. <para>Kinematic characters: KinematicBody2D also has an API for moving objects (the <see cref="M:Godot.KinematicBody2D.MoveAndCollide(Godot.Vector2,System.Boolean,System.Boolean,System.Boolean)"/> and <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> methods) while performing collision tests. This makes them really useful to implement characters that collide against a world, but that don't require advanced physics.</para>
  19196. </summary>
  19197. </member>
  19198. <member name="P:Godot.KinematicBody2D.Collision__safeMargin">
  19199. <summary>
  19200. <para>If the body is at least this close to another body, this body will consider them to be colliding.</para>
  19201. </summary>
  19202. </member>
  19203. <member name="P:Godot.KinematicBody2D.Motion__syncToPhysics">
  19204. <summary>
  19205. <para>If <c>true</c>, the body's movement will be synchronized to the physics frame. This is useful when animating movement via <see cref="T:Godot.AnimationPlayer"/>, for example on moving platforms. Do not use together with <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> or <see cref="M:Godot.KinematicBody2D.MoveAndCollide(Godot.Vector2,System.Boolean,System.Boolean,System.Boolean)"/> functions.</para>
  19206. </summary>
  19207. </member>
  19208. <member name="M:Godot.KinematicBody2D.MoveAndCollide(Godot.Vector2,System.Boolean,System.Boolean,System.Boolean)">
  19209. <summary>
  19210. <para>Moves the body along the vector <c>rel_vec</c>. The body will stop if it collides. Returns a <see cref="T:Godot.KinematicCollision2D"/>, which contains information about the collision.</para>
  19211. <para>If <c>test_only</c> is <c>true</c>, the body does not move but the would-be collision information is given.</para>
  19212. </summary>
  19213. </member>
  19214. <member name="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)">
  19215. <summary>
  19216. <para>Moves the body along a vector. If the body collides with another, it will slide along the other body rather than stop immediately. If the other body is a <see cref="T:Godot.KinematicBody2D"/> or <see cref="T:Godot.RigidBody2D"/>, it will also be affected by the motion of the other body. You can use this to make moving or rotating platforms, or to make nodes push other nodes.</para>
  19217. <para>This method should be used in <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> (or in a method called by <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/>), as it uses the physics step's <c>delta</c> value automatically in calculations. Otherwise, the simulation will run at an incorrect speed.</para>
  19218. <para><c>linear_velocity</c> is the velocity vector in pixels per second. Unlike in <see cref="M:Godot.KinematicBody2D.MoveAndCollide(Godot.Vector2,System.Boolean,System.Boolean,System.Boolean)"/>, you should not multiply it by <c>delta</c> — the physics engine handles applying the velocity. </para>
  19219. <para><c>up_direction</c> is the up direction, used to determine what is a wall and what is a floor or a ceiling. If set to the default value of <c>Vector2(0, 0)</c>, everything is considered a wall. This is useful for topdown games.</para>
  19220. <para>If <c>stop_on_slope</c> is <c>true</c>, body will not slide on slopes when you include gravity in <c>linear_velocity</c> and the body is standing still.</para>
  19221. <para>If the body collides, it will change direction a maximum of <c>max_slides</c> times before it stops.</para>
  19222. <para><c>floor_max_angle</c> is the maximum angle (in radians) where a slope is still considered a floor (or a ceiling), rather than a wall. The default value equals 45 degrees.</para>
  19223. <para>If <c>infinite_inertia</c> is <c>true</c>, body will be able to push <see cref="T:Godot.RigidBody2D"/> nodes, but it won't also detect any collisions with them. If <c>false</c>, it will interact with <see cref="T:Godot.RigidBody2D"/> nodes like with <see cref="T:Godot.StaticBody2D"/>.</para>
  19224. <para>Returns the <c>linear_velocity</c> vector, rotated and/or scaled if a slide collision occurred. To get detailed information about collisions that occurred, use <see cref="M:Godot.KinematicBody2D.GetSlideCollision(System.Int32)"/>.</para>
  19225. </summary>
  19226. <param name="upDirection">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  19227. </member>
  19228. <member name="M:Godot.KinematicBody2D.MoveAndSlideWithSnap(Godot.Vector2,Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)">
  19229. <summary>
  19230. <para>Moves the body while keeping it attached to slopes. Similar to <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19231. <para>As long as the <c>snap</c> vector is in contact with the ground, the body will remain attached to the surface. This means you must disable snap in order to jump, for example. You can do this by setting <c>snap</c> to <c>(0, 0)</c> or by using <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> instead.</para>
  19232. </summary>
  19233. <param name="upDirection">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  19234. </member>
  19235. <member name="M:Godot.KinematicBody2D.TestMove(Godot.Transform2D,Godot.Vector2,System.Boolean)">
  19236. <summary>
  19237. <para>Checks for collisions without moving the body. Virtually sets the node's position, scale and rotation to that of the given <see cref="T:Godot.Transform2D"/>, then tries to move the body along the vector <c>rel_vec</c>. Returns <c>true</c> if a collision would occur.</para>
  19238. </summary>
  19239. </member>
  19240. <member name="M:Godot.KinematicBody2D.IsOnFloor">
  19241. <summary>
  19242. <para>Returns <c>true</c> if the body is on the floor. Only updates when calling <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19243. </summary>
  19244. </member>
  19245. <member name="M:Godot.KinematicBody2D.IsOnCeiling">
  19246. <summary>
  19247. <para>Returns <c>true</c> if the body is on the ceiling. Only updates when calling <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19248. </summary>
  19249. </member>
  19250. <member name="M:Godot.KinematicBody2D.IsOnWall">
  19251. <summary>
  19252. <para>Returns <c>true</c> if the body is on a wall. Only updates when calling <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19253. </summary>
  19254. </member>
  19255. <member name="M:Godot.KinematicBody2D.GetFloorNormal">
  19256. <summary>
  19257. <para>Returns the surface normal of the floor at the last collision point. Only valid after calling <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> or <see cref="M:Godot.KinematicBody2D.MoveAndSlideWithSnap(Godot.Vector2,Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> and when <see cref="M:Godot.KinematicBody2D.IsOnFloor"/> returns <c>true</c>.</para>
  19258. </summary>
  19259. </member>
  19260. <member name="M:Godot.KinematicBody2D.GetFloorVelocity">
  19261. <summary>
  19262. <para>Returns the linear velocity of the floor at the last collision point. Only valid after calling <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> or <see cref="M:Godot.KinematicBody2D.MoveAndSlideWithSnap(Godot.Vector2,Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> and when <see cref="M:Godot.KinematicBody2D.IsOnFloor"/> returns <c>true</c>.</para>
  19263. </summary>
  19264. </member>
  19265. <member name="M:Godot.KinematicBody2D.GetSlideCount">
  19266. <summary>
  19267. <para>Returns the number of times the body collided and changed direction during the last call to <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/>.</para>
  19268. </summary>
  19269. </member>
  19270. <member name="M:Godot.KinematicBody2D.GetSlideCollision(System.Int32)">
  19271. <summary>
  19272. <para>Returns a <see cref="T:Godot.KinematicCollision2D"/>, which contains information about a collision that occurred during the last <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/> call. Since the body can collide several times in a single call to <see cref="M:Godot.KinematicBody2D.MoveAndSlide(Godot.Vector2,System.Nullable{Godot.Vector2},System.Boolean,System.Int32,System.Single,System.Boolean)"/>, you must specify the index of the collision in the range 0 to (<see cref="M:Godot.KinematicBody2D.GetSlideCount"/> - 1).</para>
  19273. <para>Example usage:</para>
  19274. <para><code>
  19275. for i in get_slide_count():
  19276. var collision = get_slide_collision(i)
  19277. print("Collided with: ", collision.collider.name)
  19278. </code></para>
  19279. </summary>
  19280. </member>
  19281. <member name="T:Godot.KinematicCollision">
  19282. <summary>
  19283. <para>Contains collision data for <see cref="T:Godot.KinematicBody"/> collisions. When a <see cref="T:Godot.KinematicBody"/> is moved using <see cref="M:Godot.KinematicBody.MoveAndCollide(Godot.Vector3,System.Boolean,System.Boolean,System.Boolean)"/>, it stops if it detects a collision with another body. If a collision is detected, a KinematicCollision object is returned.</para>
  19284. <para>This object contains information about the collision, including the colliding object, the remaining motion, and the collision position. This information can be used to calculate a collision response.</para>
  19285. </summary>
  19286. </member>
  19287. <member name="P:Godot.KinematicCollision.Position">
  19288. <summary>
  19289. <para>The point of collision, in global coordinates.</para>
  19290. </summary>
  19291. </member>
  19292. <member name="P:Godot.KinematicCollision.Normal">
  19293. <summary>
  19294. <para>The colliding body's shape's normal at the point of collision.</para>
  19295. </summary>
  19296. </member>
  19297. <member name="P:Godot.KinematicCollision.Travel">
  19298. <summary>
  19299. <para>The distance the moving object traveled before collision.</para>
  19300. </summary>
  19301. </member>
  19302. <member name="P:Godot.KinematicCollision.Remainder">
  19303. <summary>
  19304. <para>The moving object's remaining movement vector.</para>
  19305. </summary>
  19306. </member>
  19307. <member name="P:Godot.KinematicCollision.LocalShape">
  19308. <summary>
  19309. <para>The moving object's colliding shape.</para>
  19310. </summary>
  19311. </member>
  19312. <member name="P:Godot.KinematicCollision.Collider">
  19313. <summary>
  19314. <para>The colliding body.</para>
  19315. </summary>
  19316. </member>
  19317. <member name="P:Godot.KinematicCollision.ColliderId">
  19318. <summary>
  19319. <para>The colliding body's unique instance ID. See <see cref="M:Godot.Object.GetInstanceId"/>.</para>
  19320. </summary>
  19321. </member>
  19322. <member name="P:Godot.KinematicCollision.ColliderShape">
  19323. <summary>
  19324. <para>The colliding body's shape.</para>
  19325. </summary>
  19326. </member>
  19327. <member name="P:Godot.KinematicCollision.ColliderShapeIndex">
  19328. <summary>
  19329. <para>The colliding shape's index. See <see cref="T:Godot.CollisionObject"/>.</para>
  19330. </summary>
  19331. </member>
  19332. <member name="P:Godot.KinematicCollision.ColliderVelocity">
  19333. <summary>
  19334. <para>The colliding object's velocity.</para>
  19335. </summary>
  19336. </member>
  19337. <member name="P:Godot.KinematicCollision.ColliderMetadata">
  19338. <summary>
  19339. <para>The colliding body's metadata. See <see cref="T:Godot.Object"/>.</para>
  19340. </summary>
  19341. </member>
  19342. <member name="T:Godot.KinematicCollision2D">
  19343. <summary>
  19344. <para>Contains collision data for <see cref="T:Godot.KinematicBody2D"/> collisions. When a <see cref="T:Godot.KinematicBody2D"/> is moved using <see cref="M:Godot.KinematicBody2D.MoveAndCollide(Godot.Vector2,System.Boolean,System.Boolean,System.Boolean)"/>, it stops if it detects a collision with another body. If a collision is detected, a KinematicCollision2D object is returned.</para>
  19345. <para>This object contains information about the collision, including the colliding object, the remaining motion, and the collision position. This information can be used to calculate a collision response.</para>
  19346. </summary>
  19347. </member>
  19348. <member name="P:Godot.KinematicCollision2D.Position">
  19349. <summary>
  19350. <para>The point of collision, in global coordinates.</para>
  19351. </summary>
  19352. </member>
  19353. <member name="P:Godot.KinematicCollision2D.Normal">
  19354. <summary>
  19355. <para>The colliding body's shape's normal at the point of collision.</para>
  19356. </summary>
  19357. </member>
  19358. <member name="P:Godot.KinematicCollision2D.Travel">
  19359. <summary>
  19360. <para>The distance the moving object traveled before collision.</para>
  19361. </summary>
  19362. </member>
  19363. <member name="P:Godot.KinematicCollision2D.Remainder">
  19364. <summary>
  19365. <para>The moving object's remaining movement vector.</para>
  19366. </summary>
  19367. </member>
  19368. <member name="P:Godot.KinematicCollision2D.LocalShape">
  19369. <summary>
  19370. <para>The moving object's colliding shape.</para>
  19371. </summary>
  19372. </member>
  19373. <member name="P:Godot.KinematicCollision2D.Collider">
  19374. <summary>
  19375. <para>The colliding body.</para>
  19376. </summary>
  19377. </member>
  19378. <member name="P:Godot.KinematicCollision2D.ColliderId">
  19379. <summary>
  19380. <para>The colliding body's unique instance ID. See <see cref="M:Godot.Object.GetInstanceId"/>.</para>
  19381. </summary>
  19382. </member>
  19383. <member name="P:Godot.KinematicCollision2D.ColliderShape">
  19384. <summary>
  19385. <para>The colliding body's shape.</para>
  19386. </summary>
  19387. </member>
  19388. <member name="P:Godot.KinematicCollision2D.ColliderShapeIndex">
  19389. <summary>
  19390. <para>The colliding shape's index. See <see cref="T:Godot.CollisionObject2D"/>.</para>
  19391. </summary>
  19392. </member>
  19393. <member name="P:Godot.KinematicCollision2D.ColliderVelocity">
  19394. <summary>
  19395. <para>The colliding object's velocity.</para>
  19396. </summary>
  19397. </member>
  19398. <member name="P:Godot.KinematicCollision2D.ColliderMetadata">
  19399. <summary>
  19400. <para>The colliding body's metadata. See <see cref="T:Godot.Object"/>.</para>
  19401. </summary>
  19402. </member>
  19403. <member name="T:Godot.Label">
  19404. <summary>
  19405. <para>Label displays plain text on the screen. It gives you control over the horizontal and vertical alignment, and can wrap the text inside the node's bounding rectangle. It doesn't support bold, italics or other formatting. For that, use <see cref="T:Godot.RichTextLabel"/> instead.</para>
  19406. <para>Note: Contrarily to most other <see cref="T:Godot.Control"/>s, Label's <see cref="P:Godot.Control.MouseFilter"/> defaults to (i.e. it doesn't react to mouse input events). This implies that a label won't display any configured <see cref="P:Godot.Control.HintTooltip"/>, unless you change its mouse filter.</para>
  19407. </summary>
  19408. </member>
  19409. <member name="F:Godot.Label.AlignEnum.Left">
  19410. <summary>
  19411. <para>Align rows to the left (default).</para>
  19412. </summary>
  19413. </member>
  19414. <member name="F:Godot.Label.AlignEnum.Center">
  19415. <summary>
  19416. <para>Align rows centered.</para>
  19417. </summary>
  19418. </member>
  19419. <member name="F:Godot.Label.AlignEnum.Right">
  19420. <summary>
  19421. <para>Align rows to the right.</para>
  19422. </summary>
  19423. </member>
  19424. <member name="F:Godot.Label.AlignEnum.Fill">
  19425. <summary>
  19426. <para>Expand row whitespaces to fit the width.</para>
  19427. </summary>
  19428. </member>
  19429. <member name="F:Godot.Label.VAlign.Top">
  19430. <summary>
  19431. <para>Align the whole text to the top.</para>
  19432. </summary>
  19433. </member>
  19434. <member name="F:Godot.Label.VAlign.Center">
  19435. <summary>
  19436. <para>Align the whole text to the center.</para>
  19437. </summary>
  19438. </member>
  19439. <member name="F:Godot.Label.VAlign.Bottom">
  19440. <summary>
  19441. <para>Align the whole text to the bottom.</para>
  19442. </summary>
  19443. </member>
  19444. <member name="F:Godot.Label.VAlign.Fill">
  19445. <summary>
  19446. <para>Align the whole text by spreading the rows.</para>
  19447. </summary>
  19448. </member>
  19449. <member name="P:Godot.Label.Text">
  19450. <summary>
  19451. <para>The text to display on screen.</para>
  19452. </summary>
  19453. </member>
  19454. <member name="P:Godot.Label.Align">
  19455. <summary>
  19456. <para>Controls the text's horizontal align. Supports left, center, right, and fill, or justify. Set it to one of the <see cref="T:Godot.Label.AlignEnum"/> constants.</para>
  19457. </summary>
  19458. </member>
  19459. <member name="P:Godot.Label.Valign">
  19460. <summary>
  19461. <para>Controls the text's vertical align. Supports top, center, bottom, and fill. Set it to one of the <see cref="T:Godot.Label.VAlign"/> constants.</para>
  19462. </summary>
  19463. </member>
  19464. <member name="P:Godot.Label.Autowrap">
  19465. <summary>
  19466. <para>If <c>true</c>, wraps the text inside the node's bounding rectangle. If you resize the node, it will change its height automatically to show all the text.</para>
  19467. </summary>
  19468. </member>
  19469. <member name="P:Godot.Label.ClipText">
  19470. <summary>
  19471. <para>If <c>true</c>, the Label only shows the text that fits inside its bounding rectangle. It also lets you scale the node down freely.</para>
  19472. </summary>
  19473. </member>
  19474. <member name="P:Godot.Label.Uppercase">
  19475. <summary>
  19476. <para>If <c>true</c>, all the text displays as UPPERCASE.</para>
  19477. </summary>
  19478. </member>
  19479. <member name="P:Godot.Label.VisibleCharacters">
  19480. <summary>
  19481. <para>Restricts the number of characters to display. Set to -1 to disable.</para>
  19482. </summary>
  19483. </member>
  19484. <member name="P:Godot.Label.PercentVisible">
  19485. <summary>
  19486. <para>Limits the amount of visible characters. If you set <c>percent_visible</c> to 0.5, only up to half of the text's characters will display on screen. Useful to animate the text in a dialog box.</para>
  19487. </summary>
  19488. </member>
  19489. <member name="P:Godot.Label.LinesSkipped">
  19490. <summary>
  19491. <para>The node ignores the first <c>lines_skipped</c> lines before it starts to display text.</para>
  19492. </summary>
  19493. </member>
  19494. <member name="P:Godot.Label.MaxLinesVisible">
  19495. <summary>
  19496. <para>Limits the lines of text the node shows on screen.</para>
  19497. </summary>
  19498. </member>
  19499. <member name="M:Godot.Label.GetLineHeight">
  19500. <summary>
  19501. <para>Returns the font size in pixels.</para>
  19502. </summary>
  19503. </member>
  19504. <member name="M:Godot.Label.GetLineCount">
  19505. <summary>
  19506. <para>Returns the amount of lines of text the Label has.</para>
  19507. </summary>
  19508. </member>
  19509. <member name="M:Godot.Label.GetVisibleLineCount">
  19510. <summary>
  19511. <para>Returns the number of lines shown. Useful if the <see cref="T:Godot.Label"/>'s height cannot currently display all lines.</para>
  19512. </summary>
  19513. </member>
  19514. <member name="M:Godot.Label.GetTotalCharacterCount">
  19515. <summary>
  19516. <para>Returns the total number of printable characters in the text (excluding spaces and newlines).</para>
  19517. </summary>
  19518. </member>
  19519. <member name="T:Godot.LargeTexture">
  19520. <summary>
  19521. <para>A <see cref="T:Godot.Texture"/> capable of storing many smaller textures with offsets.</para>
  19522. <para>You can dynamically add pieces (<see cref="T:Godot.Texture"/>s) to this <see cref="T:Godot.LargeTexture"/> using different offsets.</para>
  19523. </summary>
  19524. </member>
  19525. <member name="M:Godot.LargeTexture.AddPiece(Godot.Vector2,Godot.Texture)">
  19526. <summary>
  19527. <para>Adds <c>texture</c> to this <see cref="T:Godot.LargeTexture"/>, starting on offset <c>ofs</c>.</para>
  19528. </summary>
  19529. </member>
  19530. <member name="M:Godot.LargeTexture.SetPieceOffset(System.Int32,Godot.Vector2)">
  19531. <summary>
  19532. <para>Sets the offset of the piece with the index <c>idx</c> to <c>ofs</c>.</para>
  19533. </summary>
  19534. </member>
  19535. <member name="M:Godot.LargeTexture.SetPieceTexture(System.Int32,Godot.Texture)">
  19536. <summary>
  19537. <para>Sets the <see cref="T:Godot.Texture"/> of the piece with index <c>idx</c> to <c>texture</c>.</para>
  19538. </summary>
  19539. </member>
  19540. <member name="M:Godot.LargeTexture.SetSize(Godot.Vector2)">
  19541. <summary>
  19542. <para>Sets the size of this <see cref="T:Godot.LargeTexture"/>.</para>
  19543. </summary>
  19544. </member>
  19545. <member name="M:Godot.LargeTexture.Clear">
  19546. <summary>
  19547. <para>Clears the <see cref="T:Godot.LargeTexture"/>.</para>
  19548. </summary>
  19549. </member>
  19550. <member name="M:Godot.LargeTexture.GetPieceCount">
  19551. <summary>
  19552. <para>Returns the number of pieces currently in this <see cref="T:Godot.LargeTexture"/>.</para>
  19553. </summary>
  19554. </member>
  19555. <member name="M:Godot.LargeTexture.GetPieceOffset(System.Int32)">
  19556. <summary>
  19557. <para>Returns the offset of the piece with the index <c>idx</c>.</para>
  19558. </summary>
  19559. </member>
  19560. <member name="M:Godot.LargeTexture.GetPieceTexture(System.Int32)">
  19561. <summary>
  19562. <para>Returns the <see cref="T:Godot.Texture"/> of the piece with the index <c>idx</c>.</para>
  19563. </summary>
  19564. </member>
  19565. <member name="T:Godot.Light">
  19566. <summary>
  19567. <para>Light is the abstract base class for light nodes. As it can't be instanced, it shouldn't be used directly. Other types of light nodes inherit from it. Light contains the common variables and parameters used for lighting.</para>
  19568. </summary>
  19569. </member>
  19570. <member name="F:Godot.Light.BakeMode.Disabled">
  19571. <summary>
  19572. <para>Light is ignored when baking.</para>
  19573. <para>Note: Hiding a light does not affect baking.</para>
  19574. </summary>
  19575. </member>
  19576. <member name="F:Godot.Light.BakeMode.Indirect">
  19577. <summary>
  19578. <para>Only indirect lighting will be baked (default).</para>
  19579. </summary>
  19580. </member>
  19581. <member name="F:Godot.Light.BakeMode.All">
  19582. <summary>
  19583. <para>Both direct and indirect light will be baked.</para>
  19584. <para>Note: You should hide the light if you don't want it to appear twice (dynamic and baked).</para>
  19585. </summary>
  19586. </member>
  19587. <member name="F:Godot.Light.Param.Energy">
  19588. <summary>
  19589. <para>Constant for accessing <see cref="P:Godot.Light.LightEnergy"/>.</para>
  19590. </summary>
  19591. </member>
  19592. <member name="F:Godot.Light.Param.IndirectEnergy">
  19593. <summary>
  19594. <para>Constant for accessing <see cref="P:Godot.Light.LightIndirectEnergy"/>.</para>
  19595. </summary>
  19596. </member>
  19597. <member name="F:Godot.Light.Param.Specular">
  19598. <summary>
  19599. <para>Constant for accessing <see cref="P:Godot.Light.LightSpecular"/>.</para>
  19600. </summary>
  19601. </member>
  19602. <member name="F:Godot.Light.Param.Range">
  19603. <summary>
  19604. <para>Constant for accessing <see cref="P:Godot.OmniLight.OmniRange"/> or <see cref="P:Godot.SpotLight.SpotRange"/>.</para>
  19605. </summary>
  19606. </member>
  19607. <member name="F:Godot.Light.Param.Attenuation">
  19608. <summary>
  19609. <para>Constant for accessing <see cref="P:Godot.OmniLight.OmniAttenuation"/> or <see cref="P:Godot.SpotLight.SpotAttenuation"/>.</para>
  19610. </summary>
  19611. </member>
  19612. <member name="F:Godot.Light.Param.SpotAngle">
  19613. <summary>
  19614. <para>Constant for accessing <see cref="P:Godot.SpotLight.SpotAngle"/>.</para>
  19615. </summary>
  19616. </member>
  19617. <member name="F:Godot.Light.Param.SpotAttenuation">
  19618. <summary>
  19619. <para>Constant for accessing <see cref="P:Godot.SpotLight.SpotAngleAttenuation"/>.</para>
  19620. </summary>
  19621. </member>
  19622. <member name="F:Godot.Light.Param.ContactShadowSize">
  19623. <summary>
  19624. <para>Constant for accessing <see cref="P:Godot.Light.ShadowContact"/>.</para>
  19625. </summary>
  19626. </member>
  19627. <member name="F:Godot.Light.Param.ShadowMaxDistance">
  19628. <summary>
  19629. <para>Constant for accessing <see cref="P:Godot.DirectionalLight.DirectionalShadowMaxDistance"/>.</para>
  19630. </summary>
  19631. </member>
  19632. <member name="F:Godot.Light.Param.ShadowSplit1Offset">
  19633. <summary>
  19634. <para>Constant for accessing <see cref="P:Godot.DirectionalLight.DirectionalShadowSplit1"/>.</para>
  19635. </summary>
  19636. </member>
  19637. <member name="F:Godot.Light.Param.ShadowSplit2Offset">
  19638. <summary>
  19639. <para>Constant for accessing <see cref="P:Godot.DirectionalLight.DirectionalShadowSplit2"/>.</para>
  19640. </summary>
  19641. </member>
  19642. <member name="F:Godot.Light.Param.ShadowSplit3Offset">
  19643. <summary>
  19644. <para>Constant for accessing <see cref="P:Godot.DirectionalLight.DirectionalShadowSplit3"/>.</para>
  19645. </summary>
  19646. </member>
  19647. <member name="F:Godot.Light.Param.ShadowNormalBias">
  19648. <summary>
  19649. <para>Constant for accessing <see cref="P:Godot.DirectionalLight.DirectionalShadowNormalBias"/>.</para>
  19650. </summary>
  19651. </member>
  19652. <member name="F:Godot.Light.Param.ShadowBias">
  19653. <summary>
  19654. <para>Constant for accessing <see cref="P:Godot.Light.ShadowBias"/>.</para>
  19655. </summary>
  19656. </member>
  19657. <member name="F:Godot.Light.Param.ShadowBiasSplitScale">
  19658. <summary>
  19659. <para>Constant for accessing <see cref="P:Godot.DirectionalLight.DirectionalShadowBiasSplitScale"/>.</para>
  19660. </summary>
  19661. </member>
  19662. <member name="F:Godot.Light.Param.Max">
  19663. <summary>
  19664. <para>Represents the size of the <see cref="T:Godot.Light.Param"/> enum.</para>
  19665. </summary>
  19666. </member>
  19667. <member name="P:Godot.Light.LightColor">
  19668. <summary>
  19669. <para>The light's color. An overbright color can be used to achieve a result equivalent to increasing the light's <see cref="P:Godot.Light.LightEnergy"/>.</para>
  19670. </summary>
  19671. </member>
  19672. <member name="P:Godot.Light.LightEnergy">
  19673. <summary>
  19674. <para>The light's strength multiplier (this is not a physical unit). For <see cref="T:Godot.OmniLight"/> and <see cref="T:Godot.SpotLight"/>, changing this value will only change the light color's intensity, not the light's radius.</para>
  19675. </summary>
  19676. </member>
  19677. <member name="P:Godot.Light.LightIndirectEnergy">
  19678. <summary>
  19679. <para>Secondary multiplier used with indirect light (light bounces). This works on both <see cref="T:Godot.BakedLightmap"/> and <see cref="T:Godot.GIProbe"/>.</para>
  19680. </summary>
  19681. </member>
  19682. <member name="P:Godot.Light.LightNegative">
  19683. <summary>
  19684. <para>If <c>true</c>, the light's effect is reversed, darkening areas and casting bright shadows.</para>
  19685. </summary>
  19686. </member>
  19687. <member name="P:Godot.Light.LightSpecular">
  19688. <summary>
  19689. <para>The intensity of the specular blob in objects affected by the light. At <c>0</c>, the light becomes a pure diffuse light. When not baking emission, this can be used to avoid unrealistic reflections when placing lights above an emissive surface.</para>
  19690. </summary>
  19691. </member>
  19692. <member name="P:Godot.Light.LightBakeMode">
  19693. <summary>
  19694. <para>The light's bake mode. See <see cref="T:Godot.Light.BakeMode"/>.</para>
  19695. </summary>
  19696. </member>
  19697. <member name="P:Godot.Light.LightCullMask">
  19698. <summary>
  19699. <para>The light will affect objects in the selected layers.</para>
  19700. </summary>
  19701. </member>
  19702. <member name="P:Godot.Light.ShadowEnabled">
  19703. <summary>
  19704. <para>If <c>true</c>, the light will cast shadows.</para>
  19705. </summary>
  19706. </member>
  19707. <member name="P:Godot.Light.ShadowColor">
  19708. <summary>
  19709. <para>The color of shadows cast by this light.</para>
  19710. </summary>
  19711. </member>
  19712. <member name="P:Godot.Light.ShadowBias">
  19713. <summary>
  19714. <para>Used to adjust shadow appearance. Too small a value results in self-shadowing ("shadow acne"), while too large a value causes shadows to separate from casters ("peter-panning"). Adjust as needed.</para>
  19715. </summary>
  19716. </member>
  19717. <member name="P:Godot.Light.ShadowContact">
  19718. <summary>
  19719. <para>Attempts to reduce <see cref="P:Godot.Light.ShadowBias"/> gap.</para>
  19720. </summary>
  19721. </member>
  19722. <member name="P:Godot.Light.ShadowReverseCullFace">
  19723. <summary>
  19724. <para>If <c>true</c>, reverses the backface culling of the mesh. This can be useful when you have a flat mesh that has a light behind it. If you need to cast a shadow on both sides of the mesh, set the mesh to use double-sided shadows with .</para>
  19725. </summary>
  19726. </member>
  19727. <member name="P:Godot.Light.EditorOnly">
  19728. <summary>
  19729. <para>If <c>true</c>, the light only appears in the editor and will not be visible at runtime.</para>
  19730. </summary>
  19731. </member>
  19732. <member name="M:Godot.Light.SetParam(Godot.Light.Param,System.Single)">
  19733. <summary>
  19734. <para>Sets the value of the specified <see cref="T:Godot.Light.Param"/> parameter.</para>
  19735. </summary>
  19736. </member>
  19737. <member name="M:Godot.Light.GetParam(Godot.Light.Param)">
  19738. <summary>
  19739. <para>Returns the value of the specified <see cref="T:Godot.Light.Param"/> parameter.</para>
  19740. </summary>
  19741. </member>
  19742. <member name="T:Godot.Light2D">
  19743. <summary>
  19744. <para>Casts light in a 2D environment. Light is defined by a (usually grayscale) texture, a color, an energy value, a mode (see constants), and various other parameters (range and shadows-related).</para>
  19745. <para>Note: Light2D can also be used as a mask.</para>
  19746. </summary>
  19747. </member>
  19748. <member name="F:Godot.Light2D.ShadowFilterEnum.None">
  19749. <summary>
  19750. <para>No filter applies to the shadow map. See <see cref="P:Godot.Light2D.ShadowFilter"/>.</para>
  19751. </summary>
  19752. </member>
  19753. <member name="F:Godot.Light2D.ShadowFilterEnum.Pcf3">
  19754. <summary>
  19755. <para>Percentage closer filtering (3 samples) applies to the shadow map. See <see cref="P:Godot.Light2D.ShadowFilter"/>.</para>
  19756. </summary>
  19757. </member>
  19758. <member name="F:Godot.Light2D.ShadowFilterEnum.Pcf5">
  19759. <summary>
  19760. <para>Percentage closer filtering (5 samples) applies to the shadow map. See <see cref="P:Godot.Light2D.ShadowFilter"/>.</para>
  19761. </summary>
  19762. </member>
  19763. <member name="F:Godot.Light2D.ShadowFilterEnum.Pcf7">
  19764. <summary>
  19765. <para>Percentage closer filtering (7 samples) applies to the shadow map. See <see cref="P:Godot.Light2D.ShadowFilter"/>.</para>
  19766. </summary>
  19767. </member>
  19768. <member name="F:Godot.Light2D.ShadowFilterEnum.Pcf9">
  19769. <summary>
  19770. <para>Percentage closer filtering (9 samples) applies to the shadow map. See <see cref="P:Godot.Light2D.ShadowFilter"/>.</para>
  19771. </summary>
  19772. </member>
  19773. <member name="F:Godot.Light2D.ShadowFilterEnum.Pcf13">
  19774. <summary>
  19775. <para>Percentage closer filtering (13 samples) applies to the shadow map. See <see cref="P:Godot.Light2D.ShadowFilter"/>.</para>
  19776. </summary>
  19777. </member>
  19778. <member name="F:Godot.Light2D.ModeEnum.Add">
  19779. <summary>
  19780. <para>Adds the value of pixels corresponding to the Light2D to the values of pixels under it. This is the common behavior of a light.</para>
  19781. </summary>
  19782. </member>
  19783. <member name="F:Godot.Light2D.ModeEnum.Sub">
  19784. <summary>
  19785. <para>Subtracts the value of pixels corresponding to the Light2D to the values of pixels under it, resulting in inversed light effect.</para>
  19786. </summary>
  19787. </member>
  19788. <member name="F:Godot.Light2D.ModeEnum.Mix">
  19789. <summary>
  19790. <para>Mix the value of pixels corresponding to the Light2D to the values of pixels under it by linear interpolation.</para>
  19791. </summary>
  19792. </member>
  19793. <member name="F:Godot.Light2D.ModeEnum.Mask">
  19794. <summary>
  19795. <para>The light texture of the Light2D is used as a mask, hiding or revealing parts of the screen underneath depending on the value of each pixel of the light (mask) texture.</para>
  19796. </summary>
  19797. </member>
  19798. <member name="P:Godot.Light2D.Enabled">
  19799. <summary>
  19800. <para>If <c>true</c>, Light2D will emit light.</para>
  19801. </summary>
  19802. </member>
  19803. <member name="P:Godot.Light2D.EditorOnly">
  19804. <summary>
  19805. <para>If <c>true</c>, Light2D will only appear when editing the scene.</para>
  19806. </summary>
  19807. </member>
  19808. <member name="P:Godot.Light2D.Texture">
  19809. <summary>
  19810. <para><see cref="T:Godot.Texture"/> used for the Light2D's appearance.</para>
  19811. </summary>
  19812. </member>
  19813. <member name="P:Godot.Light2D.Offset">
  19814. <summary>
  19815. <para>The offset of the Light2D's <c>texture</c>.</para>
  19816. </summary>
  19817. </member>
  19818. <member name="P:Godot.Light2D.TextureScale">
  19819. <summary>
  19820. <para>The <c>texture</c>'s scale factor.</para>
  19821. </summary>
  19822. </member>
  19823. <member name="P:Godot.Light2D.Color">
  19824. <summary>
  19825. <para>The Light2D's <see cref="T:Godot.Color"/>.</para>
  19826. </summary>
  19827. </member>
  19828. <member name="P:Godot.Light2D.Energy">
  19829. <summary>
  19830. <para>The Light2D's energy value. The larger the value, the stronger the light.</para>
  19831. </summary>
  19832. </member>
  19833. <member name="P:Godot.Light2D.Mode">
  19834. <summary>
  19835. <para>The Light2D's mode. See <see cref="T:Godot.Light2D.ModeEnum"/> constants for values.</para>
  19836. </summary>
  19837. </member>
  19838. <member name="P:Godot.Light2D.RangeHeight">
  19839. <summary>
  19840. <para>The height of the Light2D. Used with 2D normal mapping.</para>
  19841. </summary>
  19842. </member>
  19843. <member name="P:Godot.Light2D.RangeZMin">
  19844. <summary>
  19845. <para>Minimum <c>z</c> value of objects that are affected by the Light2D.</para>
  19846. </summary>
  19847. </member>
  19848. <member name="P:Godot.Light2D.RangeZMax">
  19849. <summary>
  19850. <para>Maximum <c>z</c> value of objects that are affected by the Light2D.</para>
  19851. </summary>
  19852. </member>
  19853. <member name="P:Godot.Light2D.RangeLayerMin">
  19854. <summary>
  19855. <para>Minimum layer value of objects that are affected by the Light2D.</para>
  19856. </summary>
  19857. </member>
  19858. <member name="P:Godot.Light2D.RangeLayerMax">
  19859. <summary>
  19860. <para>Maximum layer value of objects that are affected by the Light2D.</para>
  19861. </summary>
  19862. </member>
  19863. <member name="P:Godot.Light2D.RangeItemCullMask">
  19864. <summary>
  19865. <para>The layer mask. Only objects with a matching mask will be affected by the Light2D.</para>
  19866. </summary>
  19867. </member>
  19868. <member name="P:Godot.Light2D.ShadowEnabled">
  19869. <summary>
  19870. <para>If <c>true</c>, the Light2D will cast shadows.</para>
  19871. </summary>
  19872. </member>
  19873. <member name="P:Godot.Light2D.ShadowColor">
  19874. <summary>
  19875. <para><see cref="T:Godot.Color"/> of shadows cast by the Light2D.</para>
  19876. </summary>
  19877. </member>
  19878. <member name="P:Godot.Light2D.ShadowBufferSize">
  19879. <summary>
  19880. <para>Shadow buffer size.</para>
  19881. </summary>
  19882. </member>
  19883. <member name="P:Godot.Light2D.ShadowGradientLength">
  19884. <summary>
  19885. <para>Smooth shadow gradient length.</para>
  19886. </summary>
  19887. </member>
  19888. <member name="P:Godot.Light2D.ShadowFilter">
  19889. <summary>
  19890. <para>Shadow filter type. See <see cref="T:Godot.Light2D.ShadowFilterEnum"/> for possible values.</para>
  19891. </summary>
  19892. </member>
  19893. <member name="P:Godot.Light2D.ShadowFilterSmooth">
  19894. <summary>
  19895. <para>Smoothing value for shadows.</para>
  19896. </summary>
  19897. </member>
  19898. <member name="P:Godot.Light2D.ShadowItemCullMask">
  19899. <summary>
  19900. <para>The shadow mask. Used with <see cref="T:Godot.LightOccluder2D"/> to cast shadows. Only occluders with a matching light mask will cast shadows.</para>
  19901. </summary>
  19902. </member>
  19903. <member name="T:Godot.LightOccluder2D">
  19904. <summary>
  19905. <para>Occludes light cast by a Light2D, casting shadows. The LightOccluder2D must be provided with an <see cref="T:Godot.OccluderPolygon2D"/> in order for the shadow to be computed.</para>
  19906. </summary>
  19907. </member>
  19908. <member name="P:Godot.LightOccluder2D.Occluder">
  19909. <summary>
  19910. <para>The <see cref="T:Godot.OccluderPolygon2D"/> used to compute the shadow.</para>
  19911. </summary>
  19912. </member>
  19913. <member name="P:Godot.LightOccluder2D.LightMask">
  19914. <summary>
  19915. <para>The LightOccluder2D's light mask. The LightOccluder2D will cast shadows only from Light2D(s) that have the same light mask(s).</para>
  19916. </summary>
  19917. </member>
  19918. <member name="T:Godot.Line2D">
  19919. <summary>
  19920. <para>A line through several points in 2D space.</para>
  19921. <para>Note: By default, Godot can only draw up to 4,096 polygon points at a time. To increase this limit, open the Project Settings and increase and .</para>
  19922. </summary>
  19923. </member>
  19924. <member name="F:Godot.Line2D.LineTextureMode.None">
  19925. <summary>
  19926. <para>Takes the left pixels of the texture and renders it over the whole line.</para>
  19927. </summary>
  19928. </member>
  19929. <member name="F:Godot.Line2D.LineTextureMode.Tile">
  19930. <summary>
  19931. <para>Tiles the texture over the line. The texture must be imported with Repeat enabled for it to work properly.</para>
  19932. </summary>
  19933. </member>
  19934. <member name="F:Godot.Line2D.LineTextureMode.Stretch">
  19935. <summary>
  19936. <para>Stretches the texture across the line. Import the texture with Repeat disabled for best results.</para>
  19937. </summary>
  19938. </member>
  19939. <member name="F:Godot.Line2D.LineCapMode.None">
  19940. <summary>
  19941. <para>Don't draw a line cap.</para>
  19942. </summary>
  19943. </member>
  19944. <member name="F:Godot.Line2D.LineCapMode.Box">
  19945. <summary>
  19946. <para>Draws the line cap as a box.</para>
  19947. </summary>
  19948. </member>
  19949. <member name="F:Godot.Line2D.LineCapMode.Round">
  19950. <summary>
  19951. <para>Draws the line cap as a circle.</para>
  19952. </summary>
  19953. </member>
  19954. <member name="F:Godot.Line2D.LineJointMode.Sharp">
  19955. <summary>
  19956. <para>The line's joints will be pointy. If <c>sharp_limit</c> is greater than the rotation of a joint, it becomes a bevel joint instead.</para>
  19957. </summary>
  19958. </member>
  19959. <member name="F:Godot.Line2D.LineJointMode.Bevel">
  19960. <summary>
  19961. <para>The line's joints will be bevelled/chamfered.</para>
  19962. </summary>
  19963. </member>
  19964. <member name="F:Godot.Line2D.LineJointMode.Round">
  19965. <summary>
  19966. <para>The line's joints will be rounded.</para>
  19967. </summary>
  19968. </member>
  19969. <member name="P:Godot.Line2D.Points">
  19970. <summary>
  19971. <para>The points that form the lines. The line is drawn between every point set in this array.</para>
  19972. </summary>
  19973. </member>
  19974. <member name="P:Godot.Line2D.Width">
  19975. <summary>
  19976. <para>The line's width.</para>
  19977. </summary>
  19978. </member>
  19979. <member name="P:Godot.Line2D.WidthCurve">
  19980. <summary>
  19981. <para>The line's width varies with the curve. The original width is simply multiply by the value of the Curve.</para>
  19982. </summary>
  19983. </member>
  19984. <member name="P:Godot.Line2D.DefaultColor">
  19985. <summary>
  19986. <para>The line's color. Will not be used if a gradient is set.</para>
  19987. </summary>
  19988. </member>
  19989. <member name="P:Godot.Line2D.Gradient">
  19990. <summary>
  19991. <para>The gradient is drawn through the whole line from start to finish. The default color will not be used if a gradient is set.</para>
  19992. </summary>
  19993. </member>
  19994. <member name="P:Godot.Line2D.Texture">
  19995. <summary>
  19996. <para>The texture used for the line's texture. Uses <c>texture_mode</c> for drawing style.</para>
  19997. </summary>
  19998. </member>
  19999. <member name="P:Godot.Line2D.TextureMode">
  20000. <summary>
  20001. <para>The style to render the <c>texture</c> on the line. Use <see cref="T:Godot.Line2D.LineTextureMode"/> constants.</para>
  20002. </summary>
  20003. </member>
  20004. <member name="P:Godot.Line2D.JointMode">
  20005. <summary>
  20006. <para>The style for the points between the start and the end.</para>
  20007. </summary>
  20008. </member>
  20009. <member name="P:Godot.Line2D.BeginCapMode">
  20010. <summary>
  20011. <para>Controls the style of the line's first point. Use <see cref="T:Godot.Line2D.LineCapMode"/> constants.</para>
  20012. </summary>
  20013. </member>
  20014. <member name="P:Godot.Line2D.EndCapMode">
  20015. <summary>
  20016. <para>Controls the style of the line's last point. Use <see cref="T:Godot.Line2D.LineCapMode"/> constants.</para>
  20017. </summary>
  20018. </member>
  20019. <member name="P:Godot.Line2D.SharpLimit">
  20020. <summary>
  20021. <para>The direction difference in radians between vector points. This value is only used if <c>joint mode</c> is set to .</para>
  20022. </summary>
  20023. </member>
  20024. <member name="P:Godot.Line2D.RoundPrecision">
  20025. <summary>
  20026. <para>The smoothness of the rounded joints and caps. This is only used if a cap or joint is set as round.</para>
  20027. </summary>
  20028. </member>
  20029. <member name="P:Godot.Line2D.Antialiased">
  20030. <summary>
  20031. <para>If <c>true</c>, the line's border will be anti-aliased.</para>
  20032. </summary>
  20033. </member>
  20034. <member name="M:Godot.Line2D.SetPointPosition(System.Int32,Godot.Vector2)">
  20035. <summary>
  20036. <para>Overwrites the position in point <c>i</c> with the supplied <c>position</c>.</para>
  20037. </summary>
  20038. </member>
  20039. <member name="M:Godot.Line2D.GetPointPosition(System.Int32)">
  20040. <summary>
  20041. <para>Returns point <c>i</c>'s position.</para>
  20042. </summary>
  20043. </member>
  20044. <member name="M:Godot.Line2D.GetPointCount">
  20045. <summary>
  20046. <para>Returns the Line2D's amount of points.</para>
  20047. </summary>
  20048. </member>
  20049. <member name="M:Godot.Line2D.AddPoint(Godot.Vector2,System.Int32)">
  20050. <summary>
  20051. <para>Adds a point at the <c>position</c>. Appends the point at the end of the line.</para>
  20052. <para>If <c>at_position</c> is given, the point is inserted before the point number <c>at_position</c>, moving that point (and every point after) after the inserted point. If <c>at_position</c> is not given, or is an illegal value (<c>at_position &lt; 0</c> or <c>at_position &gt;= [method get_point_count]</c>), the point will be appended at the end of the point list.</para>
  20053. </summary>
  20054. </member>
  20055. <member name="M:Godot.Line2D.RemovePoint(System.Int32)">
  20056. <summary>
  20057. <para>Removes the point at index <c>i</c> from the line.</para>
  20058. </summary>
  20059. </member>
  20060. <member name="M:Godot.Line2D.ClearPoints">
  20061. <summary>
  20062. <para>Removes all points from the line.</para>
  20063. </summary>
  20064. </member>
  20065. <member name="T:Godot.LineEdit">
  20066. <summary>
  20067. <para>LineEdit provides a single-line string editor, used for text fields.</para>
  20068. <para>It features many built-in shortcuts which will always be available (<c>Ctrl</c> here maps to <c>Command</c> on macOS):</para>
  20069. <para>- Ctrl + C: Copy</para>
  20070. <para>- Ctrl + X: Cut</para>
  20071. <para>- Ctrl + V or Ctrl + Y: Paste/"yank"</para>
  20072. <para>- Ctrl + Z: Undo</para>
  20073. <para>- Ctrl + Shift + Z: Redo</para>
  20074. <para>- Ctrl + U: Delete text from the cursor position to the beginning of the line</para>
  20075. <para>- Ctrl + K: Delete text from the cursor position to the end of the line</para>
  20076. <para>- Ctrl + A: Select all text</para>
  20077. <para>- Up/Down arrow: Move the cursor to the beginning/end of the line</para>
  20078. <para>On macOS, some extra keyboard shortcuts are available:</para>
  20079. <para>- Ctrl + F: Like the right arrow key, move the cursor one character right</para>
  20080. <para>- Ctrl + B: Like the left arrow key, move the cursor one character left</para>
  20081. <para>- Ctrl + P: Like the up arrow key, move the cursor to the previous line</para>
  20082. <para>- Ctrl + N: Like the down arrow key, move the cursor to the next line</para>
  20083. <para>- Ctrl + D: Like the Delete key, delete the character on the right side of cursor</para>
  20084. <para>- Ctrl + H: Like the Backspace key, delete the character on the left side of the cursor</para>
  20085. <para>- Command + Left arrow: Like the Home key, move the cursor to the beginning of the line</para>
  20086. <para>- Command + Right arrow: Like the End key, move the cursor to the end of the line</para>
  20087. </summary>
  20088. </member>
  20089. <member name="F:Godot.LineEdit.AlignEnum.Left">
  20090. <summary>
  20091. <para>Aligns the text on the left-hand side of the <see cref="T:Godot.LineEdit"/>.</para>
  20092. </summary>
  20093. </member>
  20094. <member name="F:Godot.LineEdit.AlignEnum.Center">
  20095. <summary>
  20096. <para>Centers the text in the middle of the <see cref="T:Godot.LineEdit"/>.</para>
  20097. </summary>
  20098. </member>
  20099. <member name="F:Godot.LineEdit.AlignEnum.Right">
  20100. <summary>
  20101. <para>Aligns the text on the right-hand side of the <see cref="T:Godot.LineEdit"/>.</para>
  20102. </summary>
  20103. </member>
  20104. <member name="F:Godot.LineEdit.AlignEnum.Fill">
  20105. <summary>
  20106. <para>Stretches whitespaces to fit the <see cref="T:Godot.LineEdit"/>'s width.</para>
  20107. </summary>
  20108. </member>
  20109. <member name="F:Godot.LineEdit.MenuItems.Cut">
  20110. <summary>
  20111. <para>Cuts (copies and clears) the selected text.</para>
  20112. </summary>
  20113. </member>
  20114. <member name="F:Godot.LineEdit.MenuItems.Copy">
  20115. <summary>
  20116. <para>Copies the selected text.</para>
  20117. </summary>
  20118. </member>
  20119. <member name="F:Godot.LineEdit.MenuItems.Paste">
  20120. <summary>
  20121. <para>Pastes the clipboard text over the selected text (or at the cursor's position).</para>
  20122. <para>Non-printable escape characters are automatically stripped from the OS clipboard via <c>String.strip_escapes</c>.</para>
  20123. </summary>
  20124. </member>
  20125. <member name="F:Godot.LineEdit.MenuItems.Clear">
  20126. <summary>
  20127. <para>Erases the whole <see cref="T:Godot.LineEdit"/> text.</para>
  20128. </summary>
  20129. </member>
  20130. <member name="F:Godot.LineEdit.MenuItems.SelectAll">
  20131. <summary>
  20132. <para>Selects the whole <see cref="T:Godot.LineEdit"/> text.</para>
  20133. </summary>
  20134. </member>
  20135. <member name="F:Godot.LineEdit.MenuItems.Undo">
  20136. <summary>
  20137. <para>Undoes the previous action.</para>
  20138. </summary>
  20139. </member>
  20140. <member name="F:Godot.LineEdit.MenuItems.Redo">
  20141. <summary>
  20142. <para>Reverse the last undo action.</para>
  20143. </summary>
  20144. </member>
  20145. <member name="F:Godot.LineEdit.MenuItems.Max">
  20146. <summary>
  20147. <para>Represents the size of the <see cref="T:Godot.LineEdit.MenuItems"/> enum.</para>
  20148. </summary>
  20149. </member>
  20150. <member name="P:Godot.LineEdit.Text">
  20151. <summary>
  20152. <para>String value of the <see cref="T:Godot.LineEdit"/>.</para>
  20153. <para>Note: Changing text using this property won't emit the <c>text_changed</c> signal.</para>
  20154. </summary>
  20155. </member>
  20156. <member name="P:Godot.LineEdit.Align">
  20157. <summary>
  20158. <para>Text alignment as defined in the <see cref="T:Godot.LineEdit.AlignEnum"/> enum.</para>
  20159. </summary>
  20160. </member>
  20161. <member name="P:Godot.LineEdit.MaxLength">
  20162. <summary>
  20163. <para>Maximum amount of characters that can be entered inside the <see cref="T:Godot.LineEdit"/>. If <c>0</c>, there is no limit.</para>
  20164. </summary>
  20165. </member>
  20166. <member name="P:Godot.LineEdit.Editable">
  20167. <summary>
  20168. <para>If <c>false</c>, existing text cannot be modified and new text cannot be added.</para>
  20169. </summary>
  20170. </member>
  20171. <member name="P:Godot.LineEdit.Secret">
  20172. <summary>
  20173. <para>If <c>true</c>, every character is replaced with the secret character (see <see cref="P:Godot.LineEdit.SecretCharacter"/>).</para>
  20174. </summary>
  20175. </member>
  20176. <member name="P:Godot.LineEdit.SecretCharacter">
  20177. <summary>
  20178. <para>The character to use to mask secret input (defaults to "*"). Only a single character can be used as the secret character.</para>
  20179. </summary>
  20180. </member>
  20181. <member name="P:Godot.LineEdit.ExpandToTextLength">
  20182. <summary>
  20183. <para>If <c>true</c>, the <see cref="T:Godot.LineEdit"/> width will increase to stay longer than the <see cref="P:Godot.LineEdit.Text"/>. It will not compress if the <see cref="P:Godot.LineEdit.Text"/> is shortened.</para>
  20184. </summary>
  20185. </member>
  20186. <member name="P:Godot.LineEdit.ContextMenuEnabled">
  20187. <summary>
  20188. <para>If <c>true</c>, the context menu will appear when right-clicked.</para>
  20189. </summary>
  20190. </member>
  20191. <member name="P:Godot.LineEdit.ClearButtonEnabled">
  20192. <summary>
  20193. <para>If <c>true</c>, the <see cref="T:Godot.LineEdit"/> will show a clear button if <c>text</c> is not empty, which can be used to clear the text quickly.</para>
  20194. </summary>
  20195. </member>
  20196. <member name="P:Godot.LineEdit.ShortcutKeysEnabled">
  20197. <summary>
  20198. <para>If <c>false</c>, using shortcuts will be disabled.</para>
  20199. </summary>
  20200. </member>
  20201. <member name="P:Godot.LineEdit.SelectingEnabled">
  20202. <summary>
  20203. <para>If <c>false</c>, it's impossible to select the text using mouse nor keyboard.</para>
  20204. </summary>
  20205. </member>
  20206. <member name="P:Godot.LineEdit.RightIcon">
  20207. <summary>
  20208. <para>Sets the icon that will appear in the right end of the <see cref="T:Godot.LineEdit"/> if there's no <see cref="P:Godot.LineEdit.Text"/>, or always, if <see cref="P:Godot.LineEdit.ClearButtonEnabled"/> is set to <c>false</c>.</para>
  20209. </summary>
  20210. </member>
  20211. <member name="P:Godot.LineEdit.PlaceholderText">
  20212. <summary>
  20213. <para>Text shown when the <see cref="T:Godot.LineEdit"/> is empty. It is not the <see cref="T:Godot.LineEdit"/>'s default value (see <see cref="P:Godot.LineEdit.Text"/>).</para>
  20214. </summary>
  20215. </member>
  20216. <member name="P:Godot.LineEdit.PlaceholderAlpha">
  20217. <summary>
  20218. <para>Opacity of the <see cref="P:Godot.LineEdit.PlaceholderText"/>. From <c>0</c> to <c>1</c>.</para>
  20219. </summary>
  20220. </member>
  20221. <member name="P:Godot.LineEdit.CaretBlink">
  20222. <summary>
  20223. <para>If <c>true</c>, the caret (visual cursor) blinks.</para>
  20224. </summary>
  20225. </member>
  20226. <member name="P:Godot.LineEdit.CaretBlinkSpeed">
  20227. <summary>
  20228. <para>Duration (in seconds) of a caret's blinking cycle.</para>
  20229. </summary>
  20230. </member>
  20231. <member name="P:Godot.LineEdit.CaretPosition">
  20232. <summary>
  20233. <para>The cursor's position inside the <see cref="T:Godot.LineEdit"/>. When set, the text may scroll to accommodate it.</para>
  20234. </summary>
  20235. </member>
  20236. <member name="M:Godot.LineEdit.Clear">
  20237. <summary>
  20238. <para>Erases the <see cref="T:Godot.LineEdit"/>'s <see cref="P:Godot.LineEdit.Text"/>.</para>
  20239. </summary>
  20240. </member>
  20241. <member name="M:Godot.LineEdit.Select(System.Int32,System.Int32)">
  20242. <summary>
  20243. <para>Selects characters inside <see cref="T:Godot.LineEdit"/> between <c>from</c> and <c>to</c>. By default, <c>from</c> is at the beginning and <c>to</c> at the end.</para>
  20244. <para><code>
  20245. text = "Welcome"
  20246. select() # Will select "Welcome".
  20247. select(4) # Will select "ome".
  20248. select(2, 5) # Will select "lco".
  20249. </code></para>
  20250. </summary>
  20251. </member>
  20252. <member name="M:Godot.LineEdit.SelectAll">
  20253. <summary>
  20254. <para>Selects the whole <see cref="T:System.String"/>.</para>
  20255. </summary>
  20256. </member>
  20257. <member name="M:Godot.LineEdit.Deselect">
  20258. <summary>
  20259. <para>Clears the current selection.</para>
  20260. </summary>
  20261. </member>
  20262. <member name="M:Godot.LineEdit.AppendAtCursor(System.String)">
  20263. <summary>
  20264. <para>Adds <c>text</c> after the cursor. If the resulting value is longer than <see cref="P:Godot.LineEdit.MaxLength"/>, nothing happens.</para>
  20265. </summary>
  20266. </member>
  20267. <member name="M:Godot.LineEdit.DeleteCharAtCursor">
  20268. <summary>
  20269. <para>Deletes one character at the cursor's current position (equivalent to pressing the <c>Delete</c> key).</para>
  20270. </summary>
  20271. </member>
  20272. <member name="M:Godot.LineEdit.DeleteText(System.Int32,System.Int32)">
  20273. <summary>
  20274. <para>Deletes a section of the <see cref="P:Godot.LineEdit.Text"/> going from position <c>from_column</c> to <c>to_column</c>. Both parameters should be within the text's length.</para>
  20275. </summary>
  20276. </member>
  20277. <member name="M:Godot.LineEdit.MenuOption(System.Int32)">
  20278. <summary>
  20279. <para>Executes a given action as defined in the <see cref="T:Godot.LineEdit.MenuItems"/> enum.</para>
  20280. </summary>
  20281. </member>
  20282. <member name="M:Godot.LineEdit.GetMenu">
  20283. <summary>
  20284. <para>Returns the <see cref="T:Godot.PopupMenu"/> of this <see cref="T:Godot.LineEdit"/>. By default, this menu is displayed when right-clicking on the <see cref="T:Godot.LineEdit"/>.</para>
  20285. </summary>
  20286. </member>
  20287. <member name="T:Godot.LineShape2D">
  20288. <summary>
  20289. <para>Line shape for 2D collisions. It works like a 2D plane and will not allow any physics body to go to the negative side. Not recommended for rigid bodies, and usually not recommended for static bodies either because it forces checks against it on every frame.</para>
  20290. </summary>
  20291. </member>
  20292. <member name="P:Godot.LineShape2D.Normal">
  20293. <summary>
  20294. <para>The line's normal.</para>
  20295. </summary>
  20296. </member>
  20297. <member name="P:Godot.LineShape2D.D">
  20298. <summary>
  20299. <para>The line's distance from the origin.</para>
  20300. </summary>
  20301. </member>
  20302. <member name="T:Godot.LinkButton">
  20303. <summary>
  20304. <para>This kind of button is primarily used when the interaction with the button causes a context change (like linking to a web page).</para>
  20305. </summary>
  20306. </member>
  20307. <member name="F:Godot.LinkButton.UnderlineMode.Always">
  20308. <summary>
  20309. <para>The LinkButton will always show an underline at the bottom of its text.</para>
  20310. </summary>
  20311. </member>
  20312. <member name="F:Godot.LinkButton.UnderlineMode.OnHover">
  20313. <summary>
  20314. <para>The LinkButton will show an underline at the bottom of its text when the mouse cursor is over it.</para>
  20315. </summary>
  20316. </member>
  20317. <member name="F:Godot.LinkButton.UnderlineMode.Never">
  20318. <summary>
  20319. <para>The LinkButton will never show an underline at the bottom of its text.</para>
  20320. </summary>
  20321. </member>
  20322. <member name="P:Godot.LinkButton.Text">
  20323. <summary>
  20324. <para>The button's text that will be displayed inside the button's area.</para>
  20325. </summary>
  20326. </member>
  20327. <member name="P:Godot.LinkButton.Underline">
  20328. <summary>
  20329. <para>Determines when to show the underline. See <see cref="T:Godot.LinkButton.UnderlineMode"/> for options.</para>
  20330. </summary>
  20331. </member>
  20332. <member name="T:Godot.Listener">
  20333. <summary>
  20334. <para>Once added to the scene tree and enabled using <see cref="M:Godot.Listener.MakeCurrent"/>, this node will override the location sounds are heard from. This can be used to listen from a location different from the <see cref="T:Godot.Camera"/>.</para>
  20335. <para>Note: There is no 2D equivalent for this node yet.</para>
  20336. </summary>
  20337. </member>
  20338. <member name="M:Godot.Listener.MakeCurrent">
  20339. <summary>
  20340. <para>Enables the listener. This will override the current camera's listener.</para>
  20341. </summary>
  20342. </member>
  20343. <member name="M:Godot.Listener.ClearCurrent">
  20344. <summary>
  20345. <para>Disables the listener to use the current camera's listener instead.</para>
  20346. </summary>
  20347. </member>
  20348. <member name="M:Godot.Listener.IsCurrent">
  20349. <summary>
  20350. <para>Returns <c>true</c> if the listener was made current using <see cref="M:Godot.Listener.MakeCurrent"/>, <c>false</c> otherwise.</para>
  20351. <para>Note: There may be more than one Listener marked as "current" in the scene tree, but only the one that was made current last will be used.</para>
  20352. </summary>
  20353. </member>
  20354. <member name="M:Godot.Listener.GetListenerTransform">
  20355. <summary>
  20356. <para>Returns the listener's global orthonormalized <see cref="T:Godot.Transform"/>.</para>
  20357. </summary>
  20358. </member>
  20359. <member name="T:Godot.MainLoop">
  20360. <summary>
  20361. <para><see cref="T:Godot.MainLoop"/> is the abstract base class for a Godot project's game loop. It is inherited by <see cref="T:Godot.SceneTree"/>, which is the default game loop implementation used in Godot projects, though it is also possible to write and use one's own <see cref="T:Godot.MainLoop"/> subclass instead of the scene tree.</para>
  20362. <para>Upon the application start, a <see cref="T:Godot.MainLoop"/> implementation must be provided to the OS; otherwise, the application will exit. This happens automatically (and a <see cref="T:Godot.SceneTree"/> is created) unless a main <see cref="T:Godot.Script"/> is provided from the command line (with e.g. <c>godot -s my_loop.gd</c>, which should then be a <see cref="T:Godot.MainLoop"/> implementation.</para>
  20363. <para>Here is an example script implementing a simple <see cref="T:Godot.MainLoop"/>:</para>
  20364. <para><code>
  20365. extends MainLoop
  20366. var time_elapsed = 0
  20367. var keys_typed = []
  20368. var quit = false
  20369. func _initialize():
  20370. print("Initialized:")
  20371. print(" Starting time: %s" % str(time_elapsed))
  20372. func _idle(delta):
  20373. time_elapsed += delta
  20374. # Return true to end the main loop.
  20375. return quit
  20376. func _input_event(event):
  20377. # Record keys.
  20378. if event is InputEventKey and event.pressed and !event.echo:
  20379. keys_typed.append(OS.get_scancode_string(event.scancode))
  20380. # Quit on Escape press.
  20381. if event.scancode == KEY_ESCAPE:
  20382. quit = true
  20383. # Quit on any mouse click.
  20384. if event is InputEventMouseButton:
  20385. quit = true
  20386. func _finalize():
  20387. print("Finalized:")
  20388. print(" End time: %s" % str(time_elapsed))
  20389. print(" Keys typed: %s" % var2str(keys_typed))
  20390. </code></para>
  20391. </summary>
  20392. </member>
  20393. <member name="F:Godot.MainLoop.NotificationWmMouseEnter">
  20394. <summary>
  20395. <para>Notification received from the OS when the mouse enters the game window.</para>
  20396. <para>Implemented on desktop and web platforms.</para>
  20397. </summary>
  20398. </member>
  20399. <member name="F:Godot.MainLoop.NotificationWmMouseExit">
  20400. <summary>
  20401. <para>Notification received from the OS when the mouse leaves the game window.</para>
  20402. <para>Implemented on desktop and web platforms.</para>
  20403. </summary>
  20404. </member>
  20405. <member name="F:Godot.MainLoop.NotificationWmFocusIn">
  20406. <summary>
  20407. <para>Notification received from the OS when the game window is focused.</para>
  20408. <para>Implemented on all platforms.</para>
  20409. </summary>
  20410. </member>
  20411. <member name="F:Godot.MainLoop.NotificationWmFocusOut">
  20412. <summary>
  20413. <para>Notification received from the OS when the game window is unfocused.</para>
  20414. <para>Implemented on all platforms.</para>
  20415. </summary>
  20416. </member>
  20417. <member name="F:Godot.MainLoop.NotificationWmQuitRequest">
  20418. <summary>
  20419. <para>Notification received from the OS when a quit request is sent (e.g. closing the window with a "Close" button or Alt+F4).</para>
  20420. <para>Implemented on desktop platforms.</para>
  20421. </summary>
  20422. </member>
  20423. <member name="F:Godot.MainLoop.NotificationWmGoBackRequest">
  20424. <summary>
  20425. <para>Notification received from the OS when a go back request is sent (e.g. pressing the "Back" button on Android).</para>
  20426. <para>Specific to the Android platform.</para>
  20427. </summary>
  20428. </member>
  20429. <member name="F:Godot.MainLoop.NotificationWmUnfocusRequest">
  20430. <summary>
  20431. <para>Notification received from the OS when an unfocus request is sent (e.g. another OS window wants to take the focus).</para>
  20432. <para>No supported platforms currently send this notification.</para>
  20433. </summary>
  20434. </member>
  20435. <member name="F:Godot.MainLoop.NotificationOsMemoryWarning">
  20436. <summary>
  20437. <para>Notification received from the OS when the application is exceeding its allocated memory.</para>
  20438. <para>Specific to the iOS platform.</para>
  20439. </summary>
  20440. </member>
  20441. <member name="F:Godot.MainLoop.NotificationTranslationChanged">
  20442. <summary>
  20443. <para>Notification received when translations may have changed. Can be triggered by the user changing the locale. Can be used to respond to language changes, for example to change the UI strings on the fly. Useful when working with the built-in translation support, like <see cref="M:Godot.Object.Tr(System.String)"/>.</para>
  20444. </summary>
  20445. </member>
  20446. <member name="F:Godot.MainLoop.NotificationWmAbout">
  20447. <summary>
  20448. <para>Notification received from the OS when a request for "About" information is sent.</para>
  20449. <para>Specific to the macOS platform.</para>
  20450. </summary>
  20451. </member>
  20452. <member name="F:Godot.MainLoop.NotificationCrash">
  20453. <summary>
  20454. <para>Notification received from Godot's crash handler when the engine is about to crash.</para>
  20455. <para>Implemented on desktop platforms if the crash handler is enabled.</para>
  20456. </summary>
  20457. </member>
  20458. <member name="F:Godot.MainLoop.NotificationOsImeUpdate">
  20459. <summary>
  20460. <para>Notification received from the OS when an update of the Input Method Engine occurs (e.g. change of IME cursor position or composition string).</para>
  20461. <para>Specific to the macOS platform.</para>
  20462. </summary>
  20463. </member>
  20464. <member name="F:Godot.MainLoop.NotificationAppResumed">
  20465. <summary>
  20466. <para>Notification received from the OS when the app is resumed.</para>
  20467. <para>Specific to the Android platform.</para>
  20468. </summary>
  20469. </member>
  20470. <member name="F:Godot.MainLoop.NotificationAppPaused">
  20471. <summary>
  20472. <para>Notification received from the OS when the app is paused.</para>
  20473. <para>Specific to the Android platform.</para>
  20474. </summary>
  20475. </member>
  20476. <member name="M:Godot.MainLoop._DropFiles(System.String[],System.Int32)">
  20477. <summary>
  20478. <para>Called when files are dragged from the OS file manager and dropped in the game window. The arguments are a list of file paths and the identifier of the screen where the drag originated.</para>
  20479. </summary>
  20480. </member>
  20481. <member name="M:Godot.MainLoop._Finalize">
  20482. <summary>
  20483. <para>Called before the program exits.</para>
  20484. </summary>
  20485. </member>
  20486. <member name="M:Godot.MainLoop._GlobalMenuAction(System.Object,System.Object)">
  20487. <summary>
  20488. <para>Called when the user performs an action in the system global menu (e.g. the Mac OS menu bar).</para>
  20489. </summary>
  20490. </member>
  20491. <member name="M:Godot.MainLoop._Idle(System.Single)">
  20492. <summary>
  20493. <para>Called each idle frame with the time since the last idle frame as argument (in seconds). Equivalent to <see cref="M:Godot.Node._Process(System.Single)"/>.</para>
  20494. <para>If implemented, the method must return a boolean value. <c>true</c> ends the main loop, while <c>false</c> lets it proceed to the next frame.</para>
  20495. </summary>
  20496. </member>
  20497. <member name="M:Godot.MainLoop._Initialize">
  20498. <summary>
  20499. <para>Called once during initialization.</para>
  20500. </summary>
  20501. </member>
  20502. <member name="M:Godot.MainLoop._InputEvent(Godot.InputEvent)">
  20503. <summary>
  20504. <para>Called whenever an <see cref="T:Godot.InputEvent"/> is received by the main loop.</para>
  20505. </summary>
  20506. </member>
  20507. <member name="M:Godot.MainLoop._InputText(System.String)">
  20508. <summary>
  20509. <para>Deprecated callback, does not do anything. Use <see cref="M:Godot.MainLoop._InputEvent(Godot.InputEvent)"/> to parse text input. Will be removed in Godot 4.0.</para>
  20510. </summary>
  20511. </member>
  20512. <member name="M:Godot.MainLoop._Iteration(System.Single)">
  20513. <summary>
  20514. <para>Called each physics frame with the time since the last physics frame as argument (in seconds). Equivalent to <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/>.</para>
  20515. <para>If implemented, the method must return a boolean value. <c>true</c> ends the main loop, while <c>false</c> lets it proceed to the next frame.</para>
  20516. </summary>
  20517. </member>
  20518. <member name="M:Godot.MainLoop.InputEvent(Godot.InputEvent)">
  20519. <summary>
  20520. <para>Should not be called manually, override <see cref="M:Godot.MainLoop._InputEvent(Godot.InputEvent)"/> instead. Will be removed in Godot 4.0.</para>
  20521. </summary>
  20522. </member>
  20523. <member name="M:Godot.MainLoop.InputText(System.String)">
  20524. <summary>
  20525. <para>Should not be called manually, override <see cref="M:Godot.MainLoop._InputText(System.String)"/> instead. Will be removed in Godot 4.0.</para>
  20526. </summary>
  20527. </member>
  20528. <member name="M:Godot.MainLoop.Init">
  20529. <summary>
  20530. <para>Should not be called manually, override <see cref="M:Godot.MainLoop._Initialize"/> instead. Will be removed in Godot 4.0.</para>
  20531. </summary>
  20532. </member>
  20533. <member name="M:Godot.MainLoop.Iteration(System.Single)">
  20534. <summary>
  20535. <para>Should not be called manually, override <see cref="M:Godot.MainLoop._Iteration(System.Single)"/> instead. Will be removed in Godot 4.0.</para>
  20536. </summary>
  20537. </member>
  20538. <member name="M:Godot.MainLoop.Idle(System.Single)">
  20539. <summary>
  20540. <para>Should not be called manually, override <see cref="M:Godot.MainLoop._Idle(System.Single)"/> instead. Will be removed in Godot 4.0.</para>
  20541. </summary>
  20542. </member>
  20543. <member name="M:Godot.MainLoop.Finish">
  20544. <summary>
  20545. <para>Should not be called manually, override <see cref="M:Godot.MainLoop._Finalize"/> instead. Will be removed in Godot 4.0.</para>
  20546. </summary>
  20547. </member>
  20548. <member name="T:Godot.MarginContainer">
  20549. <summary>
  20550. <para>Adds a top, left, bottom, and right margin to all <see cref="T:Godot.Control"/> nodes that are direct children of the container. To control the <see cref="T:Godot.MarginContainer"/>'s margin, use the <c>margin_*</c> theme properties listed below.</para>
  20551. <para>Note: Be careful, <see cref="T:Godot.Control"/> margin values are different than the constant margin values. If you want to change the custom margin values of the <see cref="T:Godot.MarginContainer"/> by code, you should use the following examples:</para>
  20552. <para><code>
  20553. var margin_value = 100
  20554. set("custom_constants/margin_top", margin_value)
  20555. set("custom_constants/margin_left", margin_value)
  20556. set("custom_constants/margin_bottom", margin_value)
  20557. set("custom_constants/margin_right", margin_value)
  20558. </code></para>
  20559. </summary>
  20560. </member>
  20561. <member name="T:Godot.Material">
  20562. <summary>
  20563. <para>Material is a base <see cref="T:Godot.Resource"/> used for coloring and shading geometry. All materials inherit from it and almost all <see cref="T:Godot.VisualInstance"/> derived nodes carry a Material. A few flags and parameters are shared between all material types and are configured here.</para>
  20564. </summary>
  20565. </member>
  20566. <member name="F:Godot.Material.RenderPriorityMax">
  20567. <summary>
  20568. <para>Maximum value for the <see cref="P:Godot.Material.RenderPriority"/> parameter.</para>
  20569. </summary>
  20570. </member>
  20571. <member name="F:Godot.Material.RenderPriorityMin">
  20572. <summary>
  20573. <para>Minimum value for the <see cref="P:Godot.Material.RenderPriority"/> parameter.</para>
  20574. </summary>
  20575. </member>
  20576. <member name="P:Godot.Material.RenderPriority">
  20577. <summary>
  20578. <para>Sets the render priority for transparent objects in 3D scenes. Higher priority objects will be sorted in front of lower priority objects.</para>
  20579. <para>Note: this only applies to sorting of transparent objects. This will not impact how transparent objects are sorted relative to opaque objects. This is because opaque objects are not sorted, while transparent objects are sorted from back to front (subject to priority).</para>
  20580. </summary>
  20581. </member>
  20582. <member name="P:Godot.Material.NextPass">
  20583. <summary>
  20584. <para>Sets the <see cref="T:Godot.Material"/> to be used for the next pass. This renders the object again using a different material.</para>
  20585. <para>Note: only applies to <see cref="T:Godot.SpatialMaterial"/>s and <see cref="T:Godot.ShaderMaterial"/>s with type "Spatial".</para>
  20586. </summary>
  20587. </member>
  20588. <member name="T:Godot.MenuButton">
  20589. <summary>
  20590. <para>Special button that brings up a <see cref="T:Godot.PopupMenu"/> when clicked.</para>
  20591. <para>New items can be created inside this <see cref="T:Godot.PopupMenu"/> using <c>get_popup().add_item("My Item Name")</c>. You can also create them directly from the editor. To do so, select the <see cref="T:Godot.MenuButton"/> node, then in the toolbar at the top of the 2D editor, click Items then click Add in the popup. You will be able to give each items new properties.</para>
  20592. </summary>
  20593. </member>
  20594. <member name="P:Godot.MenuButton.SwitchOnHover">
  20595. <summary>
  20596. <para>If <c>true</c>, when the cursor hovers above another <see cref="T:Godot.MenuButton"/> within the same parent which also has <c>switch_on_hover</c> enabled, it will close the current <see cref="T:Godot.MenuButton"/> and open the other one.</para>
  20597. </summary>
  20598. </member>
  20599. <member name="M:Godot.MenuButton.GetPopup">
  20600. <summary>
  20601. <para>Returns the <see cref="T:Godot.PopupMenu"/> contained in this button.</para>
  20602. </summary>
  20603. </member>
  20604. <member name="M:Godot.MenuButton.SetDisableShortcuts(System.Boolean)">
  20605. <summary>
  20606. <para>If <c>true</c>, shortcuts are disabled and cannot be used to trigger the button.</para>
  20607. </summary>
  20608. </member>
  20609. <member name="T:Godot.Mesh">
  20610. <summary>
  20611. <para>Mesh is a type of <see cref="T:Godot.Resource"/> that contains vertex array-based geometry, divided in surfaces. Each surface contains a completely separate array and a material used to draw it. Design wise, a mesh with multiple surfaces is preferred to a single surface, because objects created in 3D editing software commonly contain multiple materials.</para>
  20612. </summary>
  20613. </member>
  20614. <member name="F:Godot.Mesh.BlendShapeMode.Normalized">
  20615. <summary>
  20616. <para>Blend shapes are normalized.</para>
  20617. </summary>
  20618. </member>
  20619. <member name="F:Godot.Mesh.BlendShapeMode.Relative">
  20620. <summary>
  20621. <para>Blend shapes are relative to base weight.</para>
  20622. </summary>
  20623. </member>
  20624. <member name="F:Godot.Mesh.PrimitiveType.Points">
  20625. <summary>
  20626. <para>Render array as points (one vertex equals one point).</para>
  20627. </summary>
  20628. </member>
  20629. <member name="F:Godot.Mesh.PrimitiveType.Lines">
  20630. <summary>
  20631. <para>Render array as lines (every two vertices a line is created).</para>
  20632. </summary>
  20633. </member>
  20634. <member name="F:Godot.Mesh.PrimitiveType.LineStrip">
  20635. <summary>
  20636. <para>Render array as line strip.</para>
  20637. </summary>
  20638. </member>
  20639. <member name="F:Godot.Mesh.PrimitiveType.LineLoop">
  20640. <summary>
  20641. <para>Render array as line loop (like line strip, but closed).</para>
  20642. </summary>
  20643. </member>
  20644. <member name="F:Godot.Mesh.PrimitiveType.Triangles">
  20645. <summary>
  20646. <para>Render array as triangles (every three vertices a triangle is created).</para>
  20647. </summary>
  20648. </member>
  20649. <member name="F:Godot.Mesh.PrimitiveType.TriangleStrip">
  20650. <summary>
  20651. <para>Render array as triangle strips.</para>
  20652. </summary>
  20653. </member>
  20654. <member name="F:Godot.Mesh.PrimitiveType.TriangleFan">
  20655. <summary>
  20656. <para>Render array as triangle fans.</para>
  20657. </summary>
  20658. </member>
  20659. <member name="F:Godot.Mesh.ArrayFormat.FormatVertex">
  20660. <summary>
  20661. <para>Mesh array contains vertices. All meshes require a vertex array so this should always be present.</para>
  20662. </summary>
  20663. </member>
  20664. <member name="F:Godot.Mesh.ArrayFormat.FormatNormal">
  20665. <summary>
  20666. <para>Mesh array contains normals.</para>
  20667. </summary>
  20668. </member>
  20669. <member name="F:Godot.Mesh.ArrayFormat.FormatTangent">
  20670. <summary>
  20671. <para>Mesh array contains tangents.</para>
  20672. </summary>
  20673. </member>
  20674. <member name="F:Godot.Mesh.ArrayFormat.FormatColor">
  20675. <summary>
  20676. <para>Mesh array contains colors.</para>
  20677. </summary>
  20678. </member>
  20679. <member name="F:Godot.Mesh.ArrayFormat.FormatTexUv">
  20680. <summary>
  20681. <para>Mesh array contains UVs.</para>
  20682. </summary>
  20683. </member>
  20684. <member name="F:Godot.Mesh.ArrayFormat.FormatTexUv2">
  20685. <summary>
  20686. <para>Mesh array contains second UV.</para>
  20687. </summary>
  20688. </member>
  20689. <member name="F:Godot.Mesh.ArrayFormat.FormatBones">
  20690. <summary>
  20691. <para>Mesh array contains bones.</para>
  20692. </summary>
  20693. </member>
  20694. <member name="F:Godot.Mesh.ArrayFormat.FormatWeights">
  20695. <summary>
  20696. <para>Mesh array contains bone weights.</para>
  20697. </summary>
  20698. </member>
  20699. <member name="F:Godot.Mesh.ArrayFormat.FormatIndex">
  20700. <summary>
  20701. <para>Mesh array uses indices.</para>
  20702. </summary>
  20703. </member>
  20704. <member name="F:Godot.Mesh.ArrayFormat.CompressBase">
  20705. <summary>
  20706. <para>Used internally to calculate other <c>ARRAY_COMPRESS_*</c> enum values. Do not use.</para>
  20707. </summary>
  20708. </member>
  20709. <member name="F:Godot.Mesh.ArrayFormat.CompressVertex">
  20710. <summary>
  20711. <para>Flag used to mark a compressed (half float) vertex array.</para>
  20712. </summary>
  20713. </member>
  20714. <member name="F:Godot.Mesh.ArrayFormat.CompressNormal">
  20715. <summary>
  20716. <para>Flag used to mark a compressed (half float) normal array.</para>
  20717. </summary>
  20718. </member>
  20719. <member name="F:Godot.Mesh.ArrayFormat.CompressTangent">
  20720. <summary>
  20721. <para>Flag used to mark a compressed (half float) tangent array.</para>
  20722. </summary>
  20723. </member>
  20724. <member name="F:Godot.Mesh.ArrayFormat.CompressColor">
  20725. <summary>
  20726. <para>Flag used to mark a compressed (half float) color array.</para>
  20727. </summary>
  20728. </member>
  20729. <member name="F:Godot.Mesh.ArrayFormat.CompressTexUv">
  20730. <summary>
  20731. <para>Flag used to mark a compressed (half float) UV coordinates array.</para>
  20732. </summary>
  20733. </member>
  20734. <member name="F:Godot.Mesh.ArrayFormat.CompressTexUv2">
  20735. <summary>
  20736. <para>Flag used to mark a compressed (half float) UV coordinates array for the second UV coordinates.</para>
  20737. </summary>
  20738. </member>
  20739. <member name="F:Godot.Mesh.ArrayFormat.CompressBones">
  20740. <summary>
  20741. <para>Flag used to mark a compressed bone array.</para>
  20742. </summary>
  20743. </member>
  20744. <member name="F:Godot.Mesh.ArrayFormat.CompressWeights">
  20745. <summary>
  20746. <para>Flag used to mark a compressed (half float) weight array.</para>
  20747. </summary>
  20748. </member>
  20749. <member name="F:Godot.Mesh.ArrayFormat.CompressIndex">
  20750. <summary>
  20751. <para>Flag used to mark a compressed index array.</para>
  20752. </summary>
  20753. </member>
  20754. <member name="F:Godot.Mesh.ArrayFormat.FlagUse2dVertices">
  20755. <summary>
  20756. <para>Flag used to mark that the array contains 2D vertices.</para>
  20757. </summary>
  20758. </member>
  20759. <member name="F:Godot.Mesh.ArrayFormat.FlagUse16BitBones">
  20760. <summary>
  20761. <para>Flag used to mark that the array uses 16-bit bones instead of 8-bit.</para>
  20762. </summary>
  20763. </member>
  20764. <member name="F:Godot.Mesh.ArrayFormat.CompressDefault">
  20765. <summary>
  20766. <para>Used to set flags , , , , , and quickly.</para>
  20767. </summary>
  20768. </member>
  20769. <member name="F:Godot.Mesh.ArrayType.Vertex">
  20770. <summary>
  20771. <para>Array of vertices.</para>
  20772. </summary>
  20773. </member>
  20774. <member name="F:Godot.Mesh.ArrayType.Normal">
  20775. <summary>
  20776. <para>Array of normals.</para>
  20777. </summary>
  20778. </member>
  20779. <member name="F:Godot.Mesh.ArrayType.Tangent">
  20780. <summary>
  20781. <para>Array of tangents as an array of floats, 4 floats per tangent.</para>
  20782. </summary>
  20783. </member>
  20784. <member name="F:Godot.Mesh.ArrayType.Color">
  20785. <summary>
  20786. <para>Array of colors.</para>
  20787. </summary>
  20788. </member>
  20789. <member name="F:Godot.Mesh.ArrayType.TexUv">
  20790. <summary>
  20791. <para>Array of UV coordinates.</para>
  20792. </summary>
  20793. </member>
  20794. <member name="F:Godot.Mesh.ArrayType.TexUv2">
  20795. <summary>
  20796. <para>Array of second set of UV coordinates.</para>
  20797. </summary>
  20798. </member>
  20799. <member name="F:Godot.Mesh.ArrayType.Bones">
  20800. <summary>
  20801. <para>Array of bone data.</para>
  20802. </summary>
  20803. </member>
  20804. <member name="F:Godot.Mesh.ArrayType.Weights">
  20805. <summary>
  20806. <para>Array of weights.</para>
  20807. </summary>
  20808. </member>
  20809. <member name="F:Godot.Mesh.ArrayType.Index">
  20810. <summary>
  20811. <para>Array of indices.</para>
  20812. </summary>
  20813. </member>
  20814. <member name="F:Godot.Mesh.ArrayType.Max">
  20815. <summary>
  20816. <para>Represents the size of the <see cref="T:Godot.Mesh.ArrayType"/> enum.</para>
  20817. </summary>
  20818. </member>
  20819. <member name="P:Godot.Mesh.LightmapSizeHint">
  20820. <summary>
  20821. <para>Sets a hint to be used for lightmap resolution in <see cref="T:Godot.BakedLightmap"/>. Overrides <see cref="P:Godot.BakedLightmap.BakeDefaultTexelsPerUnit"/>.</para>
  20822. </summary>
  20823. </member>
  20824. <member name="M:Godot.Mesh.GetAabb">
  20825. <summary>
  20826. <para>Returns the smallest <see cref="T:Godot.AABB"/> enclosing this mesh. Not affected by <c>custom_aabb</c>.</para>
  20827. <para>Note: This is only implemented for <see cref="T:Godot.ArrayMesh"/> and <see cref="T:Godot.PrimitiveMesh"/>.</para>
  20828. </summary>
  20829. </member>
  20830. <member name="M:Godot.Mesh.GetSurfaceCount">
  20831. <summary>
  20832. <para>Returns the amount of surfaces that the <see cref="T:Godot.Mesh"/> holds.</para>
  20833. </summary>
  20834. </member>
  20835. <member name="M:Godot.Mesh.SurfaceGetArrays(System.Int32)">
  20836. <summary>
  20837. <para>Returns the arrays for the vertices, normals, uvs, etc. that make up the requested surface (see <see cref="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)"/>).</para>
  20838. </summary>
  20839. </member>
  20840. <member name="M:Godot.Mesh.SurfaceGetBlendShapeArrays(System.Int32)">
  20841. <summary>
  20842. <para>Returns the blend shape arrays for the requested surface.</para>
  20843. </summary>
  20844. </member>
  20845. <member name="M:Godot.Mesh.SurfaceSetMaterial(System.Int32,Godot.Material)">
  20846. <summary>
  20847. <para>Sets a <see cref="T:Godot.Material"/> for a given surface. Surface will be rendered using this material.</para>
  20848. </summary>
  20849. </member>
  20850. <member name="M:Godot.Mesh.SurfaceGetMaterial(System.Int32)">
  20851. <summary>
  20852. <para>Returns a <see cref="T:Godot.Material"/> in a given surface. Surface is rendered using this material.</para>
  20853. </summary>
  20854. </member>
  20855. <member name="M:Godot.Mesh.CreateTrimeshShape">
  20856. <summary>
  20857. <para>Calculate a <see cref="T:Godot.ConcavePolygonShape"/> from the mesh.</para>
  20858. </summary>
  20859. </member>
  20860. <member name="M:Godot.Mesh.CreateConvexShape">
  20861. <summary>
  20862. <para>Calculate a <see cref="T:Godot.ConvexPolygonShape"/> from the mesh.</para>
  20863. </summary>
  20864. </member>
  20865. <member name="M:Godot.Mesh.CreateOutline(System.Single)">
  20866. <summary>
  20867. <para>Calculate an outline mesh at a defined offset (margin) from the original mesh.</para>
  20868. <para>Note: This method typically returns the vertices in reverse order (e.g. clockwise to counterclockwise).</para>
  20869. </summary>
  20870. </member>
  20871. <member name="M:Godot.Mesh.GetFaces">
  20872. <summary>
  20873. <para>Returns all the vertices that make up the faces of the mesh. Each three vertices represent one triangle.</para>
  20874. </summary>
  20875. </member>
  20876. <member name="M:Godot.Mesh.GenerateTriangleMesh">
  20877. <summary>
  20878. <para>Generate a <see cref="T:Godot.TriangleMesh"/> from the mesh.</para>
  20879. </summary>
  20880. </member>
  20881. <member name="T:Godot.MeshDataTool">
  20882. <summary>
  20883. <para>MeshDataTool provides access to individual vertices in a <see cref="T:Godot.Mesh"/>. It allows users to read and edit vertex data of meshes. It also creates an array of faces and edges.</para>
  20884. <para>To use MeshDataTool, load a mesh with <see cref="M:Godot.MeshDataTool.CreateFromSurface(Godot.ArrayMesh,System.Int32)"/>. When you are finished editing the data commit the data to a mesh with <see cref="M:Godot.MeshDataTool.CommitToSurface(Godot.ArrayMesh)"/>.</para>
  20885. <para>Below is an example of how MeshDataTool may be used.</para>
  20886. <para><code>
  20887. var mdt = MeshDataTool.new()
  20888. mdt.create_from_surface(mesh, 0)
  20889. for i in range(mdt.get_vertex_count()):
  20890. var vertex = mdt.get_vertex(i)
  20891. ...
  20892. mdt.set_vertex(i, vertex)
  20893. mesh.surface_remove(0)
  20894. mdt.commit_to_surface(mesh)
  20895. </code></para>
  20896. <para>See also <see cref="T:Godot.ArrayMesh"/>, <see cref="T:Godot.ImmediateGeometry"/> and <see cref="T:Godot.SurfaceTool"/> for procedural geometry generation.</para>
  20897. <para>Note: Godot uses clockwise <a href="https://learnopengl.com/Advanced-OpenGL/Face-culling">winding order</a> for front faces of triangle primitive modes.</para>
  20898. </summary>
  20899. </member>
  20900. <member name="M:Godot.MeshDataTool.Clear">
  20901. <summary>
  20902. <para>Clears all data currently in MeshDataTool.</para>
  20903. </summary>
  20904. </member>
  20905. <member name="M:Godot.MeshDataTool.CreateFromSurface(Godot.ArrayMesh,System.Int32)">
  20906. <summary>
  20907. <para>Uses specified surface of given <see cref="T:Godot.Mesh"/> to populate data for MeshDataTool.</para>
  20908. <para>Requires <see cref="T:Godot.Mesh"/> with primitive type .</para>
  20909. </summary>
  20910. </member>
  20911. <member name="M:Godot.MeshDataTool.CommitToSurface(Godot.ArrayMesh)">
  20912. <summary>
  20913. <para>Adds a new surface to specified <see cref="T:Godot.Mesh"/> with edited data.</para>
  20914. </summary>
  20915. </member>
  20916. <member name="M:Godot.MeshDataTool.GetFormat">
  20917. <summary>
  20918. <para>Returns the <see cref="T:Godot.Mesh"/>'s format. Format is an integer made up of <see cref="T:Godot.Mesh"/> format flags combined together. For example, a mesh containing both vertices and normals would return a format of <c>3</c> because is <c>1</c> and is <c>2</c>.</para>
  20919. <para>See <see cref="T:Godot.ArrayMesh.ArrayFormat"/> for a list of format flags.</para>
  20920. </summary>
  20921. </member>
  20922. <member name="M:Godot.MeshDataTool.GetVertexCount">
  20923. <summary>
  20924. <para>Returns the total number of vertices in <see cref="T:Godot.Mesh"/>.</para>
  20925. </summary>
  20926. </member>
  20927. <member name="M:Godot.MeshDataTool.GetEdgeCount">
  20928. <summary>
  20929. <para>Returns the number of edges in this <see cref="T:Godot.Mesh"/>.</para>
  20930. </summary>
  20931. </member>
  20932. <member name="M:Godot.MeshDataTool.GetFaceCount">
  20933. <summary>
  20934. <para>Returns the number of faces in this <see cref="T:Godot.Mesh"/>.</para>
  20935. </summary>
  20936. </member>
  20937. <member name="M:Godot.MeshDataTool.SetVertex(System.Int32,Godot.Vector3)">
  20938. <summary>
  20939. <para>Sets the position of the given vertex.</para>
  20940. </summary>
  20941. </member>
  20942. <member name="M:Godot.MeshDataTool.GetVertex(System.Int32)">
  20943. <summary>
  20944. <para>Returns the vertex at given index.</para>
  20945. </summary>
  20946. </member>
  20947. <member name="M:Godot.MeshDataTool.SetVertexNormal(System.Int32,Godot.Vector3)">
  20948. <summary>
  20949. <para>Sets the normal of the given vertex.</para>
  20950. </summary>
  20951. </member>
  20952. <member name="M:Godot.MeshDataTool.GetVertexNormal(System.Int32)">
  20953. <summary>
  20954. <para>Returns the normal of the given vertex.</para>
  20955. </summary>
  20956. </member>
  20957. <member name="M:Godot.MeshDataTool.SetVertexTangent(System.Int32,Godot.Plane)">
  20958. <summary>
  20959. <para>Sets the tangent of the given vertex.</para>
  20960. </summary>
  20961. </member>
  20962. <member name="M:Godot.MeshDataTool.GetVertexTangent(System.Int32)">
  20963. <summary>
  20964. <para>Returns the tangent of the given vertex.</para>
  20965. </summary>
  20966. </member>
  20967. <member name="M:Godot.MeshDataTool.SetVertexUv(System.Int32,Godot.Vector2)">
  20968. <summary>
  20969. <para>Sets the UV of the given vertex.</para>
  20970. </summary>
  20971. </member>
  20972. <member name="M:Godot.MeshDataTool.GetVertexUv(System.Int32)">
  20973. <summary>
  20974. <para>Returns the UV of the given vertex.</para>
  20975. </summary>
  20976. </member>
  20977. <member name="M:Godot.MeshDataTool.SetVertexUv2(System.Int32,Godot.Vector2)">
  20978. <summary>
  20979. <para>Sets the UV2 of the given vertex.</para>
  20980. </summary>
  20981. </member>
  20982. <member name="M:Godot.MeshDataTool.GetVertexUv2(System.Int32)">
  20983. <summary>
  20984. <para>Returns the UV2 of the given vertex.</para>
  20985. </summary>
  20986. </member>
  20987. <member name="M:Godot.MeshDataTool.SetVertexColor(System.Int32,Godot.Color)">
  20988. <summary>
  20989. <para>Sets the color of the given vertex.</para>
  20990. </summary>
  20991. </member>
  20992. <member name="M:Godot.MeshDataTool.GetVertexColor(System.Int32)">
  20993. <summary>
  20994. <para>Returns the color of the given vertex.</para>
  20995. </summary>
  20996. </member>
  20997. <member name="M:Godot.MeshDataTool.SetVertexBones(System.Int32,System.Int32[])">
  20998. <summary>
  20999. <para>Sets the bones of the given vertex.</para>
  21000. </summary>
  21001. </member>
  21002. <member name="M:Godot.MeshDataTool.GetVertexBones(System.Int32)">
  21003. <summary>
  21004. <para>Returns the bones of the given vertex.</para>
  21005. </summary>
  21006. </member>
  21007. <member name="M:Godot.MeshDataTool.SetVertexWeights(System.Int32,System.Single[])">
  21008. <summary>
  21009. <para>Sets the bone weights of the given vertex.</para>
  21010. </summary>
  21011. </member>
  21012. <member name="M:Godot.MeshDataTool.GetVertexWeights(System.Int32)">
  21013. <summary>
  21014. <para>Returns bone weights of the given vertex.</para>
  21015. </summary>
  21016. </member>
  21017. <member name="M:Godot.MeshDataTool.SetVertexMeta(System.Int32,System.Object)">
  21018. <summary>
  21019. <para>Sets the metadata associated with the given vertex.</para>
  21020. </summary>
  21021. </member>
  21022. <member name="M:Godot.MeshDataTool.GetVertexMeta(System.Int32)">
  21023. <summary>
  21024. <para>Returns the metadata associated with the given vertex.</para>
  21025. </summary>
  21026. </member>
  21027. <member name="M:Godot.MeshDataTool.GetVertexEdges(System.Int32)">
  21028. <summary>
  21029. <para>Returns an array of edges that share the given vertex.</para>
  21030. </summary>
  21031. </member>
  21032. <member name="M:Godot.MeshDataTool.GetVertexFaces(System.Int32)">
  21033. <summary>
  21034. <para>Returns an array of faces that share the given vertex.</para>
  21035. </summary>
  21036. </member>
  21037. <member name="M:Godot.MeshDataTool.GetEdgeVertex(System.Int32,System.Int32)">
  21038. <summary>
  21039. <para>Returns index of specified vertex connected to given edge.</para>
  21040. <para>Vertex argument can only be 0 or 1 because edges are comprised of two vertices.</para>
  21041. </summary>
  21042. </member>
  21043. <member name="M:Godot.MeshDataTool.GetEdgeFaces(System.Int32)">
  21044. <summary>
  21045. <para>Returns array of faces that touch given edge.</para>
  21046. </summary>
  21047. </member>
  21048. <member name="M:Godot.MeshDataTool.SetEdgeMeta(System.Int32,System.Object)">
  21049. <summary>
  21050. <para>Sets the metadata of the given edge.</para>
  21051. </summary>
  21052. </member>
  21053. <member name="M:Godot.MeshDataTool.GetEdgeMeta(System.Int32)">
  21054. <summary>
  21055. <para>Returns meta information assigned to given edge.</para>
  21056. </summary>
  21057. </member>
  21058. <member name="M:Godot.MeshDataTool.GetFaceVertex(System.Int32,System.Int32)">
  21059. <summary>
  21060. <para>Returns the specified vertex of the given face.</para>
  21061. <para>Vertex argument must be 2 or less because faces contain three vertices.</para>
  21062. </summary>
  21063. </member>
  21064. <member name="M:Godot.MeshDataTool.GetFaceEdge(System.Int32,System.Int32)">
  21065. <summary>
  21066. <para>Returns specified edge associated with given face.</para>
  21067. <para>Edge argument must 2 or less because a face only has three edges.</para>
  21068. </summary>
  21069. </member>
  21070. <member name="M:Godot.MeshDataTool.SetFaceMeta(System.Int32,System.Object)">
  21071. <summary>
  21072. <para>Sets the metadata of the given face.</para>
  21073. </summary>
  21074. </member>
  21075. <member name="M:Godot.MeshDataTool.GetFaceMeta(System.Int32)">
  21076. <summary>
  21077. <para>Returns the metadata associated with the given face.</para>
  21078. </summary>
  21079. </member>
  21080. <member name="M:Godot.MeshDataTool.GetFaceNormal(System.Int32)">
  21081. <summary>
  21082. <para>Calculates and returns the face normal of the given face.</para>
  21083. </summary>
  21084. </member>
  21085. <member name="M:Godot.MeshDataTool.SetMaterial(Godot.Material)">
  21086. <summary>
  21087. <para>Sets the material to be used by newly-constructed <see cref="T:Godot.Mesh"/>.</para>
  21088. </summary>
  21089. </member>
  21090. <member name="M:Godot.MeshDataTool.GetMaterial">
  21091. <summary>
  21092. <para>Returns the material assigned to the <see cref="T:Godot.Mesh"/>.</para>
  21093. </summary>
  21094. </member>
  21095. <member name="T:Godot.MeshInstance">
  21096. <summary>
  21097. <para>MeshInstance is a node that takes a <see cref="T:Godot.Mesh"/> resource and adds it to the current scenario by creating an instance of it. This is the class most often used to get 3D geometry rendered and can be used to instance a single <see cref="T:Godot.Mesh"/> in many places. This allows to reuse geometry and save on resources. When a <see cref="T:Godot.Mesh"/> has to be instanced more than thousands of times at close proximity, consider using a <see cref="T:Godot.MultiMesh"/> in a <see cref="T:Godot.MultiMeshInstance"/> instead.</para>
  21098. </summary>
  21099. </member>
  21100. <member name="P:Godot.MeshInstance.Mesh">
  21101. <summary>
  21102. <para>The <see cref="T:Godot.Mesh"/> resource for the instance.</para>
  21103. </summary>
  21104. </member>
  21105. <member name="P:Godot.MeshInstance.Skin">
  21106. <summary>
  21107. <para>Sets the skin to be used by this instance.</para>
  21108. </summary>
  21109. </member>
  21110. <member name="P:Godot.MeshInstance.Skeleton">
  21111. <summary>
  21112. <para><see cref="T:Godot.NodePath"/> to the <see cref="T:Godot.Skeleton"/> associated with the instance.</para>
  21113. </summary>
  21114. </member>
  21115. <member name="M:Godot.MeshInstance.GetSurfaceMaterialCount">
  21116. <summary>
  21117. <para>Returns the number of surface materials.</para>
  21118. </summary>
  21119. </member>
  21120. <member name="M:Godot.MeshInstance.SetSurfaceMaterial(System.Int32,Godot.Material)">
  21121. <summary>
  21122. <para>Sets the <see cref="T:Godot.Material"/> for a surface of the <see cref="T:Godot.Mesh"/> resource.</para>
  21123. </summary>
  21124. </member>
  21125. <member name="M:Godot.MeshInstance.GetSurfaceMaterial(System.Int32)">
  21126. <summary>
  21127. <para>Returns the <see cref="T:Godot.Material"/> for a surface of the <see cref="T:Godot.Mesh"/> resource.</para>
  21128. </summary>
  21129. </member>
  21130. <member name="M:Godot.MeshInstance.CreateTrimeshCollision">
  21131. <summary>
  21132. <para>This helper creates a <see cref="T:Godot.StaticBody"/> child node with a <see cref="T:Godot.ConcavePolygonShape"/> collision shape calculated from the mesh geometry. It's mainly used for testing.</para>
  21133. </summary>
  21134. </member>
  21135. <member name="M:Godot.MeshInstance.CreateConvexCollision">
  21136. <summary>
  21137. <para>This helper creates a <see cref="T:Godot.StaticBody"/> child node with a <see cref="T:Godot.ConvexPolygonShape"/> collision shape calculated from the mesh geometry. It's mainly used for testing.</para>
  21138. </summary>
  21139. </member>
  21140. <member name="M:Godot.MeshInstance.CreateDebugTangents">
  21141. <summary>
  21142. <para>This helper creates a <see cref="T:Godot.MeshInstance"/> child node with gizmos at every vertex calculated from the mesh geometry. It's mainly used for testing.</para>
  21143. </summary>
  21144. </member>
  21145. <member name="T:Godot.MeshInstance2D">
  21146. <summary>
  21147. <para>Node used for displaying a <see cref="T:Godot.Mesh"/> in 2D. Can be constructed from an existing <see cref="T:Godot.Sprite"/> via a tool in the editor toolbar. Select "Sprite" then "Convert to Mesh2D", select settings in popup and press "Create Mesh2D".</para>
  21148. </summary>
  21149. </member>
  21150. <member name="P:Godot.MeshInstance2D.Mesh">
  21151. <summary>
  21152. <para>The <see cref="T:Godot.Mesh"/> that will be drawn by the <see cref="T:Godot.MeshInstance2D"/>.</para>
  21153. </summary>
  21154. </member>
  21155. <member name="P:Godot.MeshInstance2D.Texture">
  21156. <summary>
  21157. <para>The <see cref="T:Godot.Texture"/> that will be used if using the default <see cref="T:Godot.CanvasItemMaterial"/>. Can be accessed as <c>TEXTURE</c> in CanvasItem shader.</para>
  21158. </summary>
  21159. </member>
  21160. <member name="P:Godot.MeshInstance2D.NormalMap">
  21161. <summary>
  21162. <para>The normal map that will be used if using the default <see cref="T:Godot.CanvasItemMaterial"/>.</para>
  21163. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  21164. </summary>
  21165. </member>
  21166. <member name="T:Godot.MeshLibrary">
  21167. <summary>
  21168. <para>A library of meshes. Contains a list of <see cref="T:Godot.Mesh"/> resources, each with a name and ID. Each item can also include collision and navigation shapes. This resource is used in <see cref="T:Godot.GridMap"/>.</para>
  21169. </summary>
  21170. </member>
  21171. <member name="M:Godot.MeshLibrary.CreateItem(System.Int32)">
  21172. <summary>
  21173. <para>Creates a new item in the library with the given ID.</para>
  21174. <para>You can get an unused ID from <see cref="M:Godot.MeshLibrary.GetLastUnusedItemId"/>.</para>
  21175. </summary>
  21176. </member>
  21177. <member name="M:Godot.MeshLibrary.SetItemName(System.Int32,System.String)">
  21178. <summary>
  21179. <para>Sets the item's name.</para>
  21180. <para>This name is shown in the editor. It can also be used to look up the item later using <see cref="M:Godot.MeshLibrary.FindItemByName(System.String)"/>.</para>
  21181. </summary>
  21182. </member>
  21183. <member name="M:Godot.MeshLibrary.SetItemMesh(System.Int32,Godot.Mesh)">
  21184. <summary>
  21185. <para>Sets the item's mesh.</para>
  21186. </summary>
  21187. </member>
  21188. <member name="M:Godot.MeshLibrary.SetItemNavmesh(System.Int32,Godot.NavigationMesh)">
  21189. <summary>
  21190. <para>Sets the item's navigation mesh.</para>
  21191. </summary>
  21192. </member>
  21193. <member name="M:Godot.MeshLibrary.SetItemNavmeshTransform(System.Int32,Godot.Transform)">
  21194. <summary>
  21195. <para>Sets the transform to apply to the item's navigation mesh.</para>
  21196. </summary>
  21197. </member>
  21198. <member name="M:Godot.MeshLibrary.SetItemShapes(System.Int32,Godot.Collections.Array)">
  21199. <summary>
  21200. <para>Sets an item's collision shapes.</para>
  21201. <para>The array should consist of <see cref="T:Godot.Shape"/> objects, each followed by a <see cref="T:Godot.Transform"/> that will be applied to it. For shapes that should not have a transform, use .</para>
  21202. </summary>
  21203. </member>
  21204. <member name="M:Godot.MeshLibrary.SetItemPreview(System.Int32,Godot.Texture)">
  21205. <summary>
  21206. <para>Sets a texture to use as the item's preview icon in the editor.</para>
  21207. </summary>
  21208. </member>
  21209. <member name="M:Godot.MeshLibrary.GetItemName(System.Int32)">
  21210. <summary>
  21211. <para>Returns the item's name.</para>
  21212. </summary>
  21213. </member>
  21214. <member name="M:Godot.MeshLibrary.GetItemMesh(System.Int32)">
  21215. <summary>
  21216. <para>Returns the item's mesh.</para>
  21217. </summary>
  21218. </member>
  21219. <member name="M:Godot.MeshLibrary.GetItemNavmesh(System.Int32)">
  21220. <summary>
  21221. <para>Returns the item's navigation mesh.</para>
  21222. </summary>
  21223. </member>
  21224. <member name="M:Godot.MeshLibrary.GetItemNavmeshTransform(System.Int32)">
  21225. <summary>
  21226. <para>Returns the transform applied to the item's navigation mesh.</para>
  21227. </summary>
  21228. </member>
  21229. <member name="M:Godot.MeshLibrary.GetItemShapes(System.Int32)">
  21230. <summary>
  21231. <para>Returns an item's collision shapes.</para>
  21232. <para>The array consists of each <see cref="T:Godot.Shape"/> followed by its <see cref="T:Godot.Transform"/>.</para>
  21233. </summary>
  21234. </member>
  21235. <member name="M:Godot.MeshLibrary.GetItemPreview(System.Int32)">
  21236. <summary>
  21237. <para>When running in the editor, returns a generated item preview (a 3D rendering in isometric perspective). When used in a running project, returns the manually-defined item preview which can be set using <see cref="M:Godot.MeshLibrary.SetItemPreview(System.Int32,Godot.Texture)"/>. Returns an empty <see cref="T:Godot.Texture"/> if no preview was manually set in a running project.</para>
  21238. </summary>
  21239. </member>
  21240. <member name="M:Godot.MeshLibrary.RemoveItem(System.Int32)">
  21241. <summary>
  21242. <para>Removes the item.</para>
  21243. </summary>
  21244. </member>
  21245. <member name="M:Godot.MeshLibrary.FindItemByName(System.String)">
  21246. <summary>
  21247. <para>Returns the first item with the given name.</para>
  21248. </summary>
  21249. </member>
  21250. <member name="M:Godot.MeshLibrary.Clear">
  21251. <summary>
  21252. <para>Clears the library.</para>
  21253. </summary>
  21254. </member>
  21255. <member name="M:Godot.MeshLibrary.GetItemList">
  21256. <summary>
  21257. <para>Returns the list of item IDs in use.</para>
  21258. </summary>
  21259. </member>
  21260. <member name="M:Godot.MeshLibrary.GetLastUnusedItemId">
  21261. <summary>
  21262. <para>Gets an unused ID for a new item.</para>
  21263. </summary>
  21264. </member>
  21265. <member name="T:Godot.MeshTexture">
  21266. <summary>
  21267. <para>Simple texture that uses a mesh to draw itself. It's limited because flags can't be changed and region drawing is not supported.</para>
  21268. </summary>
  21269. </member>
  21270. <member name="P:Godot.MeshTexture.Mesh">
  21271. <summary>
  21272. <para>Sets the mesh used to draw. It must be a mesh using 2D vertices.</para>
  21273. </summary>
  21274. </member>
  21275. <member name="P:Godot.MeshTexture.BaseTexture">
  21276. <summary>
  21277. <para>Sets the base texture that the Mesh will use to draw.</para>
  21278. </summary>
  21279. </member>
  21280. <member name="P:Godot.MeshTexture.ImageSize">
  21281. <summary>
  21282. <para>Sets the size of the image, needed for reference.</para>
  21283. </summary>
  21284. </member>
  21285. <member name="T:Godot.MobileVRInterface">
  21286. <summary>
  21287. <para>This is a generic mobile VR implementation where you need to provide details about the phone and HMD used. It does not rely on any existing framework. This is the most basic interface we have. For the best effect, you need a mobile phone with a gyroscope and accelerometer.</para>
  21288. <para>Note that even though there is no positional tracking, the camera will assume the headset is at a height of 1.85 meters. You can change this by setting <see cref="P:Godot.MobileVRInterface.EyeHeight"/>.</para>
  21289. <para>You can initialise this interface as follows:</para>
  21290. <para><code>
  21291. var interface = ARVRServer.find_interface("Native mobile")
  21292. if interface and interface.initialize():
  21293. get_viewport().arvr = true
  21294. </code></para>
  21295. </summary>
  21296. </member>
  21297. <member name="P:Godot.MobileVRInterface.EyeHeight">
  21298. <summary>
  21299. <para>The height at which the camera is placed in relation to the ground (i.e. <see cref="T:Godot.ARVROrigin"/> node).</para>
  21300. </summary>
  21301. </member>
  21302. <member name="P:Godot.MobileVRInterface.Iod">
  21303. <summary>
  21304. <para>The interocular distance, also known as the interpupillary distance. The distance between the pupils of the left and right eye.</para>
  21305. </summary>
  21306. </member>
  21307. <member name="P:Godot.MobileVRInterface.DisplayWidth">
  21308. <summary>
  21309. <para>The width of the display in centimeters.</para>
  21310. </summary>
  21311. </member>
  21312. <member name="P:Godot.MobileVRInterface.DisplayToLens">
  21313. <summary>
  21314. <para>The distance between the display and the lenses inside of the device in centimeters.</para>
  21315. </summary>
  21316. </member>
  21317. <member name="P:Godot.MobileVRInterface.Oversample">
  21318. <summary>
  21319. <para>The oversample setting. Because of the lens distortion we have to render our buffers at a higher resolution then the screen can natively handle. A value between 1.5 and 2.0 often provides good results but at the cost of performance.</para>
  21320. </summary>
  21321. </member>
  21322. <member name="P:Godot.MobileVRInterface.K1">
  21323. <summary>
  21324. <para>The k1 lens factor is one of the two constants that define the strength of the lens used and directly influences the lens distortion effect.</para>
  21325. </summary>
  21326. </member>
  21327. <member name="P:Godot.MobileVRInterface.K2">
  21328. <summary>
  21329. <para>The k2 lens factor, see k1.</para>
  21330. </summary>
  21331. </member>
  21332. <member name="T:Godot.MultiMesh">
  21333. <summary>
  21334. <para>MultiMesh provides low-level mesh instancing. Drawing thousands of <see cref="T:Godot.MeshInstance"/> nodes can be slow, since each object is submitted to the GPU then drawn individually.</para>
  21335. <para>MultiMesh is much faster as it can draw thousands of instances with a single draw call, resulting in less API overhead.</para>
  21336. <para>As a drawback, if the instances are too far away of each other, performance may be reduced as every single instance will always rendered (they are spatially indexed as one, for the whole object).</para>
  21337. <para>Since instances may have any behavior, the AABB used for visibility must be provided by the user.</para>
  21338. </summary>
  21339. </member>
  21340. <member name="F:Godot.MultiMesh.TransformFormatEnum.Transform2d">
  21341. <summary>
  21342. <para>Use this when using 2D transforms.</para>
  21343. </summary>
  21344. </member>
  21345. <member name="F:Godot.MultiMesh.TransformFormatEnum.Transform3d">
  21346. <summary>
  21347. <para>Use this when using 3D transforms.</para>
  21348. </summary>
  21349. </member>
  21350. <member name="F:Godot.MultiMesh.CustomDataFormatEnum.None">
  21351. <summary>
  21352. <para>Use when you are not using per-instance custom data.</para>
  21353. </summary>
  21354. </member>
  21355. <member name="F:Godot.MultiMesh.CustomDataFormatEnum.Data8bit">
  21356. <summary>
  21357. <para>Compress custom_data into 8 bits when passing to shader. This uses less memory and can be faster, but loses precision and range. Floats packed into 8 bits can only represent values between 0 and 1, numbers outside that range will be clamped.</para>
  21358. </summary>
  21359. </member>
  21360. <member name="F:Godot.MultiMesh.CustomDataFormatEnum.Float">
  21361. <summary>
  21362. <para>The <see cref="T:Godot.Color"/> passed into <see cref="M:Godot.MultiMesh.SetInstanceCustomData(System.Int32,Godot.Color)"/> will use 4 floats. Use this for highest precision.</para>
  21363. </summary>
  21364. </member>
  21365. <member name="F:Godot.MultiMesh.ColorFormatEnum.None">
  21366. <summary>
  21367. <para>Use when you are not using per-instance <see cref="T:Godot.Color"/>s.</para>
  21368. </summary>
  21369. </member>
  21370. <member name="F:Godot.MultiMesh.ColorFormatEnum.Color8bit">
  21371. <summary>
  21372. <para>Compress <see cref="T:Godot.Color"/> data into 8 bits when passing to shader. This uses less memory and can be faster, but the <see cref="T:Godot.Color"/> loses precision.</para>
  21373. </summary>
  21374. </member>
  21375. <member name="F:Godot.MultiMesh.ColorFormatEnum.Float">
  21376. <summary>
  21377. <para>The <see cref="T:Godot.Color"/> passed into <see cref="M:Godot.MultiMesh.SetInstanceColor(System.Int32,Godot.Color)"/> will use 4 floats. Use this for highest precision <see cref="T:Godot.Color"/>.</para>
  21378. </summary>
  21379. </member>
  21380. <member name="P:Godot.MultiMesh.ColorFormat">
  21381. <summary>
  21382. <para>Format of colors in color array that gets passed to shader.</para>
  21383. </summary>
  21384. </member>
  21385. <member name="P:Godot.MultiMesh.TransformFormat">
  21386. <summary>
  21387. <para>Format of transform used to transform mesh, either 2D or 3D.</para>
  21388. </summary>
  21389. </member>
  21390. <member name="P:Godot.MultiMesh.CustomDataFormat">
  21391. <summary>
  21392. <para>Format of custom data in custom data array that gets passed to shader.</para>
  21393. </summary>
  21394. </member>
  21395. <member name="P:Godot.MultiMesh.InstanceCount">
  21396. <summary>
  21397. <para>Number of instances that will get drawn. This clears and (re)sizes the buffers. By default, all instances are drawn but you can limit this with <see cref="P:Godot.MultiMesh.VisibleInstanceCount"/>.</para>
  21398. </summary>
  21399. </member>
  21400. <member name="P:Godot.MultiMesh.VisibleInstanceCount">
  21401. <summary>
  21402. <para>Limits the number of instances drawn, -1 draws all instances. Changing this does not change the sizes of the buffers.</para>
  21403. </summary>
  21404. </member>
  21405. <member name="P:Godot.MultiMesh.Mesh">
  21406. <summary>
  21407. <para>Mesh to be drawn.</para>
  21408. </summary>
  21409. </member>
  21410. <member name="M:Godot.MultiMesh.SetInstanceTransform(System.Int32,Godot.Transform)">
  21411. <summary>
  21412. <para>Sets the <see cref="T:Godot.Transform"/> for a specific instance.</para>
  21413. </summary>
  21414. </member>
  21415. <member name="M:Godot.MultiMesh.SetInstanceTransform2d(System.Int32,Godot.Transform2D)">
  21416. <summary>
  21417. <para>Sets the <see cref="T:Godot.Transform2D"/> for a specific instance.</para>
  21418. </summary>
  21419. </member>
  21420. <member name="M:Godot.MultiMesh.GetInstanceTransform(System.Int32)">
  21421. <summary>
  21422. <para>Returns the <see cref="T:Godot.Transform"/> of a specific instance.</para>
  21423. </summary>
  21424. </member>
  21425. <member name="M:Godot.MultiMesh.GetInstanceTransform2d(System.Int32)">
  21426. <summary>
  21427. <para>Returns the <see cref="T:Godot.Transform2D"/> of a specific instance.</para>
  21428. </summary>
  21429. </member>
  21430. <member name="M:Godot.MultiMesh.SetInstanceColor(System.Int32,Godot.Color)">
  21431. <summary>
  21432. <para>Sets the color of a specific instance.</para>
  21433. <para>For the color to take effect, ensure that <see cref="P:Godot.MultiMesh.ColorFormat"/> is non-<c>null</c> on the <see cref="T:Godot.MultiMesh"/> and <see cref="P:Godot.SpatialMaterial.VertexColorUseAsAlbedo"/> is <c>true</c> on the material.</para>
  21434. </summary>
  21435. </member>
  21436. <member name="M:Godot.MultiMesh.GetInstanceColor(System.Int32)">
  21437. <summary>
  21438. <para>Gets a specific instance's color.</para>
  21439. </summary>
  21440. </member>
  21441. <member name="M:Godot.MultiMesh.SetInstanceCustomData(System.Int32,Godot.Color)">
  21442. <summary>
  21443. <para>Sets custom data for a specific instance. Although <see cref="T:Godot.Color"/> is used, it is just a container for 4 floating point numbers. The format of the number can change depending on the <see cref="T:Godot.MultiMesh.CustomDataFormatEnum"/> used.</para>
  21444. </summary>
  21445. </member>
  21446. <member name="M:Godot.MultiMesh.GetInstanceCustomData(System.Int32)">
  21447. <summary>
  21448. <para>Returns the custom data that has been set for a specific instance.</para>
  21449. </summary>
  21450. </member>
  21451. <member name="M:Godot.MultiMesh.SetAsBulkArray(System.Single[])">
  21452. <summary>
  21453. <para>Sets all data related to the instances in one go. This is especially useful when loading the data from disk or preparing the data from GDNative.</para>
  21454. <para>All data is packed in one large float array. An array may look like this: Transform for instance 1, color data for instance 1, custom data for instance 1, transform for instance 2, color data for instance 2, etc...</para>
  21455. <para><see cref="T:Godot.Transform"/> is stored as 12 floats, <see cref="T:Godot.Transform2D"/> is stored as 8 floats, <c>COLOR_8BIT</c> / <c>CUSTOM_DATA_8BIT</c> is stored as 1 float (4 bytes as is) and <c>COLOR_FLOAT</c> / <c>CUSTOM_DATA_FLOAT</c> is stored as 4 floats.</para>
  21456. </summary>
  21457. </member>
  21458. <member name="M:Godot.MultiMesh.GetAabb">
  21459. <summary>
  21460. <para>Returns the visibility axis-aligned bounding box.</para>
  21461. </summary>
  21462. </member>
  21463. <member name="T:Godot.MultiMeshInstance">
  21464. <summary>
  21465. <para><see cref="T:Godot.MultiMeshInstance"/> is a specialized node to instance <see cref="T:Godot.GeometryInstance"/>s based on a <see cref="T:Godot.MultiMesh"/> resource.</para>
  21466. <para>This is useful to optimize the rendering of a high amount of instances of a given mesh (for example trees in a forest or grass strands).</para>
  21467. </summary>
  21468. </member>
  21469. <member name="P:Godot.MultiMeshInstance.Multimesh">
  21470. <summary>
  21471. <para>The <see cref="T:Godot.MultiMesh"/> resource that will be used and shared among all instances of the <see cref="T:Godot.MultiMeshInstance"/>.</para>
  21472. </summary>
  21473. </member>
  21474. <member name="T:Godot.MultiMeshInstance2D">
  21475. <summary>
  21476. <para><see cref="T:Godot.MultiMeshInstance2D"/> is a specialized node to instance a <see cref="T:Godot.MultiMesh"/> resource in 2D.</para>
  21477. <para>Usage is the same as <see cref="T:Godot.MultiMeshInstance"/>.</para>
  21478. </summary>
  21479. </member>
  21480. <member name="P:Godot.MultiMeshInstance2D.Multimesh">
  21481. <summary>
  21482. <para>The <see cref="T:Godot.MultiMesh"/> that will be drawn by the <see cref="T:Godot.MultiMeshInstance2D"/>.</para>
  21483. </summary>
  21484. </member>
  21485. <member name="P:Godot.MultiMeshInstance2D.Texture">
  21486. <summary>
  21487. <para>The <see cref="T:Godot.Texture"/> that will be used if using the default <see cref="T:Godot.CanvasItemMaterial"/>. Can be accessed as <c>TEXTURE</c> in CanvasItem shader.</para>
  21488. </summary>
  21489. </member>
  21490. <member name="P:Godot.MultiMeshInstance2D.NormalMap">
  21491. <summary>
  21492. <para>The normal map that will be used if using the default <see cref="T:Godot.CanvasItemMaterial"/>.</para>
  21493. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  21494. </summary>
  21495. </member>
  21496. <member name="T:Godot.MultiplayerAPI">
  21497. <summary>
  21498. <para>This class implements most of the logic behind the high-level multiplayer API.</para>
  21499. <para>By default, <see cref="T:Godot.SceneTree"/> has a reference to this class that is used to provide multiplayer capabilities (i.e. RPC/RSET) across the whole scene.</para>
  21500. <para>It is possible to override the MultiplayerAPI instance used by specific Nodes by setting the <see cref="P:Godot.Node.CustomMultiplayer"/> property, effectively allowing to run both client and server in the same scene.</para>
  21501. </summary>
  21502. </member>
  21503. <member name="F:Godot.MultiplayerAPI.RPCMode.Disabled">
  21504. <summary>
  21505. <para>Used with <see cref="M:Godot.Node.RpcConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> or <see cref="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> to disable a method or property for all RPC calls, making it unavailable. Default for all methods.</para>
  21506. </summary>
  21507. </member>
  21508. <member name="F:Godot.MultiplayerAPI.RPCMode.Remote">
  21509. <summary>
  21510. <para>Used with <see cref="M:Godot.Node.RpcConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> or <see cref="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> to set a method to be called or a property to be changed only on the remote end, not locally. Analogous to the <c>remote</c> keyword. Calls and property changes are accepted from all remote peers, no matter if they are node's master or puppets.</para>
  21511. </summary>
  21512. </member>
  21513. <member name="F:Godot.MultiplayerAPI.RPCMode.Master">
  21514. <summary>
  21515. <para>Used with <see cref="M:Godot.Node.RpcConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> or <see cref="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> to set a method to be called or a property to be changed only on the network master for this node. Analogous to the <c>master</c> keyword. Only accepts calls or property changes from the node's network puppets, see <see cref="M:Godot.Node.SetNetworkMaster(System.Int32,System.Boolean)"/>.</para>
  21516. </summary>
  21517. </member>
  21518. <member name="F:Godot.MultiplayerAPI.RPCMode.Puppet">
  21519. <summary>
  21520. <para>Used with <see cref="M:Godot.Node.RpcConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> or <see cref="M:Godot.Node.RsetConfig(System.String,Godot.MultiplayerAPI.RPCMode)"/> to set a method to be called or a property to be changed only on puppets for this node. Analogous to the <c>puppet</c> keyword. Only accepts calls or property changes from the node's network master, see <see cref="M:Godot.Node.SetNetworkMaster(System.Int32,System.Boolean)"/>.</para>
  21521. </summary>
  21522. </member>
  21523. <member name="F:Godot.MultiplayerAPI.RPCMode.Slave">
  21524. <summary>
  21525. <para>Deprecated. Use instead. Analogous to the <c>slave</c> keyword.</para>
  21526. </summary>
  21527. </member>
  21528. <member name="F:Godot.MultiplayerAPI.RPCMode.Remotesync">
  21529. <summary>
  21530. <para>Behave like but also make the call or property change locally. Analogous to the <c>remotesync</c> keyword.</para>
  21531. </summary>
  21532. </member>
  21533. <member name="F:Godot.MultiplayerAPI.RPCMode.Sync">
  21534. <summary>
  21535. <para>Deprecated. Use instead. Analogous to the <c>sync</c> keyword.</para>
  21536. </summary>
  21537. </member>
  21538. <member name="F:Godot.MultiplayerAPI.RPCMode.Mastersync">
  21539. <summary>
  21540. <para>Behave like but also make the call or property change locally. Analogous to the <c>mastersync</c> keyword.</para>
  21541. </summary>
  21542. </member>
  21543. <member name="F:Godot.MultiplayerAPI.RPCMode.Puppetsync">
  21544. <summary>
  21545. <para>Behave like but also make the call or property change locally. Analogous to the <c>puppetsync</c> keyword.</para>
  21546. </summary>
  21547. </member>
  21548. <member name="P:Godot.MultiplayerAPI.AllowObjectDecoding">
  21549. <summary>
  21550. <para>If <c>true</c> (or if the <see cref="P:Godot.MultiplayerAPI.NetworkPeer"/> has <see cref="P:Godot.PacketPeer.AllowObjectDecoding"/> set to <c>true</c>), the MultiplayerAPI will allow encoding and decoding of object during RPCs/RSETs.</para>
  21551. <para>Warning: Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.</para>
  21552. </summary>
  21553. </member>
  21554. <member name="P:Godot.MultiplayerAPI.RefuseNewNetworkConnections">
  21555. <summary>
  21556. <para>If <c>true</c>, the MultiplayerAPI's <see cref="P:Godot.MultiplayerAPI.NetworkPeer"/> refuses new incoming connections.</para>
  21557. </summary>
  21558. </member>
  21559. <member name="P:Godot.MultiplayerAPI.NetworkPeer">
  21560. <summary>
  21561. <para>The peer object to handle the RPC system (effectively enabling networking when set). Depending on the peer itself, the MultiplayerAPI will become a network server (check with <see cref="M:Godot.MultiplayerAPI.IsNetworkServer"/>) and will set root node's network mode to master, or it will become a regular peer with root node set to puppet. All child nodes are set to inherit the network mode by default. Handling of networking-related events (connection, disconnection, new clients) is done by connecting to MultiplayerAPI's signals.</para>
  21562. </summary>
  21563. </member>
  21564. <member name="M:Godot.MultiplayerAPI.SetRootNode(Godot.Node)">
  21565. <summary>
  21566. <para>Sets the base root node to use for RPCs. Instead of an absolute path, a relative path will be used to find the node upon which the RPC should be executed.</para>
  21567. <para>This effectively allows to have different branches of the scene tree to be managed by different MultiplayerAPI, allowing for example to run both client and server in the same scene.</para>
  21568. </summary>
  21569. </member>
  21570. <member name="M:Godot.MultiplayerAPI.SendBytes(System.Byte[],System.Int32,Godot.NetworkedMultiplayerPeer.TransferModeEnum)">
  21571. <summary>
  21572. <para>Sends the given raw <c>bytes</c> to a specific peer identified by <c>id</c> (see <see cref="M:Godot.NetworkedMultiplayerPeer.SetTargetPeer(System.Int32)"/>). Default ID is <c>0</c>, i.e. broadcast to all peers.</para>
  21573. </summary>
  21574. </member>
  21575. <member name="M:Godot.MultiplayerAPI.HasNetworkPeer">
  21576. <summary>
  21577. <para>Returns <c>true</c> if there is a <see cref="P:Godot.MultiplayerAPI.NetworkPeer"/> set.</para>
  21578. </summary>
  21579. </member>
  21580. <member name="M:Godot.MultiplayerAPI.GetNetworkUniqueId">
  21581. <summary>
  21582. <para>Returns the unique peer ID of this MultiplayerAPI's <see cref="P:Godot.MultiplayerAPI.NetworkPeer"/>.</para>
  21583. </summary>
  21584. </member>
  21585. <member name="M:Godot.MultiplayerAPI.IsNetworkServer">
  21586. <summary>
  21587. <para>Returns <c>true</c> if this MultiplayerAPI's <see cref="P:Godot.MultiplayerAPI.NetworkPeer"/> is in server mode (listening for connections).</para>
  21588. </summary>
  21589. </member>
  21590. <member name="M:Godot.MultiplayerAPI.GetRpcSenderId">
  21591. <summary>
  21592. <para>Returns the sender's peer ID for the RPC currently being executed.</para>
  21593. <para>Note: If not inside an RPC this method will return 0.</para>
  21594. </summary>
  21595. </member>
  21596. <member name="M:Godot.MultiplayerAPI.Poll">
  21597. <summary>
  21598. <para>Method used for polling the MultiplayerAPI. You only need to worry about this if you are using <see cref="P:Godot.Node.CustomMultiplayer"/> override or you set <see cref="P:Godot.SceneTree.MultiplayerPoll"/> to <c>false</c>. By default, <see cref="T:Godot.SceneTree"/> will poll its MultiplayerAPI for you.</para>
  21599. <para>Note: This method results in RPCs and RSETs being called, so they will be executed in the same context of this function (e.g. <c>_process</c>, <c>physics</c>, <see cref="T:Godot.Thread"/>).</para>
  21600. </summary>
  21601. </member>
  21602. <member name="M:Godot.MultiplayerAPI.Clear">
  21603. <summary>
  21604. <para>Clears the current MultiplayerAPI network state (you shouldn't call this unless you know what you are doing).</para>
  21605. </summary>
  21606. </member>
  21607. <member name="M:Godot.MultiplayerAPI.GetNetworkConnectedPeers">
  21608. <summary>
  21609. <para>Returns the peer IDs of all connected peers of this MultiplayerAPI's <see cref="P:Godot.MultiplayerAPI.NetworkPeer"/>.</para>
  21610. </summary>
  21611. </member>
  21612. <member name="M:Godot.NativeScript.GetClassDocumentation">
  21613. <summary>
  21614. <para>Returns the documentation string that was previously set with <c>godot_nativescript_set_class_documentation</c>.</para>
  21615. </summary>
  21616. </member>
  21617. <member name="M:Godot.NativeScript.GetMethodDocumentation(System.String)">
  21618. <summary>
  21619. <para>Returns the documentation string that was previously set with <c>godot_nativescript_set_method_documentation</c>.</para>
  21620. </summary>
  21621. </member>
  21622. <member name="M:Godot.NativeScript.GetSignalDocumentation(System.String)">
  21623. <summary>
  21624. <para>Returns the documentation string that was previously set with <c>godot_nativescript_set_signal_documentation</c>.</para>
  21625. </summary>
  21626. </member>
  21627. <member name="M:Godot.NativeScript.GetPropertyDocumentation(System.String)">
  21628. <summary>
  21629. <para>Returns the documentation string that was previously set with <c>godot_nativescript_set_property_documentation</c>.</para>
  21630. </summary>
  21631. </member>
  21632. <member name="M:Godot.NativeScript.New(System.Object[])">
  21633. <summary>
  21634. <para>Constructs a new object of the base type with a script of this type already attached.</para>
  21635. <para>Note: Any arguments passed to this function will be ignored and not passed to the native constructor function. This will change with in a future API extension.</para>
  21636. </summary>
  21637. </member>
  21638. <member name="T:Godot.Navigation">
  21639. <summary>
  21640. <para>Provides navigation and pathfinding within a collection of <see cref="T:Godot.NavigationMesh"/>es. By default, these will be automatically collected from child <see cref="T:Godot.NavigationMeshInstance"/> nodes, but they can also be added on the fly with <see cref="M:Godot.Navigation.NavmeshAdd(Godot.NavigationMesh,Godot.Transform,Godot.Object)"/>. In addition to basic pathfinding, this class also assists with aligning navigation agents with the meshes they are navigating on.</para>
  21641. </summary>
  21642. </member>
  21643. <member name="P:Godot.Navigation.UpVector">
  21644. <summary>
  21645. <para>Defines which direction is up. By default, this is <c>(0, 1, 0)</c>, which is the world's "up" direction.</para>
  21646. </summary>
  21647. </member>
  21648. <member name="M:Godot.Navigation.NavmeshAdd(Godot.NavigationMesh,Godot.Transform,Godot.Object)">
  21649. <summary>
  21650. <para>Adds a <see cref="T:Godot.NavigationMesh"/>. Returns an ID for use with <see cref="M:Godot.Navigation.NavmeshRemove(System.Int32)"/> or <see cref="M:Godot.Navigation.NavmeshSetTransform(System.Int32,Godot.Transform)"/>. If given, a <see cref="T:Godot.Transform2D"/> is applied to the polygon. The optional <c>owner</c> is used as return value for <see cref="M:Godot.Navigation.GetClosestPointOwner(Godot.Vector3)"/>.</para>
  21651. </summary>
  21652. </member>
  21653. <member name="M:Godot.Navigation.NavmeshSetTransform(System.Int32,Godot.Transform)">
  21654. <summary>
  21655. <para>Sets the transform applied to the <see cref="T:Godot.NavigationMesh"/> with the given ID.</para>
  21656. </summary>
  21657. </member>
  21658. <member name="M:Godot.Navigation.NavmeshRemove(System.Int32)">
  21659. <summary>
  21660. <para>Removes the <see cref="T:Godot.NavigationMesh"/> with the given ID.</para>
  21661. </summary>
  21662. </member>
  21663. <member name="M:Godot.Navigation.GetSimplePath(Godot.Vector3,Godot.Vector3,System.Boolean)">
  21664. <summary>
  21665. <para>Returns the path between two given points. Points are in local coordinate space. If <c>optimize</c> is <c>true</c> (the default), the agent properties associated with each <see cref="T:Godot.NavigationMesh"/> (radius, height, etc.) are considered in the path calculation, otherwise they are ignored.</para>
  21666. </summary>
  21667. </member>
  21668. <member name="M:Godot.Navigation.GetClosestPointToSegment(Godot.Vector3,Godot.Vector3,System.Boolean)">
  21669. <summary>
  21670. <para>Returns the navigation point closest to the given line segment. When enabling <c>use_collision</c>, only considers intersection points between segment and navigation meshes. If multiple intersection points are found, the one closest to the segment start point is returned.</para>
  21671. </summary>
  21672. </member>
  21673. <member name="M:Godot.Navigation.GetClosestPoint(Godot.Vector3)">
  21674. <summary>
  21675. <para>Returns the navigation point closest to the point given. Points are in local coordinate space.</para>
  21676. </summary>
  21677. </member>
  21678. <member name="M:Godot.Navigation.GetClosestPointNormal(Godot.Vector3)">
  21679. <summary>
  21680. <para>Returns the surface normal at the navigation point closest to the point given. Useful for rotating a navigation agent according to the navigation mesh it moves on.</para>
  21681. </summary>
  21682. </member>
  21683. <member name="M:Godot.Navigation.GetClosestPointOwner(Godot.Vector3)">
  21684. <summary>
  21685. <para>Returns the owner of the <see cref="T:Godot.NavigationMesh"/> which contains the navigation point closest to the point given. This is usually a <see cref="T:Godot.NavigationMeshInstance"/>. For meshes added via <see cref="M:Godot.Navigation.NavmeshAdd(Godot.NavigationMesh,Godot.Transform,Godot.Object)"/>, returns the owner that was given (or <c>null</c> if the <c>owner</c> parameter was omitted).</para>
  21686. </summary>
  21687. </member>
  21688. <member name="T:Godot.Navigation2D">
  21689. <summary>
  21690. <para>Navigation2D provides navigation and pathfinding within a 2D area, specified as a collection of <see cref="T:Godot.NavigationPolygon"/> resources. By default, these are automatically collected from child <see cref="T:Godot.NavigationPolygonInstance"/> nodes, but they can also be added on the fly with <see cref="M:Godot.Navigation2D.NavpolyAdd(Godot.NavigationPolygon,Godot.Transform2D,Godot.Object)"/>.</para>
  21691. </summary>
  21692. </member>
  21693. <member name="M:Godot.Navigation2D.NavpolyAdd(Godot.NavigationPolygon,Godot.Transform2D,Godot.Object)">
  21694. <summary>
  21695. <para>Adds a <see cref="T:Godot.NavigationPolygon"/>. Returns an ID for use with <see cref="M:Godot.Navigation2D.NavpolyRemove(System.Int32)"/> or <see cref="M:Godot.Navigation2D.NavpolySetTransform(System.Int32,Godot.Transform2D)"/>. If given, a <see cref="T:Godot.Transform2D"/> is applied to the polygon. The optional <c>owner</c> is used as return value for <see cref="M:Godot.Navigation2D.GetClosestPointOwner(Godot.Vector2)"/>.</para>
  21696. </summary>
  21697. </member>
  21698. <member name="M:Godot.Navigation2D.NavpolySetTransform(System.Int32,Godot.Transform2D)">
  21699. <summary>
  21700. <para>Sets the transform applied to the <see cref="T:Godot.NavigationPolygon"/> with the given ID.</para>
  21701. </summary>
  21702. </member>
  21703. <member name="M:Godot.Navigation2D.NavpolyRemove(System.Int32)">
  21704. <summary>
  21705. <para>Removes the <see cref="T:Godot.NavigationPolygon"/> with the given ID.</para>
  21706. </summary>
  21707. </member>
  21708. <member name="M:Godot.Navigation2D.GetSimplePath(Godot.Vector2,Godot.Vector2,System.Boolean)">
  21709. <summary>
  21710. <para>Returns the path between two given points. Points are in local coordinate space. If <c>optimize</c> is <c>true</c> (the default), the path is smoothed by merging path segments where possible.</para>
  21711. </summary>
  21712. </member>
  21713. <member name="M:Godot.Navigation2D.GetClosestPoint(Godot.Vector2)">
  21714. <summary>
  21715. <para>Returns the navigation point closest to the point given. Points are in local coordinate space.</para>
  21716. </summary>
  21717. </member>
  21718. <member name="M:Godot.Navigation2D.GetClosestPointOwner(Godot.Vector2)">
  21719. <summary>
  21720. <para>Returns the owner of the <see cref="T:Godot.NavigationPolygon"/> which contains the navigation point closest to the point given. This is usually a <see cref="T:Godot.NavigationPolygonInstance"/>. For polygons added via <see cref="M:Godot.Navigation2D.NavpolyAdd(Godot.NavigationPolygon,Godot.Transform2D,Godot.Object)"/>, returns the owner that was given (or <c>null</c> if the <c>owner</c> parameter was omitted).</para>
  21721. </summary>
  21722. </member>
  21723. <member name="T:Godot.NavigationPolygon">
  21724. <summary>
  21725. <para>There are two ways to create polygons. Either by using the <see cref="M:Godot.NavigationPolygon.AddOutline(Godot.Vector2[])"/> method, or using the <see cref="M:Godot.NavigationPolygon.AddPolygon(System.Int32[])"/> method.</para>
  21726. <para>Using <see cref="M:Godot.NavigationPolygon.AddOutline(Godot.Vector2[])"/>:</para>
  21727. <para><code>
  21728. var polygon = NavigationPolygon.new()
  21729. var outline = PoolVector2Array([Vector2(0, 0), Vector2(0, 50), Vector2(50, 50), Vector2(50, 0)])
  21730. polygon.add_outline(outline)
  21731. polygon.make_polygons_from_outlines()
  21732. $NavigationPolygonInstance.navpoly = polygon
  21733. </code></para>
  21734. <para>Using <see cref="M:Godot.NavigationPolygon.AddPolygon(System.Int32[])"/> and indices of the vertices array.</para>
  21735. <para><code>
  21736. var polygon = NavigationPolygon.new()
  21737. var vertices = PoolVector2Array([Vector2(0, 0), Vector2(0, 50), Vector2(50, 50), Vector2(50, 0)])
  21738. polygon.set_vertices(vertices)
  21739. var indices = PoolIntArray(0, 3, 1)
  21740. polygon.add_polygon(indices)
  21741. $NavigationPolygonInstance.navpoly = polygon
  21742. </code></para>
  21743. </summary>
  21744. </member>
  21745. <member name="M:Godot.NavigationPolygon.SetVertices(Godot.Vector2[])">
  21746. <summary>
  21747. <para>Sets the vertices that can be then indexed to create polygons with the <see cref="M:Godot.NavigationPolygon.AddPolygon(System.Int32[])"/> method.</para>
  21748. </summary>
  21749. </member>
  21750. <member name="M:Godot.NavigationPolygon.GetVertices">
  21751. <summary>
  21752. <para>Returns a <see cref="T:Godot.Vector2"/> containing all the vertices being used to create the polygons.</para>
  21753. </summary>
  21754. </member>
  21755. <member name="M:Godot.NavigationPolygon.AddPolygon(System.Int32[])">
  21756. <summary>
  21757. <para>Adds a polygon using the indices of the vertices you get when calling <see cref="M:Godot.NavigationPolygon.GetVertices"/>.</para>
  21758. </summary>
  21759. </member>
  21760. <member name="M:Godot.NavigationPolygon.GetPolygonCount">
  21761. <summary>
  21762. <para>Returns the count of all polygons.</para>
  21763. </summary>
  21764. </member>
  21765. <member name="M:Godot.NavigationPolygon.GetPolygon(System.Int32)">
  21766. <summary>
  21767. <para>Returns a <see cref="T:System.Int32"/> containing the indices of the vertices of a created polygon.</para>
  21768. </summary>
  21769. </member>
  21770. <member name="M:Godot.NavigationPolygon.ClearPolygons">
  21771. <summary>
  21772. <para>Clears the array of polygons, but it doesn't clear the array of outlines and vertices.</para>
  21773. </summary>
  21774. </member>
  21775. <member name="M:Godot.NavigationPolygon.AddOutline(Godot.Vector2[])">
  21776. <summary>
  21777. <para>Appends a <see cref="T:Godot.Vector2"/> that contains the vertices of an outline to the internal array that contains all the outlines. You have to call <see cref="M:Godot.NavigationPolygon.MakePolygonsFromOutlines"/> in order for this array to be converted to polygons that the engine will use.</para>
  21778. </summary>
  21779. </member>
  21780. <member name="M:Godot.NavigationPolygon.AddOutlineAtIndex(Godot.Vector2[],System.Int32)">
  21781. <summary>
  21782. <para>Adds a <see cref="T:Godot.Vector2"/> that contains the vertices of an outline to the internal array that contains all the outlines at a fixed position. You have to call <see cref="M:Godot.NavigationPolygon.MakePolygonsFromOutlines"/> in order for this array to be converted to polygons that the engine will use.</para>
  21783. </summary>
  21784. </member>
  21785. <member name="M:Godot.NavigationPolygon.GetOutlineCount">
  21786. <summary>
  21787. <para>Returns the number of outlines that were created in the editor or by script.</para>
  21788. </summary>
  21789. </member>
  21790. <member name="M:Godot.NavigationPolygon.SetOutline(System.Int32,Godot.Vector2[])">
  21791. <summary>
  21792. <para>Changes an outline created in the editor or by script. You have to call <see cref="M:Godot.NavigationPolygon.MakePolygonsFromOutlines"/> for the polygons to update.</para>
  21793. </summary>
  21794. </member>
  21795. <member name="M:Godot.NavigationPolygon.GetOutline(System.Int32)">
  21796. <summary>
  21797. <para>Returns a <see cref="T:Godot.Vector2"/> containing the vertices of an outline that was created in the editor or by script.</para>
  21798. </summary>
  21799. </member>
  21800. <member name="M:Godot.NavigationPolygon.RemoveOutline(System.Int32)">
  21801. <summary>
  21802. <para>Removes an outline created in the editor or by script. You have to call <see cref="M:Godot.NavigationPolygon.MakePolygonsFromOutlines"/> for the polygons to update.</para>
  21803. </summary>
  21804. </member>
  21805. <member name="M:Godot.NavigationPolygon.ClearOutlines">
  21806. <summary>
  21807. <para>Clears the array of the outlines, but it doesn't clear the vertices and the polygons that were created by them.</para>
  21808. </summary>
  21809. </member>
  21810. <member name="M:Godot.NavigationPolygon.MakePolygonsFromOutlines">
  21811. <summary>
  21812. <para>Creates polygons from the outlines added in the editor or by script.</para>
  21813. </summary>
  21814. </member>
  21815. <member name="T:Godot.NetworkedMultiplayerENet">
  21816. <summary>
  21817. <para>A PacketPeer implementation that should be passed to <see cref="P:Godot.SceneTree.NetworkPeer"/> after being initialized as either a client or server. Events can then be handled by connecting to <see cref="T:Godot.SceneTree"/> signals.</para>
  21818. </summary>
  21819. </member>
  21820. <member name="F:Godot.NetworkedMultiplayerENet.CompressionModeEnum.None">
  21821. <summary>
  21822. <para>No compression. This uses the most bandwidth, but has the upside of requiring the fewest CPU resources.</para>
  21823. </summary>
  21824. </member>
  21825. <member name="F:Godot.NetworkedMultiplayerENet.CompressionModeEnum.RangeCoder">
  21826. <summary>
  21827. <para>ENet's built-in range encoding.</para>
  21828. </summary>
  21829. </member>
  21830. <member name="F:Godot.NetworkedMultiplayerENet.CompressionModeEnum.Fastlz">
  21831. <summary>
  21832. <para><a href="http://fastlz.org/">FastLZ</a> compression. This option uses less CPU resources compared to , at the expense of using more bandwidth.</para>
  21833. </summary>
  21834. </member>
  21835. <member name="F:Godot.NetworkedMultiplayerENet.CompressionModeEnum.Zlib">
  21836. <summary>
  21837. <para><a href="https://www.zlib.net/">Zlib</a> compression. This option uses less bandwidth compared to , at the expense of using more CPU resources.</para>
  21838. </summary>
  21839. </member>
  21840. <member name="F:Godot.NetworkedMultiplayerENet.CompressionModeEnum.Zstd">
  21841. <summary>
  21842. <para><a href="https://facebook.github.io/zstd/">Zstandard</a> compression.</para>
  21843. </summary>
  21844. </member>
  21845. <member name="P:Godot.NetworkedMultiplayerENet.CompressionMode">
  21846. <summary>
  21847. <para>The compression method used for network packets. These have different tradeoffs of compression speed versus bandwidth, you may need to test which one works best for your use case if you use compression at all.</para>
  21848. </summary>
  21849. </member>
  21850. <member name="P:Godot.NetworkedMultiplayerENet.TransferChannel">
  21851. <summary>
  21852. <para>Set the default channel to be used to transfer data. By default, this value is <c>-1</c> which means that ENet will only use 2 channels, one for reliable and one for unreliable packets. Channel <c>0</c> is reserved, and cannot be used. Setting this member to any value between <c>0</c> and <see cref="P:Godot.NetworkedMultiplayerENet.ChannelCount"/> (excluded) will force ENet to use that channel for sending data.</para>
  21853. </summary>
  21854. </member>
  21855. <member name="P:Godot.NetworkedMultiplayerENet.ChannelCount">
  21856. <summary>
  21857. <para>The number of channels to be used by ENet. Channels are used to separate different kinds of data. In reliable or ordered mode, for example, the packet delivery order is ensured on a per channel basis.</para>
  21858. </summary>
  21859. </member>
  21860. <member name="P:Godot.NetworkedMultiplayerENet.AlwaysOrdered">
  21861. <summary>
  21862. <para>Enforce ordered packets when using (thus behaving similarly to ). This is the only way to use ordering with the RPC system.</para>
  21863. </summary>
  21864. </member>
  21865. <member name="P:Godot.NetworkedMultiplayerENet.ServerRelay">
  21866. <summary>
  21867. <para>Enable or disable the server feature that notifies clients of other peers' connection/disconnection, and relays messages between them. When this option is <c>false</c>, clients won't be automatically notified of other peers and won't be able to send them packets through the server.</para>
  21868. </summary>
  21869. </member>
  21870. <member name="P:Godot.NetworkedMultiplayerENet.DtlsVerify">
  21871. <summary>
  21872. <para>Enable or disable certiticate verification when <see cref="P:Godot.NetworkedMultiplayerENet.UseDtls"/> <c>true</c>.</para>
  21873. </summary>
  21874. </member>
  21875. <member name="P:Godot.NetworkedMultiplayerENet.UseDtls">
  21876. <summary>
  21877. <para>When enabled, the client or server created by this peer, will use <see cref="T:Godot.PacketPeerDTLS"/> instead of raw UDP sockets for communicating with the remote peer. This will make the communication encrypted with DTLS at the cost of higher resource usage and potentially larger packet size.</para>
  21878. <para>Note: When creating a DTLS server, make sure you setup the key/certificate pair via <see cref="M:Godot.NetworkedMultiplayerENet.SetDtlsKey(Godot.CryptoKey)"/> and <see cref="M:Godot.NetworkedMultiplayerENet.SetDtlsCertificate(Godot.X509Certificate)"/>. For DTLS clients, have a look at the <see cref="P:Godot.NetworkedMultiplayerENet.DtlsVerify"/> option, and configure the certificate accordingly via <see cref="M:Godot.NetworkedMultiplayerENet.SetDtlsCertificate(Godot.X509Certificate)"/>.</para>
  21879. </summary>
  21880. </member>
  21881. <member name="M:Godot.NetworkedMultiplayerENet.CreateServer(System.Int32,System.Int32,System.Int32,System.Int32)">
  21882. <summary>
  21883. <para>Create server that listens to connections via <c>port</c>. The port needs to be an available, unused port between 0 and 65535. Note that ports below 1024 are privileged and may require elevated permissions depending on the platform. To change the interface the server listens on, use <see cref="M:Godot.NetworkedMultiplayerENet.SetBindIp(System.String)"/>. The default IP is the wildcard <c>"*"</c>, which listens on all available interfaces. <c>max_clients</c> is the maximum number of clients that are allowed at once, any number up to 4095 may be used, although the achievable number of simultaneous clients may be far lower and depends on the application. For additional details on the bandwidth parameters, see <see cref="M:Godot.NetworkedMultiplayerENet.CreateClient(System.String,System.Int32,System.Int32,System.Int32,System.Int32)"/>. Returns if a server was created, if this NetworkedMultiplayerENet instance already has an open connection (in which case you need to call <see cref="M:Godot.NetworkedMultiplayerENet.CloseConnection(System.UInt32)"/> first) or if the server could not be created.</para>
  21884. </summary>
  21885. </member>
  21886. <member name="M:Godot.NetworkedMultiplayerENet.CreateClient(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
  21887. <summary>
  21888. <para>Create client that connects to a server at <c>address</c> using specified <c>port</c>. The given address needs to be either a fully qualified domain name (e.g. <c>"www.example.com"</c>) or an IP address in IPv4 or IPv6 format (e.g. <c>"192.168.1.1"</c>). The <c>port</c> is the port the server is listening on. The <c>in_bandwidth</c> and <c>out_bandwidth</c> parameters can be used to limit the incoming and outgoing bandwidth to the given number of bytes per second. The default of 0 means unlimited bandwidth. Note that ENet will strategically drop packets on specific sides of a connection between peers to ensure the peer's bandwidth is not overwhelmed. The bandwidth parameters also determine the window size of a connection which limits the amount of reliable packets that may be in transit at any given time. Returns if a client was created, if this NetworkedMultiplayerENet instance already has an open connection (in which case you need to call <see cref="M:Godot.NetworkedMultiplayerENet.CloseConnection(System.UInt32)"/> first) or if the client could not be created. If <c>client_port</c> is specified, the client will also listen to the given port; this is useful for some NAT traversal techniques.</para>
  21889. </summary>
  21890. </member>
  21891. <member name="M:Godot.NetworkedMultiplayerENet.CloseConnection(System.UInt32)">
  21892. <summary>
  21893. <para>Closes the connection. Ignored if no connection is currently established. If this is a server it tries to notify all clients before forcibly disconnecting them. If this is a client it simply closes the connection to the server.</para>
  21894. </summary>
  21895. </member>
  21896. <member name="M:Godot.NetworkedMultiplayerENet.DisconnectPeer(System.Int32,System.Boolean)">
  21897. <summary>
  21898. <para>Disconnect the given peer. If "now" is set to <c>true</c>, the connection will be closed immediately without flushing queued messages.</para>
  21899. </summary>
  21900. </member>
  21901. <member name="M:Godot.NetworkedMultiplayerENet.SetBindIp(System.String)">
  21902. <summary>
  21903. <para>The IP used when creating a server. This is set to the wildcard <c>"*"</c> by default, which binds to all available interfaces. The given IP needs to be in IPv4 or IPv6 address format, for example: <c>"192.168.1.1"</c>.</para>
  21904. </summary>
  21905. </member>
  21906. <member name="M:Godot.NetworkedMultiplayerENet.SetDtlsKey(Godot.CryptoKey)">
  21907. <summary>
  21908. <para>Configure the <see cref="T:Godot.CryptoKey"/> to use when <see cref="P:Godot.NetworkedMultiplayerENet.UseDtls"/> is <c>true</c>. Remember to also call <see cref="M:Godot.NetworkedMultiplayerENet.SetDtlsCertificate(Godot.X509Certificate)"/> to setup your <see cref="T:Godot.X509Certificate"/>.</para>
  21909. </summary>
  21910. </member>
  21911. <member name="M:Godot.NetworkedMultiplayerENet.SetDtlsCertificate(Godot.X509Certificate)">
  21912. <summary>
  21913. <para>Configure the <see cref="T:Godot.X509Certificate"/> to use when <see cref="P:Godot.NetworkedMultiplayerENet.UseDtls"/> is <c>true</c>. For servers, you must also setup the <see cref="T:Godot.CryptoKey"/> via <see cref="M:Godot.NetworkedMultiplayerENet.SetDtlsKey(Godot.CryptoKey)"/>.</para>
  21914. </summary>
  21915. </member>
  21916. <member name="M:Godot.NetworkedMultiplayerENet.GetPeerAddress(System.Int32)">
  21917. <summary>
  21918. <para>Returns the IP address of the given peer.</para>
  21919. </summary>
  21920. </member>
  21921. <member name="M:Godot.NetworkedMultiplayerENet.GetPeerPort(System.Int32)">
  21922. <summary>
  21923. <para>Returns the remote port of the given peer.</para>
  21924. </summary>
  21925. </member>
  21926. <member name="M:Godot.NetworkedMultiplayerENet.GetPacketChannel">
  21927. <summary>
  21928. <para>Returns the channel of the next packet that will be retrieved via <see cref="M:Godot.PacketPeer.GetPacket"/>.</para>
  21929. </summary>
  21930. </member>
  21931. <member name="M:Godot.NetworkedMultiplayerENet.GetLastPacketChannel">
  21932. <summary>
  21933. <para>Returns the channel of the last packet fetched via <see cref="M:Godot.PacketPeer.GetPacket"/>.</para>
  21934. </summary>
  21935. </member>
  21936. <member name="T:Godot.NetworkedMultiplayerPeer">
  21937. <summary>
  21938. <para>Manages the connection to network peers. Assigns unique IDs to each client connected to the server.</para>
  21939. </summary>
  21940. </member>
  21941. <member name="F:Godot.NetworkedMultiplayerPeer.TargetPeerBroadcast">
  21942. <summary>
  21943. <para>Packets are sent to the server and then redistributed to other peers.</para>
  21944. </summary>
  21945. </member>
  21946. <member name="F:Godot.NetworkedMultiplayerPeer.TargetPeerServer">
  21947. <summary>
  21948. <para>Packets are sent to the server alone.</para>
  21949. </summary>
  21950. </member>
  21951. <member name="F:Godot.NetworkedMultiplayerPeer.ConnectionStatus.Disconnected">
  21952. <summary>
  21953. <para>The ongoing connection disconnected.</para>
  21954. </summary>
  21955. </member>
  21956. <member name="F:Godot.NetworkedMultiplayerPeer.ConnectionStatus.Connecting">
  21957. <summary>
  21958. <para>A connection attempt is ongoing.</para>
  21959. </summary>
  21960. </member>
  21961. <member name="F:Godot.NetworkedMultiplayerPeer.ConnectionStatus.Connected">
  21962. <summary>
  21963. <para>The connection attempt succeeded.</para>
  21964. </summary>
  21965. </member>
  21966. <member name="F:Godot.NetworkedMultiplayerPeer.TransferModeEnum.Unreliable">
  21967. <summary>
  21968. <para>Packets are not acknowledged, no resend attempts are made for lost packets. Packets may arrive in any order. Potentially faster than . Use for non-critical data, and always consider whether the order matters.</para>
  21969. </summary>
  21970. </member>
  21971. <member name="F:Godot.NetworkedMultiplayerPeer.TransferModeEnum.UnreliableOrdered">
  21972. <summary>
  21973. <para>Packets are not acknowledged, no resend attempts are made for lost packets. Packets are received in the order they were sent in. Potentially faster than . Use for non-critical data or data that would be outdated if received late due to resend attempt(s) anyway, for example movement and positional data.</para>
  21974. </summary>
  21975. </member>
  21976. <member name="F:Godot.NetworkedMultiplayerPeer.TransferModeEnum.Reliable">
  21977. <summary>
  21978. <para>Packets must be received and resend attempts should be made until the packets are acknowledged. Packets must be received in the order they were sent in. Most reliable transfer mode, but potentially the slowest due to the overhead. Use for critical data that must be transmitted and arrive in order, for example an ability being triggered or a chat message. Consider carefully if the information really is critical, and use sparingly.</para>
  21979. </summary>
  21980. </member>
  21981. <member name="P:Godot.NetworkedMultiplayerPeer.RefuseNewConnections">
  21982. <summary>
  21983. <para>If <c>true</c>, this <see cref="T:Godot.NetworkedMultiplayerPeer"/> refuses new connections.</para>
  21984. </summary>
  21985. </member>
  21986. <member name="P:Godot.NetworkedMultiplayerPeer.TransferMode">
  21987. <summary>
  21988. <para>The manner in which to send packets to the <c>target_peer</c>. See <see cref="T:Godot.NetworkedMultiplayerPeer.TransferModeEnum"/>.</para>
  21989. </summary>
  21990. </member>
  21991. <member name="M:Godot.NetworkedMultiplayerPeer.SetTargetPeer(System.Int32)">
  21992. <summary>
  21993. <para>Sets the peer to which packets will be sent.</para>
  21994. <para>The <c>id</c> can be one of: to send to all connected peers, to send to the peer acting as server, a valid peer ID to send to that specific peer, a negative peer ID to send to all peers except that one. By default, the target peer is .</para>
  21995. </summary>
  21996. </member>
  21997. <member name="M:Godot.NetworkedMultiplayerPeer.GetPacketPeer">
  21998. <summary>
  21999. <para>Returns the ID of the <see cref="T:Godot.NetworkedMultiplayerPeer"/> who sent the most recent packet.</para>
  22000. </summary>
  22001. </member>
  22002. <member name="M:Godot.NetworkedMultiplayerPeer.Poll">
  22003. <summary>
  22004. <para>Waits up to 1 second to receive a new network event.</para>
  22005. </summary>
  22006. </member>
  22007. <member name="M:Godot.NetworkedMultiplayerPeer.GetConnectionStatus">
  22008. <summary>
  22009. <para>Returns the current state of the connection. See <see cref="T:Godot.NetworkedMultiplayerPeer.ConnectionStatus"/>.</para>
  22010. </summary>
  22011. </member>
  22012. <member name="M:Godot.NetworkedMultiplayerPeer.GetUniqueId">
  22013. <summary>
  22014. <para>Returns the ID of this <see cref="T:Godot.NetworkedMultiplayerPeer"/>.</para>
  22015. </summary>
  22016. </member>
  22017. <member name="T:Godot.NinePatchRect">
  22018. <summary>
  22019. <para>Also known as 9-slice panels, NinePatchRect produces clean panels of any size, based on a small texture. To do so, it splits the texture in a 3×3 grid. When you scale the node, it tiles the texture's sides horizontally or vertically, the center on both axes but it doesn't scale or tile the corners.</para>
  22020. </summary>
  22021. </member>
  22022. <member name="F:Godot.NinePatchRect.AxisStretchMode.Stretch">
  22023. <summary>
  22024. <para>Doesn't do anything at the time of writing.</para>
  22025. </summary>
  22026. </member>
  22027. <member name="F:Godot.NinePatchRect.AxisStretchMode.Tile">
  22028. <summary>
  22029. <para>Doesn't do anything at the time of writing.</para>
  22030. </summary>
  22031. </member>
  22032. <member name="F:Godot.NinePatchRect.AxisStretchMode.TileFit">
  22033. <summary>
  22034. <para>Doesn't do anything at the time of writing.</para>
  22035. </summary>
  22036. </member>
  22037. <member name="P:Godot.NinePatchRect.Texture">
  22038. <summary>
  22039. <para>The node's texture resource.</para>
  22040. </summary>
  22041. </member>
  22042. <member name="P:Godot.NinePatchRect.DrawCenter">
  22043. <summary>
  22044. <para>If <c>true</c>, draw the panel's center. Else, only draw the 9-slice's borders.</para>
  22045. </summary>
  22046. </member>
  22047. <member name="P:Godot.NinePatchRect.RegionRect">
  22048. <summary>
  22049. <para>Rectangular region of the texture to sample from. If you're working with an atlas, use this property to define the area the 9-slice should use. All other properties are relative to this one. If the rect is empty, NinePatchRect will use the whole texture.</para>
  22050. </summary>
  22051. </member>
  22052. <member name="P:Godot.NinePatchRect.PatchMarginLeft">
  22053. <summary>
  22054. <para>The height of the 9-slice's left column.</para>
  22055. </summary>
  22056. </member>
  22057. <member name="P:Godot.NinePatchRect.PatchMarginTop">
  22058. <summary>
  22059. <para>The height of the 9-slice's top row.</para>
  22060. </summary>
  22061. </member>
  22062. <member name="P:Godot.NinePatchRect.PatchMarginRight">
  22063. <summary>
  22064. <para>The height of the 9-slice's right column.</para>
  22065. </summary>
  22066. </member>
  22067. <member name="P:Godot.NinePatchRect.PatchMarginBottom">
  22068. <summary>
  22069. <para>The height of the 9-slice's bottom row. A margin of 16 means the 9-slice's bottom corners and side will have a height of 16 pixels. You can set all 4 margin values individually to create panels with non-uniform borders.</para>
  22070. </summary>
  22071. </member>
  22072. <member name="P:Godot.NinePatchRect.AxisStretchHorizontal">
  22073. <summary>
  22074. <para>Doesn't do anything at the time of writing.</para>
  22075. </summary>
  22076. </member>
  22077. <member name="P:Godot.NinePatchRect.AxisStretchVertical">
  22078. <summary>
  22079. <para>Doesn't do anything at the time of writing.</para>
  22080. </summary>
  22081. </member>
  22082. <member name="M:Godot.NinePatchRect.SetPatchMargin(Godot.Margin,System.Int32)">
  22083. <summary>
  22084. <para>Sets the size of the margin identified by the given <see cref="T:Godot.Margin"/> constant to <c>value</c> in pixels.</para>
  22085. </summary>
  22086. </member>
  22087. <member name="M:Godot.NinePatchRect.GetPatchMargin(Godot.Margin)">
  22088. <summary>
  22089. <para>Returns the size of the margin identified by the given <see cref="T:Godot.Margin"/> constant.</para>
  22090. </summary>
  22091. </member>
  22092. <member name="T:Godot.Node2D">
  22093. <summary>
  22094. <para>A 2D game object, with a transform (position, rotation, and scale). All 2D nodes, including physics objects and sprites, inherit from Node2D. Use Node2D as a parent node to move, scale and rotate children in a 2D project. Also gives control of the node's render order.</para>
  22095. </summary>
  22096. </member>
  22097. <member name="P:Godot.Node2D.Position">
  22098. <summary>
  22099. <para>Position, relative to the node's parent.</para>
  22100. </summary>
  22101. </member>
  22102. <member name="P:Godot.Node2D.Rotation">
  22103. <summary>
  22104. <para>Rotation in radians, relative to the node's parent.</para>
  22105. </summary>
  22106. </member>
  22107. <member name="P:Godot.Node2D.RotationDegrees">
  22108. <summary>
  22109. <para>Rotation in degrees, relative to the node's parent.</para>
  22110. </summary>
  22111. </member>
  22112. <member name="P:Godot.Node2D.Scale">
  22113. <summary>
  22114. <para>The node's scale. Unscaled value: <c>(1, 1)</c>.</para>
  22115. </summary>
  22116. </member>
  22117. <member name="P:Godot.Node2D.Transform">
  22118. <summary>
  22119. <para>Local <see cref="T:Godot.Transform2D"/>.</para>
  22120. </summary>
  22121. </member>
  22122. <member name="P:Godot.Node2D.GlobalPosition">
  22123. <summary>
  22124. <para>Global position.</para>
  22125. </summary>
  22126. </member>
  22127. <member name="P:Godot.Node2D.GlobalRotation">
  22128. <summary>
  22129. <para>Global rotation in radians.</para>
  22130. </summary>
  22131. </member>
  22132. <member name="P:Godot.Node2D.GlobalRotationDegrees">
  22133. <summary>
  22134. <para>Global rotation in degrees.</para>
  22135. </summary>
  22136. </member>
  22137. <member name="P:Godot.Node2D.GlobalScale">
  22138. <summary>
  22139. <para>Global scale.</para>
  22140. </summary>
  22141. </member>
  22142. <member name="P:Godot.Node2D.GlobalTransform">
  22143. <summary>
  22144. <para>Global <see cref="T:Godot.Transform2D"/>.</para>
  22145. </summary>
  22146. </member>
  22147. <member name="P:Godot.Node2D.ZIndex">
  22148. <summary>
  22149. <para>Z index. Controls the order in which the nodes render. A node with a higher Z index will display in front of others.</para>
  22150. </summary>
  22151. </member>
  22152. <member name="P:Godot.Node2D.ZAsRelative">
  22153. <summary>
  22154. <para>If <c>true</c>, the node's Z index is relative to its parent's Z index. If this node's Z index is 2 and its parent's effective Z index is 3, then this node's effective Z index will be 2 + 3 = 5.</para>
  22155. </summary>
  22156. </member>
  22157. <member name="M:Godot.Node2D.Rotate(System.Single)">
  22158. <summary>
  22159. <para>Applies a rotation to the node, in radians, starting from its current rotation.</para>
  22160. </summary>
  22161. </member>
  22162. <member name="M:Godot.Node2D.MoveLocalX(System.Single,System.Boolean)">
  22163. <summary>
  22164. <para>Applies a local translation on the node's X axis based on the <see cref="M:Godot.Node._Process(System.Single)"/>'s <c>delta</c>. If <c>scaled</c> is <c>false</c>, normalizes the movement.</para>
  22165. </summary>
  22166. </member>
  22167. <member name="M:Godot.Node2D.MoveLocalY(System.Single,System.Boolean)">
  22168. <summary>
  22169. <para>Applies a local translation on the node's Y axis based on the <see cref="M:Godot.Node._Process(System.Single)"/>'s <c>delta</c>. If <c>scaled</c> is <c>false</c>, normalizes the movement.</para>
  22170. </summary>
  22171. </member>
  22172. <member name="M:Godot.Node2D.Translate(Godot.Vector2)">
  22173. <summary>
  22174. <para>Translates the node by the given <c>offset</c> in local coordinates.</para>
  22175. </summary>
  22176. </member>
  22177. <member name="M:Godot.Node2D.GlobalTranslate(Godot.Vector2)">
  22178. <summary>
  22179. <para>Adds the <c>offset</c> vector to the node's global position.</para>
  22180. </summary>
  22181. </member>
  22182. <member name="M:Godot.Node2D.ApplyScale(Godot.Vector2)">
  22183. <summary>
  22184. <para>Multiplies the current scale by the <c>ratio</c> vector.</para>
  22185. </summary>
  22186. </member>
  22187. <member name="M:Godot.Node2D.LookAt(Godot.Vector2)">
  22188. <summary>
  22189. <para>Rotates the node so it points towards the <c>point</c>, which is expected to use global coordinates.</para>
  22190. </summary>
  22191. </member>
  22192. <member name="M:Godot.Node2D.GetAngleTo(Godot.Vector2)">
  22193. <summary>
  22194. <para>Returns the angle between the node and the <c>point</c> in radians.</para>
  22195. </summary>
  22196. </member>
  22197. <member name="M:Godot.Node2D.ToLocal(Godot.Vector2)">
  22198. <summary>
  22199. <para>Transforms the provided global position into a position in local coordinate space. The output will be local relative to the <see cref="T:Godot.Node2D"/> it is called on. e.g. It is appropriate for determining the positions of child nodes, but it is not appropriate for determining its own position relative to its parent.</para>
  22200. </summary>
  22201. </member>
  22202. <member name="M:Godot.Node2D.ToGlobal(Godot.Vector2)">
  22203. <summary>
  22204. <para>Transforms the provided local position into a position in global coordinate space. The input is expected to be local relative to the <see cref="T:Godot.Node2D"/> it is called on. e.g. Applying this method to the positions of child nodes will correctly transform their positions into the global coordinate space, but applying it to a node's own position will give an incorrect result, as it will incorporate the node's own transformation into its global position.</para>
  22205. </summary>
  22206. </member>
  22207. <member name="M:Godot.Node2D.GetRelativeTransformToParent(Godot.Node)">
  22208. <summary>
  22209. <para>Returns the <see cref="T:Godot.Transform2D"/> relative to this node's parent.</para>
  22210. </summary>
  22211. </member>
  22212. <member name="T:Godot.NoiseTexture">
  22213. <summary>
  22214. <para>Uses an <see cref="T:Godot.OpenSimplexNoise"/> to fill the texture data. You can specify the texture size but keep in mind that larger textures will take longer to generate and seamless noise only works with square sized textures.</para>
  22215. <para>NoiseTexture can also generate normalmap textures.</para>
  22216. <para>The class uses <see cref="T:Godot.Thread"/>s to generate the texture data internally, so <see cref="M:Godot.Texture.GetData"/> may return <c>null</c> if the generation process has not completed yet. In that case, you need to wait for the texture to be generated before accessing the data:</para>
  22217. <para><code>
  22218. var texture = preload("res://noise.tres")
  22219. yield(texture, "changed")
  22220. var image = texture.get_data()
  22221. </code></para>
  22222. </summary>
  22223. </member>
  22224. <member name="P:Godot.NoiseTexture.Width">
  22225. <summary>
  22226. <para>Width of the generated texture.</para>
  22227. </summary>
  22228. </member>
  22229. <member name="P:Godot.NoiseTexture.Height">
  22230. <summary>
  22231. <para>Height of the generated texture.</para>
  22232. </summary>
  22233. </member>
  22234. <member name="P:Godot.NoiseTexture.Seamless">
  22235. <summary>
  22236. <para>Whether the texture can be tiled without visible seams or not. Seamless textures take longer to generate.</para>
  22237. </summary>
  22238. </member>
  22239. <member name="P:Godot.NoiseTexture.AsNormalmap">
  22240. <summary>
  22241. <para>If <c>true</c>, the resulting texture contains a normal map created from the original noise interpreted as a bump map.</para>
  22242. </summary>
  22243. </member>
  22244. <member name="P:Godot.NoiseTexture.BumpStrength">
  22245. <summary>
  22246. <para>Strength of the bump maps used in this texture. A higher value will make the bump maps appear larger while a lower value will make them appear softer.</para>
  22247. </summary>
  22248. </member>
  22249. <member name="P:Godot.NoiseTexture.Noise">
  22250. <summary>
  22251. <para>The <see cref="T:Godot.OpenSimplexNoise"/> instance used to generate the noise.</para>
  22252. </summary>
  22253. </member>
  22254. <member name="T:Godot.OccluderPolygon2D">
  22255. <summary>
  22256. <para>Editor facility that helps you draw a 2D polygon used as resource for <see cref="T:Godot.LightOccluder2D"/>.</para>
  22257. </summary>
  22258. </member>
  22259. <member name="F:Godot.OccluderPolygon2D.CullModeEnum.Disabled">
  22260. <summary>
  22261. <para>Culling is disabled. See <see cref="P:Godot.OccluderPolygon2D.CullMode"/>.</para>
  22262. </summary>
  22263. </member>
  22264. <member name="F:Godot.OccluderPolygon2D.CullModeEnum.Clockwise">
  22265. <summary>
  22266. <para>Culling is performed in the clockwise direction. See <see cref="P:Godot.OccluderPolygon2D.CullMode"/>.</para>
  22267. </summary>
  22268. </member>
  22269. <member name="F:Godot.OccluderPolygon2D.CullModeEnum.CounterClockwise">
  22270. <summary>
  22271. <para>Culling is performed in the counterclockwise direction. See <see cref="P:Godot.OccluderPolygon2D.CullMode"/>.</para>
  22272. </summary>
  22273. </member>
  22274. <member name="P:Godot.OccluderPolygon2D.Closed">
  22275. <summary>
  22276. <para>If <c>true</c>, closes the polygon. A closed OccluderPolygon2D occludes the light coming from any direction. An opened OccluderPolygon2D occludes the light only at its outline's direction.</para>
  22277. </summary>
  22278. </member>
  22279. <member name="P:Godot.OccluderPolygon2D.CullMode">
  22280. <summary>
  22281. <para>The culling mode to use.</para>
  22282. </summary>
  22283. </member>
  22284. <member name="P:Godot.OccluderPolygon2D.Polygon">
  22285. <summary>
  22286. <para>A <see cref="T:Godot.Vector2"/> array with the index for polygon's vertices positions.</para>
  22287. <para>Note: The returned value is a copy of the underlying array, rather than a reference.</para>
  22288. </summary>
  22289. </member>
  22290. <member name="T:Godot.OmniLight">
  22291. <summary>
  22292. <para>An Omnidirectional light is a type of <see cref="T:Godot.Light"/> that emits light in all directions. The light is attenuated by distance and this attenuation can be configured by changing its energy, radius, and attenuation parameters.</para>
  22293. </summary>
  22294. </member>
  22295. <member name="F:Godot.OmniLight.ShadowMode.DualParaboloid">
  22296. <summary>
  22297. <para>Shadows are rendered to a dual-paraboloid texture. Faster than , but lower-quality.</para>
  22298. </summary>
  22299. </member>
  22300. <member name="F:Godot.OmniLight.ShadowMode.Cube">
  22301. <summary>
  22302. <para>Shadows are rendered to a cubemap. Slower than , but higher-quality.</para>
  22303. </summary>
  22304. </member>
  22305. <member name="F:Godot.OmniLight.ShadowDetail.Vertical">
  22306. <summary>
  22307. <para>Use more detail vertically when computing the shadow.</para>
  22308. </summary>
  22309. </member>
  22310. <member name="F:Godot.OmniLight.ShadowDetail.Horizontal">
  22311. <summary>
  22312. <para>Use more detail horizontally when computing the shadow.</para>
  22313. </summary>
  22314. </member>
  22315. <member name="P:Godot.OmniLight.OmniRange">
  22316. <summary>
  22317. <para>The light's radius. Note that the effectively lit area may appear to be smaller depending on the <see cref="P:Godot.OmniLight.OmniAttenuation"/> in use. No matter the <see cref="P:Godot.OmniLight.OmniAttenuation"/> in use, the light will never reach anything outside this radius.</para>
  22318. </summary>
  22319. </member>
  22320. <member name="P:Godot.OmniLight.OmniAttenuation">
  22321. <summary>
  22322. <para>The light's attenuation (drop-off) curve. A number of presets are available in the Inspector by right-clicking the curve.</para>
  22323. </summary>
  22324. </member>
  22325. <member name="P:Godot.OmniLight.OmniShadowMode">
  22326. <summary>
  22327. <para>See <see cref="T:Godot.OmniLight.ShadowMode"/>.</para>
  22328. </summary>
  22329. </member>
  22330. <member name="P:Godot.OmniLight.OmniShadowDetail">
  22331. <summary>
  22332. <para>See <see cref="T:Godot.OmniLight.ShadowDetail"/>.</para>
  22333. </summary>
  22334. </member>
  22335. <member name="T:Godot.OpenSimplexNoise">
  22336. <summary>
  22337. <para>This resource allows you to configure and sample a fractal noise space. Here is a brief usage example that configures an OpenSimplexNoise and gets samples at various positions and dimensions:</para>
  22338. <para><code>
  22339. var noise = OpenSimplexNoise.new()
  22340. # Configure
  22341. noise.seed = randi()
  22342. noise.octaves = 4
  22343. noise.period = 20.0
  22344. noise.persistence = 0.8
  22345. # Sample
  22346. print("Values:")
  22347. print(noise.get_noise_2d(1.0, 1.0))
  22348. print(noise.get_noise_3d(0.5, 3.0, 15.0))
  22349. print(noise.get_noise_4d(0.5, 1.9, 4.7, 0.0))
  22350. </code></para>
  22351. </summary>
  22352. </member>
  22353. <member name="P:Godot.OpenSimplexNoise.Seed">
  22354. <summary>
  22355. <para>Seed used to generate random values, different seeds will generate different noise maps.</para>
  22356. </summary>
  22357. </member>
  22358. <member name="P:Godot.OpenSimplexNoise.Octaves">
  22359. <summary>
  22360. <para>Number of OpenSimplex noise layers that are sampled to get the fractal noise. Higher values result in more detailed noise but take more time to generate.</para>
  22361. <para>Note: The maximum allowed value is 9.</para>
  22362. </summary>
  22363. </member>
  22364. <member name="P:Godot.OpenSimplexNoise.Period">
  22365. <summary>
  22366. <para>Period of the base octave. A lower period results in a higher-frequency noise (more value changes across the same distance).</para>
  22367. </summary>
  22368. </member>
  22369. <member name="P:Godot.OpenSimplexNoise.Persistence">
  22370. <summary>
  22371. <para>Contribution factor of the different octaves. A <c>persistence</c> value of 1 means all the octaves have the same contribution, a value of 0.5 means each octave contributes half as much as the previous one.</para>
  22372. </summary>
  22373. </member>
  22374. <member name="P:Godot.OpenSimplexNoise.Lacunarity">
  22375. <summary>
  22376. <para>Difference in period between <see cref="P:Godot.OpenSimplexNoise.Octaves"/>.</para>
  22377. </summary>
  22378. </member>
  22379. <member name="M:Godot.OpenSimplexNoise.GetImage(System.Int32,System.Int32)">
  22380. <summary>
  22381. <para>Generate a noise image with the requested <c>width</c> and <c>height</c>, based on the current noise parameters.</para>
  22382. </summary>
  22383. </member>
  22384. <member name="M:Godot.OpenSimplexNoise.GetSeamlessImage(System.Int32)">
  22385. <summary>
  22386. <para>Generate a tileable noise image, based on the current noise parameters. Generated seamless images are always square (<c>size</c> × <c>size</c>).</para>
  22387. </summary>
  22388. </member>
  22389. <member name="M:Godot.OpenSimplexNoise.GetNoise1d(System.Single)">
  22390. <summary>
  22391. <para>Returns the 1D noise value <c>[-1,1]</c> at the given x-coordinate.</para>
  22392. <para>Note: This method actually returns the 2D noise value <c>[-1,1]</c> with fixed y-coordinate value 0.0.</para>
  22393. </summary>
  22394. </member>
  22395. <member name="M:Godot.OpenSimplexNoise.GetNoise2d(System.Single,System.Single)">
  22396. <summary>
  22397. <para>Returns the 2D noise value <c>[-1,1]</c> at the given position.</para>
  22398. </summary>
  22399. </member>
  22400. <member name="M:Godot.OpenSimplexNoise.GetNoise3d(System.Single,System.Single,System.Single)">
  22401. <summary>
  22402. <para>Returns the 3D noise value <c>[-1,1]</c> at the given position.</para>
  22403. </summary>
  22404. </member>
  22405. <member name="M:Godot.OpenSimplexNoise.GetNoise4d(System.Single,System.Single,System.Single,System.Single)">
  22406. <summary>
  22407. <para>Returns the 4D noise value <c>[-1,1]</c> at the given position.</para>
  22408. </summary>
  22409. </member>
  22410. <member name="M:Godot.OpenSimplexNoise.GetNoise2dv(Godot.Vector2)">
  22411. <summary>
  22412. <para>Returns the 2D noise value <c>[-1,1]</c> at the given position.</para>
  22413. </summary>
  22414. </member>
  22415. <member name="M:Godot.OpenSimplexNoise.GetNoise3dv(Godot.Vector3)">
  22416. <summary>
  22417. <para>Returns the 3D noise value <c>[-1,1]</c> at the given position.</para>
  22418. </summary>
  22419. </member>
  22420. <member name="T:Godot.OptionButton">
  22421. <summary>
  22422. <para>OptionButton is a type button that provides a selectable list of items when pressed. The item selected becomes the "current" item and is displayed as the button text.</para>
  22423. </summary>
  22424. </member>
  22425. <member name="P:Godot.OptionButton.Selected">
  22426. <summary>
  22427. <para>The index of the currently selected item, or <c>-1</c> if no item is selected.</para>
  22428. </summary>
  22429. </member>
  22430. <member name="M:Godot.OptionButton.AddItem(System.String,System.Int32)">
  22431. <summary>
  22432. <para>Adds an item, with text <c>label</c> and (optionally) <c>id</c>. If no <c>id</c> is passed, the item index will be used as the item's ID. New items are appended at the end.</para>
  22433. </summary>
  22434. </member>
  22435. <member name="M:Godot.OptionButton.AddIconItem(Godot.Texture,System.String,System.Int32)">
  22436. <summary>
  22437. <para>Adds an item, with a <c>texture</c> icon, text <c>label</c> and (optionally) <c>id</c>. If no <c>id</c> is passed, the item index will be used as the item's ID. New items are appended at the end.</para>
  22438. </summary>
  22439. </member>
  22440. <member name="M:Godot.OptionButton.SetItemText(System.Int32,System.String)">
  22441. <summary>
  22442. <para>Sets the text of the item at index <c>idx</c>.</para>
  22443. </summary>
  22444. </member>
  22445. <member name="M:Godot.OptionButton.SetItemIcon(System.Int32,Godot.Texture)">
  22446. <summary>
  22447. <para>Sets the icon of the item at index <c>idx</c>.</para>
  22448. </summary>
  22449. </member>
  22450. <member name="M:Godot.OptionButton.SetItemDisabled(System.Int32,System.Boolean)">
  22451. <summary>
  22452. <para>Sets whether the item at index <c>idx</c> is disabled.</para>
  22453. <para>Disabled items are drawn differently in the dropdown and are not selectable by the user. If the current selected item is set as disabled, it will remain selected.</para>
  22454. </summary>
  22455. </member>
  22456. <member name="M:Godot.OptionButton.SetItemId(System.Int32,System.Int32)">
  22457. <summary>
  22458. <para>Sets the ID of the item at index <c>idx</c>.</para>
  22459. </summary>
  22460. </member>
  22461. <member name="M:Godot.OptionButton.SetItemMetadata(System.Int32,System.Object)">
  22462. <summary>
  22463. <para>Sets the metadata of an item. Metadata may be of any type and can be used to store extra information about an item, such as an external string ID.</para>
  22464. </summary>
  22465. </member>
  22466. <member name="M:Godot.OptionButton.GetItemText(System.Int32)">
  22467. <summary>
  22468. <para>Returns the text of the item at index <c>idx</c>.</para>
  22469. </summary>
  22470. </member>
  22471. <member name="M:Godot.OptionButton.GetItemIcon(System.Int32)">
  22472. <summary>
  22473. <para>Returns the icon of the item at index <c>idx</c>.</para>
  22474. </summary>
  22475. </member>
  22476. <member name="M:Godot.OptionButton.GetItemId(System.Int32)">
  22477. <summary>
  22478. <para>Returns the ID of the item at index <c>idx</c>.</para>
  22479. </summary>
  22480. </member>
  22481. <member name="M:Godot.OptionButton.GetItemIndex(System.Int32)">
  22482. <summary>
  22483. <para>Returns the index of the item with the given <c>id</c>.</para>
  22484. </summary>
  22485. </member>
  22486. <member name="M:Godot.OptionButton.GetItemMetadata(System.Int32)">
  22487. <summary>
  22488. <para>Retrieves the metadata of an item. Metadata may be any type and can be used to store extra information about an item, such as an external string ID.</para>
  22489. </summary>
  22490. </member>
  22491. <member name="M:Godot.OptionButton.IsItemDisabled(System.Int32)">
  22492. <summary>
  22493. <para>Returns <c>true</c> if the item at index <c>idx</c> is disabled.</para>
  22494. </summary>
  22495. </member>
  22496. <member name="M:Godot.OptionButton.GetItemCount">
  22497. <summary>
  22498. <para>Returns the amount of items in the OptionButton, including separators.</para>
  22499. </summary>
  22500. </member>
  22501. <member name="M:Godot.OptionButton.AddSeparator">
  22502. <summary>
  22503. <para>Adds a separator to the list of items. Separators help to group items. Separator also takes up an index and is appended at the end.</para>
  22504. </summary>
  22505. </member>
  22506. <member name="M:Godot.OptionButton.Clear">
  22507. <summary>
  22508. <para>Clears all the items in the <see cref="T:Godot.OptionButton"/>.</para>
  22509. </summary>
  22510. </member>
  22511. <member name="M:Godot.OptionButton.Select(System.Int32)">
  22512. <summary>
  22513. <para>Selects an item by index and makes it the current item. This will work even if the item is disabled.</para>
  22514. </summary>
  22515. </member>
  22516. <member name="M:Godot.OptionButton.GetSelectedId">
  22517. <summary>
  22518. <para>Returns the ID of the selected item, or <c>0</c> if no item is selected.</para>
  22519. </summary>
  22520. </member>
  22521. <member name="M:Godot.OptionButton.GetSelectedMetadata">
  22522. <summary>
  22523. <para>Gets the metadata of the selected item. Metadata for items can be set using <see cref="M:Godot.OptionButton.SetItemMetadata(System.Int32,System.Object)"/>.</para>
  22524. </summary>
  22525. </member>
  22526. <member name="M:Godot.OptionButton.RemoveItem(System.Int32)">
  22527. <summary>
  22528. <para>Removes the item at index <c>idx</c>.</para>
  22529. </summary>
  22530. </member>
  22531. <member name="M:Godot.OptionButton.GetPopup">
  22532. <summary>
  22533. <para>Returns the <see cref="T:Godot.PopupMenu"/> contained in this button.</para>
  22534. </summary>
  22535. </member>
  22536. <member name="T:Godot.PCKPacker">
  22537. <summary>
  22538. <para>The <see cref="T:Godot.PCKPacker"/> is used to create packages that can be loaded into a running project using <see cref="M:Godot.ProjectSettings.LoadResourcePack(System.String,System.Boolean)"/>.</para>
  22539. <para><code>
  22540. var packer = PCKPacker.new()
  22541. packer.pck_start("test.pck")
  22542. packer.add_file("res://text.txt", "text.txt")
  22543. packer.flush()
  22544. </code></para>
  22545. <para>The above <see cref="T:Godot.PCKPacker"/> creates package <c>test.pck</c>, then adds a file named <c>text.txt</c> at the root of the package.</para>
  22546. </summary>
  22547. </member>
  22548. <member name="M:Godot.PCKPacker.PckStart(System.String,System.Int32)">
  22549. <summary>
  22550. <para>Creates a new PCK file with the name <c>pck_name</c>. The <c>.pck</c> file extension isn't added automatically, so it should be part of <c>pck_name</c> (even though it's not required).</para>
  22551. </summary>
  22552. </member>
  22553. <member name="M:Godot.PCKPacker.AddFile(System.String,System.String)">
  22554. <summary>
  22555. <para>Adds the <c>source_path</c> file to the current PCK package at the <c>pck_path</c> internal path (should start with <c>res://</c>).</para>
  22556. </summary>
  22557. </member>
  22558. <member name="M:Godot.PCKPacker.Flush(System.Boolean)">
  22559. <summary>
  22560. <para>Writes the files specified using all <see cref="M:Godot.PCKPacker.AddFile(System.String,System.String)"/> calls since the last flush. If <c>verbose</c> is <c>true</c>, a list of files added will be printed to the console for easier debugging.</para>
  22561. </summary>
  22562. </member>
  22563. <member name="T:Godot.PHashTranslation">
  22564. <summary>
  22565. <para>Optimized translation. Uses real-time compressed translations, which results in very small dictionaries.</para>
  22566. </summary>
  22567. </member>
  22568. <member name="M:Godot.PHashTranslation.Generate(Godot.Translation)">
  22569. <summary>
  22570. <para>Generates and sets an optimized translation from the given <see cref="T:Godot.Translation"/> resource.</para>
  22571. </summary>
  22572. </member>
  22573. <member name="T:Godot.PackedScene">
  22574. <summary>
  22575. <para>A simplified interface to a scene file. Provides access to operations and checks that can be performed on the scene resource itself.</para>
  22576. <para>Can be used to save a node to a file. When saving, the node as well as all the node it owns get saved (see <c>owner</c> property on <see cref="T:Godot.Node"/>).</para>
  22577. <para>Note: The node doesn't need to own itself.</para>
  22578. <para>Example of saving a node with different owners: The following example creates 3 objects: <c>Node2D</c> (<c>node</c>), <c>RigidBody2D</c> (<c>rigid</c>) and <c>CollisionObject2D</c> (<c>collision</c>). <c>collision</c> is a child of <c>rigid</c> which is a child of <c>node</c>. Only <c>rigid</c> is owned by <c>node</c> and <c>pack</c> will therefore only save those two nodes, but not <c>collision</c>.</para>
  22579. <para><code>
  22580. # Create the objects.
  22581. var node = Node2D.new()
  22582. var rigid = RigidBody2D.new()
  22583. var collision = CollisionShape2D.new()
  22584. # Create the object hierarchy.
  22585. rigid.add_child(collision)
  22586. node.add_child(rigid)
  22587. # Change owner of `rigid`, but not of `collision`.
  22588. rigid.owner = node
  22589. var scene = PackedScene.new()
  22590. # Only `node` and `rigid` are now packed.
  22591. var result = scene.pack(node)
  22592. if result == OK:
  22593. var error = ResourceSaver.save("res://path/name.scn", scene) # Or "user://..."
  22594. if error != OK:
  22595. push_error("An error occurred while saving the scene to disk.")
  22596. </code></para>
  22597. </summary>
  22598. </member>
  22599. <member name="F:Godot.PackedScene.GenEditState.Disabled">
  22600. <summary>
  22601. <para>If passed to <see cref="M:Godot.PackedScene.Instance(Godot.PackedScene.GenEditState)"/>, blocks edits to the scene state.</para>
  22602. </summary>
  22603. </member>
  22604. <member name="F:Godot.PackedScene.GenEditState.Instance">
  22605. <summary>
  22606. <para>If passed to <see cref="M:Godot.PackedScene.Instance(Godot.PackedScene.GenEditState)"/>, provides local scene resources to the local scene.</para>
  22607. <para>Note: Only available in editor builds.</para>
  22608. </summary>
  22609. </member>
  22610. <member name="F:Godot.PackedScene.GenEditState.Main">
  22611. <summary>
  22612. <para>If passed to <see cref="M:Godot.PackedScene.Instance(Godot.PackedScene.GenEditState)"/>, provides local scene resources to the local scene. Only the main scene should receive the main edit state.</para>
  22613. <para>Note: Only available in editor builds.</para>
  22614. </summary>
  22615. </member>
  22616. <member name="P:Godot.PackedScene._Bundled">
  22617. <summary>
  22618. <para>A dictionary representation of the scene contents.</para>
  22619. <para>Available keys include "rnames" and "variants" for resources, "node_count", "nodes", "node_paths" for nodes, "editable_instances" for base scene children overrides, "conn_count" and "conns" for signal connections, and "version" for the format style of the PackedScene.</para>
  22620. </summary>
  22621. </member>
  22622. <member name="M:Godot.PackedScene.Pack(Godot.Node)">
  22623. <summary>
  22624. <para>Pack will ignore any sub-nodes not owned by given node. See <see cref="P:Godot.Node.Owner"/>.</para>
  22625. </summary>
  22626. </member>
  22627. <member name="M:Godot.PackedScene.Instance(Godot.PackedScene.GenEditState)">
  22628. <summary>
  22629. <para>Instantiates the scene's node hierarchy. Triggers child scene instantiation(s). Triggers a notification on the root node.</para>
  22630. </summary>
  22631. </member>
  22632. <member name="M:Godot.PackedScene.CanInstance">
  22633. <summary>
  22634. <para>Returns <c>true</c> if the scene file has nodes.</para>
  22635. </summary>
  22636. </member>
  22637. <member name="M:Godot.PackedScene.GetState">
  22638. <summary>
  22639. <para>Returns the <c>SceneState</c> representing the scene file contents.</para>
  22640. </summary>
  22641. </member>
  22642. <member name="T:Godot.PacketPeer">
  22643. <summary>
  22644. <para>PacketPeer is an abstraction and base class for packet-based protocols (such as UDP). It provides an API for sending and receiving packets both as raw data or variables. This makes it easy to transfer data over a protocol, without having to encode data as low-level bytes or having to worry about network ordering.</para>
  22645. </summary>
  22646. </member>
  22647. <member name="P:Godot.PacketPeer.EncodeBufferMaxSize">
  22648. <summary>
  22649. <para>Maximum buffer size allowed when encoding <c>Variant</c>s. Raise this value to support heavier memory allocations.</para>
  22650. <para>The <see cref="M:Godot.PacketPeer.PutVar(System.Object,System.Boolean)"/> method allocates memory on the stack, and the buffer used will grow automatically to the closest power of two to match the size of the <c>Variant</c>. If the <c>Variant</c> is bigger than <c>encode_buffer_max_size</c>, the method will error out with .</para>
  22651. </summary>
  22652. </member>
  22653. <member name="P:Godot.PacketPeer.AllowObjectDecoding">
  22654. <summary>
  22655. <para>Deprecated. Use <c>get_var</c> and <c>put_var</c> parameters instead.</para>
  22656. <para>If <c>true</c>, the PacketPeer will allow encoding and decoding of object via <see cref="M:Godot.PacketPeer.GetVar(System.Boolean)"/> and <see cref="M:Godot.PacketPeer.PutVar(System.Object,System.Boolean)"/>.</para>
  22657. <para>Warning: Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.</para>
  22658. </summary>
  22659. </member>
  22660. <member name="M:Godot.PacketPeer.GetVar(System.Boolean)">
  22661. <summary>
  22662. <para>Gets a Variant. If <c>allow_objects</c> (or <see cref="P:Godot.PacketPeer.AllowObjectDecoding"/>) is <c>true</c>, decoding objects is allowed.</para>
  22663. <para>Warning: Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.</para>
  22664. </summary>
  22665. </member>
  22666. <member name="M:Godot.PacketPeer.PutVar(System.Object,System.Boolean)">
  22667. <summary>
  22668. <para>Sends a <c>Variant</c> as a packet. If <c>full_objects</c> (or <see cref="P:Godot.PacketPeer.AllowObjectDecoding"/>) is <c>true</c>, encoding objects is allowed (and can potentially include code).</para>
  22669. </summary>
  22670. </member>
  22671. <member name="M:Godot.PacketPeer.GetPacket">
  22672. <summary>
  22673. <para>Gets a raw packet.</para>
  22674. </summary>
  22675. </member>
  22676. <member name="M:Godot.PacketPeer.PutPacket(System.Byte[])">
  22677. <summary>
  22678. <para>Sends a raw packet.</para>
  22679. </summary>
  22680. </member>
  22681. <member name="M:Godot.PacketPeer.GetPacketError">
  22682. <summary>
  22683. <para>Returns the error state of the last packet received (via <see cref="M:Godot.PacketPeer.GetPacket"/> and <see cref="M:Godot.PacketPeer.GetVar(System.Boolean)"/>).</para>
  22684. </summary>
  22685. </member>
  22686. <member name="M:Godot.PacketPeer.GetAvailablePacketCount">
  22687. <summary>
  22688. <para>Returns the number of packets currently available in the ring-buffer.</para>
  22689. </summary>
  22690. </member>
  22691. <member name="T:Godot.PacketPeerDTLS">
  22692. <summary>
  22693. <para>This class represents a DTLS peer connection. It can be used to connect to a DTLS server, and is returned by <see cref="M:Godot.DTLSServer.TakeConnection(Godot.PacketPeerUDP)"/>.</para>
  22694. </summary>
  22695. </member>
  22696. <member name="F:Godot.PacketPeerDTLS.Status.Disconnected">
  22697. <summary>
  22698. <para>A status representing a <see cref="T:Godot.PacketPeerDTLS"/> that is disconnected.</para>
  22699. </summary>
  22700. </member>
  22701. <member name="F:Godot.PacketPeerDTLS.Status.Handshaking">
  22702. <summary>
  22703. <para>A status representing a <see cref="T:Godot.PacketPeerDTLS"/> that is currently performing the handshake with a remote peer.</para>
  22704. </summary>
  22705. </member>
  22706. <member name="F:Godot.PacketPeerDTLS.Status.Connected">
  22707. <summary>
  22708. <para>A status representing a <see cref="T:Godot.PacketPeerDTLS"/> that is connected to a remote peer.</para>
  22709. </summary>
  22710. </member>
  22711. <member name="F:Godot.PacketPeerDTLS.Status.Error">
  22712. <summary>
  22713. <para>A status representing a <see cref="T:Godot.PacketPeerDTLS"/> in a generic error state.</para>
  22714. </summary>
  22715. </member>
  22716. <member name="F:Godot.PacketPeerDTLS.Status.ErrorHostnameMismatch">
  22717. <summary>
  22718. <para>An error status that shows a mismatch in the DTLS certificate domain presented by the host and the domain requested for validation.</para>
  22719. </summary>
  22720. </member>
  22721. <member name="M:Godot.PacketPeerDTLS.Poll">
  22722. <summary>
  22723. <para>Poll the connection to check for incoming packets. Call this frequently to update the status and keep the connection working.</para>
  22724. </summary>
  22725. </member>
  22726. <member name="M:Godot.PacketPeerDTLS.ConnectToPeer(Godot.PacketPeerUDP,System.Boolean,System.String,Godot.X509Certificate)">
  22727. <summary>
  22728. <para>Connects a <c>peer</c> beginning the DTLS handshake using the underlying <see cref="T:Godot.PacketPeerUDP"/> which must be connected (see <see cref="M:Godot.PacketPeerUDP.ConnectToHost(System.String,System.Int32)"/>). If <c>validate_certs</c> is <c>true</c>, <see cref="T:Godot.PacketPeerDTLS"/> will validate that the certificate presented by the remote peer and match it with the <c>for_hostname</c> argument. You can specify a custom <see cref="T:Godot.X509Certificate"/> to use for validation via the <c>valid_certificate</c> argument.</para>
  22729. </summary>
  22730. </member>
  22731. <member name="M:Godot.PacketPeerDTLS.GetStatus">
  22732. <summary>
  22733. <para>Returns the status of the connection. See <see cref="T:Godot.PacketPeerDTLS.Status"/> for values.</para>
  22734. </summary>
  22735. </member>
  22736. <member name="M:Godot.PacketPeerDTLS.DisconnectFromPeer">
  22737. <summary>
  22738. <para>Disconnects this peer, terminating the DTLS session.</para>
  22739. </summary>
  22740. </member>
  22741. <member name="T:Godot.PacketPeerStream">
  22742. <summary>
  22743. <para>PacketStreamPeer provides a wrapper for working using packets over a stream. This allows for using packet based code with StreamPeers. PacketPeerStream implements a custom protocol over the StreamPeer, so the user should not read or write to the wrapped StreamPeer directly.</para>
  22744. </summary>
  22745. </member>
  22746. <member name="P:Godot.PacketPeerStream.StreamPeer">
  22747. <summary>
  22748. <para>The wrapped <see cref="T:Godot.StreamPeer"/> object.</para>
  22749. </summary>
  22750. </member>
  22751. <member name="T:Godot.PacketPeerUDP">
  22752. <summary>
  22753. <para>UDP packet peer. Can be used to send raw UDP packets as well as <c>Variant</c>s.</para>
  22754. </summary>
  22755. </member>
  22756. <member name="M:Godot.PacketPeerUDP.Listen(System.Int32,System.String,System.Int32)">
  22757. <summary>
  22758. <para>Makes this <see cref="T:Godot.PacketPeerUDP"/> listen on the <c>port</c> binding to <c>bind_address</c> with a buffer size <c>recv_buf_size</c>.</para>
  22759. <para>If <c>bind_address</c> is set to <c>"*"</c> (default), the peer will listen on all available addresses (both IPv4 and IPv6).</para>
  22760. <para>If <c>bind_address</c> is set to <c>"0.0.0.0"</c> (for IPv4) or <c>"::"</c> (for IPv6), the peer will listen on all available addresses matching that IP type.</para>
  22761. <para>If <c>bind_address</c> is set to any valid address (e.g. <c>"192.168.1.101"</c>, <c>"::1"</c>, etc), the peer will only listen on the interface with that addresses (or fail if no interface with the given address exists).</para>
  22762. </summary>
  22763. </member>
  22764. <member name="M:Godot.PacketPeerUDP.Close">
  22765. <summary>
  22766. <para>Closes the UDP socket the <see cref="T:Godot.PacketPeerUDP"/> is currently listening on.</para>
  22767. </summary>
  22768. </member>
  22769. <member name="M:Godot.PacketPeerUDP.Wait">
  22770. <summary>
  22771. <para>Waits for a packet to arrive on the listening port. See <see cref="M:Godot.PacketPeerUDP.Listen(System.Int32,System.String,System.Int32)"/>.</para>
  22772. </summary>
  22773. </member>
  22774. <member name="M:Godot.PacketPeerUDP.IsListening">
  22775. <summary>
  22776. <para>Returns whether this <see cref="T:Godot.PacketPeerUDP"/> is listening.</para>
  22777. </summary>
  22778. </member>
  22779. <member name="M:Godot.PacketPeerUDP.ConnectToHost(System.String,System.Int32)">
  22780. <summary>
  22781. <para>Calling this method connects this UDP peer to the given <c>host</c>/<c>port</c> pair. UDP is in reality connectionless, so this option only means that incoming packets from different addresses are automatically discarded, and that outgoing packets are always sent to the connected address (future calls to <see cref="M:Godot.PacketPeerUDP.SetDestAddress(System.String,System.Int32)"/> are not allowed). This method does not send any data to the remote peer, to do that, use <see cref="M:Godot.PacketPeer.PutVar(System.Object,System.Boolean)"/> or <see cref="M:Godot.PacketPeer.PutPacket(System.Byte[])"/> as usual. See also <see cref="T:Godot.UDPServer"/>.</para>
  22782. <para>Note: Connecting to the remote peer does not help to protect from malicious attacks like IP spoofing, etc. Think about using an encryption technique like SSL or DTLS if you feel like your application is transfering sensitive information.</para>
  22783. </summary>
  22784. </member>
  22785. <member name="M:Godot.PacketPeerUDP.IsConnectedToHost">
  22786. <summary>
  22787. <para>Returns <c>true</c> if the UDP socket is open and has been connected to a remote address. See <see cref="M:Godot.PacketPeerUDP.ConnectToHost(System.String,System.Int32)"/>.</para>
  22788. </summary>
  22789. </member>
  22790. <member name="M:Godot.PacketPeerUDP.GetPacketIp">
  22791. <summary>
  22792. <para>Returns the IP of the remote peer that sent the last packet(that was received with <see cref="M:Godot.PacketPeer.GetPacket"/> or <see cref="M:Godot.PacketPeer.GetVar(System.Boolean)"/>).</para>
  22793. </summary>
  22794. </member>
  22795. <member name="M:Godot.PacketPeerUDP.GetPacketPort">
  22796. <summary>
  22797. <para>Returns the port of the remote peer that sent the last packet(that was received with <see cref="M:Godot.PacketPeer.GetPacket"/> or <see cref="M:Godot.PacketPeer.GetVar(System.Boolean)"/>).</para>
  22798. </summary>
  22799. </member>
  22800. <member name="M:Godot.PacketPeerUDP.SetDestAddress(System.String,System.Int32)">
  22801. <summary>
  22802. <para>Sets the destination address and port for sending packets and variables. A hostname will be resolved using DNS if needed.</para>
  22803. <para>Note: <see cref="M:Godot.PacketPeerUDP.SetBroadcastEnabled(System.Boolean)"/> must be enabled before sending packets to a broadcast address (e.g. <c>255.255.255.255</c>).</para>
  22804. </summary>
  22805. </member>
  22806. <member name="M:Godot.PacketPeerUDP.SetBroadcastEnabled(System.Boolean)">
  22807. <summary>
  22808. <para>Enable or disable sending of broadcast packets (e.g. <c>set_dest_address("255.255.255.255", 4343)</c>. This option is disabled by default.</para>
  22809. <para>Note: Some Android devices might require the <c>CHANGE_WIFI_MULTICAST_STATE</c> permission and this option to be enabled to receive broadcast packets too.</para>
  22810. </summary>
  22811. </member>
  22812. <member name="M:Godot.PacketPeerUDP.JoinMulticastGroup(System.String,System.String)">
  22813. <summary>
  22814. <para>Joins the multicast group specified by <c>multicast_address</c> using the interface identified by <c>interface_name</c>.</para>
  22815. <para>You can join the same multicast group with multiple interfaces. Use <see cref="M:Godot.IP.GetLocalInterfaces"/> to know which are available.</para>
  22816. <para>Note: Some Android devices might require the <c>CHANGE_WIFI_MULTICAST_STATE</c> permission for multicast to work.</para>
  22817. </summary>
  22818. </member>
  22819. <member name="M:Godot.PacketPeerUDP.LeaveMulticastGroup(System.String,System.String)">
  22820. <summary>
  22821. <para>Removes the interface identified by <c>interface_name</c> from the multicast group specified by <c>multicast_address</c>.</para>
  22822. </summary>
  22823. </member>
  22824. <member name="T:Godot.Panel">
  22825. <summary>
  22826. <para>Panel is a <see cref="T:Godot.Control"/> that displays an opaque background. It's commonly used as a parent and container for other types of <see cref="T:Godot.Control"/> nodes.</para>
  22827. </summary>
  22828. </member>
  22829. <member name="T:Godot.PanelContainer">
  22830. <summary>
  22831. <para>Panel container type. This container fits controls inside of the delimited area of a stylebox. It's useful for giving controls an outline.</para>
  22832. </summary>
  22833. </member>
  22834. <member name="T:Godot.PanoramaSky">
  22835. <summary>
  22836. <para>A resource referenced in an <see cref="T:Godot.Environment"/> that is used to draw a background. The Panorama sky functions similar to skyboxes in other engines, except it uses an equirectangular sky map instead of a cube map.</para>
  22837. <para>Using an HDR panorama is strongly recommended for accurate, high-quality reflections. Godot supports the Radiance HDR (<c>.hdr</c>) and OpenEXR (<c>.exr</c>) image formats for this purpose.</para>
  22838. <para>You can use <a href="https://danilw.github.io/GLSL-howto/cubemap_to_panorama_js/cubemap_to_panorama.html">this tool</a> to convert a cube map to an equirectangular sky map.</para>
  22839. </summary>
  22840. </member>
  22841. <member name="P:Godot.PanoramaSky.Panorama">
  22842. <summary>
  22843. <para><see cref="T:Godot.Texture"/> to be applied to the PanoramaSky.</para>
  22844. </summary>
  22845. </member>
  22846. <member name="T:Godot.ParallaxBackground">
  22847. <summary>
  22848. <para>A ParallaxBackground uses one or more <see cref="T:Godot.ParallaxLayer"/> child nodes to create a parallax effect. Each <see cref="T:Godot.ParallaxLayer"/> can move at a different speed using <see cref="P:Godot.ParallaxLayer.MotionOffset"/>. This creates an illusion of depth in a 2D game. If not used with a <see cref="T:Godot.Camera2D"/>, you must manually calculate the <see cref="P:Godot.ParallaxBackground.ScrollOffset"/>.</para>
  22849. </summary>
  22850. </member>
  22851. <member name="P:Godot.ParallaxBackground.ScrollOffset">
  22852. <summary>
  22853. <para>The ParallaxBackground's scroll value. Calculated automatically when using a <see cref="T:Godot.Camera2D"/>, but can be used to manually manage scrolling when no camera is present.</para>
  22854. </summary>
  22855. </member>
  22856. <member name="P:Godot.ParallaxBackground.ScrollBaseOffset">
  22857. <summary>
  22858. <para>The base position offset for all <see cref="T:Godot.ParallaxLayer"/> children.</para>
  22859. </summary>
  22860. </member>
  22861. <member name="P:Godot.ParallaxBackground.ScrollBaseScale">
  22862. <summary>
  22863. <para>The base motion scale for all <see cref="T:Godot.ParallaxLayer"/> children.</para>
  22864. </summary>
  22865. </member>
  22866. <member name="P:Godot.ParallaxBackground.ScrollLimitBegin">
  22867. <summary>
  22868. <para>Top-left limits for scrolling to begin. If the camera is outside of this limit, the background will stop scrolling. Must be lower than <see cref="P:Godot.ParallaxBackground.ScrollLimitEnd"/> to work.</para>
  22869. </summary>
  22870. </member>
  22871. <member name="P:Godot.ParallaxBackground.ScrollLimitEnd">
  22872. <summary>
  22873. <para>Bottom-right limits for scrolling to end. If the camera is outside of this limit, the background will stop scrolling. Must be higher than <see cref="P:Godot.ParallaxBackground.ScrollLimitBegin"/> to work.</para>
  22874. </summary>
  22875. </member>
  22876. <member name="P:Godot.ParallaxBackground.ScrollIgnoreCameraZoom">
  22877. <summary>
  22878. <para>If <c>true</c>, elements in <see cref="T:Godot.ParallaxLayer"/> child aren't affected by the zoom level of the camera.</para>
  22879. </summary>
  22880. </member>
  22881. <member name="T:Godot.ParallaxLayer">
  22882. <summary>
  22883. <para>A ParallaxLayer must be the child of a <see cref="T:Godot.ParallaxBackground"/> node. Each ParallaxLayer can be set to move at different speeds relative to the camera movement or the <see cref="P:Godot.ParallaxBackground.ScrollOffset"/> value.</para>
  22884. <para>This node's children will be affected by its scroll offset.</para>
  22885. <para>Note: Any changes to this node's position and scale made after it enters the scene will be ignored.</para>
  22886. </summary>
  22887. </member>
  22888. <member name="P:Godot.ParallaxLayer.MotionScale">
  22889. <summary>
  22890. <para>Multiplies the ParallaxLayer's motion. If an axis is set to <c>0</c>, it will not scroll.</para>
  22891. </summary>
  22892. </member>
  22893. <member name="P:Godot.ParallaxLayer.MotionOffset">
  22894. <summary>
  22895. <para>The ParallaxLayer's offset relative to the parent ParallaxBackground's <see cref="P:Godot.ParallaxBackground.ScrollOffset"/>.</para>
  22896. </summary>
  22897. </member>
  22898. <member name="P:Godot.ParallaxLayer.MotionMirroring">
  22899. <summary>
  22900. <para>The ParallaxLayer's <see cref="T:Godot.Texture"/> mirroring. Useful for creating an infinite scrolling background. If an axis is set to <c>0</c>, the <see cref="T:Godot.Texture"/> will not be mirrored.</para>
  22901. </summary>
  22902. </member>
  22903. <member name="T:Godot.Particles">
  22904. <summary>
  22905. <para>3D particle node used to create a variety of particle systems and effects. <see cref="T:Godot.Particles"/> features an emitter that generates some number of particles at a given rate.</para>
  22906. <para>Use the <c>process_material</c> property to add a <see cref="T:Godot.ParticlesMaterial"/> to configure particle appearance and behavior. Alternatively, you can add a <see cref="T:Godot.ShaderMaterial"/> which will be applied to all particles.</para>
  22907. </summary>
  22908. </member>
  22909. <member name="F:Godot.Particles.MaxDrawPasses">
  22910. <summary>
  22911. <para>Maximum number of draw passes supported.</para>
  22912. </summary>
  22913. </member>
  22914. <member name="F:Godot.Particles.DrawOrderEnum.Index">
  22915. <summary>
  22916. <para>Particles are drawn in the order emitted.</para>
  22917. </summary>
  22918. </member>
  22919. <member name="F:Godot.Particles.DrawOrderEnum.Lifetime">
  22920. <summary>
  22921. <para>Particles are drawn in order of remaining lifetime.</para>
  22922. </summary>
  22923. </member>
  22924. <member name="F:Godot.Particles.DrawOrderEnum.ViewDepth">
  22925. <summary>
  22926. <para>Particles are drawn in order of depth.</para>
  22927. </summary>
  22928. </member>
  22929. <member name="P:Godot.Particles.Emitting">
  22930. <summary>
  22931. <para>If <c>true</c>, particles are being emitted.</para>
  22932. </summary>
  22933. </member>
  22934. <member name="P:Godot.Particles.Amount">
  22935. <summary>
  22936. <para>Number of particles to emit.</para>
  22937. </summary>
  22938. </member>
  22939. <member name="P:Godot.Particles.Lifetime">
  22940. <summary>
  22941. <para>Amount of time each particle will exist.</para>
  22942. </summary>
  22943. </member>
  22944. <member name="P:Godot.Particles.OneShot">
  22945. <summary>
  22946. <para>If <c>true</c>, only <c>amount</c> particles will be emitted.</para>
  22947. </summary>
  22948. </member>
  22949. <member name="P:Godot.Particles.Preprocess">
  22950. <summary>
  22951. <para>Amount of time to preprocess the particles before animation starts. Lets you start the animation some time after particles have started emitting.</para>
  22952. </summary>
  22953. </member>
  22954. <member name="P:Godot.Particles.SpeedScale">
  22955. <summary>
  22956. <para>Speed scaling ratio. A value of <c>0</c> can be used to pause the particles.</para>
  22957. </summary>
  22958. </member>
  22959. <member name="P:Godot.Particles.Explosiveness">
  22960. <summary>
  22961. <para>Time ratio between each emission. If <c>0</c>, particles are emitted continuously. If <c>1</c>, all particles are emitted simultaneously.</para>
  22962. </summary>
  22963. </member>
  22964. <member name="P:Godot.Particles.Randomness">
  22965. <summary>
  22966. <para>Emission randomness ratio.</para>
  22967. </summary>
  22968. </member>
  22969. <member name="P:Godot.Particles.FixedFps">
  22970. <summary>
  22971. <para>The particle system's frame rate is fixed to a value. For instance, changing the value to 2 will make the particles render at 2 frames per second. Note this does not slow down the simulation of the particle system itself.</para>
  22972. </summary>
  22973. </member>
  22974. <member name="P:Godot.Particles.FractDelta">
  22975. <summary>
  22976. <para>If <c>true</c>, results in fractional delta calculation which has a smoother particles display effect.</para>
  22977. </summary>
  22978. </member>
  22979. <member name="P:Godot.Particles.VisibilityAabb">
  22980. <summary>
  22981. <para>The <see cref="T:Godot.AABB"/> that determines the area of the world part of which needs to be visible on screen for the particle system to be active.</para>
  22982. <para>Note: If the <see cref="T:Godot.ParticlesMaterial"/> in use is configured to cast shadows, you may want to enlarge this AABB to ensure the shadow is updated when particles are off-screen.</para>
  22983. </summary>
  22984. </member>
  22985. <member name="P:Godot.Particles.LocalCoords">
  22986. <summary>
  22987. <para>If <c>true</c>, particles use the parent node's coordinate space. If <c>false</c>, they use global coordinates.</para>
  22988. </summary>
  22989. </member>
  22990. <member name="P:Godot.Particles.DrawOrder">
  22991. <summary>
  22992. <para>Particle draw order. Uses <see cref="T:Godot.Particles.DrawOrderEnum"/> values.</para>
  22993. </summary>
  22994. </member>
  22995. <member name="P:Godot.Particles.ProcessMaterial">
  22996. <summary>
  22997. <para><see cref="T:Godot.Material"/> for processing particles. Can be a <see cref="T:Godot.ParticlesMaterial"/> or a <see cref="T:Godot.ShaderMaterial"/>.</para>
  22998. </summary>
  22999. </member>
  23000. <member name="P:Godot.Particles.DrawPasses">
  23001. <summary>
  23002. <para>The number of draw passes when rendering particles.</para>
  23003. </summary>
  23004. </member>
  23005. <member name="P:Godot.Particles.DrawPass1">
  23006. <summary>
  23007. <para><see cref="T:Godot.Mesh"/> that is drawn for the first draw pass.</para>
  23008. </summary>
  23009. </member>
  23010. <member name="P:Godot.Particles.DrawPass2">
  23011. <summary>
  23012. <para><see cref="T:Godot.Mesh"/> that is drawn for the second draw pass.</para>
  23013. </summary>
  23014. </member>
  23015. <member name="P:Godot.Particles.DrawPass3">
  23016. <summary>
  23017. <para><see cref="T:Godot.Mesh"/> that is drawn for the third draw pass.</para>
  23018. </summary>
  23019. </member>
  23020. <member name="P:Godot.Particles.DrawPass4">
  23021. <summary>
  23022. <para><see cref="T:Godot.Mesh"/> that is drawn for the fourth draw pass.</para>
  23023. </summary>
  23024. </member>
  23025. <member name="M:Godot.Particles.SetDrawPassMesh(System.Int32,Godot.Mesh)">
  23026. <summary>
  23027. <para>Sets the <see cref="T:Godot.Mesh"/> that is drawn at index <c>pass</c>.</para>
  23028. </summary>
  23029. </member>
  23030. <member name="M:Godot.Particles.GetDrawPassMesh(System.Int32)">
  23031. <summary>
  23032. <para>Returns the <see cref="T:Godot.Mesh"/> that is drawn at index <c>pass</c>.</para>
  23033. </summary>
  23034. </member>
  23035. <member name="M:Godot.Particles.Restart">
  23036. <summary>
  23037. <para>Restarts the particle emission, clearing existing particles.</para>
  23038. </summary>
  23039. </member>
  23040. <member name="M:Godot.Particles.CaptureAabb">
  23041. <summary>
  23042. <para>Returns the axis-aligned bounding box that contains all the particles that are active in the current frame.</para>
  23043. </summary>
  23044. </member>
  23045. <member name="T:Godot.Particles2D">
  23046. <summary>
  23047. <para>2D particle node used to create a variety of particle systems and effects. <see cref="T:Godot.Particles2D"/> features an emitter that generates some number of particles at a given rate.</para>
  23048. <para>Use the <c>process_material</c> property to add a <see cref="T:Godot.ParticlesMaterial"/> to configure particle appearance and behavior. Alternatively, you can add a <see cref="T:Godot.ShaderMaterial"/> which will be applied to all particles.</para>
  23049. </summary>
  23050. </member>
  23051. <member name="F:Godot.Particles2D.DrawOrderEnum.Index">
  23052. <summary>
  23053. <para>Particles are drawn in the order emitted.</para>
  23054. </summary>
  23055. </member>
  23056. <member name="F:Godot.Particles2D.DrawOrderEnum.Lifetime">
  23057. <summary>
  23058. <para>Particles are drawn in order of remaining lifetime.</para>
  23059. </summary>
  23060. </member>
  23061. <member name="P:Godot.Particles2D.Emitting">
  23062. <summary>
  23063. <para>If <c>true</c>, particles are being emitted.</para>
  23064. </summary>
  23065. </member>
  23066. <member name="P:Godot.Particles2D.Amount">
  23067. <summary>
  23068. <para>Number of particles emitted in one emission cycle.</para>
  23069. </summary>
  23070. </member>
  23071. <member name="P:Godot.Particles2D.Lifetime">
  23072. <summary>
  23073. <para>Amount of time each particle will exist.</para>
  23074. </summary>
  23075. </member>
  23076. <member name="P:Godot.Particles2D.OneShot">
  23077. <summary>
  23078. <para>If <c>true</c>, only one emission cycle occurs. If set <c>true</c> during a cycle, emission will stop at the cycle's end.</para>
  23079. </summary>
  23080. </member>
  23081. <member name="P:Godot.Particles2D.Preprocess">
  23082. <summary>
  23083. <para>Particle system starts as if it had already run for this many seconds.</para>
  23084. </summary>
  23085. </member>
  23086. <member name="P:Godot.Particles2D.SpeedScale">
  23087. <summary>
  23088. <para>Particle system's running speed scaling ratio. A value of <c>0</c> can be used to pause the particles.</para>
  23089. </summary>
  23090. </member>
  23091. <member name="P:Godot.Particles2D.Explosiveness">
  23092. <summary>
  23093. <para>How rapidly particles in an emission cycle are emitted. If greater than <c>0</c>, there will be a gap in emissions before the next cycle begins.</para>
  23094. </summary>
  23095. </member>
  23096. <member name="P:Godot.Particles2D.Randomness">
  23097. <summary>
  23098. <para>Emission lifetime randomness ratio.</para>
  23099. </summary>
  23100. </member>
  23101. <member name="P:Godot.Particles2D.FixedFps">
  23102. <summary>
  23103. <para>The particle system's frame rate is fixed to a value. For instance, changing the value to 2 will make the particles render at 2 frames per second. Note this does not slow down the simulation of the particle system itself.</para>
  23104. </summary>
  23105. </member>
  23106. <member name="P:Godot.Particles2D.FractDelta">
  23107. <summary>
  23108. <para>If <c>true</c>, results in fractional delta calculation which has a smoother particles display effect.</para>
  23109. </summary>
  23110. </member>
  23111. <member name="P:Godot.Particles2D.VisibilityRect">
  23112. <summary>
  23113. <para>Editor visibility helper.</para>
  23114. </summary>
  23115. </member>
  23116. <member name="P:Godot.Particles2D.LocalCoords">
  23117. <summary>
  23118. <para>If <c>true</c>, particles use the parent node's coordinate space. If <c>false</c>, they use global coordinates.</para>
  23119. </summary>
  23120. </member>
  23121. <member name="P:Godot.Particles2D.DrawOrder">
  23122. <summary>
  23123. <para>Particle draw order. Uses <see cref="T:Godot.Particles2D.DrawOrderEnum"/> values.</para>
  23124. </summary>
  23125. </member>
  23126. <member name="P:Godot.Particles2D.ProcessMaterial">
  23127. <summary>
  23128. <para><see cref="T:Godot.Material"/> for processing particles. Can be a <see cref="T:Godot.ParticlesMaterial"/> or a <see cref="T:Godot.ShaderMaterial"/>.</para>
  23129. </summary>
  23130. </member>
  23131. <member name="P:Godot.Particles2D.Texture">
  23132. <summary>
  23133. <para>Particle texture. If <c>null</c>, particles will be squares.</para>
  23134. </summary>
  23135. </member>
  23136. <member name="P:Godot.Particles2D.NormalMap">
  23137. <summary>
  23138. <para>Normal map to be used for the <see cref="P:Godot.Particles2D.Texture"/> property.</para>
  23139. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  23140. </summary>
  23141. </member>
  23142. <member name="M:Godot.Particles2D.CaptureRect">
  23143. <summary>
  23144. <para>Returns a rectangle containing the positions of all existing particles.</para>
  23145. </summary>
  23146. </member>
  23147. <member name="M:Godot.Particles2D.Restart">
  23148. <summary>
  23149. <para>Restarts all the existing particles.</para>
  23150. </summary>
  23151. </member>
  23152. <member name="T:Godot.ParticlesMaterial">
  23153. <summary>
  23154. <para>ParticlesMaterial defines particle properties and behavior. It is used in the <c>process_material</c> of <see cref="T:Godot.Particles"/> and <see cref="T:Godot.Particles2D"/> emitter nodes.</para>
  23155. <para>Some of this material's properties are applied to each particle when emitted, while others can have a <see cref="T:Godot.CurveTexture"/> applied to vary values over the lifetime of the particle.</para>
  23156. <para>When a randomness ratio is applied to a property it is used to scale that property by a random amount. The random ratio is used to interpolate between <c>1.0</c> and a random number less than one, the result is multiplied by the property to obtain the randomized property. For example a random ratio of <c>0.4</c> would scale the original property between <c>0.4-1.0</c> of its original value.</para>
  23157. </summary>
  23158. </member>
  23159. <member name="F:Godot.ParticlesMaterial.Flags.AlignYToVelocity">
  23160. <summary>
  23161. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetFlag(Godot.ParticlesMaterial.Flags,System.Boolean)"/> to set <see cref="P:Godot.ParticlesMaterial.FlagAlignY"/>.</para>
  23162. </summary>
  23163. </member>
  23164. <member name="F:Godot.ParticlesMaterial.Flags.RotateY">
  23165. <summary>
  23166. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetFlag(Godot.ParticlesMaterial.Flags,System.Boolean)"/> to set <see cref="P:Godot.ParticlesMaterial.FlagRotateY"/>.</para>
  23167. </summary>
  23168. </member>
  23169. <member name="F:Godot.ParticlesMaterial.Flags.DisableZ">
  23170. <summary>
  23171. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetFlag(Godot.ParticlesMaterial.Flags,System.Boolean)"/> to set <see cref="P:Godot.ParticlesMaterial.FlagDisableZ"/>.</para>
  23172. </summary>
  23173. </member>
  23174. <member name="F:Godot.ParticlesMaterial.Flags.Max">
  23175. <summary>
  23176. <para>Represents the size of the <see cref="T:Godot.ParticlesMaterial.Flags"/> enum.</para>
  23177. </summary>
  23178. </member>
  23179. <member name="F:Godot.ParticlesMaterial.EmissionShapeEnum.Point">
  23180. <summary>
  23181. <para>All particles will be emitted from a single point.</para>
  23182. </summary>
  23183. </member>
  23184. <member name="F:Godot.ParticlesMaterial.EmissionShapeEnum.Sphere">
  23185. <summary>
  23186. <para>Particles will be emitted in the volume of a sphere.</para>
  23187. </summary>
  23188. </member>
  23189. <member name="F:Godot.ParticlesMaterial.EmissionShapeEnum.Box">
  23190. <summary>
  23191. <para>Particles will be emitted in the volume of a box.</para>
  23192. </summary>
  23193. </member>
  23194. <member name="F:Godot.ParticlesMaterial.EmissionShapeEnum.Points">
  23195. <summary>
  23196. <para>Particles will be emitted at a position determined by sampling a random point on the <see cref="P:Godot.ParticlesMaterial.EmissionPointTexture"/>. Particle color will be modulated by <see cref="P:Godot.ParticlesMaterial.EmissionColorTexture"/>.</para>
  23197. </summary>
  23198. </member>
  23199. <member name="F:Godot.ParticlesMaterial.EmissionShapeEnum.DirectedPoints">
  23200. <summary>
  23201. <para>Particles will be emitted at a position determined by sampling a random point on the <see cref="P:Godot.ParticlesMaterial.EmissionPointTexture"/>. Particle velocity and rotation will be set based on <see cref="P:Godot.ParticlesMaterial.EmissionNormalTexture"/>. Particle color will be modulated by <see cref="P:Godot.ParticlesMaterial.EmissionColorTexture"/>.</para>
  23202. </summary>
  23203. </member>
  23204. <member name="F:Godot.ParticlesMaterial.EmissionShapeEnum.Max">
  23205. <summary>
  23206. <para>Represents the size of the <see cref="T:Godot.ParticlesMaterial.EmissionShapeEnum"/> enum.</para>
  23207. </summary>
  23208. </member>
  23209. <member name="F:Godot.ParticlesMaterial.Parameter.InitialLinearVelocity">
  23210. <summary>
  23211. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set initial velocity properties.</para>
  23212. </summary>
  23213. </member>
  23214. <member name="F:Godot.ParticlesMaterial.Parameter.AngularVelocity">
  23215. <summary>
  23216. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set angular velocity properties.</para>
  23217. </summary>
  23218. </member>
  23219. <member name="F:Godot.ParticlesMaterial.Parameter.OrbitVelocity">
  23220. <summary>
  23221. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set orbital velocity properties.</para>
  23222. </summary>
  23223. </member>
  23224. <member name="F:Godot.ParticlesMaterial.Parameter.LinearAccel">
  23225. <summary>
  23226. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set linear acceleration properties.</para>
  23227. </summary>
  23228. </member>
  23229. <member name="F:Godot.ParticlesMaterial.Parameter.RadialAccel">
  23230. <summary>
  23231. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set radial acceleration properties.</para>
  23232. </summary>
  23233. </member>
  23234. <member name="F:Godot.ParticlesMaterial.Parameter.TangentialAccel">
  23235. <summary>
  23236. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set tangential acceleration properties.</para>
  23237. </summary>
  23238. </member>
  23239. <member name="F:Godot.ParticlesMaterial.Parameter.Damping">
  23240. <summary>
  23241. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set damping properties.</para>
  23242. </summary>
  23243. </member>
  23244. <member name="F:Godot.ParticlesMaterial.Parameter.Angle">
  23245. <summary>
  23246. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set angle properties.</para>
  23247. </summary>
  23248. </member>
  23249. <member name="F:Godot.ParticlesMaterial.Parameter.Scale">
  23250. <summary>
  23251. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set scale properties.</para>
  23252. </summary>
  23253. </member>
  23254. <member name="F:Godot.ParticlesMaterial.Parameter.HueVariation">
  23255. <summary>
  23256. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set hue variation properties.</para>
  23257. </summary>
  23258. </member>
  23259. <member name="F:Godot.ParticlesMaterial.Parameter.AnimSpeed">
  23260. <summary>
  23261. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set animation speed properties.</para>
  23262. </summary>
  23263. </member>
  23264. <member name="F:Godot.ParticlesMaterial.Parameter.AnimOffset">
  23265. <summary>
  23266. <para>Use with <see cref="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)"/>, <see cref="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)"/>, and <see cref="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)"/> to set animation offset properties.</para>
  23267. </summary>
  23268. </member>
  23269. <member name="F:Godot.ParticlesMaterial.Parameter.Max">
  23270. <summary>
  23271. <para>Represents the size of the <see cref="T:Godot.ParticlesMaterial.Parameter"/> enum.</para>
  23272. </summary>
  23273. </member>
  23274. <member name="P:Godot.ParticlesMaterial.LifetimeRandomness">
  23275. <summary>
  23276. <para>Particle lifetime randomness ratio.</para>
  23277. </summary>
  23278. </member>
  23279. <member name="P:Godot.ParticlesMaterial.TrailDivisor">
  23280. <summary>
  23281. <para>Emitter will emit <c>amount</c> divided by <c>trail_divisor</c> particles. The remaining particles will be used as trail(s).</para>
  23282. </summary>
  23283. </member>
  23284. <member name="P:Godot.ParticlesMaterial.TrailSizeModifier">
  23285. <summary>
  23286. <para>Trail particles' size will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23287. </summary>
  23288. </member>
  23289. <member name="P:Godot.ParticlesMaterial.TrailColorModifier">
  23290. <summary>
  23291. <para>Trail particles' color will vary along this <see cref="T:Godot.GradientTexture"/>.</para>
  23292. </summary>
  23293. </member>
  23294. <member name="P:Godot.ParticlesMaterial.EmissionShape">
  23295. <summary>
  23296. <para>Particles will be emitted inside this region. Use <see cref="T:Godot.ParticlesMaterial.EmissionShapeEnum"/> constants for values.</para>
  23297. </summary>
  23298. </member>
  23299. <member name="P:Godot.ParticlesMaterial.EmissionSphereRadius">
  23300. <summary>
  23301. <para>The sphere's radius if <c>emission_shape</c> is set to .</para>
  23302. </summary>
  23303. </member>
  23304. <member name="P:Godot.ParticlesMaterial.EmissionBoxExtents">
  23305. <summary>
  23306. <para>The box's extents if <c>emission_shape</c> is set to .</para>
  23307. </summary>
  23308. </member>
  23309. <member name="P:Godot.ParticlesMaterial.EmissionPointTexture">
  23310. <summary>
  23311. <para>Particles will be emitted at positions determined by sampling this texture at a random position. Used with and . Can be created automatically from mesh or node by selecting "Create Emission Points from Mesh/Node" under the "Particles" tool in the toolbar.</para>
  23312. </summary>
  23313. </member>
  23314. <member name="P:Godot.ParticlesMaterial.EmissionNormalTexture">
  23315. <summary>
  23316. <para>Particle velocity and rotation will be set by sampling this texture at the same point as the <see cref="P:Godot.ParticlesMaterial.EmissionPointTexture"/>. Used only in . Can be created automatically from mesh or node by selecting "Create Emission Points from Mesh/Node" under the "Particles" tool in the toolbar.</para>
  23317. </summary>
  23318. </member>
  23319. <member name="P:Godot.ParticlesMaterial.EmissionColorTexture">
  23320. <summary>
  23321. <para>Particle color will be modulated by color determined by sampling this texture at the same point as the <see cref="P:Godot.ParticlesMaterial.EmissionPointTexture"/>.</para>
  23322. </summary>
  23323. </member>
  23324. <member name="P:Godot.ParticlesMaterial.EmissionPointCount">
  23325. <summary>
  23326. <para>The number of emission points if <c>emission_shape</c> is set to or .</para>
  23327. </summary>
  23328. </member>
  23329. <member name="P:Godot.ParticlesMaterial.FlagAlignY">
  23330. <summary>
  23331. <para>Align Y axis of particle with the direction of its velocity.</para>
  23332. </summary>
  23333. </member>
  23334. <member name="P:Godot.ParticlesMaterial.FlagRotateY">
  23335. <summary>
  23336. <para>If <c>true</c>, particles rotate around Y axis by <see cref="P:Godot.ParticlesMaterial.Angle"/>.</para>
  23337. </summary>
  23338. </member>
  23339. <member name="P:Godot.ParticlesMaterial.FlagDisableZ">
  23340. <summary>
  23341. <para>If <c>true</c>, particles will not move on the z axis.</para>
  23342. </summary>
  23343. </member>
  23344. <member name="P:Godot.ParticlesMaterial.Direction">
  23345. <summary>
  23346. <para>Unit vector specifying the particles' emission direction.</para>
  23347. </summary>
  23348. </member>
  23349. <member name="P:Godot.ParticlesMaterial.Spread">
  23350. <summary>
  23351. <para>Each particle's initial direction range from <c>+spread</c> to <c>-spread</c> degrees. Applied to X/Z plane and Y/Z planes.</para>
  23352. </summary>
  23353. </member>
  23354. <member name="P:Godot.ParticlesMaterial.Flatness">
  23355. <summary>
  23356. <para>Amount of <see cref="P:Godot.ParticlesMaterial.Spread"/> in Y/Z plane. A value of <c>1</c> restricts particles to X/Z plane.</para>
  23357. </summary>
  23358. </member>
  23359. <member name="P:Godot.ParticlesMaterial.Gravity">
  23360. <summary>
  23361. <para>Gravity applied to every particle.</para>
  23362. </summary>
  23363. </member>
  23364. <member name="P:Godot.ParticlesMaterial.InitialVelocity">
  23365. <summary>
  23366. <para>Initial velocity magnitude for each particle. Direction comes from <see cref="P:Godot.ParticlesMaterial.Spread"/> and the node's orientation.</para>
  23367. </summary>
  23368. </member>
  23369. <member name="P:Godot.ParticlesMaterial.InitialVelocityRandom">
  23370. <summary>
  23371. <para>Initial velocity randomness ratio.</para>
  23372. </summary>
  23373. </member>
  23374. <member name="P:Godot.ParticlesMaterial.AngularVelocity">
  23375. <summary>
  23376. <para>Initial angular velocity applied to each particle. Sets the speed of rotation of the particle.</para>
  23377. <para>Only applied when <see cref="P:Godot.ParticlesMaterial.FlagDisableZ"/> or <see cref="P:Godot.ParticlesMaterial.FlagRotateY"/> are <c>true</c> or the <see cref="T:Godot.SpatialMaterial"/> being used to draw the particle is using .</para>
  23378. </summary>
  23379. </member>
  23380. <member name="P:Godot.ParticlesMaterial.AngularVelocityRandom">
  23381. <summary>
  23382. <para>Angular velocity randomness ratio.</para>
  23383. </summary>
  23384. </member>
  23385. <member name="P:Godot.ParticlesMaterial.AngularVelocityCurve">
  23386. <summary>
  23387. <para>Each particle's angular velocity will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23388. </summary>
  23389. </member>
  23390. <member name="P:Godot.ParticlesMaterial.OrbitVelocity">
  23391. <summary>
  23392. <para>Orbital velocity applied to each particle. Makes the particles circle around origin. Specified in number of full rotations around origin per second.</para>
  23393. <para>Only available when <see cref="P:Godot.ParticlesMaterial.FlagDisableZ"/> is <c>true</c>.</para>
  23394. </summary>
  23395. </member>
  23396. <member name="P:Godot.ParticlesMaterial.OrbitVelocityRandom">
  23397. <summary>
  23398. <para>Orbital velocity randomness ratio.</para>
  23399. </summary>
  23400. </member>
  23401. <member name="P:Godot.ParticlesMaterial.OrbitVelocityCurve">
  23402. <summary>
  23403. <para>Each particle's orbital velocity will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23404. </summary>
  23405. </member>
  23406. <member name="P:Godot.ParticlesMaterial.LinearAccel">
  23407. <summary>
  23408. <para>Linear acceleration applied to each particle in the direction of motion.</para>
  23409. </summary>
  23410. </member>
  23411. <member name="P:Godot.ParticlesMaterial.LinearAccelRandom">
  23412. <summary>
  23413. <para>Linear acceleration randomness ratio.</para>
  23414. </summary>
  23415. </member>
  23416. <member name="P:Godot.ParticlesMaterial.LinearAccelCurve">
  23417. <summary>
  23418. <para>Each particle's linear acceleration will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23419. </summary>
  23420. </member>
  23421. <member name="P:Godot.ParticlesMaterial.RadialAccel">
  23422. <summary>
  23423. <para>Radial acceleration applied to each particle. Makes particle accelerate away from origin.</para>
  23424. </summary>
  23425. </member>
  23426. <member name="P:Godot.ParticlesMaterial.RadialAccelRandom">
  23427. <summary>
  23428. <para>Radial acceleration randomness ratio.</para>
  23429. </summary>
  23430. </member>
  23431. <member name="P:Godot.ParticlesMaterial.RadialAccelCurve">
  23432. <summary>
  23433. <para>Each particle's radial acceleration will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23434. </summary>
  23435. </member>
  23436. <member name="P:Godot.ParticlesMaterial.TangentialAccel">
  23437. <summary>
  23438. <para>Tangential acceleration applied to each particle. Tangential acceleration is perpendicular to the particle's velocity giving the particles a swirling motion.</para>
  23439. </summary>
  23440. </member>
  23441. <member name="P:Godot.ParticlesMaterial.TangentialAccelRandom">
  23442. <summary>
  23443. <para>Tangential acceleration randomness ratio.</para>
  23444. </summary>
  23445. </member>
  23446. <member name="P:Godot.ParticlesMaterial.TangentialAccelCurve">
  23447. <summary>
  23448. <para>Each particle's tangential acceleration will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23449. </summary>
  23450. </member>
  23451. <member name="P:Godot.ParticlesMaterial.Damping">
  23452. <summary>
  23453. <para>The rate at which particles lose velocity.</para>
  23454. </summary>
  23455. </member>
  23456. <member name="P:Godot.ParticlesMaterial.DampingRandom">
  23457. <summary>
  23458. <para>Damping randomness ratio.</para>
  23459. </summary>
  23460. </member>
  23461. <member name="P:Godot.ParticlesMaterial.DampingCurve">
  23462. <summary>
  23463. <para>Damping will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23464. </summary>
  23465. </member>
  23466. <member name="P:Godot.ParticlesMaterial.Angle">
  23467. <summary>
  23468. <para>Initial rotation applied to each particle, in degrees.</para>
  23469. <para>Only applied when <see cref="P:Godot.ParticlesMaterial.FlagDisableZ"/> or <see cref="P:Godot.ParticlesMaterial.FlagRotateY"/> are <c>true</c> or the <see cref="T:Godot.SpatialMaterial"/> being used to draw the particle is using .</para>
  23470. </summary>
  23471. </member>
  23472. <member name="P:Godot.ParticlesMaterial.AngleRandom">
  23473. <summary>
  23474. <para>Rotation randomness ratio.</para>
  23475. </summary>
  23476. </member>
  23477. <member name="P:Godot.ParticlesMaterial.AngleCurve">
  23478. <summary>
  23479. <para>Each particle's rotation will be animated along this <see cref="T:Godot.CurveTexture"/>.</para>
  23480. </summary>
  23481. </member>
  23482. <member name="P:Godot.ParticlesMaterial.Scale">
  23483. <summary>
  23484. <para>Initial scale applied to each particle.</para>
  23485. </summary>
  23486. </member>
  23487. <member name="P:Godot.ParticlesMaterial.ScaleRandom">
  23488. <summary>
  23489. <para>Scale randomness ratio.</para>
  23490. </summary>
  23491. </member>
  23492. <member name="P:Godot.ParticlesMaterial.ScaleCurve">
  23493. <summary>
  23494. <para>Each particle's scale will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23495. </summary>
  23496. </member>
  23497. <member name="P:Godot.ParticlesMaterial.Color">
  23498. <summary>
  23499. <para>Each particle's initial color. If the <see cref="T:Godot.Particles2D"/>'s <c>texture</c> is defined, it will be multiplied by this color. To have particle display color in a <see cref="T:Godot.SpatialMaterial"/> make sure to set <see cref="P:Godot.SpatialMaterial.VertexColorUseAsAlbedo"/> to <c>true</c>.</para>
  23500. </summary>
  23501. </member>
  23502. <member name="P:Godot.ParticlesMaterial.ColorRamp">
  23503. <summary>
  23504. <para>Each particle's color will vary along this <see cref="T:Godot.GradientTexture"/>.</para>
  23505. </summary>
  23506. </member>
  23507. <member name="P:Godot.ParticlesMaterial.HueVariation">
  23508. <summary>
  23509. <para>Initial hue variation applied to each particle.</para>
  23510. </summary>
  23511. </member>
  23512. <member name="P:Godot.ParticlesMaterial.HueVariationRandom">
  23513. <summary>
  23514. <para>Hue variation randomness ratio.</para>
  23515. </summary>
  23516. </member>
  23517. <member name="P:Godot.ParticlesMaterial.HueVariationCurve">
  23518. <summary>
  23519. <para>Each particle's hue will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23520. </summary>
  23521. </member>
  23522. <member name="P:Godot.ParticlesMaterial.AnimSpeed">
  23523. <summary>
  23524. <para>Particle animation speed.</para>
  23525. </summary>
  23526. </member>
  23527. <member name="P:Godot.ParticlesMaterial.AnimSpeedRandom">
  23528. <summary>
  23529. <para>Animation speed randomness ratio.</para>
  23530. </summary>
  23531. </member>
  23532. <member name="P:Godot.ParticlesMaterial.AnimSpeedCurve">
  23533. <summary>
  23534. <para>Each particle's animation speed will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23535. </summary>
  23536. </member>
  23537. <member name="P:Godot.ParticlesMaterial.AnimOffset">
  23538. <summary>
  23539. <para>Particle animation offset.</para>
  23540. </summary>
  23541. </member>
  23542. <member name="P:Godot.ParticlesMaterial.AnimOffsetRandom">
  23543. <summary>
  23544. <para>Animation offset randomness ratio.</para>
  23545. </summary>
  23546. </member>
  23547. <member name="P:Godot.ParticlesMaterial.AnimOffsetCurve">
  23548. <summary>
  23549. <para>Each particle's animation offset will vary along this <see cref="T:Godot.CurveTexture"/>.</para>
  23550. </summary>
  23551. </member>
  23552. <member name="M:Godot.ParticlesMaterial.SetParam(Godot.ParticlesMaterial.Parameter,System.Single)">
  23553. <summary>
  23554. <para>Sets the specified <see cref="T:Godot.ParticlesMaterial.Parameter"/>.</para>
  23555. </summary>
  23556. </member>
  23557. <member name="M:Godot.ParticlesMaterial.GetParam(Godot.ParticlesMaterial.Parameter)">
  23558. <summary>
  23559. <para>Returns the value of the specified parameter.</para>
  23560. </summary>
  23561. </member>
  23562. <member name="M:Godot.ParticlesMaterial.SetParamRandomness(Godot.ParticlesMaterial.Parameter,System.Single)">
  23563. <summary>
  23564. <para>Sets the randomness ratio for the specified <see cref="T:Godot.ParticlesMaterial.Parameter"/>.</para>
  23565. </summary>
  23566. </member>
  23567. <member name="M:Godot.ParticlesMaterial.GetParamRandomness(Godot.ParticlesMaterial.Parameter)">
  23568. <summary>
  23569. <para>Returns the randomness ratio associated with the specified parameter.</para>
  23570. </summary>
  23571. </member>
  23572. <member name="M:Godot.ParticlesMaterial.SetParamTexture(Godot.ParticlesMaterial.Parameter,Godot.Texture)">
  23573. <summary>
  23574. <para>Sets the <see cref="T:Godot.Texture"/> for the specified <see cref="T:Godot.ParticlesMaterial.Parameter"/>.</para>
  23575. </summary>
  23576. </member>
  23577. <member name="M:Godot.ParticlesMaterial.GetParamTexture(Godot.ParticlesMaterial.Parameter)">
  23578. <summary>
  23579. <para>Returns the <see cref="T:Godot.Texture"/> used by the specified parameter.</para>
  23580. </summary>
  23581. </member>
  23582. <member name="M:Godot.ParticlesMaterial.SetFlag(Godot.ParticlesMaterial.Flags,System.Boolean)">
  23583. <summary>
  23584. <para>If <c>true</c>, enables the specified flag. See <see cref="T:Godot.ParticlesMaterial.Flags"/> for options.</para>
  23585. </summary>
  23586. </member>
  23587. <member name="M:Godot.ParticlesMaterial.GetFlag(Godot.ParticlesMaterial.Flags)">
  23588. <summary>
  23589. <para>Returns <c>true</c> if the specified flag is enabled.</para>
  23590. </summary>
  23591. </member>
  23592. <member name="T:Godot.Path">
  23593. <summary>
  23594. <para>Can have <see cref="T:Godot.PathFollow"/> child nodes moving along the <see cref="T:Godot.Curve3D"/>. See <see cref="T:Godot.PathFollow"/> for more information on the usage.</para>
  23595. <para>Note that the path is considered as relative to the moved nodes (children of <see cref="T:Godot.PathFollow"/>). As such, the curve should usually start with a zero vector <c>(0, 0, 0)</c>.</para>
  23596. </summary>
  23597. </member>
  23598. <member name="P:Godot.Path.Curve">
  23599. <summary>
  23600. <para>A <see cref="T:Godot.Curve3D"/> describing the path.</para>
  23601. </summary>
  23602. </member>
  23603. <member name="T:Godot.Path2D">
  23604. <summary>
  23605. <para>Can have <see cref="T:Godot.PathFollow2D"/> child nodes moving along the <see cref="T:Godot.Curve2D"/>. See <see cref="T:Godot.PathFollow2D"/> for more information on usage.</para>
  23606. <para>Note: The path is considered as relative to the moved nodes (children of <see cref="T:Godot.PathFollow2D"/>). As such, the curve should usually start with a zero vector (<c>(0, 0)</c>).</para>
  23607. </summary>
  23608. </member>
  23609. <member name="P:Godot.Path2D.Curve">
  23610. <summary>
  23611. <para>A <see cref="T:Godot.Curve2D"/> describing the path.</para>
  23612. </summary>
  23613. </member>
  23614. <member name="T:Godot.PathFollow">
  23615. <summary>
  23616. <para>This node takes its parent <see cref="T:Godot.Path"/>, and returns the coordinates of a point within it, given a distance from the first vertex.</para>
  23617. <para>It is useful for making other nodes follow a path, without coding the movement pattern. For that, the nodes must be children of this node. The descendant nodes will then move accordingly when setting an offset in this node.</para>
  23618. </summary>
  23619. </member>
  23620. <member name="F:Godot.PathFollow.RotationModeEnum.None">
  23621. <summary>
  23622. <para>Forbids the PathFollow to rotate.</para>
  23623. </summary>
  23624. </member>
  23625. <member name="F:Godot.PathFollow.RotationModeEnum.Y">
  23626. <summary>
  23627. <para>Allows the PathFollow to rotate in the Y axis only.</para>
  23628. </summary>
  23629. </member>
  23630. <member name="F:Godot.PathFollow.RotationModeEnum.Xy">
  23631. <summary>
  23632. <para>Allows the PathFollow to rotate in both the X, and Y axes.</para>
  23633. </summary>
  23634. </member>
  23635. <member name="F:Godot.PathFollow.RotationModeEnum.Xyz">
  23636. <summary>
  23637. <para>Allows the PathFollow to rotate in any axis.</para>
  23638. </summary>
  23639. </member>
  23640. <member name="F:Godot.PathFollow.RotationModeEnum.Oriented">
  23641. <summary>
  23642. <para>Uses the up vector information in a <see cref="T:Godot.Curve3D"/> to enforce orientation. This rotation mode requires the <see cref="T:Godot.Path"/>'s <see cref="P:Godot.Curve3D.UpVectorEnabled"/> property to be set to <c>true</c>.</para>
  23643. </summary>
  23644. </member>
  23645. <member name="P:Godot.PathFollow.Offset">
  23646. <summary>
  23647. <para>The distance from the first vertex, measured in 3D units along the path. This sets this node's position to a point within the path.</para>
  23648. </summary>
  23649. </member>
  23650. <member name="P:Godot.PathFollow.UnitOffset">
  23651. <summary>
  23652. <para>The distance from the first vertex, considering 0.0 as the first vertex and 1.0 as the last. This is just another way of expressing the offset within the path, as the offset supplied is multiplied internally by the path's length.</para>
  23653. </summary>
  23654. </member>
  23655. <member name="P:Godot.PathFollow.HOffset">
  23656. <summary>
  23657. <para>The node's offset along the curve.</para>
  23658. </summary>
  23659. </member>
  23660. <member name="P:Godot.PathFollow.VOffset">
  23661. <summary>
  23662. <para>The node's offset perpendicular to the curve.</para>
  23663. </summary>
  23664. </member>
  23665. <member name="P:Godot.PathFollow.RotationMode">
  23666. <summary>
  23667. <para>Allows or forbids rotation on one or more axes, depending on the <see cref="T:Godot.PathFollow.RotationModeEnum"/> constants being used.</para>
  23668. </summary>
  23669. </member>
  23670. <member name="P:Godot.PathFollow.CubicInterp">
  23671. <summary>
  23672. <para>If <c>true</c>, the position between two cached points is interpolated cubically, and linearly otherwise.</para>
  23673. <para>The points along the <see cref="T:Godot.Curve3D"/> of the <see cref="T:Godot.Path"/> are precomputed before use, for faster calculations. The point at the requested offset is then calculated interpolating between two adjacent cached points. This may present a problem if the curve makes sharp turns, as the cached points may not follow the curve closely enough.</para>
  23674. <para>There are two answers to this problem: either increase the number of cached points and increase memory consumption, or make a cubic interpolation between two points at the cost of (slightly) slower calculations.</para>
  23675. </summary>
  23676. </member>
  23677. <member name="P:Godot.PathFollow.Loop">
  23678. <summary>
  23679. <para>If <c>true</c>, any offset outside the path's length will wrap around, instead of stopping at the ends. Use it for cyclic paths.</para>
  23680. </summary>
  23681. </member>
  23682. <member name="T:Godot.PathFollow2D">
  23683. <summary>
  23684. <para>This node takes its parent <see cref="T:Godot.Path2D"/>, and returns the coordinates of a point within it, given a distance from the first vertex.</para>
  23685. <para>It is useful for making other nodes follow a path, without coding the movement pattern. For that, the nodes must be children of this node. The descendant nodes will then move accordingly when setting an offset in this node.</para>
  23686. </summary>
  23687. </member>
  23688. <member name="P:Godot.PathFollow2D.Offset">
  23689. <summary>
  23690. <para>The distance along the path in pixels.</para>
  23691. </summary>
  23692. </member>
  23693. <member name="P:Godot.PathFollow2D.UnitOffset">
  23694. <summary>
  23695. <para>The distance along the path as a number in the range 0.0 (for the first vertex) to 1.0 (for the last). This is just another way of expressing the offset within the path, as the offset supplied is multiplied internally by the path's length.</para>
  23696. </summary>
  23697. </member>
  23698. <member name="P:Godot.PathFollow2D.HOffset">
  23699. <summary>
  23700. <para>The node's offset along the curve.</para>
  23701. </summary>
  23702. </member>
  23703. <member name="P:Godot.PathFollow2D.VOffset">
  23704. <summary>
  23705. <para>The node's offset perpendicular to the curve.</para>
  23706. </summary>
  23707. </member>
  23708. <member name="P:Godot.PathFollow2D.Rotate">
  23709. <summary>
  23710. <para>If <c>true</c>, this node rotates to follow the path, making its descendants rotate.</para>
  23711. </summary>
  23712. </member>
  23713. <member name="P:Godot.PathFollow2D.CubicInterp">
  23714. <summary>
  23715. <para>If <c>true</c>, the position between two cached points is interpolated cubically, and linearly otherwise.</para>
  23716. <para>The points along the <see cref="T:Godot.Curve2D"/> of the <see cref="T:Godot.Path2D"/> are precomputed before use, for faster calculations. The point at the requested offset is then calculated interpolating between two adjacent cached points. This may present a problem if the curve makes sharp turns, as the cached points may not follow the curve closely enough.</para>
  23717. <para>There are two answers to this problem: either increase the number of cached points and increase memory consumption, or make a cubic interpolation between two points at the cost of (slightly) slower calculations.</para>
  23718. </summary>
  23719. </member>
  23720. <member name="P:Godot.PathFollow2D.Loop">
  23721. <summary>
  23722. <para>If <c>true</c>, any offset outside the path's length will wrap around, instead of stopping at the ends. Use it for cyclic paths.</para>
  23723. </summary>
  23724. </member>
  23725. <member name="P:Godot.PathFollow2D.Lookahead">
  23726. <summary>
  23727. <para>How far to look ahead of the curve to calculate the tangent if the node is rotating. E.g. shorter lookaheads will lead to faster rotations.</para>
  23728. </summary>
  23729. </member>
  23730. <member name="T:Godot.Performance">
  23731. <summary>
  23732. <para>This class provides access to a number of different monitors related to performance, such as memory usage, draw calls, and FPS. These are the same as the values displayed in the Monitor tab in the editor's Debugger panel. By using the <see cref="M:Godot.Performance.GetMonitor(Godot.Performance.Monitor)"/> method of this class, you can access this data from your code.</para>
  23733. <para>Note: A few of these monitors are only available in debug mode and will always return 0 when used in a release build.</para>
  23734. <para>Note: Many of these monitors are not updated in real-time, so there may be a short delay between changes.</para>
  23735. </summary>
  23736. </member>
  23737. <member name="F:Godot.Performance.Monitor.TimeFps">
  23738. <summary>
  23739. <para>Number of frames per second.</para>
  23740. </summary>
  23741. </member>
  23742. <member name="F:Godot.Performance.Monitor.TimeProcess">
  23743. <summary>
  23744. <para>Time it took to complete one frame, in seconds.</para>
  23745. </summary>
  23746. </member>
  23747. <member name="F:Godot.Performance.Monitor.TimePhysicsProcess">
  23748. <summary>
  23749. <para>Time it took to complete one physics frame, in seconds.</para>
  23750. </summary>
  23751. </member>
  23752. <member name="F:Godot.Performance.Monitor.MemoryStatic">
  23753. <summary>
  23754. <para>Static memory currently used, in bytes. Not available in release builds.</para>
  23755. </summary>
  23756. </member>
  23757. <member name="F:Godot.Performance.Monitor.MemoryDynamic">
  23758. <summary>
  23759. <para>Dynamic memory currently used, in bytes. Not available in release builds.</para>
  23760. </summary>
  23761. </member>
  23762. <member name="F:Godot.Performance.Monitor.MemoryStaticMax">
  23763. <summary>
  23764. <para>Available static memory. Not available in release builds.</para>
  23765. </summary>
  23766. </member>
  23767. <member name="F:Godot.Performance.Monitor.MemoryDynamicMax">
  23768. <summary>
  23769. <para>Available dynamic memory. Not available in release builds.</para>
  23770. </summary>
  23771. </member>
  23772. <member name="F:Godot.Performance.Monitor.MemoryMessageBufferMax">
  23773. <summary>
  23774. <para>Largest amount of memory the message queue buffer has used, in bytes. The message queue is used for deferred functions calls and notifications.</para>
  23775. </summary>
  23776. </member>
  23777. <member name="F:Godot.Performance.Monitor.ObjectCount">
  23778. <summary>
  23779. <para>Number of objects currently instanced (including nodes).</para>
  23780. </summary>
  23781. </member>
  23782. <member name="F:Godot.Performance.Monitor.ObjectResourceCount">
  23783. <summary>
  23784. <para>Number of resources currently used.</para>
  23785. </summary>
  23786. </member>
  23787. <member name="F:Godot.Performance.Monitor.ObjectNodeCount">
  23788. <summary>
  23789. <para>Number of nodes currently instanced in the scene tree. This also includes the root node.</para>
  23790. </summary>
  23791. </member>
  23792. <member name="F:Godot.Performance.Monitor.ObjectOrphanNodeCount">
  23793. <summary>
  23794. <para>Number of orphan nodes, i.e. nodes which are not parented to a node of the scene tree.</para>
  23795. </summary>
  23796. </member>
  23797. <member name="F:Godot.Performance.Monitor.RenderObjectsInFrame">
  23798. <summary>
  23799. <para>3D objects drawn per frame.</para>
  23800. </summary>
  23801. </member>
  23802. <member name="F:Godot.Performance.Monitor.RenderVerticesInFrame">
  23803. <summary>
  23804. <para>Vertices drawn per frame. 3D only.</para>
  23805. </summary>
  23806. </member>
  23807. <member name="F:Godot.Performance.Monitor.RenderMaterialChangesInFrame">
  23808. <summary>
  23809. <para>Material changes per frame. 3D only.</para>
  23810. </summary>
  23811. </member>
  23812. <member name="F:Godot.Performance.Monitor.RenderShaderChangesInFrame">
  23813. <summary>
  23814. <para>Shader changes per frame. 3D only.</para>
  23815. </summary>
  23816. </member>
  23817. <member name="F:Godot.Performance.Monitor.RenderSurfaceChangesInFrame">
  23818. <summary>
  23819. <para>Render surface changes per frame. 3D only.</para>
  23820. </summary>
  23821. </member>
  23822. <member name="F:Godot.Performance.Monitor.RenderDrawCallsInFrame">
  23823. <summary>
  23824. <para>Draw calls per frame. 3D only.</para>
  23825. </summary>
  23826. </member>
  23827. <member name="F:Godot.Performance.Monitor.Render2dItemsInFrame">
  23828. <summary>
  23829. <para>Items or joined items drawn per frame.</para>
  23830. </summary>
  23831. </member>
  23832. <member name="F:Godot.Performance.Monitor.Render2dDrawCallsInFrame">
  23833. <summary>
  23834. <para>Draw calls per frame.</para>
  23835. </summary>
  23836. </member>
  23837. <member name="F:Godot.Performance.Monitor.RenderVideoMemUsed">
  23838. <summary>
  23839. <para>The amount of video memory used, i.e. texture and vertex memory combined.</para>
  23840. </summary>
  23841. </member>
  23842. <member name="F:Godot.Performance.Monitor.RenderTextureMemUsed">
  23843. <summary>
  23844. <para>The amount of texture memory used.</para>
  23845. </summary>
  23846. </member>
  23847. <member name="F:Godot.Performance.Monitor.RenderVertexMemUsed">
  23848. <summary>
  23849. <para>The amount of vertex memory used.</para>
  23850. </summary>
  23851. </member>
  23852. <member name="F:Godot.Performance.Monitor.RenderUsageVideoMemTotal">
  23853. <summary>
  23854. <para>Unimplemented in the GLES2 and GLES3 rendering backends, always returns 0.</para>
  23855. </summary>
  23856. </member>
  23857. <member name="F:Godot.Performance.Monitor.Physics2dActiveObjects">
  23858. <summary>
  23859. <para>Number of active <see cref="T:Godot.RigidBody2D"/> nodes in the game.</para>
  23860. </summary>
  23861. </member>
  23862. <member name="F:Godot.Performance.Monitor.Physics2dCollisionPairs">
  23863. <summary>
  23864. <para>Number of collision pairs in the 2D physics engine.</para>
  23865. </summary>
  23866. </member>
  23867. <member name="F:Godot.Performance.Monitor.Physics2dIslandCount">
  23868. <summary>
  23869. <para>Number of islands in the 2D physics engine.</para>
  23870. </summary>
  23871. </member>
  23872. <member name="F:Godot.Performance.Monitor.Physics3dActiveObjects">
  23873. <summary>
  23874. <para>Number of active <see cref="T:Godot.RigidBody"/> and <see cref="T:Godot.VehicleBody"/> nodes in the game.</para>
  23875. </summary>
  23876. </member>
  23877. <member name="F:Godot.Performance.Monitor.Physics3dCollisionPairs">
  23878. <summary>
  23879. <para>Number of collision pairs in the 3D physics engine.</para>
  23880. </summary>
  23881. </member>
  23882. <member name="F:Godot.Performance.Monitor.Physics3dIslandCount">
  23883. <summary>
  23884. <para>Number of islands in the 3D physics engine.</para>
  23885. </summary>
  23886. </member>
  23887. <member name="F:Godot.Performance.Monitor.AudioOutputLatency">
  23888. <summary>
  23889. <para>Output latency of the <see cref="T:Godot.AudioServer"/>.</para>
  23890. </summary>
  23891. </member>
  23892. <member name="F:Godot.Performance.Monitor.MonitorMax">
  23893. <summary>
  23894. <para>Represents the size of the <see cref="T:Godot.Performance.Monitor"/> enum.</para>
  23895. </summary>
  23896. </member>
  23897. <member name="M:Godot.Performance.GetMonitor(Godot.Performance.Monitor)">
  23898. <summary>
  23899. <para>Returns the value of one of the available monitors. You should provide one of the <see cref="T:Godot.Performance.Monitor"/> constants as the argument, like this:</para>
  23900. <para><code>
  23901. print(Performance.get_monitor(Performance.TIME_FPS)) # Prints the FPS to the console
  23902. </code></para>
  23903. </summary>
  23904. </member>
  23905. <member name="T:Godot.Physics2DDirectBodyState">
  23906. <summary>
  23907. <para>Provides direct access to a physics body in the <see cref="T:Godot.Physics2DServer"/>, allowing safe changes to physics properties. This object is passed via the direct state callback of rigid/character bodies, and is intended for changing the direct state of that body. See <see cref="M:Godot.RigidBody2D._IntegrateForces(Godot.Physics2DDirectBodyState)"/>.</para>
  23908. </summary>
  23909. </member>
  23910. <member name="P:Godot.Physics2DDirectBodyState.Step">
  23911. <summary>
  23912. <para>The timestep (delta) used for the simulation.</para>
  23913. </summary>
  23914. </member>
  23915. <member name="P:Godot.Physics2DDirectBodyState.InverseMass">
  23916. <summary>
  23917. <para>The inverse of the mass of the body.</para>
  23918. </summary>
  23919. </member>
  23920. <member name="P:Godot.Physics2DDirectBodyState.InverseInertia">
  23921. <summary>
  23922. <para>The inverse of the inertia of the body.</para>
  23923. </summary>
  23924. </member>
  23925. <member name="P:Godot.Physics2DDirectBodyState.TotalAngularDamp">
  23926. <summary>
  23927. <para>The rate at which the body stops rotating, if there are not any other forces moving it.</para>
  23928. </summary>
  23929. </member>
  23930. <member name="P:Godot.Physics2DDirectBodyState.TotalLinearDamp">
  23931. <summary>
  23932. <para>The rate at which the body stops moving, if there are not any other forces moving it.</para>
  23933. </summary>
  23934. </member>
  23935. <member name="P:Godot.Physics2DDirectBodyState.TotalGravity">
  23936. <summary>
  23937. <para>The total gravity vector being currently applied to this body.</para>
  23938. </summary>
  23939. </member>
  23940. <member name="P:Godot.Physics2DDirectBodyState.AngularVelocity">
  23941. <summary>
  23942. <para>The body's rotational velocity.</para>
  23943. </summary>
  23944. </member>
  23945. <member name="P:Godot.Physics2DDirectBodyState.LinearVelocity">
  23946. <summary>
  23947. <para>The body's linear velocity.</para>
  23948. </summary>
  23949. </member>
  23950. <member name="P:Godot.Physics2DDirectBodyState.Sleeping">
  23951. <summary>
  23952. <para>If <c>true</c>, this body is currently sleeping (not active).</para>
  23953. </summary>
  23954. </member>
  23955. <member name="P:Godot.Physics2DDirectBodyState.Transform">
  23956. <summary>
  23957. <para>The body's transformation matrix.</para>
  23958. </summary>
  23959. </member>
  23960. <member name="M:Godot.Physics2DDirectBodyState.AddCentralForce(Godot.Vector2)">
  23961. <summary>
  23962. <para>Adds a constant directional force without affecting rotation.</para>
  23963. </summary>
  23964. </member>
  23965. <member name="M:Godot.Physics2DDirectBodyState.AddForce(Godot.Vector2,Godot.Vector2)">
  23966. <summary>
  23967. <para>Adds a positioned force to the body. Both the force and the offset from the body origin are in global coordinates.</para>
  23968. </summary>
  23969. </member>
  23970. <member name="M:Godot.Physics2DDirectBodyState.AddTorque(System.Single)">
  23971. <summary>
  23972. <para>Adds a constant rotational force.</para>
  23973. </summary>
  23974. </member>
  23975. <member name="M:Godot.Physics2DDirectBodyState.ApplyCentralImpulse(Godot.Vector2)">
  23976. <summary>
  23977. <para>Applies a directional impulse without affecting rotation.</para>
  23978. </summary>
  23979. </member>
  23980. <member name="M:Godot.Physics2DDirectBodyState.ApplyTorqueImpulse(System.Single)">
  23981. <summary>
  23982. <para>Applies a rotational impulse to the body.</para>
  23983. </summary>
  23984. </member>
  23985. <member name="M:Godot.Physics2DDirectBodyState.ApplyImpulse(Godot.Vector2,Godot.Vector2)">
  23986. <summary>
  23987. <para>Applies a positioned impulse to the body. An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason, it should only be used when simulating one-time impacts (use the "_force" functions otherwise). The offset uses the rotation of the global coordinate system, but is centered at the object's origin.</para>
  23988. </summary>
  23989. </member>
  23990. <member name="M:Godot.Physics2DDirectBodyState.GetContactCount">
  23991. <summary>
  23992. <para>Returns the number of contacts this body has with other bodies.</para>
  23993. <para>Note: By default, this returns 0 unless bodies are configured to monitor contacts. See <see cref="P:Godot.RigidBody2D.ContactMonitor"/>.</para>
  23994. </summary>
  23995. </member>
  23996. <member name="M:Godot.Physics2DDirectBodyState.GetContactLocalPosition(System.Int32)">
  23997. <summary>
  23998. <para>Returns the local position of the contact point.</para>
  23999. </summary>
  24000. </member>
  24001. <member name="M:Godot.Physics2DDirectBodyState.GetContactLocalNormal(System.Int32)">
  24002. <summary>
  24003. <para>Returns the local normal at the contact point.</para>
  24004. </summary>
  24005. </member>
  24006. <member name="M:Godot.Physics2DDirectBodyState.GetContactLocalShape(System.Int32)">
  24007. <summary>
  24008. <para>Returns the local shape index of the collision.</para>
  24009. </summary>
  24010. </member>
  24011. <member name="M:Godot.Physics2DDirectBodyState.GetContactCollider(System.Int32)">
  24012. <summary>
  24013. <para>Returns the collider's <see cref="T:Godot.RID"/>.</para>
  24014. </summary>
  24015. </member>
  24016. <member name="M:Godot.Physics2DDirectBodyState.GetContactColliderPosition(System.Int32)">
  24017. <summary>
  24018. <para>Returns the contact position in the collider.</para>
  24019. </summary>
  24020. </member>
  24021. <member name="M:Godot.Physics2DDirectBodyState.GetContactColliderId(System.Int32)">
  24022. <summary>
  24023. <para>Returns the collider's object id.</para>
  24024. </summary>
  24025. </member>
  24026. <member name="M:Godot.Physics2DDirectBodyState.GetContactColliderObject(System.Int32)">
  24027. <summary>
  24028. <para>Returns the collider object. This depends on how it was created (will return a scene node if such was used to create it).</para>
  24029. </summary>
  24030. </member>
  24031. <member name="M:Godot.Physics2DDirectBodyState.GetContactColliderShape(System.Int32)">
  24032. <summary>
  24033. <para>Returns the collider's shape index.</para>
  24034. </summary>
  24035. </member>
  24036. <member name="M:Godot.Physics2DDirectBodyState.GetContactColliderShapeMetadata(System.Int32)">
  24037. <summary>
  24038. <para>Returns the collided shape's metadata. This metadata is different from <see cref="M:Godot.Object.GetMeta(System.String)"/>, and is set with <see cref="M:Godot.Physics2DServer.ShapeSetData(Godot.RID,System.Object)"/>.</para>
  24039. </summary>
  24040. </member>
  24041. <member name="M:Godot.Physics2DDirectBodyState.GetContactColliderVelocityAtPosition(System.Int32)">
  24042. <summary>
  24043. <para>Returns the linear velocity vector at the collider's contact point.</para>
  24044. </summary>
  24045. </member>
  24046. <member name="M:Godot.Physics2DDirectBodyState.IntegrateForces">
  24047. <summary>
  24048. <para>Calls the built-in force integration code.</para>
  24049. </summary>
  24050. </member>
  24051. <member name="M:Godot.Physics2DDirectBodyState.GetSpaceState">
  24052. <summary>
  24053. <para>Returns the current state of the space, useful for queries.</para>
  24054. </summary>
  24055. </member>
  24056. <member name="T:Godot.Physics2DDirectSpaceState">
  24057. <summary>
  24058. <para>Direct access object to a space in the <see cref="T:Godot.Physics2DServer"/>. It's used mainly to do queries against objects and areas residing in a given space.</para>
  24059. </summary>
  24060. </member>
  24061. <member name="M:Godot.Physics2DDirectSpaceState.IntersectPoint(Godot.Vector2,System.Int32,Godot.Collections.Array,System.UInt32,System.Boolean,System.Boolean)">
  24062. <summary>
  24063. <para>Checks whether a point is inside any shape. The shapes the point is inside of are returned in an array containing dictionaries with the following fields:</para>
  24064. <para><c>collider</c>: The colliding object.</para>
  24065. <para><c>collider_id</c>: The colliding object's ID.</para>
  24066. <para><c>metadata</c>: The intersecting shape's metadata. This metadata is different from <see cref="M:Godot.Object.GetMeta(System.String)"/>, and is set with <see cref="M:Godot.Physics2DServer.ShapeSetData(Godot.RID,System.Object)"/>.</para>
  24067. <para><c>rid</c>: The intersecting object's <see cref="T:Godot.RID"/>.</para>
  24068. <para><c>shape</c>: The shape index of the colliding shape.</para>
  24069. <para>Additionally, the method can take an <c>exclude</c> array of objects or <see cref="T:Godot.RID"/>s that are to be excluded from collisions, a <c>collision_mask</c> bitmask representing the physics layers to check in, or booleans to determine if the ray should collide with <see cref="T:Godot.PhysicsBody"/>s or <see cref="T:Godot.Area"/>s, respectively.</para>
  24070. </summary>
  24071. <param name="exclude">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  24072. </member>
  24073. <member name="M:Godot.Physics2DDirectSpaceState.IntersectPointOnCanvas(Godot.Vector2,System.UInt64,System.Int32,Godot.Collections.Array,System.UInt32,System.Boolean,System.Boolean)">
  24074. <param name="exclude">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  24075. </member>
  24076. <member name="M:Godot.Physics2DDirectSpaceState.IntersectRay(Godot.Vector2,Godot.Vector2,Godot.Collections.Array,System.UInt32,System.Boolean,System.Boolean)">
  24077. <summary>
  24078. <para>Intersects a ray in a given space. The returned object is a dictionary with the following fields:</para>
  24079. <para><c>collider</c>: The colliding object.</para>
  24080. <para><c>collider_id</c>: The colliding object's ID.</para>
  24081. <para><c>metadata</c>: The intersecting shape's metadata. This metadata is different from <see cref="M:Godot.Object.GetMeta(System.String)"/>, and is set with <see cref="M:Godot.Physics2DServer.ShapeSetData(Godot.RID,System.Object)"/>.</para>
  24082. <para><c>normal</c>: The object's surface normal at the intersection point.</para>
  24083. <para><c>position</c>: The intersection point.</para>
  24084. <para><c>rid</c>: The intersecting object's <see cref="T:Godot.RID"/>.</para>
  24085. <para><c>shape</c>: The shape index of the colliding shape.</para>
  24086. <para>If the ray did not intersect anything, then an empty dictionary is returned instead.</para>
  24087. <para>Additionally, the method can take an <c>exclude</c> array of objects or <see cref="T:Godot.RID"/>s that are to be excluded from collisions, a <c>collision_mask</c> bitmask representing the physics layers to check in, or booleans to determine if the ray should collide with <see cref="T:Godot.PhysicsBody"/>s or <see cref="T:Godot.Area"/>s, respectively.</para>
  24088. </summary>
  24089. <param name="exclude">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  24090. </member>
  24091. <member name="M:Godot.Physics2DDirectSpaceState.IntersectShape(Godot.Physics2DShapeQueryParameters,System.Int32)">
  24092. <summary>
  24093. <para>Checks the intersections of a shape, given through a <see cref="T:Godot.Physics2DShapeQueryParameters"/> object, against the space.</para>
  24094. <para>Note: This method does not take into account the <c>motion</c> property of the object. The intersected shapes are returned in an array containing dictionaries with the following fields:</para>
  24095. <para><c>collider</c>: The colliding object.</para>
  24096. <para><c>collider_id</c>: The colliding object's ID.</para>
  24097. <para><c>metadata</c>: The intersecting shape's metadata. This metadata is different from <see cref="M:Godot.Object.GetMeta(System.String)"/>, and is set with <see cref="M:Godot.Physics2DServer.ShapeSetData(Godot.RID,System.Object)"/>.</para>
  24098. <para><c>rid</c>: The intersecting object's <see cref="T:Godot.RID"/>.</para>
  24099. <para><c>shape</c>: The shape index of the colliding shape.</para>
  24100. <para>The number of intersections can be limited with the <c>max_results</c> parameter, to reduce the processing time.</para>
  24101. </summary>
  24102. </member>
  24103. <member name="M:Godot.Physics2DDirectSpaceState.CastMotion(Godot.Physics2DShapeQueryParameters)">
  24104. <summary>
  24105. <para>Checks how far the shape can travel toward a point. If the shape can not move, the array will be empty.</para>
  24106. <para>Note: Both the shape and the motion are supplied through a <see cref="T:Godot.Physics2DShapeQueryParameters"/> object. The method will return an array with two floats between 0 and 1, both representing a fraction of <c>motion</c>. The first is how far the shape can move without triggering a collision, and the second is the point at which a collision will occur. If no collision is detected, the returned array will be <c>[1, 1]</c>.</para>
  24107. </summary>
  24108. </member>
  24109. <member name="M:Godot.Physics2DDirectSpaceState.CollideShape(Godot.Physics2DShapeQueryParameters,System.Int32)">
  24110. <summary>
  24111. <para>Checks the intersections of a shape, given through a <see cref="T:Godot.Physics2DShapeQueryParameters"/> object, against the space. The resulting array contains a list of points where the shape intersects another. Like with <see cref="M:Godot.Physics2DDirectSpaceState.IntersectShape(Godot.Physics2DShapeQueryParameters,System.Int32)"/>, the number of returned results can be limited to save processing time.</para>
  24112. </summary>
  24113. </member>
  24114. <member name="M:Godot.Physics2DDirectSpaceState.GetRestInfo(Godot.Physics2DShapeQueryParameters)">
  24115. <summary>
  24116. <para>Checks the intersections of a shape, given through a <see cref="T:Godot.Physics2DShapeQueryParameters"/> object, against the space. If it collides with more than one shape, the nearest one is selected. If the shape did not intersect anything, then an empty dictionary is returned instead.</para>
  24117. <para>Note: This method does not take into account the <c>motion</c> property of the object. The returned object is a dictionary containing the following fields:</para>
  24118. <para><c>collider_id</c>: The colliding object's ID.</para>
  24119. <para><c>linear_velocity</c>: The colliding object's velocity <see cref="T:Godot.Vector2"/>. If the object is an <see cref="T:Godot.Area2D"/>, the result is <c>(0, 0)</c>.</para>
  24120. <para><c>metadata</c>: The intersecting shape's metadata. This metadata is different from <see cref="M:Godot.Object.GetMeta(System.String)"/>, and is set with <see cref="M:Godot.Physics2DServer.ShapeSetData(Godot.RID,System.Object)"/>.</para>
  24121. <para><c>normal</c>: The object's surface normal at the intersection point.</para>
  24122. <para><c>point</c>: The intersection point.</para>
  24123. <para><c>rid</c>: The intersecting object's <see cref="T:Godot.RID"/>.</para>
  24124. <para><c>shape</c>: The shape index of the colliding shape.</para>
  24125. </summary>
  24126. </member>
  24127. <member name="T:Godot.Physics2DServer">
  24128. <summary>
  24129. <para>Physics2DServer is the server responsible for all 2D physics. It can create many kinds of physics objects, but does not insert them on the node tree.</para>
  24130. </summary>
  24131. </member>
  24132. <member name="F:Godot.Physics2DServer.ProcessInfo.ActiveObjects">
  24133. <summary>
  24134. <para>Constant to get the number of objects that are not sleeping.</para>
  24135. </summary>
  24136. </member>
  24137. <member name="F:Godot.Physics2DServer.ProcessInfo.CollisionPairs">
  24138. <summary>
  24139. <para>Constant to get the number of possible collisions.</para>
  24140. </summary>
  24141. </member>
  24142. <member name="F:Godot.Physics2DServer.ProcessInfo.IslandCount">
  24143. <summary>
  24144. <para>Constant to get the number of space regions where a collision could occur.</para>
  24145. </summary>
  24146. </member>
  24147. <member name="F:Godot.Physics2DServer.AreaBodyStatus.Added">
  24148. <summary>
  24149. <para>The value of the first parameter and area callback function receives, when an object enters one of its shapes.</para>
  24150. </summary>
  24151. </member>
  24152. <member name="F:Godot.Physics2DServer.AreaBodyStatus.Removed">
  24153. <summary>
  24154. <para>The value of the first parameter and area callback function receives, when an object exits one of its shapes.</para>
  24155. </summary>
  24156. </member>
  24157. <member name="F:Godot.Physics2DServer.DampedStringParam.RestLength">
  24158. <summary>
  24159. <para>Sets the resting length of the spring joint. The joint will always try to go to back this length when pulled apart.</para>
  24160. </summary>
  24161. </member>
  24162. <member name="F:Godot.Physics2DServer.DampedStringParam.Stiffness">
  24163. <summary>
  24164. <para>Sets the stiffness of the spring joint. The joint applies a force equal to the stiffness times the distance from its resting length.</para>
  24165. </summary>
  24166. </member>
  24167. <member name="F:Godot.Physics2DServer.DampedStringParam.Damping">
  24168. <summary>
  24169. <para>Sets the damping ratio of the spring joint. A value of 0 indicates an undamped spring, while 1 causes the system to reach equilibrium as fast as possible (critical damping).</para>
  24170. </summary>
  24171. </member>
  24172. <member name="F:Godot.Physics2DServer.BodyMode.Static">
  24173. <summary>
  24174. <para>Constant for static bodies.</para>
  24175. </summary>
  24176. </member>
  24177. <member name="F:Godot.Physics2DServer.BodyMode.Kinematic">
  24178. <summary>
  24179. <para>Constant for kinematic bodies.</para>
  24180. </summary>
  24181. </member>
  24182. <member name="F:Godot.Physics2DServer.BodyMode.Rigid">
  24183. <summary>
  24184. <para>Constant for rigid bodies.</para>
  24185. </summary>
  24186. </member>
  24187. <member name="F:Godot.Physics2DServer.BodyMode.Character">
  24188. <summary>
  24189. <para>Constant for rigid bodies in character mode. In this mode, a body can not rotate, and only its linear velocity is affected by physics.</para>
  24190. </summary>
  24191. </member>
  24192. <member name="F:Godot.Physics2DServer.ShapeType.Line">
  24193. <summary>
  24194. <para>This is the constant for creating line shapes. A line shape is an infinite line with an origin point, and a normal. Thus, it can be used for front/behind checks.</para>
  24195. </summary>
  24196. </member>
  24197. <member name="F:Godot.Physics2DServer.ShapeType.Segment">
  24198. <summary>
  24199. <para>This is the constant for creating segment shapes. A segment shape is a line from a point A to a point B. It can be checked for intersections.</para>
  24200. </summary>
  24201. </member>
  24202. <member name="F:Godot.Physics2DServer.ShapeType.Circle">
  24203. <summary>
  24204. <para>This is the constant for creating circle shapes. A circle shape only has a radius. It can be used for intersections and inside/outside checks.</para>
  24205. </summary>
  24206. </member>
  24207. <member name="F:Godot.Physics2DServer.ShapeType.Rectangle">
  24208. <summary>
  24209. <para>This is the constant for creating rectangle shapes. A rectangle shape is defined by a width and a height. It can be used for intersections and inside/outside checks.</para>
  24210. </summary>
  24211. </member>
  24212. <member name="F:Godot.Physics2DServer.ShapeType.Capsule">
  24213. <summary>
  24214. <para>This is the constant for creating capsule shapes. A capsule shape is defined by a radius and a length. It can be used for intersections and inside/outside checks.</para>
  24215. </summary>
  24216. </member>
  24217. <member name="F:Godot.Physics2DServer.ShapeType.ConvexPolygon">
  24218. <summary>
  24219. <para>This is the constant for creating convex polygon shapes. A polygon is defined by a list of points. It can be used for intersections and inside/outside checks. Unlike the <see cref="P:Godot.CollisionPolygon2D.Polygon"/> property, polygons modified with <see cref="M:Godot.Physics2DServer.ShapeSetData(Godot.RID,System.Object)"/> do not verify that the points supplied form is a convex polygon.</para>
  24220. </summary>
  24221. </member>
  24222. <member name="F:Godot.Physics2DServer.ShapeType.ConcavePolygon">
  24223. <summary>
  24224. <para>This is the constant for creating concave polygon shapes. A polygon is defined by a list of points. It can be used for intersections checks, but not for inside/outside checks.</para>
  24225. </summary>
  24226. </member>
  24227. <member name="F:Godot.Physics2DServer.ShapeType.Custom">
  24228. <summary>
  24229. <para>This constant is used internally by the engine. Any attempt to create this kind of shape results in an error.</para>
  24230. </summary>
  24231. </member>
  24232. <member name="F:Godot.Physics2DServer.SpaceParameter.ContactRecycleRadius">
  24233. <summary>
  24234. <para>Constant to set/get the maximum distance a pair of bodies has to move before their collision status has to be recalculated.</para>
  24235. </summary>
  24236. </member>
  24237. <member name="F:Godot.Physics2DServer.SpaceParameter.ContactMaxSeparation">
  24238. <summary>
  24239. <para>Constant to set/get the maximum distance a shape can be from another before they are considered separated.</para>
  24240. </summary>
  24241. </member>
  24242. <member name="F:Godot.Physics2DServer.SpaceParameter.BodyMaxAllowedPenetration">
  24243. <summary>
  24244. <para>Constant to set/get the maximum distance a shape can penetrate another shape before it is considered a collision.</para>
  24245. </summary>
  24246. </member>
  24247. <member name="F:Godot.Physics2DServer.SpaceParameter.BodyLinearVelocitySleepThreshold">
  24248. <summary>
  24249. <para>Constant to set/get the threshold linear velocity of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after the time given.</para>
  24250. </summary>
  24251. </member>
  24252. <member name="F:Godot.Physics2DServer.SpaceParameter.BodyAngularVelocitySleepThreshold">
  24253. <summary>
  24254. <para>Constant to set/get the threshold angular velocity of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after the time given.</para>
  24255. </summary>
  24256. </member>
  24257. <member name="F:Godot.Physics2DServer.SpaceParameter.BodyTimeToSleep">
  24258. <summary>
  24259. <para>Constant to set/get the maximum time of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after this time.</para>
  24260. </summary>
  24261. </member>
  24262. <member name="F:Godot.Physics2DServer.SpaceParameter.ConstraintDefaultBias">
  24263. <summary>
  24264. <para>Constant to set/get the default solver bias for all physics constraints. A solver bias is a factor controlling how much two objects "rebound", after violating a constraint, to avoid leaving them in that state because of numerical imprecision.</para>
  24265. </summary>
  24266. </member>
  24267. <member name="F:Godot.Physics2DServer.JointType.Pin">
  24268. <summary>
  24269. <para>Constant to create pin joints.</para>
  24270. </summary>
  24271. </member>
  24272. <member name="F:Godot.Physics2DServer.JointType.Groove">
  24273. <summary>
  24274. <para>Constant to create groove joints.</para>
  24275. </summary>
  24276. </member>
  24277. <member name="F:Godot.Physics2DServer.JointType.DampedSpring">
  24278. <summary>
  24279. <para>Constant to create damped spring joints.</para>
  24280. </summary>
  24281. </member>
  24282. <member name="F:Godot.Physics2DServer.CCDMode.Disabled">
  24283. <summary>
  24284. <para>Disables continuous collision detection. This is the fastest way to detect body collisions, but can miss small, fast-moving objects.</para>
  24285. </summary>
  24286. </member>
  24287. <member name="F:Godot.Physics2DServer.CCDMode.CastRay">
  24288. <summary>
  24289. <para>Enables continuous collision detection by raycasting. It is faster than shapecasting, but less precise.</para>
  24290. </summary>
  24291. </member>
  24292. <member name="F:Godot.Physics2DServer.CCDMode.CastShape">
  24293. <summary>
  24294. <para>Enables continuous collision detection by shapecasting. It is the slowest CCD method, and the most precise.</para>
  24295. </summary>
  24296. </member>
  24297. <member name="F:Godot.Physics2DServer.BodyState.Transform">
  24298. <summary>
  24299. <para>Constant to set/get the current transform matrix of the body.</para>
  24300. </summary>
  24301. </member>
  24302. <member name="F:Godot.Physics2DServer.BodyState.LinearVelocity">
  24303. <summary>
  24304. <para>Constant to set/get the current linear velocity of the body.</para>
  24305. </summary>
  24306. </member>
  24307. <member name="F:Godot.Physics2DServer.BodyState.AngularVelocity">
  24308. <summary>
  24309. <para>Constant to set/get the current angular velocity of the body.</para>
  24310. </summary>
  24311. </member>
  24312. <member name="F:Godot.Physics2DServer.BodyState.Sleeping">
  24313. <summary>
  24314. <para>Constant to sleep/wake up a body, or to get whether it is sleeping.</para>
  24315. </summary>
  24316. </member>
  24317. <member name="F:Godot.Physics2DServer.BodyState.CanSleep">
  24318. <summary>
  24319. <para>Constant to set/get whether the body can sleep.</para>
  24320. </summary>
  24321. </member>
  24322. <member name="F:Godot.Physics2DServer.BodyParameter.Bounce">
  24323. <summary>
  24324. <para>Constant to set/get a body's bounce factor.</para>
  24325. </summary>
  24326. </member>
  24327. <member name="F:Godot.Physics2DServer.BodyParameter.Friction">
  24328. <summary>
  24329. <para>Constant to set/get a body's friction.</para>
  24330. </summary>
  24331. </member>
  24332. <member name="F:Godot.Physics2DServer.BodyParameter.Mass">
  24333. <summary>
  24334. <para>Constant to set/get a body's mass.</para>
  24335. </summary>
  24336. </member>
  24337. <member name="F:Godot.Physics2DServer.BodyParameter.Inertia">
  24338. <summary>
  24339. <para>Constant to set/get a body's inertia.</para>
  24340. </summary>
  24341. </member>
  24342. <member name="F:Godot.Physics2DServer.BodyParameter.GravityScale">
  24343. <summary>
  24344. <para>Constant to set/get a body's gravity multiplier.</para>
  24345. </summary>
  24346. </member>
  24347. <member name="F:Godot.Physics2DServer.BodyParameter.LinearDamp">
  24348. <summary>
  24349. <para>Constant to set/get a body's linear dampening factor.</para>
  24350. </summary>
  24351. </member>
  24352. <member name="F:Godot.Physics2DServer.BodyParameter.AngularDamp">
  24353. <summary>
  24354. <para>Constant to set/get a body's angular dampening factor.</para>
  24355. </summary>
  24356. </member>
  24357. <member name="F:Godot.Physics2DServer.BodyParameter.Max">
  24358. <summary>
  24359. <para>Represents the size of the <see cref="T:Godot.Physics2DServer.BodyParameter"/> enum.</para>
  24360. </summary>
  24361. </member>
  24362. <member name="F:Godot.Physics2DServer.AreaSpaceOverrideMode.Disabled">
  24363. <summary>
  24364. <para>This area does not affect gravity/damp. These are generally areas that exist only to detect collisions, and objects entering or exiting them.</para>
  24365. </summary>
  24366. </member>
  24367. <member name="F:Godot.Physics2DServer.AreaSpaceOverrideMode.Combine">
  24368. <summary>
  24369. <para>This area adds its gravity/damp values to whatever has been calculated so far. This way, many overlapping areas can combine their physics to make interesting effects.</para>
  24370. </summary>
  24371. </member>
  24372. <member name="F:Godot.Physics2DServer.AreaSpaceOverrideMode.CombineReplace">
  24373. <summary>
  24374. <para>This area adds its gravity/damp values to whatever has been calculated so far. Then stops taking into account the rest of the areas, even the default one.</para>
  24375. </summary>
  24376. </member>
  24377. <member name="F:Godot.Physics2DServer.AreaSpaceOverrideMode.Replace">
  24378. <summary>
  24379. <para>This area replaces any gravity/damp, even the default one, and stops taking into account the rest of the areas.</para>
  24380. </summary>
  24381. </member>
  24382. <member name="F:Godot.Physics2DServer.AreaSpaceOverrideMode.ReplaceCombine">
  24383. <summary>
  24384. <para>This area replaces any gravity/damp calculated so far, but keeps calculating the rest of the areas, down to the default one.</para>
  24385. </summary>
  24386. </member>
  24387. <member name="F:Godot.Physics2DServer.AreaParameter.Gravity">
  24388. <summary>
  24389. <para>Constant to set/get gravity strength in an area.</para>
  24390. </summary>
  24391. </member>
  24392. <member name="F:Godot.Physics2DServer.AreaParameter.GravityVector">
  24393. <summary>
  24394. <para>Constant to set/get gravity vector/center in an area.</para>
  24395. </summary>
  24396. </member>
  24397. <member name="F:Godot.Physics2DServer.AreaParameter.GravityIsPoint">
  24398. <summary>
  24399. <para>Constant to set/get whether the gravity vector of an area is a direction, or a center point.</para>
  24400. </summary>
  24401. </member>
  24402. <member name="F:Godot.Physics2DServer.AreaParameter.GravityDistanceScale">
  24403. <summary>
  24404. <para>Constant to set/get the falloff factor for point gravity of an area. The greater this value is, the faster the strength of gravity decreases with the square of distance.</para>
  24405. </summary>
  24406. </member>
  24407. <member name="F:Godot.Physics2DServer.AreaParameter.GravityPointAttenuation">
  24408. <summary>
  24409. <para>This constant was used to set/get the falloff factor for point gravity. It has been superseded by .</para>
  24410. </summary>
  24411. </member>
  24412. <member name="F:Godot.Physics2DServer.AreaParameter.LinearDamp">
  24413. <summary>
  24414. <para>Constant to set/get the linear dampening factor of an area.</para>
  24415. </summary>
  24416. </member>
  24417. <member name="F:Godot.Physics2DServer.AreaParameter.AngularDamp">
  24418. <summary>
  24419. <para>Constant to set/get the angular dampening factor of an area.</para>
  24420. </summary>
  24421. </member>
  24422. <member name="F:Godot.Physics2DServer.AreaParameter.Priority">
  24423. <summary>
  24424. <para>Constant to set/get the priority (order of processing) of an area.</para>
  24425. </summary>
  24426. </member>
  24427. <member name="M:Godot.Physics2DServer.ShapeSetData(Godot.RID,System.Object)">
  24428. <summary>
  24429. <para>Sets the shape data that defines its shape and size. The data to be passed depends on the kind of shape created <see cref="M:Godot.Physics2DServer.ShapeGetType(Godot.RID)"/>.</para>
  24430. </summary>
  24431. </member>
  24432. <member name="M:Godot.Physics2DServer.ShapeGetType(Godot.RID)">
  24433. <summary>
  24434. <para>Returns a shape's type (see <see cref="T:Godot.Physics2DServer.ShapeType"/>).</para>
  24435. </summary>
  24436. </member>
  24437. <member name="M:Godot.Physics2DServer.ShapeGetData(Godot.RID)">
  24438. <summary>
  24439. <para>Returns the shape data.</para>
  24440. </summary>
  24441. </member>
  24442. <member name="M:Godot.Physics2DServer.SpaceCreate">
  24443. <summary>
  24444. <para>Creates a space. A space is a collection of parameters for the physics engine that can be assigned to an area or a body. It can be assigned to an area with <see cref="M:Godot.Physics2DServer.AreaSetSpace(Godot.RID,Godot.RID)"/>, or to a body with <see cref="M:Godot.Physics2DServer.BodySetSpace(Godot.RID,Godot.RID)"/>.</para>
  24445. </summary>
  24446. </member>
  24447. <member name="M:Godot.Physics2DServer.SpaceSetActive(Godot.RID,System.Boolean)">
  24448. <summary>
  24449. <para>Marks a space as active. It will not have an effect, unless it is assigned to an area or body.</para>
  24450. </summary>
  24451. </member>
  24452. <member name="M:Godot.Physics2DServer.SpaceIsActive(Godot.RID)">
  24453. <summary>
  24454. <para>Returns whether the space is active.</para>
  24455. </summary>
  24456. </member>
  24457. <member name="M:Godot.Physics2DServer.SpaceSetParam(Godot.RID,Godot.Physics2DServer.SpaceParameter,System.Single)">
  24458. <summary>
  24459. <para>Sets the value for a space parameter. See <see cref="T:Godot.Physics2DServer.SpaceParameter"/> for a list of available parameters.</para>
  24460. </summary>
  24461. </member>
  24462. <member name="M:Godot.Physics2DServer.SpaceGetParam(Godot.RID,Godot.Physics2DServer.SpaceParameter)">
  24463. <summary>
  24464. <para>Returns the value of a space parameter.</para>
  24465. </summary>
  24466. </member>
  24467. <member name="M:Godot.Physics2DServer.SpaceGetDirectState(Godot.RID)">
  24468. <summary>
  24469. <para>Returns the state of a space, a <see cref="T:Godot.Physics2DDirectSpaceState"/>. This object can be used to make collision/intersection queries.</para>
  24470. </summary>
  24471. </member>
  24472. <member name="M:Godot.Physics2DServer.AreaCreate">
  24473. <summary>
  24474. <para>Creates an <see cref="T:Godot.Area2D"/>.</para>
  24475. </summary>
  24476. </member>
  24477. <member name="M:Godot.Physics2DServer.AreaSetSpace(Godot.RID,Godot.RID)">
  24478. <summary>
  24479. <para>Assigns a space to the area.</para>
  24480. </summary>
  24481. </member>
  24482. <member name="M:Godot.Physics2DServer.AreaGetSpace(Godot.RID)">
  24483. <summary>
  24484. <para>Returns the space assigned to the area.</para>
  24485. </summary>
  24486. </member>
  24487. <member name="M:Godot.Physics2DServer.AreaSetSpaceOverrideMode(Godot.RID,Godot.Physics2DServer.AreaSpaceOverrideMode)">
  24488. <summary>
  24489. <para>Sets the space override mode for the area. See <see cref="T:Godot.Physics2DServer.AreaSpaceOverrideMode"/> for a list of available modes.</para>
  24490. </summary>
  24491. </member>
  24492. <member name="M:Godot.Physics2DServer.AreaGetSpaceOverrideMode(Godot.RID)">
  24493. <summary>
  24494. <para>Returns the space override mode for the area.</para>
  24495. </summary>
  24496. </member>
  24497. <member name="M:Godot.Physics2DServer.AreaAddShape(Godot.RID,Godot.RID,System.Nullable{Godot.Transform2D},System.Boolean)">
  24498. <summary>
  24499. <para>Adds a shape to the area, along with a transform matrix. Shapes are usually referenced by their index, so you should track which shape has a given index.</para>
  24500. </summary>
  24501. <param name="transform">If the parameter is null, then the default value is Transform2D.Identity</param>
  24502. </member>
  24503. <member name="M:Godot.Physics2DServer.AreaSetShape(Godot.RID,System.Int32,Godot.RID)">
  24504. <summary>
  24505. <para>Substitutes a given area shape by another. The old shape is selected by its index, the new one by its <see cref="T:Godot.RID"/>.</para>
  24506. </summary>
  24507. </member>
  24508. <member name="M:Godot.Physics2DServer.AreaSetShapeTransform(Godot.RID,System.Int32,Godot.Transform2D)">
  24509. <summary>
  24510. <para>Sets the transform matrix for an area shape.</para>
  24511. </summary>
  24512. </member>
  24513. <member name="M:Godot.Physics2DServer.AreaSetShapeDisabled(Godot.RID,System.Int32,System.Boolean)">
  24514. <summary>
  24515. <para>Disables a given shape in an area.</para>
  24516. </summary>
  24517. </member>
  24518. <member name="M:Godot.Physics2DServer.AreaGetShapeCount(Godot.RID)">
  24519. <summary>
  24520. <para>Returns the number of shapes assigned to an area.</para>
  24521. </summary>
  24522. </member>
  24523. <member name="M:Godot.Physics2DServer.AreaGetShape(Godot.RID,System.Int32)">
  24524. <summary>
  24525. <para>Returns the <see cref="T:Godot.RID"/> of the nth shape of an area.</para>
  24526. </summary>
  24527. </member>
  24528. <member name="M:Godot.Physics2DServer.AreaGetShapeTransform(Godot.RID,System.Int32)">
  24529. <summary>
  24530. <para>Returns the transform matrix of a shape within an area.</para>
  24531. </summary>
  24532. </member>
  24533. <member name="M:Godot.Physics2DServer.AreaRemoveShape(Godot.RID,System.Int32)">
  24534. <summary>
  24535. <para>Removes a shape from an area. It does not delete the shape, so it can be reassigned later.</para>
  24536. </summary>
  24537. </member>
  24538. <member name="M:Godot.Physics2DServer.AreaClearShapes(Godot.RID)">
  24539. <summary>
  24540. <para>Removes all shapes from an area. It does not delete the shapes, so they can be reassigned later.</para>
  24541. </summary>
  24542. </member>
  24543. <member name="M:Godot.Physics2DServer.AreaSetCollisionLayer(Godot.RID,System.UInt32)">
  24544. <summary>
  24545. <para>Assigns the area to one or many physics layers.</para>
  24546. </summary>
  24547. </member>
  24548. <member name="M:Godot.Physics2DServer.AreaSetCollisionMask(Godot.RID,System.UInt32)">
  24549. <summary>
  24550. <para>Sets which physics layers the area will monitor.</para>
  24551. </summary>
  24552. </member>
  24553. <member name="M:Godot.Physics2DServer.AreaSetParam(Godot.RID,Godot.Physics2DServer.AreaParameter,System.Object)">
  24554. <summary>
  24555. <para>Sets the value for an area parameter. See <see cref="T:Godot.Physics2DServer.AreaParameter"/> for a list of available parameters.</para>
  24556. </summary>
  24557. </member>
  24558. <member name="M:Godot.Physics2DServer.AreaSetTransform(Godot.RID,Godot.Transform2D)">
  24559. <summary>
  24560. <para>Sets the transform matrix for an area.</para>
  24561. </summary>
  24562. </member>
  24563. <member name="M:Godot.Physics2DServer.AreaGetParam(Godot.RID,Godot.Physics2DServer.AreaParameter)">
  24564. <summary>
  24565. <para>Returns an area parameter value. See <see cref="T:Godot.Physics2DServer.AreaParameter"/> for a list of available parameters.</para>
  24566. </summary>
  24567. </member>
  24568. <member name="M:Godot.Physics2DServer.AreaGetTransform(Godot.RID)">
  24569. <summary>
  24570. <para>Returns the transform matrix for an area.</para>
  24571. </summary>
  24572. </member>
  24573. <member name="M:Godot.Physics2DServer.AreaAttachObjectInstanceId(Godot.RID,System.UInt64)">
  24574. <summary>
  24575. <para>Assigns the area to a descendant of <see cref="T:Godot.Object"/>, so it can exist in the node tree.</para>
  24576. </summary>
  24577. </member>
  24578. <member name="M:Godot.Physics2DServer.AreaGetObjectInstanceId(Godot.RID)">
  24579. <summary>
  24580. <para>Gets the instance ID of the object the area is assigned to.</para>
  24581. </summary>
  24582. </member>
  24583. <member name="M:Godot.Physics2DServer.AreaSetMonitorCallback(Godot.RID,Godot.Object,System.String)">
  24584. <summary>
  24585. <para>Sets the function to call when any body/area enters or exits the area. This callback will be called for any object interacting with the area, and takes five parameters:</para>
  24586. <para>1: or , depending on whether the object entered or exited the area.</para>
  24587. <para>2: <see cref="T:Godot.RID"/> of the object that entered/exited the area.</para>
  24588. <para>3: Instance ID of the object that entered/exited the area.</para>
  24589. <para>4: The shape index of the object that entered/exited the area.</para>
  24590. <para>5: The shape index of the area where the object entered/exited.</para>
  24591. </summary>
  24592. </member>
  24593. <member name="M:Godot.Physics2DServer.BodyCreate">
  24594. <summary>
  24595. <para>Creates a physics body.</para>
  24596. </summary>
  24597. </member>
  24598. <member name="M:Godot.Physics2DServer.BodySetSpace(Godot.RID,Godot.RID)">
  24599. <summary>
  24600. <para>Assigns a space to the body (see <see cref="M:Godot.Physics2DServer.SpaceCreate"/>).</para>
  24601. </summary>
  24602. </member>
  24603. <member name="M:Godot.Physics2DServer.BodyGetSpace(Godot.RID)">
  24604. <summary>
  24605. <para>Returns the <see cref="T:Godot.RID"/> of the space assigned to a body.</para>
  24606. </summary>
  24607. </member>
  24608. <member name="M:Godot.Physics2DServer.BodySetMode(Godot.RID,Godot.Physics2DServer.BodyMode)">
  24609. <summary>
  24610. <para>Sets the body mode using one of the <see cref="T:Godot.Physics2DServer.BodyMode"/> constants.</para>
  24611. </summary>
  24612. </member>
  24613. <member name="M:Godot.Physics2DServer.BodyGetMode(Godot.RID)">
  24614. <summary>
  24615. <para>Returns the body mode.</para>
  24616. </summary>
  24617. </member>
  24618. <member name="M:Godot.Physics2DServer.BodyAddShape(Godot.RID,Godot.RID,System.Nullable{Godot.Transform2D},System.Boolean)">
  24619. <summary>
  24620. <para>Adds a shape to the body, along with a transform matrix. Shapes are usually referenced by their index, so you should track which shape has a given index.</para>
  24621. </summary>
  24622. <param name="transform">If the parameter is null, then the default value is Transform2D.Identity</param>
  24623. </member>
  24624. <member name="M:Godot.Physics2DServer.BodySetShape(Godot.RID,System.Int32,Godot.RID)">
  24625. <summary>
  24626. <para>Substitutes a given body shape by another. The old shape is selected by its index, the new one by its <see cref="T:Godot.RID"/>.</para>
  24627. </summary>
  24628. </member>
  24629. <member name="M:Godot.Physics2DServer.BodySetShapeTransform(Godot.RID,System.Int32,Godot.Transform2D)">
  24630. <summary>
  24631. <para>Sets the transform matrix for a body shape.</para>
  24632. </summary>
  24633. </member>
  24634. <member name="M:Godot.Physics2DServer.BodySetShapeMetadata(Godot.RID,System.Int32,System.Object)">
  24635. <summary>
  24636. <para>Sets metadata of a shape within a body. This metadata is different from <see cref="M:Godot.Object.SetMeta(System.String,System.Object)"/>, and can be retrieved on shape queries.</para>
  24637. </summary>
  24638. </member>
  24639. <member name="M:Godot.Physics2DServer.BodyGetShapeCount(Godot.RID)">
  24640. <summary>
  24641. <para>Returns the number of shapes assigned to a body.</para>
  24642. </summary>
  24643. </member>
  24644. <member name="M:Godot.Physics2DServer.BodyGetShape(Godot.RID,System.Int32)">
  24645. <summary>
  24646. <para>Returns the <see cref="T:Godot.RID"/> of the nth shape of a body.</para>
  24647. </summary>
  24648. </member>
  24649. <member name="M:Godot.Physics2DServer.BodyGetShapeTransform(Godot.RID,System.Int32)">
  24650. <summary>
  24651. <para>Returns the transform matrix of a body shape.</para>
  24652. </summary>
  24653. </member>
  24654. <member name="M:Godot.Physics2DServer.BodyGetShapeMetadata(Godot.RID,System.Int32)">
  24655. <summary>
  24656. <para>Returns the metadata of a shape of a body.</para>
  24657. </summary>
  24658. </member>
  24659. <member name="M:Godot.Physics2DServer.BodyRemoveShape(Godot.RID,System.Int32)">
  24660. <summary>
  24661. <para>Removes a shape from a body. The shape is not deleted, so it can be reused afterwards.</para>
  24662. </summary>
  24663. </member>
  24664. <member name="M:Godot.Physics2DServer.BodyClearShapes(Godot.RID)">
  24665. <summary>
  24666. <para>Removes all shapes from a body.</para>
  24667. </summary>
  24668. </member>
  24669. <member name="M:Godot.Physics2DServer.BodySetShapeDisabled(Godot.RID,System.Int32,System.Boolean)">
  24670. <summary>
  24671. <para>Disables shape in body if <c>disable</c> is <c>true</c>.</para>
  24672. </summary>
  24673. </member>
  24674. <member name="M:Godot.Physics2DServer.BodySetShapeAsOneWayCollision(Godot.RID,System.Int32,System.Boolean,System.Single)">
  24675. <summary>
  24676. <para>Enables one way collision on body if <c>enable</c> is <c>true</c>.</para>
  24677. </summary>
  24678. </member>
  24679. <member name="M:Godot.Physics2DServer.BodyAttachObjectInstanceId(Godot.RID,System.UInt32)">
  24680. <summary>
  24681. <para>Assigns the area to a descendant of <see cref="T:Godot.Object"/>, so it can exist in the node tree.</para>
  24682. </summary>
  24683. </member>
  24684. <member name="M:Godot.Physics2DServer.BodyGetObjectInstanceId(Godot.RID)">
  24685. <summary>
  24686. <para>Gets the instance ID of the object the area is assigned to.</para>
  24687. </summary>
  24688. </member>
  24689. <member name="M:Godot.Physics2DServer.BodySetContinuousCollisionDetectionMode(Godot.RID,Godot.Physics2DServer.CCDMode)">
  24690. <summary>
  24691. <para>Sets the continuous collision detection mode using one of the <see cref="T:Godot.Physics2DServer.CCDMode"/> constants.</para>
  24692. <para>Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided.</para>
  24693. </summary>
  24694. </member>
  24695. <member name="M:Godot.Physics2DServer.BodyGetContinuousCollisionDetectionMode(Godot.RID)">
  24696. <summary>
  24697. <para>Returns the continuous collision detection mode.</para>
  24698. </summary>
  24699. </member>
  24700. <member name="M:Godot.Physics2DServer.BodySetCollisionLayer(Godot.RID,System.UInt32)">
  24701. <summary>
  24702. <para>Sets the physics layer or layers a body belongs to.</para>
  24703. </summary>
  24704. </member>
  24705. <member name="M:Godot.Physics2DServer.BodyGetCollisionLayer(Godot.RID)">
  24706. <summary>
  24707. <para>Returns the physics layer or layers a body belongs to.</para>
  24708. </summary>
  24709. </member>
  24710. <member name="M:Godot.Physics2DServer.BodySetCollisionMask(Godot.RID,System.UInt32)">
  24711. <summary>
  24712. <para>Sets the physics layer or layers a body can collide with.</para>
  24713. </summary>
  24714. </member>
  24715. <member name="M:Godot.Physics2DServer.BodyGetCollisionMask(Godot.RID)">
  24716. <summary>
  24717. <para>Returns the physics layer or layers a body can collide with.</para>
  24718. </summary>
  24719. </member>
  24720. <member name="M:Godot.Physics2DServer.BodySetParam(Godot.RID,Godot.Physics2DServer.BodyParameter,System.Single)">
  24721. <summary>
  24722. <para>Sets a body parameter. See <see cref="T:Godot.Physics2DServer.BodyParameter"/> for a list of available parameters.</para>
  24723. </summary>
  24724. </member>
  24725. <member name="M:Godot.Physics2DServer.BodyGetParam(Godot.RID,Godot.Physics2DServer.BodyParameter)">
  24726. <summary>
  24727. <para>Returns the value of a body parameter. See <see cref="T:Godot.Physics2DServer.BodyParameter"/> for a list of available parameters.</para>
  24728. </summary>
  24729. </member>
  24730. <member name="M:Godot.Physics2DServer.BodySetState(Godot.RID,Godot.Physics2DServer.BodyState,System.Object)">
  24731. <summary>
  24732. <para>Sets a body state using one of the <see cref="T:Godot.Physics2DServer.BodyState"/> constants.</para>
  24733. </summary>
  24734. </member>
  24735. <member name="M:Godot.Physics2DServer.BodyGetState(Godot.RID,Godot.Physics2DServer.BodyState)">
  24736. <summary>
  24737. <para>Returns a body state.</para>
  24738. </summary>
  24739. </member>
  24740. <member name="M:Godot.Physics2DServer.BodyApplyImpulse(Godot.RID,Godot.Vector2,Godot.Vector2)">
  24741. <summary>
  24742. <para>Adds a positioned impulse to the applied force and torque. Both the force and the offset from the body origin are in global coordinates.</para>
  24743. </summary>
  24744. </member>
  24745. <member name="M:Godot.Physics2DServer.BodyAddForce(Godot.RID,Godot.Vector2,Godot.Vector2)">
  24746. <summary>
  24747. <para>Adds a positioned force to the applied force and torque. As with <see cref="M:Godot.Physics2DServer.BodyApplyImpulse(Godot.RID,Godot.Vector2,Godot.Vector2)"/>, both the force and the offset from the body origin are in global coordinates. A force differs from an impulse in that, while the two are forces, the impulse clears itself after being applied.</para>
  24748. </summary>
  24749. </member>
  24750. <member name="M:Godot.Physics2DServer.BodySetAxisVelocity(Godot.RID,Godot.Vector2)">
  24751. <summary>
  24752. <para>Sets an axis velocity. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior.</para>
  24753. </summary>
  24754. </member>
  24755. <member name="M:Godot.Physics2DServer.BodyAddCollisionException(Godot.RID,Godot.RID)">
  24756. <summary>
  24757. <para>Adds a body to the list of bodies exempt from collisions.</para>
  24758. </summary>
  24759. </member>
  24760. <member name="M:Godot.Physics2DServer.BodyRemoveCollisionException(Godot.RID,Godot.RID)">
  24761. <summary>
  24762. <para>Removes a body from the list of bodies exempt from collisions.</para>
  24763. </summary>
  24764. </member>
  24765. <member name="M:Godot.Physics2DServer.BodySetMaxContactsReported(Godot.RID,System.Int32)">
  24766. <summary>
  24767. <para>Sets the maximum contacts to report. Bodies can keep a log of the contacts with other bodies, this is enabled by setting the maximum amount of contacts reported to a number greater than 0.</para>
  24768. </summary>
  24769. </member>
  24770. <member name="M:Godot.Physics2DServer.BodyGetMaxContactsReported(Godot.RID)">
  24771. <summary>
  24772. <para>Returns the maximum contacts that can be reported. See <see cref="M:Godot.Physics2DServer.BodySetMaxContactsReported(Godot.RID,System.Int32)"/>.</para>
  24773. </summary>
  24774. </member>
  24775. <member name="M:Godot.Physics2DServer.BodySetOmitForceIntegration(Godot.RID,System.Boolean)">
  24776. <summary>
  24777. <para>Sets whether a body uses a callback function to calculate its own physics (see <see cref="M:Godot.Physics2DServer.BodySetForceIntegrationCallback(Godot.RID,Godot.Object,System.String,System.Object)"/>).</para>
  24778. </summary>
  24779. </member>
  24780. <member name="M:Godot.Physics2DServer.BodyIsOmittingForceIntegration(Godot.RID)">
  24781. <summary>
  24782. <para>Returns whether a body uses a callback function to calculate its own physics (see <see cref="M:Godot.Physics2DServer.BodySetForceIntegrationCallback(Godot.RID,Godot.Object,System.String,System.Object)"/>).</para>
  24783. </summary>
  24784. </member>
  24785. <member name="M:Godot.Physics2DServer.BodySetForceIntegrationCallback(Godot.RID,Godot.Object,System.String,System.Object)">
  24786. <summary>
  24787. <para>Sets the function used to calculate physics for an object, if that object allows it (see <see cref="M:Godot.Physics2DServer.BodySetOmitForceIntegration(Godot.RID,System.Boolean)"/>).</para>
  24788. </summary>
  24789. </member>
  24790. <member name="M:Godot.Physics2DServer.BodyTestMotion(Godot.RID,Godot.Transform2D,Godot.Vector2,System.Boolean,System.Single,Godot.Physics2DTestMotionResult)">
  24791. <summary>
  24792. <para>Returns <c>true</c> if a collision would result from moving in the given direction from a given point in space. Margin increases the size of the shapes involved in the collision detection. <see cref="T:Godot.Physics2DTestMotionResult"/> can be passed to return additional information in.</para>
  24793. </summary>
  24794. </member>
  24795. <member name="M:Godot.Physics2DServer.BodyGetDirectState(Godot.RID)">
  24796. <summary>
  24797. <para>Returns the <see cref="T:Godot.Physics2DDirectBodyState"/> of the body.</para>
  24798. </summary>
  24799. </member>
  24800. <member name="M:Godot.Physics2DServer.JointSetParam(Godot.RID,Godot.Physics2DServer.JointParam,System.Single)">
  24801. <summary>
  24802. <para>Sets a joint parameter. See <see cref="T:Godot.Physics2DServer.JointParam"/> for a list of available parameters.</para>
  24803. </summary>
  24804. </member>
  24805. <member name="M:Godot.Physics2DServer.JointGetParam(Godot.RID,Godot.Physics2DServer.JointParam)">
  24806. <summary>
  24807. <para>Returns the value of a joint parameter.</para>
  24808. </summary>
  24809. </member>
  24810. <member name="M:Godot.Physics2DServer.PinJointCreate(Godot.Vector2,Godot.RID,Godot.RID)">
  24811. <summary>
  24812. <para>Creates a pin joint between two bodies. If not specified, the second body is assumed to be the joint itself.</para>
  24813. </summary>
  24814. </member>
  24815. <member name="M:Godot.Physics2DServer.GrooveJointCreate(Godot.Vector2,Godot.Vector2,Godot.Vector2,Godot.RID,Godot.RID)">
  24816. <summary>
  24817. <para>Creates a groove joint between two bodies. If not specified, the bodies are assumed to be the joint itself.</para>
  24818. </summary>
  24819. </member>
  24820. <member name="M:Godot.Physics2DServer.DampedSpringJointCreate(Godot.Vector2,Godot.Vector2,Godot.RID,Godot.RID)">
  24821. <summary>
  24822. <para>Creates a damped spring joint between two bodies. If not specified, the second body is assumed to be the joint itself.</para>
  24823. </summary>
  24824. </member>
  24825. <member name="M:Godot.Physics2DServer.DampedStringJointSetParam(Godot.RID,Godot.Physics2DServer.DampedStringParam,System.Single)">
  24826. <summary>
  24827. <para>Sets a damped spring joint parameter. See <see cref="T:Godot.Physics2DServer.DampedStringParam"/> for a list of available parameters.</para>
  24828. </summary>
  24829. </member>
  24830. <member name="M:Godot.Physics2DServer.DampedStringJointGetParam(Godot.RID,Godot.Physics2DServer.DampedStringParam)">
  24831. <summary>
  24832. <para>Returns the value of a damped spring joint parameter.</para>
  24833. </summary>
  24834. </member>
  24835. <member name="M:Godot.Physics2DServer.JointGetType(Godot.RID)">
  24836. <summary>
  24837. <para>Returns a joint's type (see <see cref="T:Godot.Physics2DServer.JointType"/>).</para>
  24838. </summary>
  24839. </member>
  24840. <member name="M:Godot.Physics2DServer.FreeRid(Godot.RID)">
  24841. <summary>
  24842. <para>Destroys any of the objects created by Physics2DServer. If the <see cref="T:Godot.RID"/> passed is not one of the objects that can be created by Physics2DServer, an error will be sent to the console.</para>
  24843. </summary>
  24844. </member>
  24845. <member name="M:Godot.Physics2DServer.SetActive(System.Boolean)">
  24846. <summary>
  24847. <para>Activates or deactivates the 2D physics engine.</para>
  24848. </summary>
  24849. </member>
  24850. <member name="M:Godot.Physics2DServer.GetProcessInfo(Godot.Physics2DServer.ProcessInfo)">
  24851. <summary>
  24852. <para>Returns information about the current state of the 2D physics engine. See <see cref="T:Godot.Physics2DServer.ProcessInfo"/> for a list of available states.</para>
  24853. </summary>
  24854. </member>
  24855. <member name="T:Godot.Physics2DShapeQueryParameters">
  24856. <summary>
  24857. <para>This class contains the shape and other parameters for 2D intersection/collision queries. See also <see cref="T:Godot.Physics2DShapeQueryResult"/>.</para>
  24858. </summary>
  24859. </member>
  24860. <member name="P:Godot.Physics2DShapeQueryParameters.CollisionLayer">
  24861. <summary>
  24862. <para>The physics layer(s) the query will take into account (as a bitmask).</para>
  24863. </summary>
  24864. </member>
  24865. <member name="P:Godot.Physics2DShapeQueryParameters.Exclude">
  24866. <summary>
  24867. <para>The list of objects or object <see cref="T:Godot.RID"/>s that will be excluded from collisions.</para>
  24868. </summary>
  24869. </member>
  24870. <member name="P:Godot.Physics2DShapeQueryParameters.Margin">
  24871. <summary>
  24872. <para>The collision margin for the shape.</para>
  24873. </summary>
  24874. </member>
  24875. <member name="P:Godot.Physics2DShapeQueryParameters.Motion">
  24876. <summary>
  24877. <para>The motion of the shape being queried for.</para>
  24878. </summary>
  24879. </member>
  24880. <member name="P:Godot.Physics2DShapeQueryParameters.ShapeRid">
  24881. <summary>
  24882. <para>The queried shape's <see cref="T:Godot.RID"/>. See also <see cref="M:Godot.Physics2DShapeQueryParameters.SetShape(Godot.Resource)"/>.</para>
  24883. </summary>
  24884. </member>
  24885. <member name="P:Godot.Physics2DShapeQueryParameters.Transform">
  24886. <summary>
  24887. <para>The queried shape's transform matrix.</para>
  24888. </summary>
  24889. </member>
  24890. <member name="P:Godot.Physics2DShapeQueryParameters.CollideWithBodies">
  24891. <summary>
  24892. <para>If <c>true</c>, the query will take <see cref="T:Godot.PhysicsBody2D"/>s into account.</para>
  24893. </summary>
  24894. </member>
  24895. <member name="P:Godot.Physics2DShapeQueryParameters.CollideWithAreas">
  24896. <summary>
  24897. <para>If <c>true</c>, the query will take <see cref="T:Godot.Area2D"/>s into account.</para>
  24898. </summary>
  24899. </member>
  24900. <member name="M:Godot.Physics2DShapeQueryParameters.SetShape(Godot.Resource)">
  24901. <summary>
  24902. <para>Sets the <see cref="T:Godot.Shape2D"/> that will be used for collision/intersection queries.</para>
  24903. </summary>
  24904. </member>
  24905. <member name="T:Godot.Physics2DShapeQueryResult">
  24906. <summary>
  24907. <para>The result of a 2D shape query in <see cref="T:Godot.Physics2DServer"/>. See also <see cref="T:Godot.Physics2DShapeQueryParameters"/>.</para>
  24908. </summary>
  24909. </member>
  24910. <member name="M:Godot.Physics2DShapeQueryResult.GetResultCount">
  24911. <summary>
  24912. <para>Returns the number of objects that intersected with the shape.</para>
  24913. </summary>
  24914. </member>
  24915. <member name="M:Godot.Physics2DShapeQueryResult.GetResultRid(System.Int32)">
  24916. <summary>
  24917. <para>Returns the <see cref="T:Godot.RID"/> of the object that intersected with the shape at index <c>idx</c>.</para>
  24918. </summary>
  24919. </member>
  24920. <member name="M:Godot.Physics2DShapeQueryResult.GetResultObjectId(System.Int32)">
  24921. <summary>
  24922. <para>Returns the instance ID of the <see cref="T:Godot.Object"/> that intersected with the shape at index <c>idx</c>.</para>
  24923. </summary>
  24924. </member>
  24925. <member name="M:Godot.Physics2DShapeQueryResult.GetResultObject(System.Int32)">
  24926. <summary>
  24927. <para>Returns the <see cref="T:Godot.Object"/> that intersected with the shape at index <c>idx</c>.</para>
  24928. </summary>
  24929. </member>
  24930. <member name="M:Godot.Physics2DShapeQueryResult.GetResultObjectShape(System.Int32)">
  24931. <summary>
  24932. <para>Returns the child index of the object's <see cref="T:Godot.Shape"/> that intersected with the shape at index <c>idx</c>.</para>
  24933. </summary>
  24934. </member>
  24935. <member name="T:Godot.PhysicsBody">
  24936. <summary>
  24937. <para>PhysicsBody is an abstract base class for implementing a physics body. All *Body types inherit from it.</para>
  24938. </summary>
  24939. </member>
  24940. <member name="P:Godot.PhysicsBody.CollisionLayer">
  24941. <summary>
  24942. <para>The physics layers this area is in.</para>
  24943. <para>Collidable objects can exist in any of 32 different layers. These layers work like a tagging system, and are not visual. A collidable can use these layers to select with which objects it can collide, using the <see cref="P:Godot.PhysicsBody.CollisionMask"/> property.</para>
  24944. <para>A contact is detected if object A is in any of the layers that object B scans, or object B is in any layer scanned by object A.</para>
  24945. </summary>
  24946. </member>
  24947. <member name="P:Godot.PhysicsBody.CollisionMask">
  24948. <summary>
  24949. <para>The physics layers this area scans for collisions.</para>
  24950. </summary>
  24951. </member>
  24952. <member name="M:Godot.PhysicsBody.SetCollisionMaskBit(System.Int32,System.Boolean)">
  24953. <summary>
  24954. <para>Sets individual bits on the <see cref="P:Godot.PhysicsBody.CollisionMask"/> bitmask. Use this if you only need to change one layer's value.</para>
  24955. </summary>
  24956. </member>
  24957. <member name="M:Godot.PhysicsBody.GetCollisionMaskBit(System.Int32)">
  24958. <summary>
  24959. <para>Returns an individual bit on the <see cref="P:Godot.PhysicsBody.CollisionMask"/>.</para>
  24960. </summary>
  24961. </member>
  24962. <member name="M:Godot.PhysicsBody.SetCollisionLayerBit(System.Int32,System.Boolean)">
  24963. <summary>
  24964. <para>Sets individual bits on the <see cref="P:Godot.PhysicsBody.CollisionLayer"/> bitmask. Use this if you only need to change one layer's value.</para>
  24965. </summary>
  24966. </member>
  24967. <member name="M:Godot.PhysicsBody.GetCollisionLayerBit(System.Int32)">
  24968. <summary>
  24969. <para>Returns an individual bit on the <see cref="P:Godot.PhysicsBody.CollisionLayer"/>.</para>
  24970. </summary>
  24971. </member>
  24972. <member name="M:Godot.PhysicsBody.GetCollisionExceptions">
  24973. <summary>
  24974. <para>Returns an array of nodes that were added as collision exceptions for this body.</para>
  24975. </summary>
  24976. </member>
  24977. <member name="M:Godot.PhysicsBody.AddCollisionExceptionWith(Godot.Node)">
  24978. <summary>
  24979. <para>Adds a body to the list of bodies that this body can't collide with.</para>
  24980. </summary>
  24981. </member>
  24982. <member name="M:Godot.PhysicsBody.RemoveCollisionExceptionWith(Godot.Node)">
  24983. <summary>
  24984. <para>Removes a body from the list of bodies that this body can't collide with.</para>
  24985. </summary>
  24986. </member>
  24987. <member name="T:Godot.PhysicsBody2D">
  24988. <summary>
  24989. <para>PhysicsBody2D is an abstract base class for implementing a physics body. All *Body2D types inherit from it.</para>
  24990. </summary>
  24991. </member>
  24992. <member name="P:Godot.PhysicsBody2D.Layers">
  24993. <summary>
  24994. <para>Both <see cref="P:Godot.PhysicsBody2D.CollisionLayer"/> and <see cref="P:Godot.PhysicsBody2D.CollisionMask"/>. Returns <see cref="P:Godot.PhysicsBody2D.CollisionLayer"/> when accessed. Updates <see cref="P:Godot.PhysicsBody2D.CollisionLayer"/> and <see cref="P:Godot.PhysicsBody2D.CollisionMask"/> when modified.</para>
  24995. </summary>
  24996. </member>
  24997. <member name="P:Godot.PhysicsBody2D.CollisionLayer">
  24998. <summary>
  24999. <para>The physics layers this area is in.</para>
  25000. <para>Collidable objects can exist in any of 32 different layers. These layers work like a tagging system, and are not visual. A collidable can use these layers to select with which objects it can collide, using the <see cref="P:Godot.PhysicsBody2D.CollisionMask"/> property.</para>
  25001. <para>A contact is detected if object A is in any of the layers that object B scans, or object B is in any layer scanned by object A.</para>
  25002. </summary>
  25003. </member>
  25004. <member name="P:Godot.PhysicsBody2D.CollisionMask">
  25005. <summary>
  25006. <para>The physics layers this area scans for collisions.</para>
  25007. </summary>
  25008. </member>
  25009. <member name="M:Godot.PhysicsBody2D.SetCollisionMaskBit(System.Int32,System.Boolean)">
  25010. <summary>
  25011. <para>Sets individual bits on the <see cref="P:Godot.PhysicsBody2D.CollisionMask"/> bitmask. Use this if you only need to change one layer's value.</para>
  25012. </summary>
  25013. </member>
  25014. <member name="M:Godot.PhysicsBody2D.GetCollisionMaskBit(System.Int32)">
  25015. <summary>
  25016. <para>Returns an individual bit on the <see cref="P:Godot.PhysicsBody2D.CollisionMask"/>.</para>
  25017. </summary>
  25018. </member>
  25019. <member name="M:Godot.PhysicsBody2D.SetCollisionLayerBit(System.Int32,System.Boolean)">
  25020. <summary>
  25021. <para>Sets individual bits on the <see cref="P:Godot.PhysicsBody2D.CollisionLayer"/> bitmask. Use this if you only need to change one layer's value.</para>
  25022. </summary>
  25023. </member>
  25024. <member name="M:Godot.PhysicsBody2D.GetCollisionLayerBit(System.Int32)">
  25025. <summary>
  25026. <para>Returns an individual bit on the <see cref="P:Godot.PhysicsBody2D.CollisionLayer"/>.</para>
  25027. </summary>
  25028. </member>
  25029. <member name="M:Godot.PhysicsBody2D.GetCollisionExceptions">
  25030. <summary>
  25031. <para>Returns an array of nodes that were added as collision exceptions for this body.</para>
  25032. </summary>
  25033. </member>
  25034. <member name="M:Godot.PhysicsBody2D.AddCollisionExceptionWith(Godot.Node)">
  25035. <summary>
  25036. <para>Adds a body to the list of bodies that this body can't collide with.</para>
  25037. </summary>
  25038. </member>
  25039. <member name="M:Godot.PhysicsBody2D.RemoveCollisionExceptionWith(Godot.Node)">
  25040. <summary>
  25041. <para>Removes a body from the list of bodies that this body can't collide with.</para>
  25042. </summary>
  25043. </member>
  25044. <member name="T:Godot.PhysicsDirectBodyState">
  25045. <summary>
  25046. <para>Provides direct access to a physics body in the <see cref="T:Godot.PhysicsServer"/>, allowing safe changes to physics properties. This object is passed via the direct state callback of rigid/character bodies, and is intended for changing the direct state of that body. See <see cref="M:Godot.RigidBody._IntegrateForces(Godot.PhysicsDirectBodyState)"/>.</para>
  25047. </summary>
  25048. </member>
  25049. <member name="P:Godot.PhysicsDirectBodyState.Step">
  25050. <summary>
  25051. <para>The timestep (delta) used for the simulation.</para>
  25052. </summary>
  25053. </member>
  25054. <member name="P:Godot.PhysicsDirectBodyState.InverseMass">
  25055. <summary>
  25056. <para>The inverse of the mass of the body.</para>
  25057. </summary>
  25058. </member>
  25059. <member name="P:Godot.PhysicsDirectBodyState.TotalAngularDamp">
  25060. <summary>
  25061. <para>The rate at which the body stops rotating, if there are not any other forces moving it.</para>
  25062. </summary>
  25063. </member>
  25064. <member name="P:Godot.PhysicsDirectBodyState.TotalLinearDamp">
  25065. <summary>
  25066. <para>The rate at which the body stops moving, if there are not any other forces moving it.</para>
  25067. </summary>
  25068. </member>
  25069. <member name="P:Godot.PhysicsDirectBodyState.InverseInertia">
  25070. <summary>
  25071. <para>The inverse of the inertia of the body.</para>
  25072. </summary>
  25073. </member>
  25074. <member name="P:Godot.PhysicsDirectBodyState.TotalGravity">
  25075. <summary>
  25076. <para>The total gravity vector being currently applied to this body.</para>
  25077. </summary>
  25078. </member>
  25079. <member name="P:Godot.PhysicsDirectBodyState.AngularVelocity">
  25080. <summary>
  25081. <para>The body's rotational velocity.</para>
  25082. </summary>
  25083. </member>
  25084. <member name="P:Godot.PhysicsDirectBodyState.LinearVelocity">
  25085. <summary>
  25086. <para>The body's linear velocity.</para>
  25087. </summary>
  25088. </member>
  25089. <member name="P:Godot.PhysicsDirectBodyState.Sleeping">
  25090. <summary>
  25091. <para>If <c>true</c>, this body is currently sleeping (not active).</para>
  25092. </summary>
  25093. </member>
  25094. <member name="P:Godot.PhysicsDirectBodyState.Transform">
  25095. <summary>
  25096. <para>The body's transformation matrix.</para>
  25097. </summary>
  25098. </member>
  25099. <member name="M:Godot.PhysicsDirectBodyState.AddCentralForce(Godot.Vector3)">
  25100. <summary>
  25101. <para>Adds a constant directional force without affecting rotation.</para>
  25102. <para>This is equivalent to <c>add_force(force, Vector3(0,0,0))</c>.</para>
  25103. </summary>
  25104. </member>
  25105. <member name="M:Godot.PhysicsDirectBodyState.AddForce(Godot.Vector3,Godot.Vector3)">
  25106. <summary>
  25107. <para>Adds a positioned force to the body. Both the force and the offset from the body origin are in global coordinates.</para>
  25108. </summary>
  25109. </member>
  25110. <member name="M:Godot.PhysicsDirectBodyState.AddTorque(Godot.Vector3)">
  25111. <summary>
  25112. <para>Adds a constant rotational force without affecting position.</para>
  25113. </summary>
  25114. </member>
  25115. <member name="M:Godot.PhysicsDirectBodyState.ApplyCentralImpulse(Godot.Vector3)">
  25116. <summary>
  25117. <para>Applies a single directional impulse without affecting rotation.</para>
  25118. <para>This is equivalent to <c>apply_impulse(Vector3(0, 0, 0), impulse)</c>.</para>
  25119. </summary>
  25120. </member>
  25121. <member name="M:Godot.PhysicsDirectBodyState.ApplyImpulse(Godot.Vector3,Godot.Vector3)">
  25122. <summary>
  25123. <para>Applies a positioned impulse to the body. An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason it should only be used when simulating one-time impacts. The position uses the rotation of the global coordinate system, but is centered at the object's origin.</para>
  25124. </summary>
  25125. </member>
  25126. <member name="M:Godot.PhysicsDirectBodyState.ApplyTorqueImpulse(Godot.Vector3)">
  25127. <summary>
  25128. <para>Apply a torque impulse (which will be affected by the body mass and shape). This will rotate the body around the vector <c>j</c> passed as parameter.</para>
  25129. </summary>
  25130. </member>
  25131. <member name="M:Godot.PhysicsDirectBodyState.GetContactCount">
  25132. <summary>
  25133. <para>Returns the number of contacts this body has with other bodies.</para>
  25134. <para>Note: By default, this returns 0 unless bodies are configured to monitor contacts. See <see cref="P:Godot.RigidBody.ContactMonitor"/>.</para>
  25135. </summary>
  25136. </member>
  25137. <member name="M:Godot.PhysicsDirectBodyState.GetContactLocalPosition(System.Int32)">
  25138. <summary>
  25139. <para>Returns the local position of the contact point.</para>
  25140. </summary>
  25141. </member>
  25142. <member name="M:Godot.PhysicsDirectBodyState.GetContactLocalNormal(System.Int32)">
  25143. <summary>
  25144. <para>Returns the local normal at the contact point.</para>
  25145. </summary>
  25146. </member>
  25147. <member name="M:Godot.PhysicsDirectBodyState.GetContactImpulse(System.Int32)">
  25148. <summary>
  25149. <para>Impulse created by the contact. Only implemented for Bullet physics.</para>
  25150. </summary>
  25151. </member>
  25152. <member name="M:Godot.PhysicsDirectBodyState.GetContactLocalShape(System.Int32)">
  25153. <summary>
  25154. <para>Returns the local shape index of the collision.</para>
  25155. </summary>
  25156. </member>
  25157. <member name="M:Godot.PhysicsDirectBodyState.GetContactCollider(System.Int32)">
  25158. <summary>
  25159. <para>Returns the collider's <see cref="T:Godot.RID"/>.</para>
  25160. </summary>
  25161. </member>
  25162. <member name="M:Godot.PhysicsDirectBodyState.GetContactColliderPosition(System.Int32)">
  25163. <summary>
  25164. <para>Returns the contact position in the collider.</para>
  25165. </summary>
  25166. </member>
  25167. <member name="M:Godot.PhysicsDirectBodyState.GetContactColliderId(System.Int32)">
  25168. <summary>
  25169. <para>Returns the collider's object id.</para>
  25170. </summary>
  25171. </member>
  25172. <member name="M:Godot.PhysicsDirectBodyState.GetContactColliderObject(System.Int32)">
  25173. <summary>
  25174. <para>Returns the collider object.</para>
  25175. </summary>
  25176. </member>
  25177. <member name="M:Godot.PhysicsDirectBodyState.GetContactColliderShape(System.Int32)">
  25178. <summary>
  25179. <para>Returns the collider's shape index.</para>
  25180. </summary>
  25181. </member>
  25182. <member name="M:Godot.PhysicsDirectBodyState.GetContactColliderVelocityAtPosition(System.Int32)">
  25183. <summary>
  25184. <para>Returns the linear velocity vector at the collider's contact point.</para>
  25185. </summary>
  25186. </member>
  25187. <member name="M:Godot.PhysicsDirectBodyState.IntegrateForces">
  25188. <summary>
  25189. <para>Calls the built-in force integration code.</para>
  25190. </summary>
  25191. </member>
  25192. <member name="M:Godot.PhysicsDirectBodyState.GetSpaceState">
  25193. <summary>
  25194. <para>Returns the current state of the space, useful for queries.</para>
  25195. </summary>
  25196. </member>
  25197. <member name="T:Godot.PhysicsDirectSpaceState">
  25198. <summary>
  25199. <para>Direct access object to a space in the <see cref="T:Godot.PhysicsServer"/>. It's used mainly to do queries against objects and areas residing in a given space.</para>
  25200. </summary>
  25201. </member>
  25202. <member name="M:Godot.PhysicsDirectSpaceState.IntersectRay(Godot.Vector3,Godot.Vector3,Godot.Collections.Array,System.UInt32,System.Boolean,System.Boolean)">
  25203. <summary>
  25204. <para>Intersects a ray in a given space. The returned object is a dictionary with the following fields:</para>
  25205. <para><c>collider</c>: The colliding object.</para>
  25206. <para><c>collider_id</c>: The colliding object's ID.</para>
  25207. <para><c>normal</c>: The object's surface normal at the intersection point.</para>
  25208. <para><c>position</c>: The intersection point.</para>
  25209. <para><c>rid</c>: The intersecting object's <see cref="T:Godot.RID"/>.</para>
  25210. <para><c>shape</c>: The shape index of the colliding shape.</para>
  25211. <para>If the ray did not intersect anything, then an empty dictionary is returned instead.</para>
  25212. <para>Additionally, the method can take an <c>exclude</c> array of objects or <see cref="T:Godot.RID"/>s that are to be excluded from collisions, a <c>collision_mask</c> bitmask representing the physics layers to check in, or booleans to determine if the ray should collide with <see cref="T:Godot.PhysicsBody"/>s or <see cref="T:Godot.Area"/>s, respectively.</para>
  25213. </summary>
  25214. <param name="exclude">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  25215. </member>
  25216. <member name="M:Godot.PhysicsDirectSpaceState.IntersectShape(Godot.PhysicsShapeQueryParameters,System.Int32)">
  25217. <summary>
  25218. <para>Checks the intersections of a shape, given through a <see cref="T:Godot.PhysicsShapeQueryParameters"/> object, against the space. The intersected shapes are returned in an array containing dictionaries with the following fields:</para>
  25219. <para><c>collider</c>: The colliding object.</para>
  25220. <para><c>collider_id</c>: The colliding object's ID.</para>
  25221. <para><c>rid</c>: The intersecting object's <see cref="T:Godot.RID"/>.</para>
  25222. <para><c>shape</c>: The shape index of the colliding shape.</para>
  25223. <para>The number of intersections can be limited with the <c>max_results</c> parameter, to reduce the processing time.</para>
  25224. </summary>
  25225. </member>
  25226. <member name="M:Godot.PhysicsDirectSpaceState.CastMotion(Godot.PhysicsShapeQueryParameters,Godot.Vector3)">
  25227. <summary>
  25228. <para>Checks whether the shape can travel to a point. The method will return an array with two floats between 0 and 1, both representing a fraction of <c>motion</c>. The first is how far the shape can move without triggering a collision, and the second is the point at which a collision will occur. If no collision is detected, the returned array will be <c>[1, 1]</c>.</para>
  25229. <para>If the shape can not move, the returned array will be <c>[0, 0]</c> under Bullet, and empty under GodotPhysics.</para>
  25230. </summary>
  25231. </member>
  25232. <member name="M:Godot.PhysicsDirectSpaceState.CollideShape(Godot.PhysicsShapeQueryParameters,System.Int32)">
  25233. <summary>
  25234. <para>Checks the intersections of a shape, given through a <see cref="T:Godot.PhysicsShapeQueryParameters"/> object, against the space. The resulting array contains a list of points where the shape intersects another. Like with <see cref="M:Godot.PhysicsDirectSpaceState.IntersectShape(Godot.PhysicsShapeQueryParameters,System.Int32)"/>, the number of returned results can be limited to save processing time.</para>
  25235. </summary>
  25236. </member>
  25237. <member name="M:Godot.PhysicsDirectSpaceState.GetRestInfo(Godot.PhysicsShapeQueryParameters)">
  25238. <summary>
  25239. <para>Checks the intersections of a shape, given through a <see cref="T:Godot.PhysicsShapeQueryParameters"/> object, against the space. If it collides with more than one shape, the nearest one is selected. The returned object is a dictionary containing the following fields:</para>
  25240. <para><c>collider_id</c>: The colliding object's ID.</para>
  25241. <para><c>linear_velocity</c>: The colliding object's velocity <see cref="T:Godot.Vector3"/>. If the object is an <see cref="T:Godot.Area"/>, the result is <c>(0, 0, 0)</c>.</para>
  25242. <para><c>normal</c>: The object's surface normal at the intersection point.</para>
  25243. <para><c>point</c>: The intersection point.</para>
  25244. <para><c>rid</c>: The intersecting object's <see cref="T:Godot.RID"/>.</para>
  25245. <para><c>shape</c>: The shape index of the colliding shape.</para>
  25246. <para>If the shape did not intersect anything, then an empty dictionary is returned instead.</para>
  25247. </summary>
  25248. </member>
  25249. <member name="T:Godot.PhysicsMaterial">
  25250. <summary>
  25251. <para>Provides a means of modifying the collision properties of a <see cref="T:Godot.PhysicsBody"/>.</para>
  25252. </summary>
  25253. </member>
  25254. <member name="P:Godot.PhysicsMaterial.Friction">
  25255. <summary>
  25256. <para>The body's friction. Values range from <c>0</c> (frictionless) to <c>1</c> (maximum friction).</para>
  25257. </summary>
  25258. </member>
  25259. <member name="P:Godot.PhysicsMaterial.Rough">
  25260. <summary>
  25261. <para>If <c>true</c>, the physics engine will use the friction of the object marked as "rough" when two objects collide. If <c>false</c>, the physics engine will use the lowest friction of all colliding objects instead. If <c>true</c> for both colliding objects, the physics engine will use the highest friction.</para>
  25262. </summary>
  25263. </member>
  25264. <member name="P:Godot.PhysicsMaterial.Bounce">
  25265. <summary>
  25266. <para>The body's bounciness. Values range from <c>0</c> (no bounce) to <c>1</c> (full bounciness).</para>
  25267. </summary>
  25268. </member>
  25269. <member name="P:Godot.PhysicsMaterial.Absorbent">
  25270. <summary>
  25271. <para>If <c>true</c>, subtracts the bounciness from the colliding object's bounciness instead of adding it.</para>
  25272. </summary>
  25273. </member>
  25274. <member name="T:Godot.PhysicsServer">
  25275. <summary>
  25276. <para>PhysicsServer is the server responsible for all 3D physics. It can create many kinds of physics objects, but does not insert them on the node tree.</para>
  25277. </summary>
  25278. </member>
  25279. <member name="F:Godot.PhysicsServer.ProcessInfo.ActiveObjects">
  25280. <summary>
  25281. <para>Constant to get the number of objects that are not sleeping.</para>
  25282. </summary>
  25283. </member>
  25284. <member name="F:Godot.PhysicsServer.ProcessInfo.CollisionPairs">
  25285. <summary>
  25286. <para>Constant to get the number of possible collisions.</para>
  25287. </summary>
  25288. </member>
  25289. <member name="F:Godot.PhysicsServer.ProcessInfo.IslandCount">
  25290. <summary>
  25291. <para>Constant to get the number of space regions where a collision could occur.</para>
  25292. </summary>
  25293. </member>
  25294. <member name="F:Godot.PhysicsServer.AreaBodyStatus.Added">
  25295. <summary>
  25296. <para>The value of the first parameter and area callback function receives, when an object enters one of its shapes.</para>
  25297. </summary>
  25298. </member>
  25299. <member name="F:Godot.PhysicsServer.AreaBodyStatus.Removed">
  25300. <summary>
  25301. <para>The value of the first parameter and area callback function receives, when an object exits one of its shapes.</para>
  25302. </summary>
  25303. </member>
  25304. <member name="F:Godot.PhysicsServer.BodyMode.Static">
  25305. <summary>
  25306. <para>Constant for static bodies.</para>
  25307. </summary>
  25308. </member>
  25309. <member name="F:Godot.PhysicsServer.BodyMode.Kinematic">
  25310. <summary>
  25311. <para>Constant for kinematic bodies.</para>
  25312. </summary>
  25313. </member>
  25314. <member name="F:Godot.PhysicsServer.BodyMode.Rigid">
  25315. <summary>
  25316. <para>Constant for rigid bodies.</para>
  25317. </summary>
  25318. </member>
  25319. <member name="F:Godot.PhysicsServer.BodyMode.Character">
  25320. <summary>
  25321. <para>Constant for rigid bodies in character mode. In this mode, a body can not rotate, and only its linear velocity is affected by physics.</para>
  25322. </summary>
  25323. </member>
  25324. <member name="F:Godot.PhysicsServer.ShapeType.Plane">
  25325. <summary>
  25326. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.PlaneShape"/>.</para>
  25327. </summary>
  25328. </member>
  25329. <member name="F:Godot.PhysicsServer.ShapeType.Ray">
  25330. <summary>
  25331. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.RayShape"/>.</para>
  25332. </summary>
  25333. </member>
  25334. <member name="F:Godot.PhysicsServer.ShapeType.Sphere">
  25335. <summary>
  25336. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.SphereShape"/>.</para>
  25337. </summary>
  25338. </member>
  25339. <member name="F:Godot.PhysicsServer.ShapeType.Box">
  25340. <summary>
  25341. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.BoxShape"/>.</para>
  25342. </summary>
  25343. </member>
  25344. <member name="F:Godot.PhysicsServer.ShapeType.Capsule">
  25345. <summary>
  25346. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.CapsuleShape"/>.</para>
  25347. </summary>
  25348. </member>
  25349. <member name="F:Godot.PhysicsServer.ShapeType.Cylinder">
  25350. <summary>
  25351. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.CylinderShape"/>.</para>
  25352. </summary>
  25353. </member>
  25354. <member name="F:Godot.PhysicsServer.ShapeType.ConvexPolygon">
  25355. <summary>
  25356. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.ConvexPolygonShape"/>.</para>
  25357. </summary>
  25358. </member>
  25359. <member name="F:Godot.PhysicsServer.ShapeType.ConcavePolygon">
  25360. <summary>
  25361. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.ConcavePolygonShape"/>.</para>
  25362. </summary>
  25363. </member>
  25364. <member name="F:Godot.PhysicsServer.ShapeType.Heightmap">
  25365. <summary>
  25366. <para>The <see cref="T:Godot.Shape"/> is a <see cref="T:Godot.HeightMapShape"/>.</para>
  25367. </summary>
  25368. </member>
  25369. <member name="F:Godot.PhysicsServer.ShapeType.Custom">
  25370. <summary>
  25371. <para>This constant is used internally by the engine. Any attempt to create this kind of shape results in an error.</para>
  25372. </summary>
  25373. </member>
  25374. <member name="F:Godot.PhysicsServer.PinJointParam.Bias">
  25375. <summary>
  25376. <para>The strength with which the pinned objects try to stay in positional relation to each other.</para>
  25377. <para>The higher, the stronger.</para>
  25378. </summary>
  25379. </member>
  25380. <member name="F:Godot.PhysicsServer.PinJointParam.Damping">
  25381. <summary>
  25382. <para>The strength with which the pinned objects try to stay in velocity relation to each other.</para>
  25383. <para>The higher, the stronger.</para>
  25384. </summary>
  25385. </member>
  25386. <member name="F:Godot.PhysicsServer.PinJointParam.ImpulseClamp">
  25387. <summary>
  25388. <para>If above 0, this value is the maximum value for an impulse that this Joint puts on its ends.</para>
  25389. </summary>
  25390. </member>
  25391. <member name="F:Godot.PhysicsServer.SpaceParameter.ContactRecycleRadius">
  25392. <summary>
  25393. <para>Constant to set/get the maximum distance a pair of bodies has to move before their collision status has to be recalculated.</para>
  25394. </summary>
  25395. </member>
  25396. <member name="F:Godot.PhysicsServer.SpaceParameter.ContactMaxSeparation">
  25397. <summary>
  25398. <para>Constant to set/get the maximum distance a shape can be from another before they are considered separated.</para>
  25399. </summary>
  25400. </member>
  25401. <member name="F:Godot.PhysicsServer.SpaceParameter.BodyMaxAllowedPenetration">
  25402. <summary>
  25403. <para>Constant to set/get the maximum distance a shape can penetrate another shape before it is considered a collision.</para>
  25404. </summary>
  25405. </member>
  25406. <member name="F:Godot.PhysicsServer.SpaceParameter.BodyLinearVelocitySleepThreshold">
  25407. <summary>
  25408. <para>Constant to set/get the threshold linear velocity of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after the time given.</para>
  25409. </summary>
  25410. </member>
  25411. <member name="F:Godot.PhysicsServer.SpaceParameter.BodyAngularVelocitySleepThreshold">
  25412. <summary>
  25413. <para>Constant to set/get the threshold angular velocity of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after the time given.</para>
  25414. </summary>
  25415. </member>
  25416. <member name="F:Godot.PhysicsServer.SpaceParameter.BodyTimeToSleep">
  25417. <summary>
  25418. <para>Constant to set/get the maximum time of activity. A body marked as potentially inactive for both linear and angular velocity will be put to sleep after this time.</para>
  25419. </summary>
  25420. </member>
  25421. <member name="F:Godot.PhysicsServer.SpaceParameter.ConstraintDefaultBias">
  25422. <summary>
  25423. <para>Constant to set/get the default solver bias for all physics constraints. A solver bias is a factor controlling how much two objects "rebound", after violating a constraint, to avoid leaving them in that state because of numerical imprecision.</para>
  25424. </summary>
  25425. </member>
  25426. <member name="F:Godot.PhysicsServer.ConeTwistJointParam.SwingSpan">
  25427. <summary>
  25428. <para>Swing is rotation from side to side, around the axis perpendicular to the twist axis.</para>
  25429. <para>The swing span defines, how much rotation will not get corrected allong the swing axis.</para>
  25430. <para>Could be defined as looseness in the <see cref="T:Godot.ConeTwistJoint"/>.</para>
  25431. <para>If below 0.05, this behavior is locked.</para>
  25432. </summary>
  25433. </member>
  25434. <member name="F:Godot.PhysicsServer.ConeTwistJointParam.TwistSpan">
  25435. <summary>
  25436. <para>Twist is the rotation around the twist axis, this value defined how far the joint can twist.</para>
  25437. <para>Twist is locked if below 0.05.</para>
  25438. </summary>
  25439. </member>
  25440. <member name="F:Godot.PhysicsServer.ConeTwistJointParam.Bias">
  25441. <summary>
  25442. <para>The speed with which the swing or twist will take place.</para>
  25443. <para>The higher, the faster.</para>
  25444. </summary>
  25445. </member>
  25446. <member name="F:Godot.PhysicsServer.ConeTwistJointParam.Softness">
  25447. <summary>
  25448. <para>The ease with which the Joint twists, if it's too low, it takes more force to twist the joint.</para>
  25449. </summary>
  25450. </member>
  25451. <member name="F:Godot.PhysicsServer.ConeTwistJointParam.Relaxation">
  25452. <summary>
  25453. <para>Defines, how fast the swing- and twist-speed-difference on both sides gets synced.</para>
  25454. </summary>
  25455. </member>
  25456. <member name="F:Godot.PhysicsServer.JointType.Pin">
  25457. <summary>
  25458. <para>The <see cref="T:Godot.Joint"/> is a <see cref="T:Godot.PinJoint"/>.</para>
  25459. </summary>
  25460. </member>
  25461. <member name="F:Godot.PhysicsServer.JointType.Hinge">
  25462. <summary>
  25463. <para>The <see cref="T:Godot.Joint"/> is a <see cref="T:Godot.HingeJoint"/>.</para>
  25464. </summary>
  25465. </member>
  25466. <member name="F:Godot.PhysicsServer.JointType.Slider">
  25467. <summary>
  25468. <para>The <see cref="T:Godot.Joint"/> is a <see cref="T:Godot.SliderJoint"/>.</para>
  25469. </summary>
  25470. </member>
  25471. <member name="F:Godot.PhysicsServer.JointType.ConeTwist">
  25472. <summary>
  25473. <para>The <see cref="T:Godot.Joint"/> is a <see cref="T:Godot.ConeTwistJoint"/>.</para>
  25474. </summary>
  25475. </member>
  25476. <member name="F:Godot.PhysicsServer.JointType.Joint6dof">
  25477. <summary>
  25478. <para>The <see cref="T:Godot.Joint"/> is a <see cref="T:Godot.Generic6DOFJoint"/>.</para>
  25479. </summary>
  25480. </member>
  25481. <member name="F:Godot.PhysicsServer.BodyState.Transform">
  25482. <summary>
  25483. <para>Constant to set/get the current transform matrix of the body.</para>
  25484. </summary>
  25485. </member>
  25486. <member name="F:Godot.PhysicsServer.BodyState.LinearVelocity">
  25487. <summary>
  25488. <para>Constant to set/get the current linear velocity of the body.</para>
  25489. </summary>
  25490. </member>
  25491. <member name="F:Godot.PhysicsServer.BodyState.AngularVelocity">
  25492. <summary>
  25493. <para>Constant to set/get the current angular velocity of the body.</para>
  25494. </summary>
  25495. </member>
  25496. <member name="F:Godot.PhysicsServer.BodyState.Sleeping">
  25497. <summary>
  25498. <para>Constant to sleep/wake up a body, or to get whether it is sleeping.</para>
  25499. </summary>
  25500. </member>
  25501. <member name="F:Godot.PhysicsServer.BodyState.CanSleep">
  25502. <summary>
  25503. <para>Constant to set/get whether the body can sleep.</para>
  25504. </summary>
  25505. </member>
  25506. <member name="F:Godot.PhysicsServer.BodyParameter.Bounce">
  25507. <summary>
  25508. <para>Constant to set/get a body's bounce factor.</para>
  25509. </summary>
  25510. </member>
  25511. <member name="F:Godot.PhysicsServer.BodyParameter.Friction">
  25512. <summary>
  25513. <para>Constant to set/get a body's friction.</para>
  25514. </summary>
  25515. </member>
  25516. <member name="F:Godot.PhysicsServer.BodyParameter.Mass">
  25517. <summary>
  25518. <para>Constant to set/get a body's mass.</para>
  25519. </summary>
  25520. </member>
  25521. <member name="F:Godot.PhysicsServer.BodyParameter.GravityScale">
  25522. <summary>
  25523. <para>Constant to set/get a body's gravity multiplier.</para>
  25524. </summary>
  25525. </member>
  25526. <member name="F:Godot.PhysicsServer.BodyParameter.LinearDamp">
  25527. <summary>
  25528. <para>Constant to set/get a body's linear dampening factor.</para>
  25529. </summary>
  25530. </member>
  25531. <member name="F:Godot.PhysicsServer.BodyParameter.AngularDamp">
  25532. <summary>
  25533. <para>Constant to set/get a body's angular dampening factor.</para>
  25534. </summary>
  25535. </member>
  25536. <member name="F:Godot.PhysicsServer.BodyParameter.Max">
  25537. <summary>
  25538. <para>Represents the size of the <see cref="T:Godot.PhysicsServer.BodyParameter"/> enum.</para>
  25539. </summary>
  25540. </member>
  25541. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.LinearLowerLimit">
  25542. <summary>
  25543. <para>The minimum difference between the pivot points' axes.</para>
  25544. </summary>
  25545. </member>
  25546. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.LinearUpperLimit">
  25547. <summary>
  25548. <para>The maximum difference between the pivot points' axes.</para>
  25549. </summary>
  25550. </member>
  25551. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.LinearLimitSoftness">
  25552. <summary>
  25553. <para>A factor that gets applied to the movement across the axes. The lower, the slower the movement.</para>
  25554. </summary>
  25555. </member>
  25556. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.LinearRestitution">
  25557. <summary>
  25558. <para>The amount of restitution on the axes movement. The lower, the more velocity-energy gets lost.</para>
  25559. </summary>
  25560. </member>
  25561. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.LinearDamping">
  25562. <summary>
  25563. <para>The amount of damping that happens at the linear motion across the axes.</para>
  25564. </summary>
  25565. </member>
  25566. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.LinearMotorTargetVelocity">
  25567. <summary>
  25568. <para>The velocity that the joint's linear motor will attempt to reach.</para>
  25569. </summary>
  25570. </member>
  25571. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.LinearMotorForceLimit">
  25572. <summary>
  25573. <para>The maximum force that the linear motor can apply while trying to reach the target velocity.</para>
  25574. </summary>
  25575. </member>
  25576. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularLowerLimit">
  25577. <summary>
  25578. <para>The minimum rotation in negative direction to break loose and rotate around the axes.</para>
  25579. </summary>
  25580. </member>
  25581. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularUpperLimit">
  25582. <summary>
  25583. <para>The minimum rotation in positive direction to break loose and rotate around the axes.</para>
  25584. </summary>
  25585. </member>
  25586. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularLimitSoftness">
  25587. <summary>
  25588. <para>A factor that gets multiplied onto all rotations across the axes.</para>
  25589. </summary>
  25590. </member>
  25591. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularDamping">
  25592. <summary>
  25593. <para>The amount of rotational damping across the axes. The lower, the more dampening occurs.</para>
  25594. </summary>
  25595. </member>
  25596. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularRestitution">
  25597. <summary>
  25598. <para>The amount of rotational restitution across the axes. The lower, the more restitution occurs.</para>
  25599. </summary>
  25600. </member>
  25601. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularForceLimit">
  25602. <summary>
  25603. <para>The maximum amount of force that can occur, when rotating around the axes.</para>
  25604. </summary>
  25605. </member>
  25606. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularErp">
  25607. <summary>
  25608. <para>When correcting the crossing of limits in rotation across the axes, this error tolerance factor defines how much the correction gets slowed down. The lower, the slower.</para>
  25609. </summary>
  25610. </member>
  25611. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularMotorTargetVelocity">
  25612. <summary>
  25613. <para>Target speed for the motor at the axes.</para>
  25614. </summary>
  25615. </member>
  25616. <member name="F:Godot.PhysicsServer.G6DOFJointAxisParam.AngularMotorForceLimit">
  25617. <summary>
  25618. <para>Maximum acceleration for the motor at the axes.</para>
  25619. </summary>
  25620. </member>
  25621. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearLimitUpper">
  25622. <summary>
  25623. <para>The maximum difference between the pivot points on their X axis before damping happens.</para>
  25624. </summary>
  25625. </member>
  25626. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearLimitLower">
  25627. <summary>
  25628. <para>The minimum difference between the pivot points on their X axis before damping happens.</para>
  25629. </summary>
  25630. </member>
  25631. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearLimitSoftness">
  25632. <summary>
  25633. <para>A factor applied to the movement across the slider axis once the limits get surpassed. The lower, the slower the movement.</para>
  25634. </summary>
  25635. </member>
  25636. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearLimitRestitution">
  25637. <summary>
  25638. <para>The amount of restitution once the limits are surpassed. The lower, the more velocityenergy gets lost.</para>
  25639. </summary>
  25640. </member>
  25641. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearLimitDamping">
  25642. <summary>
  25643. <para>The amount of damping once the slider limits are surpassed.</para>
  25644. </summary>
  25645. </member>
  25646. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearMotionSoftness">
  25647. <summary>
  25648. <para>A factor applied to the movement across the slider axis as long as the slider is in the limits. The lower, the slower the movement.</para>
  25649. </summary>
  25650. </member>
  25651. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearMotionRestitution">
  25652. <summary>
  25653. <para>The amount of restitution inside the slider limits.</para>
  25654. </summary>
  25655. </member>
  25656. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearMotionDamping">
  25657. <summary>
  25658. <para>The amount of damping inside the slider limits.</para>
  25659. </summary>
  25660. </member>
  25661. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearOrthogonalSoftness">
  25662. <summary>
  25663. <para>A factor applied to the movement across axes orthogonal to the slider.</para>
  25664. </summary>
  25665. </member>
  25666. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearOrthogonalRestitution">
  25667. <summary>
  25668. <para>The amount of restitution when movement is across axes orthogonal to the slider.</para>
  25669. </summary>
  25670. </member>
  25671. <member name="F:Godot.PhysicsServer.SliderJointParam.LinearOrthogonalDamping">
  25672. <summary>
  25673. <para>The amount of damping when movement is across axes orthogonal to the slider.</para>
  25674. </summary>
  25675. </member>
  25676. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularLimitUpper">
  25677. <summary>
  25678. <para>The upper limit of rotation in the slider.</para>
  25679. </summary>
  25680. </member>
  25681. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularLimitLower">
  25682. <summary>
  25683. <para>The lower limit of rotation in the slider.</para>
  25684. </summary>
  25685. </member>
  25686. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularLimitSoftness">
  25687. <summary>
  25688. <para>A factor applied to the all rotation once the limit is surpassed.</para>
  25689. </summary>
  25690. </member>
  25691. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularLimitRestitution">
  25692. <summary>
  25693. <para>The amount of restitution of the rotation when the limit is surpassed.</para>
  25694. </summary>
  25695. </member>
  25696. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularLimitDamping">
  25697. <summary>
  25698. <para>The amount of damping of the rotation when the limit is surpassed.</para>
  25699. </summary>
  25700. </member>
  25701. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularMotionSoftness">
  25702. <summary>
  25703. <para>A factor that gets applied to the all rotation in the limits.</para>
  25704. </summary>
  25705. </member>
  25706. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularMotionRestitution">
  25707. <summary>
  25708. <para>The amount of restitution of the rotation in the limits.</para>
  25709. </summary>
  25710. </member>
  25711. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularMotionDamping">
  25712. <summary>
  25713. <para>The amount of damping of the rotation in the limits.</para>
  25714. </summary>
  25715. </member>
  25716. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularOrthogonalSoftness">
  25717. <summary>
  25718. <para>A factor that gets applied to the all rotation across axes orthogonal to the slider.</para>
  25719. </summary>
  25720. </member>
  25721. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularOrthogonalRestitution">
  25722. <summary>
  25723. <para>The amount of restitution of the rotation across axes orthogonal to the slider.</para>
  25724. </summary>
  25725. </member>
  25726. <member name="F:Godot.PhysicsServer.SliderJointParam.AngularOrthogonalDamping">
  25727. <summary>
  25728. <para>The amount of damping of the rotation across axes orthogonal to the slider.</para>
  25729. </summary>
  25730. </member>
  25731. <member name="F:Godot.PhysicsServer.SliderJointParam.Max">
  25732. <summary>
  25733. <para>Represents the size of the <see cref="T:Godot.PhysicsServer.SliderJointParam"/> enum.</para>
  25734. </summary>
  25735. </member>
  25736. <member name="F:Godot.PhysicsServer.HingeJointParam.Bias">
  25737. <summary>
  25738. <para>The speed with which the two bodies get pulled together when they move in different directions.</para>
  25739. </summary>
  25740. </member>
  25741. <member name="F:Godot.PhysicsServer.HingeJointParam.LimitUpper">
  25742. <summary>
  25743. <para>The maximum rotation across the Hinge.</para>
  25744. </summary>
  25745. </member>
  25746. <member name="F:Godot.PhysicsServer.HingeJointParam.LimitLower">
  25747. <summary>
  25748. <para>The minimum rotation across the Hinge.</para>
  25749. </summary>
  25750. </member>
  25751. <member name="F:Godot.PhysicsServer.HingeJointParam.LimitBias">
  25752. <summary>
  25753. <para>The speed with which the rotation across the axis perpendicular to the hinge gets corrected.</para>
  25754. </summary>
  25755. </member>
  25756. <member name="F:Godot.PhysicsServer.HingeJointParam.LimitRelaxation">
  25757. <summary>
  25758. <para>The lower this value, the more the rotation gets slowed down.</para>
  25759. </summary>
  25760. </member>
  25761. <member name="F:Godot.PhysicsServer.HingeJointParam.MotorTargetVelocity">
  25762. <summary>
  25763. <para>Target speed for the motor.</para>
  25764. </summary>
  25765. </member>
  25766. <member name="F:Godot.PhysicsServer.HingeJointParam.MotorMaxImpulse">
  25767. <summary>
  25768. <para>Maximum acceleration for the motor.</para>
  25769. </summary>
  25770. </member>
  25771. <member name="F:Godot.PhysicsServer.G6DOFJointAxisFlag.LinearLimit">
  25772. <summary>
  25773. <para>If <c>set</c> there is linear motion possible within the given limits.</para>
  25774. </summary>
  25775. </member>
  25776. <member name="F:Godot.PhysicsServer.G6DOFJointAxisFlag.AngularLimit">
  25777. <summary>
  25778. <para>If <c>set</c> there is rotational motion possible.</para>
  25779. </summary>
  25780. </member>
  25781. <member name="F:Godot.PhysicsServer.G6DOFJointAxisFlag.Motor">
  25782. <summary>
  25783. <para>If <c>set</c> there is a rotational motor across these axes.</para>
  25784. </summary>
  25785. </member>
  25786. <member name="F:Godot.PhysicsServer.G6DOFJointAxisFlag.LinearMotor">
  25787. <summary>
  25788. <para>If <c>set</c> there is a linear motor on this axis that targets a specific velocity.</para>
  25789. </summary>
  25790. </member>
  25791. <member name="F:Godot.PhysicsServer.HingeJointFlag.UseLimit">
  25792. <summary>
  25793. <para>If <c>true</c>, the Hinge has a maximum and a minimum rotation.</para>
  25794. </summary>
  25795. </member>
  25796. <member name="F:Godot.PhysicsServer.HingeJointFlag.EnableMotor">
  25797. <summary>
  25798. <para>If <c>true</c>, a motor turns the Hinge.</para>
  25799. </summary>
  25800. </member>
  25801. <member name="F:Godot.PhysicsServer.AreaSpaceOverrideMode.Disabled">
  25802. <summary>
  25803. <para>This area does not affect gravity/damp. These are generally areas that exist only to detect collisions, and objects entering or exiting them.</para>
  25804. </summary>
  25805. </member>
  25806. <member name="F:Godot.PhysicsServer.AreaSpaceOverrideMode.Combine">
  25807. <summary>
  25808. <para>This area adds its gravity/damp values to whatever has been calculated so far. This way, many overlapping areas can combine their physics to make interesting effects.</para>
  25809. </summary>
  25810. </member>
  25811. <member name="F:Godot.PhysicsServer.AreaSpaceOverrideMode.CombineReplace">
  25812. <summary>
  25813. <para>This area adds its gravity/damp values to whatever has been calculated so far. Then stops taking into account the rest of the areas, even the default one.</para>
  25814. </summary>
  25815. </member>
  25816. <member name="F:Godot.PhysicsServer.AreaSpaceOverrideMode.Replace">
  25817. <summary>
  25818. <para>This area replaces any gravity/damp, even the default one, and stops taking into account the rest of the areas.</para>
  25819. </summary>
  25820. </member>
  25821. <member name="F:Godot.PhysicsServer.AreaSpaceOverrideMode.ReplaceCombine">
  25822. <summary>
  25823. <para>This area replaces any gravity/damp calculated so far, but keeps calculating the rest of the areas, down to the default one.</para>
  25824. </summary>
  25825. </member>
  25826. <member name="F:Godot.PhysicsServer.AreaParameter.Gravity">
  25827. <summary>
  25828. <para>Constant to set/get gravity strength in an area.</para>
  25829. </summary>
  25830. </member>
  25831. <member name="F:Godot.PhysicsServer.AreaParameter.GravityVector">
  25832. <summary>
  25833. <para>Constant to set/get gravity vector/center in an area.</para>
  25834. </summary>
  25835. </member>
  25836. <member name="F:Godot.PhysicsServer.AreaParameter.GravityIsPoint">
  25837. <summary>
  25838. <para>Constant to set/get whether the gravity vector of an area is a direction, or a center point.</para>
  25839. </summary>
  25840. </member>
  25841. <member name="F:Godot.PhysicsServer.AreaParameter.GravityDistanceScale">
  25842. <summary>
  25843. <para>Constant to set/get the falloff factor for point gravity of an area. The greater this value is, the faster the strength of gravity decreases with the square of distance.</para>
  25844. </summary>
  25845. </member>
  25846. <member name="F:Godot.PhysicsServer.AreaParameter.GravityPointAttenuation">
  25847. <summary>
  25848. <para>This constant was used to set/get the falloff factor for point gravity. It has been superseded by .</para>
  25849. </summary>
  25850. </member>
  25851. <member name="F:Godot.PhysicsServer.AreaParameter.LinearDamp">
  25852. <summary>
  25853. <para>Constant to set/get the linear dampening factor of an area.</para>
  25854. </summary>
  25855. </member>
  25856. <member name="F:Godot.PhysicsServer.AreaParameter.AngularDamp">
  25857. <summary>
  25858. <para>Constant to set/get the angular dampening factor of an area.</para>
  25859. </summary>
  25860. </member>
  25861. <member name="F:Godot.PhysicsServer.AreaParameter.Priority">
  25862. <summary>
  25863. <para>Constant to set/get the priority (order of processing) of an area.</para>
  25864. </summary>
  25865. </member>
  25866. <member name="M:Godot.PhysicsServer.ShapeCreate(Godot.PhysicsServer.ShapeType)">
  25867. <summary>
  25868. <para>Creates a shape of a type from <see cref="T:Godot.PhysicsServer.ShapeType"/>. Does not assign it to a body or an area. To do so, you must use <see cref="M:Godot.PhysicsServer.AreaSetShape(Godot.RID,System.Int32,Godot.RID)"/> or <see cref="M:Godot.PhysicsServer.BodySetShape(Godot.RID,System.Int32,Godot.RID)"/>.</para>
  25869. </summary>
  25870. </member>
  25871. <member name="M:Godot.PhysicsServer.ShapeSetData(Godot.RID,System.Object)">
  25872. <summary>
  25873. <para>Sets the shape data that defines its shape and size. The data to be passed depends on the kind of shape created <see cref="M:Godot.PhysicsServer.ShapeGetType(Godot.RID)"/>.</para>
  25874. </summary>
  25875. </member>
  25876. <member name="M:Godot.PhysicsServer.ShapeGetType(Godot.RID)">
  25877. <summary>
  25878. <para>Returns the type of shape (see <see cref="T:Godot.PhysicsServer.ShapeType"/> constants).</para>
  25879. </summary>
  25880. </member>
  25881. <member name="M:Godot.PhysicsServer.ShapeGetData(Godot.RID)">
  25882. <summary>
  25883. <para>Returns the shape data.</para>
  25884. </summary>
  25885. </member>
  25886. <member name="M:Godot.PhysicsServer.SpaceCreate">
  25887. <summary>
  25888. <para>Creates a space. A space is a collection of parameters for the physics engine that can be assigned to an area or a body. It can be assigned to an area with <see cref="M:Godot.PhysicsServer.AreaSetSpace(Godot.RID,Godot.RID)"/>, or to a body with <see cref="M:Godot.PhysicsServer.BodySetSpace(Godot.RID,Godot.RID)"/>.</para>
  25889. </summary>
  25890. </member>
  25891. <member name="M:Godot.PhysicsServer.SpaceSetActive(Godot.RID,System.Boolean)">
  25892. <summary>
  25893. <para>Marks a space as active. It will not have an effect, unless it is assigned to an area or body.</para>
  25894. </summary>
  25895. </member>
  25896. <member name="M:Godot.PhysicsServer.SpaceIsActive(Godot.RID)">
  25897. <summary>
  25898. <para>Returns whether the space is active.</para>
  25899. </summary>
  25900. </member>
  25901. <member name="M:Godot.PhysicsServer.SpaceSetParam(Godot.RID,Godot.PhysicsServer.SpaceParameter,System.Single)">
  25902. <summary>
  25903. <para>Sets the value for a space parameter. A list of available parameters is on the <see cref="T:Godot.PhysicsServer.SpaceParameter"/> constants.</para>
  25904. </summary>
  25905. </member>
  25906. <member name="M:Godot.PhysicsServer.SpaceGetParam(Godot.RID,Godot.PhysicsServer.SpaceParameter)">
  25907. <summary>
  25908. <para>Returns the value of a space parameter.</para>
  25909. </summary>
  25910. </member>
  25911. <member name="M:Godot.PhysicsServer.SpaceGetDirectState(Godot.RID)">
  25912. <summary>
  25913. <para>Returns the state of a space, a <see cref="T:Godot.PhysicsDirectSpaceState"/>. This object can be used to make collision/intersection queries.</para>
  25914. </summary>
  25915. </member>
  25916. <member name="M:Godot.PhysicsServer.AreaCreate">
  25917. <summary>
  25918. <para>Creates an <see cref="T:Godot.Area"/>.</para>
  25919. </summary>
  25920. </member>
  25921. <member name="M:Godot.PhysicsServer.AreaSetSpace(Godot.RID,Godot.RID)">
  25922. <summary>
  25923. <para>Assigns a space to the area.</para>
  25924. </summary>
  25925. </member>
  25926. <member name="M:Godot.PhysicsServer.AreaGetSpace(Godot.RID)">
  25927. <summary>
  25928. <para>Returns the space assigned to the area.</para>
  25929. </summary>
  25930. </member>
  25931. <member name="M:Godot.PhysicsServer.AreaSetSpaceOverrideMode(Godot.RID,Godot.PhysicsServer.AreaSpaceOverrideMode)">
  25932. <summary>
  25933. <para>Sets the space override mode for the area. The modes are described in the <see cref="T:Godot.PhysicsServer.AreaSpaceOverrideMode"/> constants.</para>
  25934. </summary>
  25935. </member>
  25936. <member name="M:Godot.PhysicsServer.AreaGetSpaceOverrideMode(Godot.RID)">
  25937. <summary>
  25938. <para>Returns the space override mode for the area.</para>
  25939. </summary>
  25940. </member>
  25941. <member name="M:Godot.PhysicsServer.AreaAddShape(Godot.RID,Godot.RID,System.Nullable{Godot.Transform},System.Boolean)">
  25942. <summary>
  25943. <para>Adds a shape to the area, along with a transform matrix. Shapes are usually referenced by their index, so you should track which shape has a given index.</para>
  25944. </summary>
  25945. <param name="transform">If the parameter is null, then the default value is new Transform()</param>
  25946. </member>
  25947. <member name="M:Godot.PhysicsServer.AreaSetShape(Godot.RID,System.Int32,Godot.RID)">
  25948. <summary>
  25949. <para>Substitutes a given area shape by another. The old shape is selected by its index, the new one by its <see cref="T:Godot.RID"/>.</para>
  25950. </summary>
  25951. </member>
  25952. <member name="M:Godot.PhysicsServer.AreaSetShapeTransform(Godot.RID,System.Int32,Godot.Transform)">
  25953. <summary>
  25954. <para>Sets the transform matrix for an area shape.</para>
  25955. </summary>
  25956. </member>
  25957. <member name="M:Godot.PhysicsServer.AreaGetShapeCount(Godot.RID)">
  25958. <summary>
  25959. <para>Returns the number of shapes assigned to an area.</para>
  25960. </summary>
  25961. </member>
  25962. <member name="M:Godot.PhysicsServer.AreaGetShape(Godot.RID,System.Int32)">
  25963. <summary>
  25964. <para>Returns the <see cref="T:Godot.RID"/> of the nth shape of an area.</para>
  25965. </summary>
  25966. </member>
  25967. <member name="M:Godot.PhysicsServer.AreaGetShapeTransform(Godot.RID,System.Int32)">
  25968. <summary>
  25969. <para>Returns the transform matrix of a shape within an area.</para>
  25970. </summary>
  25971. </member>
  25972. <member name="M:Godot.PhysicsServer.AreaRemoveShape(Godot.RID,System.Int32)">
  25973. <summary>
  25974. <para>Removes a shape from an area. It does not delete the shape, so it can be reassigned later.</para>
  25975. </summary>
  25976. </member>
  25977. <member name="M:Godot.PhysicsServer.AreaClearShapes(Godot.RID)">
  25978. <summary>
  25979. <para>Removes all shapes from an area. It does not delete the shapes, so they can be reassigned later.</para>
  25980. </summary>
  25981. </member>
  25982. <member name="M:Godot.PhysicsServer.AreaSetCollisionLayer(Godot.RID,System.UInt32)">
  25983. <summary>
  25984. <para>Assigns the area to one or many physics layers.</para>
  25985. </summary>
  25986. </member>
  25987. <member name="M:Godot.PhysicsServer.AreaSetCollisionMask(Godot.RID,System.UInt32)">
  25988. <summary>
  25989. <para>Sets which physics layers the area will monitor.</para>
  25990. </summary>
  25991. </member>
  25992. <member name="M:Godot.PhysicsServer.AreaSetParam(Godot.RID,Godot.PhysicsServer.AreaParameter,System.Object)">
  25993. <summary>
  25994. <para>Sets the value for an area parameter. A list of available parameters is on the <see cref="T:Godot.PhysicsServer.AreaParameter"/> constants.</para>
  25995. </summary>
  25996. </member>
  25997. <member name="M:Godot.PhysicsServer.AreaSetTransform(Godot.RID,Godot.Transform)">
  25998. <summary>
  25999. <para>Sets the transform matrix for an area.</para>
  26000. </summary>
  26001. </member>
  26002. <member name="M:Godot.PhysicsServer.AreaGetParam(Godot.RID,Godot.PhysicsServer.AreaParameter)">
  26003. <summary>
  26004. <para>Returns an area parameter value. A list of available parameters is on the <see cref="T:Godot.PhysicsServer.AreaParameter"/> constants.</para>
  26005. </summary>
  26006. </member>
  26007. <member name="M:Godot.PhysicsServer.AreaGetTransform(Godot.RID)">
  26008. <summary>
  26009. <para>Returns the transform matrix for an area.</para>
  26010. </summary>
  26011. </member>
  26012. <member name="M:Godot.PhysicsServer.AreaAttachObjectInstanceId(Godot.RID,System.UInt64)">
  26013. <summary>
  26014. <para>Assigns the area to a descendant of <see cref="T:Godot.Object"/>, so it can exist in the node tree.</para>
  26015. </summary>
  26016. </member>
  26017. <member name="M:Godot.PhysicsServer.AreaGetObjectInstanceId(Godot.RID)">
  26018. <summary>
  26019. <para>Gets the instance ID of the object the area is assigned to.</para>
  26020. </summary>
  26021. </member>
  26022. <member name="M:Godot.PhysicsServer.AreaSetMonitorCallback(Godot.RID,Godot.Object,System.String)">
  26023. <summary>
  26024. <para>Sets the function to call when any body/area enters or exits the area. This callback will be called for any object interacting with the area, and takes five parameters:</para>
  26025. <para>1: or , depending on whether the object entered or exited the area.</para>
  26026. <para>2: <see cref="T:Godot.RID"/> of the object that entered/exited the area.</para>
  26027. <para>3: Instance ID of the object that entered/exited the area.</para>
  26028. <para>4: The shape index of the object that entered/exited the area.</para>
  26029. <para>5: The shape index of the area where the object entered/exited.</para>
  26030. </summary>
  26031. </member>
  26032. <member name="M:Godot.PhysicsServer.AreaSetRayPickable(Godot.RID,System.Boolean)">
  26033. <summary>
  26034. <para>Sets object pickable with rays.</para>
  26035. </summary>
  26036. </member>
  26037. <member name="M:Godot.PhysicsServer.AreaIsRayPickable(Godot.RID)">
  26038. <summary>
  26039. <para>If <c>true</c>, area collides with rays.</para>
  26040. </summary>
  26041. </member>
  26042. <member name="M:Godot.PhysicsServer.BodyCreate(Godot.PhysicsServer.BodyMode,System.Boolean)">
  26043. <summary>
  26044. <para>Creates a physics body. The first parameter can be any value from <see cref="T:Godot.PhysicsServer.BodyMode"/> constants, for the type of body created. Additionally, the body can be created in sleeping state to save processing time.</para>
  26045. </summary>
  26046. </member>
  26047. <member name="M:Godot.PhysicsServer.BodySetSpace(Godot.RID,Godot.RID)">
  26048. <summary>
  26049. <para>Assigns a space to the body (see <see cref="M:Godot.PhysicsServer.SpaceCreate"/>).</para>
  26050. </summary>
  26051. </member>
  26052. <member name="M:Godot.PhysicsServer.BodyGetSpace(Godot.RID)">
  26053. <summary>
  26054. <para>Returns the <see cref="T:Godot.RID"/> of the space assigned to a body.</para>
  26055. </summary>
  26056. </member>
  26057. <member name="M:Godot.PhysicsServer.BodySetMode(Godot.RID,Godot.PhysicsServer.BodyMode)">
  26058. <summary>
  26059. <para>Sets the body mode, from one of the <see cref="T:Godot.PhysicsServer.BodyMode"/> constants.</para>
  26060. </summary>
  26061. </member>
  26062. <member name="M:Godot.PhysicsServer.BodyGetMode(Godot.RID)">
  26063. <summary>
  26064. <para>Returns the body mode.</para>
  26065. </summary>
  26066. </member>
  26067. <member name="M:Godot.PhysicsServer.BodySetCollisionLayer(Godot.RID,System.UInt32)">
  26068. <summary>
  26069. <para>Sets the physics layer or layers a body belongs to.</para>
  26070. </summary>
  26071. </member>
  26072. <member name="M:Godot.PhysicsServer.BodyGetCollisionLayer(Godot.RID)">
  26073. <summary>
  26074. <para>Returns the physics layer or layers a body belongs to.</para>
  26075. </summary>
  26076. </member>
  26077. <member name="M:Godot.PhysicsServer.BodySetCollisionMask(Godot.RID,System.UInt32)">
  26078. <summary>
  26079. <para>Sets the physics layer or layers a body can collide with.</para>
  26080. </summary>
  26081. </member>
  26082. <member name="M:Godot.PhysicsServer.BodyGetCollisionMask(Godot.RID)">
  26083. <summary>
  26084. <para>Returns the physics layer or layers a body can collide with.</para>
  26085. <para>-</para>
  26086. </summary>
  26087. </member>
  26088. <member name="M:Godot.PhysicsServer.BodyAddShape(Godot.RID,Godot.RID,System.Nullable{Godot.Transform},System.Boolean)">
  26089. <summary>
  26090. <para>Adds a shape to the body, along with a transform matrix. Shapes are usually referenced by their index, so you should track which shape has a given index.</para>
  26091. </summary>
  26092. <param name="transform">If the parameter is null, then the default value is new Transform()</param>
  26093. </member>
  26094. <member name="M:Godot.PhysicsServer.BodySetShape(Godot.RID,System.Int32,Godot.RID)">
  26095. <summary>
  26096. <para>Substitutes a given body shape by another. The old shape is selected by its index, the new one by its <see cref="T:Godot.RID"/>.</para>
  26097. </summary>
  26098. </member>
  26099. <member name="M:Godot.PhysicsServer.BodySetShapeTransform(Godot.RID,System.Int32,Godot.Transform)">
  26100. <summary>
  26101. <para>Sets the transform matrix for a body shape.</para>
  26102. </summary>
  26103. </member>
  26104. <member name="M:Godot.PhysicsServer.BodyGetShapeCount(Godot.RID)">
  26105. <summary>
  26106. <para>Returns the number of shapes assigned to a body.</para>
  26107. </summary>
  26108. </member>
  26109. <member name="M:Godot.PhysicsServer.BodyGetShape(Godot.RID,System.Int32)">
  26110. <summary>
  26111. <para>Returns the <see cref="T:Godot.RID"/> of the nth shape of a body.</para>
  26112. </summary>
  26113. </member>
  26114. <member name="M:Godot.PhysicsServer.BodyGetShapeTransform(Godot.RID,System.Int32)">
  26115. <summary>
  26116. <para>Returns the transform matrix of a body shape.</para>
  26117. </summary>
  26118. </member>
  26119. <member name="M:Godot.PhysicsServer.BodyRemoveShape(Godot.RID,System.Int32)">
  26120. <summary>
  26121. <para>Removes a shape from a body. The shape is not deleted, so it can be reused afterwards.</para>
  26122. </summary>
  26123. </member>
  26124. <member name="M:Godot.PhysicsServer.BodyClearShapes(Godot.RID)">
  26125. <summary>
  26126. <para>Removes all shapes from a body.</para>
  26127. </summary>
  26128. </member>
  26129. <member name="M:Godot.PhysicsServer.BodyAttachObjectInstanceId(Godot.RID,System.UInt32)">
  26130. <summary>
  26131. <para>Assigns the area to a descendant of <see cref="T:Godot.Object"/>, so it can exist in the node tree.</para>
  26132. </summary>
  26133. </member>
  26134. <member name="M:Godot.PhysicsServer.BodyGetObjectInstanceId(Godot.RID)">
  26135. <summary>
  26136. <para>Gets the instance ID of the object the area is assigned to.</para>
  26137. </summary>
  26138. </member>
  26139. <member name="M:Godot.PhysicsServer.BodySetEnableContinuousCollisionDetection(Godot.RID,System.Boolean)">
  26140. <summary>
  26141. <para>If <c>true</c>, the continuous collision detection mode is enabled.</para>
  26142. <para>Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided.</para>
  26143. </summary>
  26144. </member>
  26145. <member name="M:Godot.PhysicsServer.BodyIsContinuousCollisionDetectionEnabled(Godot.RID)">
  26146. <summary>
  26147. <para>If <c>true</c>, the continuous collision detection mode is enabled.</para>
  26148. </summary>
  26149. </member>
  26150. <member name="M:Godot.PhysicsServer.BodySetParam(Godot.RID,Godot.PhysicsServer.BodyParameter,System.Single)">
  26151. <summary>
  26152. <para>Sets a body parameter. A list of available parameters is on the <see cref="T:Godot.PhysicsServer.BodyParameter"/> constants.</para>
  26153. </summary>
  26154. </member>
  26155. <member name="M:Godot.PhysicsServer.BodyGetParam(Godot.RID,Godot.PhysicsServer.BodyParameter)">
  26156. <summary>
  26157. <para>Returns the value of a body parameter. A list of available parameters is on the <see cref="T:Godot.PhysicsServer.BodyParameter"/> constants.</para>
  26158. </summary>
  26159. </member>
  26160. <member name="M:Godot.PhysicsServer.BodySetState(Godot.RID,Godot.PhysicsServer.BodyState,System.Object)">
  26161. <summary>
  26162. <para>Sets a body state (see <see cref="T:Godot.PhysicsServer.BodyState"/> constants).</para>
  26163. </summary>
  26164. </member>
  26165. <member name="M:Godot.PhysicsServer.BodyGetState(Godot.RID,Godot.PhysicsServer.BodyState)">
  26166. <summary>
  26167. <para>Returns a body state.</para>
  26168. </summary>
  26169. </member>
  26170. <member name="M:Godot.PhysicsServer.BodyApplyImpulse(Godot.RID,Godot.Vector3,Godot.Vector3)">
  26171. <summary>
  26172. <para>Gives the body a push at a <c>position</c> in the direction of the <c>impulse</c>.</para>
  26173. </summary>
  26174. </member>
  26175. <member name="M:Godot.PhysicsServer.BodyApplyTorqueImpulse(Godot.RID,Godot.Vector3)">
  26176. <summary>
  26177. <para>Gives the body a push to rotate it.</para>
  26178. </summary>
  26179. </member>
  26180. <member name="M:Godot.PhysicsServer.BodySetAxisVelocity(Godot.RID,Godot.Vector3)">
  26181. <summary>
  26182. <para>Sets an axis velocity. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior.</para>
  26183. </summary>
  26184. </member>
  26185. <member name="M:Godot.PhysicsServer.BodyAddCollisionException(Godot.RID,Godot.RID)">
  26186. <summary>
  26187. <para>Adds a body to the list of bodies exempt from collisions.</para>
  26188. </summary>
  26189. </member>
  26190. <member name="M:Godot.PhysicsServer.BodyRemoveCollisionException(Godot.RID,Godot.RID)">
  26191. <summary>
  26192. <para>Removes a body from the list of bodies exempt from collisions.</para>
  26193. <para>Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided.</para>
  26194. </summary>
  26195. </member>
  26196. <member name="M:Godot.PhysicsServer.BodySetMaxContactsReported(Godot.RID,System.Int32)">
  26197. <summary>
  26198. <para>Sets the maximum contacts to report. Bodies can keep a log of the contacts with other bodies, this is enabled by setting the maximum amount of contacts reported to a number greater than 0.</para>
  26199. </summary>
  26200. </member>
  26201. <member name="M:Godot.PhysicsServer.BodyGetMaxContactsReported(Godot.RID)">
  26202. <summary>
  26203. <para>Returns the maximum contacts that can be reported. See <see cref="M:Godot.PhysicsServer.BodySetMaxContactsReported(Godot.RID,System.Int32)"/>.</para>
  26204. </summary>
  26205. </member>
  26206. <member name="M:Godot.PhysicsServer.BodySetOmitForceIntegration(Godot.RID,System.Boolean)">
  26207. <summary>
  26208. <para>Sets whether a body uses a callback function to calculate its own physics (see <see cref="M:Godot.PhysicsServer.BodySetForceIntegrationCallback(Godot.RID,Godot.Object,System.String,System.Object)"/>).</para>
  26209. </summary>
  26210. </member>
  26211. <member name="M:Godot.PhysicsServer.BodyIsOmittingForceIntegration(Godot.RID)">
  26212. <summary>
  26213. <para>Returns whether a body uses a callback function to calculate its own physics (see <see cref="M:Godot.PhysicsServer.BodySetForceIntegrationCallback(Godot.RID,Godot.Object,System.String,System.Object)"/>).</para>
  26214. </summary>
  26215. </member>
  26216. <member name="M:Godot.PhysicsServer.BodySetForceIntegrationCallback(Godot.RID,Godot.Object,System.String,System.Object)">
  26217. <summary>
  26218. <para>Sets the function used to calculate physics for an object, if that object allows it (see <see cref="M:Godot.PhysicsServer.BodySetOmitForceIntegration(Godot.RID,System.Boolean)"/>).</para>
  26219. </summary>
  26220. </member>
  26221. <member name="M:Godot.PhysicsServer.BodySetRayPickable(Godot.RID,System.Boolean)">
  26222. <summary>
  26223. <para>Sets the body pickable with rays if <c>enabled</c> is set.</para>
  26224. </summary>
  26225. </member>
  26226. <member name="M:Godot.PhysicsServer.BodyIsRayPickable(Godot.RID)">
  26227. <summary>
  26228. <para>If <c>true</c>, the body can be detected by rays.</para>
  26229. </summary>
  26230. </member>
  26231. <member name="M:Godot.PhysicsServer.BodyGetDirectState(Godot.RID)">
  26232. <summary>
  26233. <para>Returns the <see cref="T:Godot.PhysicsDirectBodyState"/> of the body.</para>
  26234. </summary>
  26235. </member>
  26236. <member name="M:Godot.PhysicsServer.JointCreatePin(Godot.RID,Godot.Vector3,Godot.RID,Godot.Vector3)">
  26237. <summary>
  26238. <para>Creates a <see cref="T:Godot.PinJoint"/>.</para>
  26239. </summary>
  26240. </member>
  26241. <member name="M:Godot.PhysicsServer.PinJointSetParam(Godot.RID,Godot.PhysicsServer.PinJointParam,System.Single)">
  26242. <summary>
  26243. <para>Sets a pin_joint parameter (see <see cref="T:Godot.PhysicsServer.PinJointParam"/> constants).</para>
  26244. </summary>
  26245. </member>
  26246. <member name="M:Godot.PhysicsServer.PinJointGetParam(Godot.RID,Godot.PhysicsServer.PinJointParam)">
  26247. <summary>
  26248. <para>Gets a pin_joint parameter (see <see cref="T:Godot.PhysicsServer.PinJointParam"/> constants).</para>
  26249. </summary>
  26250. </member>
  26251. <member name="M:Godot.PhysicsServer.PinJointSetLocalA(Godot.RID,Godot.Vector3)">
  26252. <summary>
  26253. <para>Sets position of the joint in the local space of body a of the joint.</para>
  26254. </summary>
  26255. </member>
  26256. <member name="M:Godot.PhysicsServer.PinJointGetLocalA(Godot.RID)">
  26257. <summary>
  26258. <para>Returns position of the joint in the local space of body a of the joint.</para>
  26259. </summary>
  26260. </member>
  26261. <member name="M:Godot.PhysicsServer.PinJointSetLocalB(Godot.RID,Godot.Vector3)">
  26262. <summary>
  26263. <para>Sets position of the joint in the local space of body b of the joint.</para>
  26264. </summary>
  26265. </member>
  26266. <member name="M:Godot.PhysicsServer.PinJointGetLocalB(Godot.RID)">
  26267. <summary>
  26268. <para>Returns position of the joint in the local space of body b of the joint.</para>
  26269. </summary>
  26270. </member>
  26271. <member name="M:Godot.PhysicsServer.JointCreateHinge(Godot.RID,Godot.Transform,Godot.RID,Godot.Transform)">
  26272. <summary>
  26273. <para>Creates a <see cref="T:Godot.HingeJoint"/>.</para>
  26274. </summary>
  26275. </member>
  26276. <member name="M:Godot.PhysicsServer.HingeJointSetParam(Godot.RID,Godot.PhysicsServer.HingeJointParam,System.Single)">
  26277. <summary>
  26278. <para>Sets a hinge_joint parameter (see <see cref="T:Godot.PhysicsServer.HingeJointParam"/> constants).</para>
  26279. </summary>
  26280. </member>
  26281. <member name="M:Godot.PhysicsServer.HingeJointGetParam(Godot.RID,Godot.PhysicsServer.HingeJointParam)">
  26282. <summary>
  26283. <para>Gets a hinge_joint parameter (see <see cref="T:Godot.PhysicsServer.HingeJointParam"/>).</para>
  26284. </summary>
  26285. </member>
  26286. <member name="M:Godot.PhysicsServer.HingeJointSetFlag(Godot.RID,Godot.PhysicsServer.HingeJointFlag,System.Boolean)">
  26287. <summary>
  26288. <para>Sets a hinge_joint flag (see <see cref="T:Godot.PhysicsServer.HingeJointFlag"/> constants).</para>
  26289. </summary>
  26290. </member>
  26291. <member name="M:Godot.PhysicsServer.HingeJointGetFlag(Godot.RID,Godot.PhysicsServer.HingeJointFlag)">
  26292. <summary>
  26293. <para>Gets a hinge_joint flag (see <see cref="T:Godot.PhysicsServer.HingeJointFlag"/> constants).</para>
  26294. </summary>
  26295. </member>
  26296. <member name="M:Godot.PhysicsServer.JointCreateSlider(Godot.RID,Godot.Transform,Godot.RID,Godot.Transform)">
  26297. <summary>
  26298. <para>Creates a <see cref="T:Godot.SliderJoint"/>.</para>
  26299. </summary>
  26300. </member>
  26301. <member name="M:Godot.PhysicsServer.SliderJointSetParam(Godot.RID,Godot.PhysicsServer.SliderJointParam,System.Single)">
  26302. <summary>
  26303. <para>Gets a slider_joint parameter (see <see cref="T:Godot.PhysicsServer.SliderJointParam"/> constants).</para>
  26304. </summary>
  26305. </member>
  26306. <member name="M:Godot.PhysicsServer.SliderJointGetParam(Godot.RID,Godot.PhysicsServer.SliderJointParam)">
  26307. <summary>
  26308. <para>Gets a slider_joint parameter (see <see cref="T:Godot.PhysicsServer.SliderJointParam"/> constants).</para>
  26309. </summary>
  26310. </member>
  26311. <member name="M:Godot.PhysicsServer.JointCreateConeTwist(Godot.RID,Godot.Transform,Godot.RID,Godot.Transform)">
  26312. <summary>
  26313. <para>Creates a <see cref="T:Godot.ConeTwistJoint"/>.</para>
  26314. </summary>
  26315. </member>
  26316. <member name="M:Godot.PhysicsServer.ConeTwistJointSetParam(Godot.RID,Godot.PhysicsServer.ConeTwistJointParam,System.Single)">
  26317. <summary>
  26318. <para>Sets a cone_twist_joint parameter (see <see cref="T:Godot.PhysicsServer.ConeTwistJointParam"/> constants).</para>
  26319. </summary>
  26320. </member>
  26321. <member name="M:Godot.PhysicsServer.ConeTwistJointGetParam(Godot.RID,Godot.PhysicsServer.ConeTwistJointParam)">
  26322. <summary>
  26323. <para>Gets a cone_twist_joint parameter (see <see cref="T:Godot.PhysicsServer.ConeTwistJointParam"/> constants).</para>
  26324. </summary>
  26325. </member>
  26326. <member name="M:Godot.PhysicsServer.JointGetType(Godot.RID)">
  26327. <summary>
  26328. <para>Returns the type of the Joint.</para>
  26329. </summary>
  26330. </member>
  26331. <member name="M:Godot.PhysicsServer.JointSetSolverPriority(Godot.RID,System.Int32)">
  26332. <summary>
  26333. <para>Sets the priority value of the Joint.</para>
  26334. </summary>
  26335. </member>
  26336. <member name="M:Godot.PhysicsServer.JointGetSolverPriority(Godot.RID)">
  26337. <summary>
  26338. <para>Gets the priority value of the Joint.</para>
  26339. </summary>
  26340. </member>
  26341. <member name="M:Godot.PhysicsServer.JointCreateGeneric6dof(Godot.RID,Godot.Transform,Godot.RID,Godot.Transform)">
  26342. <summary>
  26343. <para>Creates a <see cref="T:Godot.Generic6DOFJoint"/>.</para>
  26344. </summary>
  26345. </member>
  26346. <member name="M:Godot.PhysicsServer.Generic6dofJointSetParam(Godot.RID,Godot.Vector3.Axis,Godot.PhysicsServer.G6DOFJointAxisParam,System.Single)">
  26347. <summary>
  26348. <para>Sets a generic_6_DOF_joint parameter (see <see cref="T:Godot.PhysicsServer.G6DOFJointAxisParam"/> constants).</para>
  26349. </summary>
  26350. </member>
  26351. <member name="M:Godot.PhysicsServer.Generic6dofJointGetParam(Godot.RID,Godot.Vector3.Axis,Godot.PhysicsServer.G6DOFJointAxisParam)">
  26352. <summary>
  26353. <para>Gets a generic_6_DOF_joint parameter (see <see cref="T:Godot.PhysicsServer.G6DOFJointAxisParam"/> constants).</para>
  26354. </summary>
  26355. </member>
  26356. <member name="M:Godot.PhysicsServer.Generic6dofJointSetFlag(Godot.RID,Godot.Vector3.Axis,Godot.PhysicsServer.G6DOFJointAxisFlag,System.Boolean)">
  26357. <summary>
  26358. <para>Sets a generic_6_DOF_joint flag (see <see cref="T:Godot.PhysicsServer.G6DOFJointAxisFlag"/> constants).</para>
  26359. </summary>
  26360. </member>
  26361. <member name="M:Godot.PhysicsServer.Generic6dofJointGetFlag(Godot.RID,Godot.Vector3.Axis,Godot.PhysicsServer.G6DOFJointAxisFlag)">
  26362. <summary>
  26363. <para>Gets a generic_6_DOF_joint flag (see <see cref="T:Godot.PhysicsServer.G6DOFJointAxisFlag"/> constants).</para>
  26364. </summary>
  26365. </member>
  26366. <member name="M:Godot.PhysicsServer.FreeRid(Godot.RID)">
  26367. <summary>
  26368. <para>Destroys any of the objects created by PhysicsServer. If the <see cref="T:Godot.RID"/> passed is not one of the objects that can be created by PhysicsServer, an error will be sent to the console.</para>
  26369. </summary>
  26370. </member>
  26371. <member name="M:Godot.PhysicsServer.SetActive(System.Boolean)">
  26372. <summary>
  26373. <para>Activates or deactivates the 3D physics engine.</para>
  26374. </summary>
  26375. </member>
  26376. <member name="M:Godot.PhysicsServer.GetProcessInfo(Godot.PhysicsServer.ProcessInfo)">
  26377. <summary>
  26378. <para>Returns an Info defined by the <see cref="T:Godot.PhysicsServer.ProcessInfo"/> input given.</para>
  26379. </summary>
  26380. </member>
  26381. <member name="T:Godot.PhysicsShapeQueryParameters">
  26382. <summary>
  26383. <para>This class contains the shape and other parameters for 3D intersection/collision queries. See also <see cref="T:Godot.PhysicsShapeQueryResult"/>.</para>
  26384. </summary>
  26385. </member>
  26386. <member name="P:Godot.PhysicsShapeQueryParameters.CollisionMask">
  26387. <summary>
  26388. <para>The physics layer(s) the query will take into account (as a bitmask).</para>
  26389. </summary>
  26390. </member>
  26391. <member name="P:Godot.PhysicsShapeQueryParameters.Exclude">
  26392. <summary>
  26393. <para>The list of objects or object <see cref="T:Godot.RID"/>s that will be excluded from collisions.</para>
  26394. </summary>
  26395. </member>
  26396. <member name="P:Godot.PhysicsShapeQueryParameters.Margin">
  26397. <summary>
  26398. <para>The collision margin for the shape.</para>
  26399. </summary>
  26400. </member>
  26401. <member name="P:Godot.PhysicsShapeQueryParameters.ShapeRid">
  26402. <summary>
  26403. <para>The queried shape's <see cref="T:Godot.RID"/>. See also <see cref="M:Godot.PhysicsShapeQueryParameters.SetShape(Godot.Resource)"/>.</para>
  26404. </summary>
  26405. </member>
  26406. <member name="P:Godot.PhysicsShapeQueryParameters.Transform">
  26407. <summary>
  26408. <para>The queried shape's transform matrix.</para>
  26409. </summary>
  26410. </member>
  26411. <member name="P:Godot.PhysicsShapeQueryParameters.CollideWithBodies">
  26412. <summary>
  26413. <para>If <c>true</c>, the query will take <see cref="T:Godot.PhysicsBody"/>s into account.</para>
  26414. </summary>
  26415. </member>
  26416. <member name="P:Godot.PhysicsShapeQueryParameters.CollideWithAreas">
  26417. <summary>
  26418. <para>If <c>true</c>, the query will take <see cref="T:Godot.Area"/>s into account.</para>
  26419. </summary>
  26420. </member>
  26421. <member name="M:Godot.PhysicsShapeQueryParameters.SetShape(Godot.Resource)">
  26422. <summary>
  26423. <para>Sets the <see cref="T:Godot.Shape"/> that will be used for collision/intersection queries.</para>
  26424. </summary>
  26425. </member>
  26426. <member name="T:Godot.PhysicsShapeQueryResult">
  26427. <summary>
  26428. <para>The result of a 3D shape query in <see cref="T:Godot.PhysicsServer"/>. See also <see cref="T:Godot.PhysicsShapeQueryParameters"/>.</para>
  26429. </summary>
  26430. </member>
  26431. <member name="M:Godot.PhysicsShapeQueryResult.GetResultCount">
  26432. <summary>
  26433. <para>Returns the number of objects that intersected with the shape.</para>
  26434. </summary>
  26435. </member>
  26436. <member name="M:Godot.PhysicsShapeQueryResult.GetResultRid(System.Int32)">
  26437. <summary>
  26438. <para>Returns the <see cref="T:Godot.RID"/> of the object that intersected with the shape at index <c>idx</c>.</para>
  26439. </summary>
  26440. </member>
  26441. <member name="M:Godot.PhysicsShapeQueryResult.GetResultObjectId(System.Int32)">
  26442. <summary>
  26443. <para>Returns the instance ID of the <see cref="T:Godot.Object"/> that intersected with the shape at index <c>idx</c>.</para>
  26444. </summary>
  26445. </member>
  26446. <member name="M:Godot.PhysicsShapeQueryResult.GetResultObject(System.Int32)">
  26447. <summary>
  26448. <para>Returns the <see cref="T:Godot.Object"/> that intersected with the shape at index <c>idx</c>.</para>
  26449. </summary>
  26450. </member>
  26451. <member name="M:Godot.PhysicsShapeQueryResult.GetResultObjectShape(System.Int32)">
  26452. <summary>
  26453. <para>Returns the child index of the object's <see cref="T:Godot.Shape"/> that intersected with the shape at index <c>idx</c>.</para>
  26454. </summary>
  26455. </member>
  26456. <member name="T:Godot.PinJoint">
  26457. <summary>
  26458. <para>Pin joint for 3D rigid bodies. It pins 2 bodies (rigid or static) together.</para>
  26459. </summary>
  26460. </member>
  26461. <member name="F:Godot.PinJoint.Param.Bias">
  26462. <summary>
  26463. <para>The force with which the pinned objects stay in positional relation to each other. The higher, the stronger.</para>
  26464. </summary>
  26465. </member>
  26466. <member name="F:Godot.PinJoint.Param.Damping">
  26467. <summary>
  26468. <para>The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger.</para>
  26469. </summary>
  26470. </member>
  26471. <member name="F:Godot.PinJoint.Param.ImpulseClamp">
  26472. <summary>
  26473. <para>If above 0, this value is the maximum value for an impulse that this Joint produces.</para>
  26474. </summary>
  26475. </member>
  26476. <member name="P:Godot.PinJoint.Params__bias">
  26477. <summary>
  26478. <para>The force with which the pinned objects stay in positional relation to each other. The higher, the stronger.</para>
  26479. </summary>
  26480. </member>
  26481. <member name="P:Godot.PinJoint.Params__damping">
  26482. <summary>
  26483. <para>The force with which the pinned objects stay in velocity relation to each other. The higher, the stronger.</para>
  26484. </summary>
  26485. </member>
  26486. <member name="P:Godot.PinJoint.Params__impulseClamp">
  26487. <summary>
  26488. <para>If above 0, this value is the maximum value for an impulse that this Joint produces.</para>
  26489. </summary>
  26490. </member>
  26491. <member name="M:Godot.PinJoint.SetParam(Godot.PinJoint.Param,System.Single)">
  26492. <summary>
  26493. <para>Sets the value of the specified parameter.</para>
  26494. </summary>
  26495. </member>
  26496. <member name="M:Godot.PinJoint.GetParam(Godot.PinJoint.Param)">
  26497. <summary>
  26498. <para>Returns the value of the specified parameter.</para>
  26499. </summary>
  26500. </member>
  26501. <member name="T:Godot.PinJoint2D">
  26502. <summary>
  26503. <para>Pin Joint for 2D rigid bodies. It pins two bodies (rigid or static) together.</para>
  26504. </summary>
  26505. </member>
  26506. <member name="P:Godot.PinJoint2D.Softness">
  26507. <summary>
  26508. <para>The higher this value, the more the bond to the pinned partner can flex.</para>
  26509. </summary>
  26510. </member>
  26511. <member name="T:Godot.PlaneMesh">
  26512. <summary>
  26513. <para>Class representing a planar <see cref="T:Godot.PrimitiveMesh"/>. This flat mesh does not have a thickness. By default, this mesh is aligned on the X and Z axes; this default rotation isn't suited for use with billboarded materials. For billboarded materials, use <see cref="T:Godot.QuadMesh"/> instead.</para>
  26514. </summary>
  26515. </member>
  26516. <member name="P:Godot.PlaneMesh.Size">
  26517. <summary>
  26518. <para>Size of the generated plane.</para>
  26519. </summary>
  26520. </member>
  26521. <member name="P:Godot.PlaneMesh.SubdivideWidth">
  26522. <summary>
  26523. <para>Number of subdivision along the X axis.</para>
  26524. </summary>
  26525. </member>
  26526. <member name="P:Godot.PlaneMesh.SubdivideDepth">
  26527. <summary>
  26528. <para>Number of subdivision along the Z axis.</para>
  26529. </summary>
  26530. </member>
  26531. <member name="T:Godot.PlaneShape">
  26532. <summary>
  26533. <para>An infinite plane shape for 3D collisions. Note that the <see cref="T:Godot.Plane"/>'s normal matters; anything "below" the plane will collide with it. If the <see cref="T:Godot.PlaneShape"/> is used in a <see cref="T:Godot.PhysicsBody"/>, it will cause colliding objects placed "below" it to teleport "above" the plane.</para>
  26534. </summary>
  26535. </member>
  26536. <member name="P:Godot.PlaneShape.Plane">
  26537. <summary>
  26538. <para>The <see cref="T:Godot.Plane"/> used by the <see cref="T:Godot.PlaneShape"/> for collision.</para>
  26539. </summary>
  26540. </member>
  26541. <member name="M:Godot.PluginScript.New(System.Object[])">
  26542. <summary>
  26543. <para>Returns a new instance of the script.</para>
  26544. </summary>
  26545. </member>
  26546. <member name="T:Godot.PointMesh">
  26547. <summary>
  26548. <para>The PointMesh is made from a single point. Instead of relying on triangles, points are rendered as a single rectangle on the screen with a constant size. They are intended to be used with Particle systems, but can be used as a cheap way to render constant size billboarded sprites (for example in a point cloud).</para>
  26549. <para>PointMeshes, must be used with a material that has a point size. Point size can be accessed in a shader with <c>POINT_SIZE</c>, or in a <see cref="T:Godot.SpatialMaterial"/> by setting <see cref="P:Godot.SpatialMaterial.FlagsUsePointSize"/> and the variable <see cref="P:Godot.SpatialMaterial.ParamsPointSize"/>.</para>
  26550. <para>When using PointMeshes, properties that normally alter vertices will be ignored, including billboard mode, grow, and cull face.</para>
  26551. </summary>
  26552. </member>
  26553. <member name="T:Godot.Polygon2D">
  26554. <summary>
  26555. <para>A Polygon2D is defined by a set of points. Each point is connected to the next, with the final point being connected to the first, resulting in a closed polygon. Polygon2Ds can be filled with color (solid or gradient) or filled with a given texture.</para>
  26556. <para>Note: By default, Godot can only draw up to 4,096 polygon points at a time. To increase this limit, open the Project Settings and increase and .</para>
  26557. </summary>
  26558. </member>
  26559. <member name="P:Godot.Polygon2D.Color">
  26560. <summary>
  26561. <para>The polygon's fill color. If <c>texture</c> is defined, it will be multiplied by this color. It will also be the default color for vertices not set in <c>vertex_colors</c>.</para>
  26562. </summary>
  26563. </member>
  26564. <member name="P:Godot.Polygon2D.Offset">
  26565. <summary>
  26566. <para>The offset applied to each vertex.</para>
  26567. </summary>
  26568. </member>
  26569. <member name="P:Godot.Polygon2D.Antialiased">
  26570. <summary>
  26571. <para>If <c>true</c>, polygon edges will be anti-aliased.</para>
  26572. </summary>
  26573. </member>
  26574. <member name="P:Godot.Polygon2D.Texture">
  26575. <summary>
  26576. <para>The polygon's fill texture. Use <c>uv</c> to set texture coordinates.</para>
  26577. </summary>
  26578. </member>
  26579. <member name="P:Godot.Polygon2D.TextureOffset">
  26580. <summary>
  26581. <para>Amount to offset the polygon's <c>texture</c>. If <c>(0, 0)</c> the texture's origin (its top-left corner) will be placed at the polygon's <c>position</c>.</para>
  26582. </summary>
  26583. </member>
  26584. <member name="P:Godot.Polygon2D.TextureScale">
  26585. <summary>
  26586. <para>Amount to multiply the <c>uv</c> coordinates when using a <c>texture</c>. Larger values make the texture smaller, and vice versa.</para>
  26587. </summary>
  26588. </member>
  26589. <member name="P:Godot.Polygon2D.TextureRotationDegrees">
  26590. <summary>
  26591. <para>The texture's rotation in degrees.</para>
  26592. </summary>
  26593. </member>
  26594. <member name="P:Godot.Polygon2D.TextureRotation">
  26595. <summary>
  26596. <para>The texture's rotation in radians.</para>
  26597. </summary>
  26598. </member>
  26599. <member name="P:Godot.Polygon2D.InvertEnable">
  26600. <summary>
  26601. <para>If <c>true</c>, polygon will be inverted, containing the area outside the defined points and extending to the <c>invert_border</c>.</para>
  26602. </summary>
  26603. </member>
  26604. <member name="P:Godot.Polygon2D.InvertBorder">
  26605. <summary>
  26606. <para>Added padding applied to the bounding box when using <c>invert</c>. Setting this value too small may result in a "Bad Polygon" error.</para>
  26607. </summary>
  26608. </member>
  26609. <member name="P:Godot.Polygon2D.Polygon">
  26610. <summary>
  26611. <para>The polygon's list of vertices. The final point will be connected to the first.</para>
  26612. <para>Note: This returns a copy of the <see cref="T:Godot.Vector2"/> rather than a reference.</para>
  26613. </summary>
  26614. </member>
  26615. <member name="P:Godot.Polygon2D.Uv">
  26616. <summary>
  26617. <para>Texture coordinates for each vertex of the polygon. There should be one <c>uv</c> per polygon vertex. If there are fewer, undefined vertices will use <c>(0, 0)</c>.</para>
  26618. </summary>
  26619. </member>
  26620. <member name="P:Godot.Polygon2D.VertexColors">
  26621. <summary>
  26622. <para>Color for each vertex. Colors are interpolated between vertices, resulting in smooth gradients. There should be one per polygon vertex. If there are fewer, undefined vertices will use <c>color</c>.</para>
  26623. </summary>
  26624. </member>
  26625. <member name="M:Godot.Polygon2D.AddBone(Godot.NodePath,System.Single[])">
  26626. <summary>
  26627. <para>Adds a bone with the specified <c>path</c> and <c>weights</c>.</para>
  26628. </summary>
  26629. </member>
  26630. <member name="M:Godot.Polygon2D.GetBoneCount">
  26631. <summary>
  26632. <para>Returns the number of bones in this <see cref="T:Godot.Polygon2D"/>.</para>
  26633. </summary>
  26634. </member>
  26635. <member name="M:Godot.Polygon2D.GetBonePath(System.Int32)">
  26636. <summary>
  26637. <para>Returns the path to the node associated with the specified bone.</para>
  26638. </summary>
  26639. </member>
  26640. <member name="M:Godot.Polygon2D.GetBoneWeights(System.Int32)">
  26641. <summary>
  26642. <para>Returns the height values of the specified bone.</para>
  26643. </summary>
  26644. </member>
  26645. <member name="M:Godot.Polygon2D.EraseBone(System.Int32)">
  26646. <summary>
  26647. <para>Removes the specified bone from this <see cref="T:Godot.Polygon2D"/>.</para>
  26648. </summary>
  26649. </member>
  26650. <member name="M:Godot.Polygon2D.ClearBones">
  26651. <summary>
  26652. <para>Removes all bones from this <see cref="T:Godot.Polygon2D"/>.</para>
  26653. </summary>
  26654. </member>
  26655. <member name="M:Godot.Polygon2D.SetBonePath(System.Int32,Godot.NodePath)">
  26656. <summary>
  26657. <para>Sets the path to the node associated with the specified bone.</para>
  26658. </summary>
  26659. </member>
  26660. <member name="M:Godot.Polygon2D.SetBoneWeights(System.Int32,System.Single[])">
  26661. <summary>
  26662. <para>Sets the weight values for the specified bone.</para>
  26663. </summary>
  26664. </member>
  26665. <member name="T:Godot.Popup">
  26666. <summary>
  26667. <para>Popup is a base <see cref="T:Godot.Control"/> used to show dialogs and popups. It's a subwindow and modal by default (see <see cref="T:Godot.Control"/>) and has helpers for custom popup behavior. All popup methods ensure correct placement within the viewport.</para>
  26668. </summary>
  26669. </member>
  26670. <member name="F:Godot.Popup.NotificationPostPopup">
  26671. <summary>
  26672. <para>Notification sent right after the popup is shown.</para>
  26673. </summary>
  26674. </member>
  26675. <member name="F:Godot.Popup.NotificationPopupHide">
  26676. <summary>
  26677. <para>Notification sent right after the popup is hidden.</para>
  26678. </summary>
  26679. </member>
  26680. <member name="P:Godot.Popup.PopupExclusive">
  26681. <summary>
  26682. <para>If <c>true</c>, the popup will not be hidden when a click event occurs outside of it, or when it receives the <c>ui_cancel</c> action event.</para>
  26683. </summary>
  26684. </member>
  26685. <member name="M:Godot.Popup.SetAsMinsize">
  26686. <summary>
  26687. <para>Shrink popup to keep to the minimum size of content.</para>
  26688. </summary>
  26689. </member>
  26690. <member name="M:Godot.Popup.PopupCentered(System.Nullable{Godot.Vector2})">
  26691. <summary>
  26692. <para>Popup (show the control in modal form) in the center of the screen relative to its current canvas transform, at the current size, or at a size determined by <c>size</c>.</para>
  26693. </summary>
  26694. <param name="size">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  26695. </member>
  26696. <member name="M:Godot.Popup.PopupCenteredRatio(System.Single)">
  26697. <summary>
  26698. <para>Popup (show the control in modal form) in the center of the screen relative to the current canvas transform, scaled at a ratio of size of the screen.</para>
  26699. </summary>
  26700. </member>
  26701. <member name="M:Godot.Popup.PopupCenteredMinsize(System.Nullable{Godot.Vector2})">
  26702. <summary>
  26703. <para>Popup (show the control in modal form) in the center of the screen relative to the current canvas transform, ensuring the size is never smaller than <c>minsize</c>.</para>
  26704. </summary>
  26705. <param name="minsize">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  26706. </member>
  26707. <member name="M:Godot.Popup.PopupCenteredClamped(System.Nullable{Godot.Vector2},System.Single)">
  26708. <summary>
  26709. <para>Popup (show the control in modal form) in the center of the screen relative to the current canvas transform, clamping the size to <c>size</c>, then ensuring the popup is no larger than the viewport size multiplied by <c>fallback_ratio</c>.</para>
  26710. </summary>
  26711. <param name="size">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  26712. </member>
  26713. <member name="M:Godot.Popup.Popup_(System.Nullable{Godot.Rect2})">
  26714. <summary>
  26715. <para>Popup (show the control in modal form).</para>
  26716. </summary>
  26717. <param name="bounds">If the parameter is null, then the default value is new Rect2(0, 0, 0, 0)</param>
  26718. </member>
  26719. <member name="T:Godot.PopupDialog">
  26720. <summary>
  26721. <para>PopupDialog is a base class for popup dialogs, along with <see cref="T:Godot.WindowDialog"/>.</para>
  26722. </summary>
  26723. </member>
  26724. <member name="T:Godot.PopupMenu">
  26725. <summary>
  26726. <para><see cref="T:Godot.PopupMenu"/> is a <see cref="T:Godot.Control"/> that displays a list of options. They are popular in toolbars or context menus.</para>
  26727. </summary>
  26728. </member>
  26729. <member name="P:Godot.PopupMenu.HideOnItemSelection">
  26730. <summary>
  26731. <para>If <c>true</c>, hides the <see cref="T:Godot.PopupMenu"/> when an item is selected.</para>
  26732. </summary>
  26733. </member>
  26734. <member name="P:Godot.PopupMenu.HideOnCheckableItemSelection">
  26735. <summary>
  26736. <para>If <c>true</c>, hides the <see cref="T:Godot.PopupMenu"/> when a checkbox or radio button is selected.</para>
  26737. </summary>
  26738. </member>
  26739. <member name="P:Godot.PopupMenu.HideOnStateItemSelection">
  26740. <summary>
  26741. <para>If <c>true</c>, hides the <see cref="T:Godot.PopupMenu"/> when a state item is selected.</para>
  26742. </summary>
  26743. </member>
  26744. <member name="P:Godot.PopupMenu.SubmenuPopupDelay">
  26745. <summary>
  26746. <para>Sets the delay time in seconds for the submenu item to popup on mouse hovering. If the popup menu is added as a child of another (acting as a submenu), it will inherit the delay time of the parent menu item.</para>
  26747. </summary>
  26748. </member>
  26749. <member name="P:Godot.PopupMenu.AllowSearch">
  26750. <summary>
  26751. <para>If <c>true</c>, allows to navigate <see cref="T:Godot.PopupMenu"/> with letter keys.</para>
  26752. </summary>
  26753. </member>
  26754. <member name="M:Godot.PopupMenu.AddItem(System.String,System.Int32,System.UInt32)">
  26755. <summary>
  26756. <para>Adds a new item with text <c>label</c>.</para>
  26757. <para>An <c>id</c> can optionally be provided, as well as an accelerator (<c>accel</c>). If no <c>id</c> is provided, one will be created from the index. If no <c>accel</c> is provided then the default <c>0</c> will be assigned to it. See <see cref="M:Godot.PopupMenu.GetItemAccelerator(System.Int32)"/> for more info on accelerators.</para>
  26758. </summary>
  26759. </member>
  26760. <member name="M:Godot.PopupMenu.AddIconItem(Godot.Texture,System.String,System.Int32,System.UInt32)">
  26761. <summary>
  26762. <para>Adds a new item with text <c>label</c> and icon <c>texture</c>.</para>
  26763. <para>An <c>id</c> can optionally be provided, as well as an accelerator (<c>accel</c>). If no <c>id</c> is provided, one will be created from the index. If no <c>accel</c> is provided then the default <c>0</c> will be assigned to it. See <see cref="M:Godot.PopupMenu.GetItemAccelerator(System.Int32)"/> for more info on accelerators.</para>
  26764. </summary>
  26765. </member>
  26766. <member name="M:Godot.PopupMenu.AddCheckItem(System.String,System.Int32,System.UInt32)">
  26767. <summary>
  26768. <para>Adds a new checkable item with text <c>label</c>.</para>
  26769. <para>An <c>id</c> can optionally be provided, as well as an accelerator (<c>accel</c>). If no <c>id</c> is provided, one will be created from the index. If no <c>accel</c> is provided then the default <c>0</c> will be assigned to it. See <see cref="M:Godot.PopupMenu.GetItemAccelerator(System.Int32)"/> for more info on accelerators.</para>
  26770. <para>Note: Checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See <see cref="M:Godot.PopupMenu.SetItemChecked(System.Int32,System.Boolean)"/> for more info on how to control it.</para>
  26771. </summary>
  26772. </member>
  26773. <member name="M:Godot.PopupMenu.AddIconCheckItem(Godot.Texture,System.String,System.Int32,System.UInt32)">
  26774. <summary>
  26775. <para>Adds a new checkable item with text <c>label</c> and icon <c>texture</c>.</para>
  26776. <para>An <c>id</c> can optionally be provided, as well as an accelerator (<c>accel</c>). If no <c>id</c> is provided, one will be created from the index. If no <c>accel</c> is provided then the default <c>0</c> will be assigned to it. See <see cref="M:Godot.PopupMenu.GetItemAccelerator(System.Int32)"/> for more info on accelerators.</para>
  26777. <para>Note: Checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See <see cref="M:Godot.PopupMenu.SetItemChecked(System.Int32,System.Boolean)"/> for more info on how to control it.</para>
  26778. </summary>
  26779. </member>
  26780. <member name="M:Godot.PopupMenu.AddRadioCheckItem(System.String,System.Int32,System.UInt32)">
  26781. <summary>
  26782. <para>Adds a new radio check button with text <c>label</c>.</para>
  26783. <para>An <c>id</c> can optionally be provided, as well as an accelerator (<c>accel</c>). If no <c>id</c> is provided, one will be created from the index. If no <c>accel</c> is provided then the default <c>0</c> will be assigned to it. See <see cref="M:Godot.PopupMenu.GetItemAccelerator(System.Int32)"/> for more info on accelerators.</para>
  26784. <para>Note: Checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See <see cref="M:Godot.PopupMenu.SetItemChecked(System.Int32,System.Boolean)"/> for more info on how to control it.</para>
  26785. </summary>
  26786. </member>
  26787. <member name="M:Godot.PopupMenu.AddIconRadioCheckItem(Godot.Texture,System.String,System.Int32,System.UInt32)">
  26788. <summary>
  26789. <para>Same as <see cref="M:Godot.PopupMenu.AddIconCheckItem(Godot.Texture,System.String,System.Int32,System.UInt32)"/>, but uses a radio check button.</para>
  26790. </summary>
  26791. </member>
  26792. <member name="M:Godot.PopupMenu.AddMultistateItem(System.String,System.Int32,System.Int32,System.Int32,System.UInt32)">
  26793. <summary>
  26794. <para>Adds a new multistate item with text <c>label</c>.</para>
  26795. <para>Contrarily to normal binary items, multistate items can have more than two states, as defined by <c>max_states</c>. Each press or activate of the item will increase the state by one. The default value is defined by <c>default_state</c>.</para>
  26796. <para>An <c>id</c> can optionally be provided, as well as an accelerator (<c>accel</c>). If no <c>id</c> is provided, one will be created from the index. If no <c>accel</c> is provided then the default <c>0</c> will be assigned to it. See <see cref="M:Godot.PopupMenu.GetItemAccelerator(System.Int32)"/> for more info on accelerators.</para>
  26797. </summary>
  26798. </member>
  26799. <member name="M:Godot.PopupMenu.AddShortcut(Godot.ShortCut,System.Int32,System.Boolean)">
  26800. <summary>
  26801. <para>Adds a <see cref="T:Godot.ShortCut"/>.</para>
  26802. <para>An <c>id</c> can optionally be provided. If no <c>id</c> is provided, one will be created from the index.</para>
  26803. </summary>
  26804. </member>
  26805. <member name="M:Godot.PopupMenu.AddIconShortcut(Godot.Texture,Godot.ShortCut,System.Int32,System.Boolean)">
  26806. <summary>
  26807. <para>Adds a new item and assigns the specified <see cref="T:Godot.ShortCut"/> and icon <c>texture</c> to it. Sets the label of the checkbox to the <see cref="T:Godot.ShortCut"/>'s name.</para>
  26808. <para>An <c>id</c> can optionally be provided. If no <c>id</c> is provided, one will be created from the index.</para>
  26809. </summary>
  26810. </member>
  26811. <member name="M:Godot.PopupMenu.AddCheckShortcut(Godot.ShortCut,System.Int32,System.Boolean)">
  26812. <summary>
  26813. <para>Adds a new checkable item and assigns the specified <see cref="T:Godot.ShortCut"/> to it. Sets the label of the checkbox to the <see cref="T:Godot.ShortCut"/>'s name.</para>
  26814. <para>An <c>id</c> can optionally be provided. If no <c>id</c> is provided, one will be created from the index.</para>
  26815. <para>Note: Checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See <see cref="M:Godot.PopupMenu.SetItemChecked(System.Int32,System.Boolean)"/> for more info on how to control it.</para>
  26816. </summary>
  26817. </member>
  26818. <member name="M:Godot.PopupMenu.AddIconCheckShortcut(Godot.Texture,Godot.ShortCut,System.Int32,System.Boolean)">
  26819. <summary>
  26820. <para>Adds a new checkable item and assigns the specified <see cref="T:Godot.ShortCut"/> and icon <c>texture</c> to it. Sets the label of the checkbox to the <see cref="T:Godot.ShortCut"/>'s name.</para>
  26821. <para>An <c>id</c> can optionally be provided. If no <c>id</c> is provided, one will be created from the index.</para>
  26822. <para>Note: Checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See <see cref="M:Godot.PopupMenu.SetItemChecked(System.Int32,System.Boolean)"/> for more info on how to control it.</para>
  26823. </summary>
  26824. </member>
  26825. <member name="M:Godot.PopupMenu.AddRadioCheckShortcut(Godot.ShortCut,System.Int32,System.Boolean)">
  26826. <summary>
  26827. <para>Adds a new radio check button and assigns a <see cref="T:Godot.ShortCut"/> to it. Sets the label of the checkbox to the <see cref="T:Godot.ShortCut"/>'s name.</para>
  26828. <para>An <c>id</c> can optionally be provided. If no <c>id</c> is provided, one will be created from the index.</para>
  26829. <para>Note: Checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually. See <see cref="M:Godot.PopupMenu.SetItemChecked(System.Int32,System.Boolean)"/> for more info on how to control it.</para>
  26830. </summary>
  26831. </member>
  26832. <member name="M:Godot.PopupMenu.AddIconRadioCheckShortcut(Godot.Texture,Godot.ShortCut,System.Int32,System.Boolean)">
  26833. <summary>
  26834. <para>Same as <see cref="M:Godot.PopupMenu.AddIconCheckShortcut(Godot.Texture,Godot.ShortCut,System.Int32,System.Boolean)"/>, but uses a radio check button.</para>
  26835. </summary>
  26836. </member>
  26837. <member name="M:Godot.PopupMenu.AddSubmenuItem(System.String,System.String,System.Int32)">
  26838. <summary>
  26839. <para>Adds an item that will act as a submenu of the parent <see cref="T:Godot.PopupMenu"/> node when clicked. The <c>submenu</c> argument is the name of the child <see cref="T:Godot.PopupMenu"/> node that will be shown when the item is clicked.</para>
  26840. <para>An <c>id</c> can optionally be provided. If no <c>id</c> is provided, one will be created from the index.</para>
  26841. </summary>
  26842. </member>
  26843. <member name="M:Godot.PopupMenu.SetItemText(System.Int32,System.String)">
  26844. <summary>
  26845. <para>Sets the text of the item at index <c>idx</c>.</para>
  26846. </summary>
  26847. </member>
  26848. <member name="M:Godot.PopupMenu.SetItemIcon(System.Int32,Godot.Texture)">
  26849. <summary>
  26850. <para>Replaces the <see cref="T:Godot.Texture"/> icon of the specified <c>idx</c>.</para>
  26851. </summary>
  26852. </member>
  26853. <member name="M:Godot.PopupMenu.SetItemChecked(System.Int32,System.Boolean)">
  26854. <summary>
  26855. <para>Sets the checkstate status of the item at index <c>idx</c>.</para>
  26856. </summary>
  26857. </member>
  26858. <member name="M:Godot.PopupMenu.SetItemId(System.Int32,System.Int32)">
  26859. <summary>
  26860. <para>Sets the <c>id</c> of the item at index <c>idx</c>.</para>
  26861. </summary>
  26862. </member>
  26863. <member name="M:Godot.PopupMenu.SetItemAccelerator(System.Int32,System.UInt32)">
  26864. <summary>
  26865. <para>Sets the accelerator of the item at index <c>idx</c>. Accelerators are special combinations of keys that activate the item, no matter which control is focused.</para>
  26866. </summary>
  26867. </member>
  26868. <member name="M:Godot.PopupMenu.SetItemMetadata(System.Int32,System.Object)">
  26869. <summary>
  26870. <para>Sets the metadata of an item, which may be of any type. You can later get it with <see cref="M:Godot.PopupMenu.GetItemMetadata(System.Int32)"/>, which provides a simple way of assigning context data to items.</para>
  26871. </summary>
  26872. </member>
  26873. <member name="M:Godot.PopupMenu.SetItemDisabled(System.Int32,System.Boolean)">
  26874. <summary>
  26875. <para>Enables/disables the item at index <c>idx</c>. When it is disabled, it can't be selected and its action can't be invoked.</para>
  26876. </summary>
  26877. </member>
  26878. <member name="M:Godot.PopupMenu.SetItemSubmenu(System.Int32,System.String)">
  26879. <summary>
  26880. <para>Sets the submenu of the item at index <c>idx</c>. The submenu is the name of a child <see cref="T:Godot.PopupMenu"/> node that would be shown when the item is clicked.</para>
  26881. </summary>
  26882. </member>
  26883. <member name="M:Godot.PopupMenu.SetItemAsSeparator(System.Int32,System.Boolean)">
  26884. <summary>
  26885. <para>Mark the item at index <c>idx</c> as a separator, which means that it would be displayed as a line. If <c>false</c>, sets the type of the item to plain text.</para>
  26886. </summary>
  26887. </member>
  26888. <member name="M:Godot.PopupMenu.SetItemAsCheckable(System.Int32,System.Boolean)">
  26889. <summary>
  26890. <para>Sets whether the item at index <c>idx</c> has a checkbox. If <c>false</c>, sets the type of the item to plain text.</para>
  26891. <para>Note: Checkable items just display a checkmark, but don't have any built-in checking behavior and must be checked/unchecked manually.</para>
  26892. </summary>
  26893. </member>
  26894. <member name="M:Godot.PopupMenu.SetItemAsRadioCheckable(System.Int32,System.Boolean)">
  26895. <summary>
  26896. <para>Sets the type of the item at the specified index <c>idx</c> to radio button. If <c>false</c>, sets the type of the item to plain text.</para>
  26897. </summary>
  26898. </member>
  26899. <member name="M:Godot.PopupMenu.SetItemTooltip(System.Int32,System.String)">
  26900. <summary>
  26901. <para>Sets the <see cref="T:System.String"/> tooltip of the item at the specified index <c>idx</c>.</para>
  26902. </summary>
  26903. </member>
  26904. <member name="M:Godot.PopupMenu.SetItemShortcut(System.Int32,Godot.ShortCut,System.Boolean)">
  26905. <summary>
  26906. <para>Sets a <see cref="T:Godot.ShortCut"/> for the specified item <c>idx</c>.</para>
  26907. </summary>
  26908. </member>
  26909. <member name="M:Godot.PopupMenu.SetItemMultistate(System.Int32,System.Int32)">
  26910. <summary>
  26911. <para>Sets the state of an multistate item. See <see cref="M:Godot.PopupMenu.AddMultistateItem(System.String,System.Int32,System.Int32,System.Int32,System.UInt32)"/> for details.</para>
  26912. </summary>
  26913. </member>
  26914. <member name="M:Godot.PopupMenu.SetItemShortcutDisabled(System.Int32,System.Boolean)">
  26915. <summary>
  26916. <para>Disables the <see cref="T:Godot.ShortCut"/> of the specified index <c>idx</c>.</para>
  26917. </summary>
  26918. </member>
  26919. <member name="M:Godot.PopupMenu.ToggleItemChecked(System.Int32)">
  26920. <summary>
  26921. <para>Toggles the check state of the item of the specified index <c>idx</c>.</para>
  26922. </summary>
  26923. </member>
  26924. <member name="M:Godot.PopupMenu.ToggleItemMultistate(System.Int32)">
  26925. <summary>
  26926. <para>Cycle to the next state of an multistate item. See <see cref="M:Godot.PopupMenu.AddMultistateItem(System.String,System.Int32,System.Int32,System.Int32,System.UInt32)"/> for details.</para>
  26927. </summary>
  26928. </member>
  26929. <member name="M:Godot.PopupMenu.GetItemText(System.Int32)">
  26930. <summary>
  26931. <para>Returns the text of the item at index <c>idx</c>.</para>
  26932. </summary>
  26933. </member>
  26934. <member name="M:Godot.PopupMenu.GetItemIcon(System.Int32)">
  26935. <summary>
  26936. <para>Returns the icon of the item at index <c>idx</c>.</para>
  26937. </summary>
  26938. </member>
  26939. <member name="M:Godot.PopupMenu.IsItemChecked(System.Int32)">
  26940. <summary>
  26941. <para>Returns <c>true</c> if the item at index <c>idx</c> is checked.</para>
  26942. </summary>
  26943. </member>
  26944. <member name="M:Godot.PopupMenu.GetItemId(System.Int32)">
  26945. <summary>
  26946. <para>Returns the id of the item at index <c>idx</c>. <c>id</c> can be manually assigned, while index can not.</para>
  26947. </summary>
  26948. </member>
  26949. <member name="M:Godot.PopupMenu.GetItemIndex(System.Int32)">
  26950. <summary>
  26951. <para>Returns the index of the item containing the specified <c>id</c>. Index is automatically assigned to each item by the engine. Index can not be set manually.</para>
  26952. </summary>
  26953. </member>
  26954. <member name="M:Godot.PopupMenu.GetItemAccelerator(System.Int32)">
  26955. <summary>
  26956. <para>Returns the accelerator of the item at index <c>idx</c>. Accelerators are special combinations of keys that activate the item, no matter which control is focused.</para>
  26957. </summary>
  26958. </member>
  26959. <member name="M:Godot.PopupMenu.GetItemMetadata(System.Int32)">
  26960. <summary>
  26961. <para>Returns the metadata of the specified item, which might be of any type. You can set it with <see cref="M:Godot.PopupMenu.SetItemMetadata(System.Int32,System.Object)"/>, which provides a simple way of assigning context data to items.</para>
  26962. </summary>
  26963. </member>
  26964. <member name="M:Godot.PopupMenu.IsItemDisabled(System.Int32)">
  26965. <summary>
  26966. <para>Returns <c>true</c> if the item at index <c>idx</c> is disabled. When it is disabled it can't be selected, or its action invoked.</para>
  26967. <para>See <see cref="M:Godot.PopupMenu.SetItemDisabled(System.Int32,System.Boolean)"/> for more info on how to disable an item.</para>
  26968. </summary>
  26969. </member>
  26970. <member name="M:Godot.PopupMenu.GetItemSubmenu(System.Int32)">
  26971. <summary>
  26972. <para>Returns the submenu name of the item at index <c>idx</c>. See <see cref="M:Godot.PopupMenu.AddSubmenuItem(System.String,System.String,System.Int32)"/> for more info on how to add a submenu.</para>
  26973. </summary>
  26974. </member>
  26975. <member name="M:Godot.PopupMenu.IsItemSeparator(System.Int32)">
  26976. <summary>
  26977. <para>Returns <c>true</c> if the item is a separator. If it is, it will be displayed as a line. See <see cref="M:Godot.PopupMenu.AddSeparator(System.String)"/> for more info on how to add a separator.</para>
  26978. </summary>
  26979. </member>
  26980. <member name="M:Godot.PopupMenu.IsItemCheckable(System.Int32)">
  26981. <summary>
  26982. <para>Returns <c>true</c> if the item at index <c>idx</c> is checkable in some way, i.e. if it has a checkbox or radio button.</para>
  26983. <para>Note: Checkable items just display a checkmark or radio button, but don't have any built-in checking behavior and must be checked/unchecked manually.</para>
  26984. </summary>
  26985. </member>
  26986. <member name="M:Godot.PopupMenu.IsItemRadioCheckable(System.Int32)">
  26987. <summary>
  26988. <para>Returns <c>true</c> if the item at index <c>idx</c> has radio button-style checkability.</para>
  26989. <para>Note: This is purely cosmetic; you must add the logic for checking/unchecking items in radio groups.</para>
  26990. </summary>
  26991. </member>
  26992. <member name="M:Godot.PopupMenu.IsItemShortcutDisabled(System.Int32)">
  26993. <summary>
  26994. <para>Returns <c>true</c> if the specified item's shortcut is disabled.</para>
  26995. </summary>
  26996. </member>
  26997. <member name="M:Godot.PopupMenu.GetItemTooltip(System.Int32)">
  26998. <summary>
  26999. <para>Returns the tooltip associated with the specified index index <c>idx</c>.</para>
  27000. </summary>
  27001. </member>
  27002. <member name="M:Godot.PopupMenu.GetItemShortcut(System.Int32)">
  27003. <summary>
  27004. <para>Returns the <see cref="T:Godot.ShortCut"/> associated with the specified <c>idx</c> item.</para>
  27005. </summary>
  27006. </member>
  27007. <member name="M:Godot.PopupMenu.GetItemCount">
  27008. <summary>
  27009. <para>Returns the number of items in the <see cref="T:Godot.PopupMenu"/>.</para>
  27010. </summary>
  27011. </member>
  27012. <member name="M:Godot.PopupMenu.RemoveItem(System.Int32)">
  27013. <summary>
  27014. <para>Removes the item at index <c>idx</c> from the menu.</para>
  27015. <para>Note: The indices of items after the removed item will be shifted by one.</para>
  27016. </summary>
  27017. </member>
  27018. <member name="M:Godot.PopupMenu.AddSeparator(System.String)">
  27019. <summary>
  27020. <para>Adds a separator between items. Separators also occupy an index.</para>
  27021. </summary>
  27022. </member>
  27023. <member name="M:Godot.PopupMenu.Clear">
  27024. <summary>
  27025. <para>Removes all items from the <see cref="T:Godot.PopupMenu"/>.</para>
  27026. </summary>
  27027. </member>
  27028. <member name="M:Godot.PopupMenu.SetHideOnWindowLoseFocus(System.Boolean)">
  27029. <summary>
  27030. <para>Hides the <see cref="T:Godot.PopupMenu"/> when the window loses focus.</para>
  27031. </summary>
  27032. </member>
  27033. <member name="M:Godot.PopupMenu.IsHideOnWindowLoseFocus">
  27034. <summary>
  27035. <para>Returns <c>true</c> if the popup will be hidden when the window loses focus or not.</para>
  27036. </summary>
  27037. </member>
  27038. <member name="T:Godot.PopupPanel">
  27039. <summary>
  27040. <para>Class for displaying popups with a panel background. In some cases it might be simpler to use than <see cref="T:Godot.Popup"/>, since it provides a configurable background. If you are making windows, better check <see cref="T:Godot.WindowDialog"/>.</para>
  27041. </summary>
  27042. </member>
  27043. <member name="T:Godot.Position2D">
  27044. <summary>
  27045. <para>Generic 2D position hint for editing. It's just like a plain <see cref="T:Godot.Node2D"/>, but it displays as a cross in the 2D editor at all times. You can set cross' visual size by using the gizmo in the 2D editor while the node is selected.</para>
  27046. </summary>
  27047. </member>
  27048. <member name="T:Godot.Position3D">
  27049. <summary>
  27050. <para>Generic 3D position hint for editing. It's just like a plain <see cref="T:Godot.Spatial"/>, but it displays as a cross in the 3D editor at all times.</para>
  27051. </summary>
  27052. </member>
  27053. <member name="T:Godot.PrimitiveMesh">
  27054. <summary>
  27055. <para>Base class for all primitive meshes. Handles applying a <see cref="T:Godot.Material"/> to a primitive mesh. Examples include <see cref="T:Godot.CapsuleMesh"/>, <see cref="T:Godot.CubeMesh"/>, <see cref="T:Godot.CylinderMesh"/>, <see cref="T:Godot.PlaneMesh"/>, <see cref="T:Godot.PrismMesh"/>, <see cref="T:Godot.QuadMesh"/>, and <see cref="T:Godot.SphereMesh"/>.</para>
  27056. </summary>
  27057. </member>
  27058. <member name="P:Godot.PrimitiveMesh.Material">
  27059. <summary>
  27060. <para>The current <see cref="T:Godot.Material"/> of the primitive mesh.</para>
  27061. </summary>
  27062. </member>
  27063. <member name="P:Godot.PrimitiveMesh.CustomAabb">
  27064. <summary>
  27065. <para>Overrides the <see cref="T:Godot.AABB"/> with one defined by user for use with frustum culling. Especially useful to avoid unnexpected culling when using a shader to offset vertices.</para>
  27066. </summary>
  27067. </member>
  27068. <member name="P:Godot.PrimitiveMesh.FlipFaces">
  27069. <summary>
  27070. <para>If set, the order of the vertices in each triangle are reversed resulting in the backside of the mesh being drawn.</para>
  27071. <para>This gives the same result as using in <see cref="P:Godot.SpatialMaterial.ParamsCullMode"/>.</para>
  27072. </summary>
  27073. </member>
  27074. <member name="M:Godot.PrimitiveMesh.GetMeshArrays">
  27075. <summary>
  27076. <para>Returns mesh arrays used to constitute surface of <see cref="T:Godot.Mesh"/>. Mesh arrays can be used with <see cref="T:Godot.ArrayMesh"/> to create new surfaces.</para>
  27077. </summary>
  27078. </member>
  27079. <member name="T:Godot.PrismMesh">
  27080. <summary>
  27081. <para>Class representing a prism-shaped <see cref="T:Godot.PrimitiveMesh"/>.</para>
  27082. </summary>
  27083. </member>
  27084. <member name="P:Godot.PrismMesh.LeftToRight">
  27085. <summary>
  27086. <para>Displacement of the upper edge along the X axis. 0.0 positions edge straight above the bottom-left edge.</para>
  27087. </summary>
  27088. </member>
  27089. <member name="P:Godot.PrismMesh.Size">
  27090. <summary>
  27091. <para>Size of the prism.</para>
  27092. </summary>
  27093. </member>
  27094. <member name="P:Godot.PrismMesh.SubdivideWidth">
  27095. <summary>
  27096. <para>Number of added edge loops along the X axis.</para>
  27097. </summary>
  27098. </member>
  27099. <member name="P:Godot.PrismMesh.SubdivideHeight">
  27100. <summary>
  27101. <para>Number of added edge loops along the Y axis.</para>
  27102. </summary>
  27103. </member>
  27104. <member name="P:Godot.PrismMesh.SubdivideDepth">
  27105. <summary>
  27106. <para>Number of added edge loops along the Z axis.</para>
  27107. </summary>
  27108. </member>
  27109. <member name="T:Godot.ProceduralSky">
  27110. <summary>
  27111. <para>ProceduralSky provides a way to create an effective background quickly by defining procedural parameters for the sun, the sky and the ground. The sky and ground are very similar, they are defined by a color at the horizon, another color, and finally an easing curve to interpolate between these two colors. Similarly, the sun is described by a position in the sky, a color, and an easing curve. However, the sun also defines a minimum and maximum angle, these two values define at what distance the easing curve begins and ends from the sun, and thus end up defining the size of the sun in the sky.</para>
  27112. <para>The ProceduralSky is updated on the CPU after the parameters change. It is stored in a texture and then displayed as a background in the scene. This makes it relatively unsuitable for real-time updates during gameplay. However, with a small enough texture size, it can still be updated relatively frequently, as it is updated on a background thread when multi-threading is available.</para>
  27113. </summary>
  27114. </member>
  27115. <member name="F:Godot.ProceduralSky.TextureSizeEnum.Size256">
  27116. <summary>
  27117. <para>Sky texture will be 256x128.</para>
  27118. </summary>
  27119. </member>
  27120. <member name="F:Godot.ProceduralSky.TextureSizeEnum.Size512">
  27121. <summary>
  27122. <para>Sky texture will be 512x256.</para>
  27123. </summary>
  27124. </member>
  27125. <member name="F:Godot.ProceduralSky.TextureSizeEnum.Size1024">
  27126. <summary>
  27127. <para>Sky texture will be 1024x512. This is the default size.</para>
  27128. </summary>
  27129. </member>
  27130. <member name="F:Godot.ProceduralSky.TextureSizeEnum.Size2048">
  27131. <summary>
  27132. <para>Sky texture will be 2048x1024.</para>
  27133. </summary>
  27134. </member>
  27135. <member name="F:Godot.ProceduralSky.TextureSizeEnum.Size4096">
  27136. <summary>
  27137. <para>Sky texture will be 4096x2048.</para>
  27138. </summary>
  27139. </member>
  27140. <member name="F:Godot.ProceduralSky.TextureSizeEnum.Max">
  27141. <summary>
  27142. <para>Represents the size of the <see cref="T:Godot.ProceduralSky.TextureSizeEnum"/> enum.</para>
  27143. </summary>
  27144. </member>
  27145. <member name="P:Godot.ProceduralSky.SkyTopColor">
  27146. <summary>
  27147. <para>Color of the sky at the top.</para>
  27148. </summary>
  27149. </member>
  27150. <member name="P:Godot.ProceduralSky.SkyHorizonColor">
  27151. <summary>
  27152. <para>Color of the sky at the horizon.</para>
  27153. </summary>
  27154. </member>
  27155. <member name="P:Godot.ProceduralSky.SkyCurve">
  27156. <summary>
  27157. <para>How quickly the <see cref="P:Godot.ProceduralSky.SkyHorizonColor"/> fades into the <see cref="P:Godot.ProceduralSky.SkyTopColor"/>.</para>
  27158. </summary>
  27159. </member>
  27160. <member name="P:Godot.ProceduralSky.SkyEnergy">
  27161. <summary>
  27162. <para>Amount of energy contribution from the sky.</para>
  27163. </summary>
  27164. </member>
  27165. <member name="P:Godot.ProceduralSky.GroundBottomColor">
  27166. <summary>
  27167. <para>Color of the ground at the bottom.</para>
  27168. </summary>
  27169. </member>
  27170. <member name="P:Godot.ProceduralSky.GroundHorizonColor">
  27171. <summary>
  27172. <para>Color of the ground at the horizon.</para>
  27173. </summary>
  27174. </member>
  27175. <member name="P:Godot.ProceduralSky.GroundCurve">
  27176. <summary>
  27177. <para>How quickly the <see cref="P:Godot.ProceduralSky.GroundHorizonColor"/> fades into the <see cref="P:Godot.ProceduralSky.GroundBottomColor"/>.</para>
  27178. </summary>
  27179. </member>
  27180. <member name="P:Godot.ProceduralSky.GroundEnergy">
  27181. <summary>
  27182. <para>Amount of energy contribution from the ground.</para>
  27183. </summary>
  27184. </member>
  27185. <member name="P:Godot.ProceduralSky.SunColor">
  27186. <summary>
  27187. <para>The sun's color.</para>
  27188. </summary>
  27189. </member>
  27190. <member name="P:Godot.ProceduralSky.SunLatitude">
  27191. <summary>
  27192. <para>The sun's height using polar coordinates.</para>
  27193. </summary>
  27194. </member>
  27195. <member name="P:Godot.ProceduralSky.SunLongitude">
  27196. <summary>
  27197. <para>The direction of the sun using polar coordinates.</para>
  27198. </summary>
  27199. </member>
  27200. <member name="P:Godot.ProceduralSky.SunAngleMin">
  27201. <summary>
  27202. <para>Distance from sun where it goes from solid to starting to fade.</para>
  27203. </summary>
  27204. </member>
  27205. <member name="P:Godot.ProceduralSky.SunAngleMax">
  27206. <summary>
  27207. <para>Distance from center of sun where it fades out completely.</para>
  27208. </summary>
  27209. </member>
  27210. <member name="P:Godot.ProceduralSky.SunCurve">
  27211. <summary>
  27212. <para>How quickly the sun fades away between <see cref="P:Godot.ProceduralSky.SunAngleMin"/> and <see cref="P:Godot.ProceduralSky.SunAngleMax"/>.</para>
  27213. </summary>
  27214. </member>
  27215. <member name="P:Godot.ProceduralSky.SunEnergy">
  27216. <summary>
  27217. <para>Amount of energy contribution from the sun.</para>
  27218. </summary>
  27219. </member>
  27220. <member name="P:Godot.ProceduralSky.TextureSize">
  27221. <summary>
  27222. <para>Size of <see cref="T:Godot.Texture"/> that the ProceduralSky will generate. The size is set using <see cref="T:Godot.ProceduralSky.TextureSizeEnum"/>.</para>
  27223. </summary>
  27224. </member>
  27225. <member name="T:Godot.ProgressBar">
  27226. <summary>
  27227. <para>General-purpose progress bar. Shows fill percentage from right to left.</para>
  27228. </summary>
  27229. </member>
  27230. <member name="P:Godot.ProgressBar.PercentVisible">
  27231. <summary>
  27232. <para>If <c>true</c>, the fill percentage is displayed on the bar.</para>
  27233. </summary>
  27234. </member>
  27235. <member name="T:Godot.ProjectSettings">
  27236. <summary>
  27237. <para>Contains global variables accessible from everywhere. Use <see cref="M:Godot.ProjectSettings.GetSetting(System.String)"/>, <see cref="M:Godot.ProjectSettings.SetSetting(System.String,System.Object)"/> or <see cref="M:Godot.ProjectSettings.HasSetting(System.String)"/> to access them. Variables stored in <c>project.godot</c> are also loaded into ProjectSettings, making this object very useful for reading custom game configuration options.</para>
  27238. <para>When naming a Project Settings property, use the full path to the setting including the category. For example, <c>"application/config/name"</c> for the project name. Category and property names can be viewed in the Project Settings dialog.</para>
  27239. <para>Overriding: Any project setting can be overridden by creating a file named <c>override.cfg</c> in the project's root directory. This can also be used in exported projects by placing this file in the same directory as the project binary.</para>
  27240. </summary>
  27241. </member>
  27242. <member name="M:Godot.ProjectSettings.HasSetting(System.String)">
  27243. <summary>
  27244. <para>Returns <c>true</c> if a configuration value is present.</para>
  27245. </summary>
  27246. </member>
  27247. <member name="M:Godot.ProjectSettings.SetSetting(System.String,System.Object)">
  27248. <summary>
  27249. <para>Sets the value of a setting.</para>
  27250. <para>Example:</para>
  27251. <para><code>
  27252. ProjectSettings.set_setting("application/config/name", "Example")
  27253. </code></para>
  27254. </summary>
  27255. </member>
  27256. <member name="M:Godot.ProjectSettings.GetSetting(System.String)">
  27257. <summary>
  27258. <para>Returns the value of a setting.</para>
  27259. <para>Example:</para>
  27260. <para><code>
  27261. print(ProjectSettings.get_setting("application/config/name"))
  27262. </code></para>
  27263. </summary>
  27264. </member>
  27265. <member name="M:Godot.ProjectSettings.SetOrder(System.String,System.Int32)">
  27266. <summary>
  27267. <para>Sets the order of a configuration value (influences when saved to the config file).</para>
  27268. </summary>
  27269. </member>
  27270. <member name="M:Godot.ProjectSettings.GetOrder(System.String)">
  27271. <summary>
  27272. <para>Returns the order of a configuration value (influences when saved to the config file).</para>
  27273. </summary>
  27274. </member>
  27275. <member name="M:Godot.ProjectSettings.SetInitialValue(System.String,System.Object)">
  27276. <summary>
  27277. <para>Sets the specified property's initial value. This is the value the property reverts to.</para>
  27278. </summary>
  27279. </member>
  27280. <member name="M:Godot.ProjectSettings.AddPropertyInfo(Godot.Collections.Dictionary)">
  27281. <summary>
  27282. <para>Adds a custom property info to a property. The dictionary must contain:</para>
  27283. <para>- <c>name</c>: <see cref="T:System.String"/> (the property's name)</para>
  27284. <para>- <c>type</c>: <see cref="T:System.Int32"/> (see <see cref="T:Godot.Variant.Type"/>)</para>
  27285. <para>- optionally <c>hint</c>: <see cref="T:System.Int32"/> (see <see cref="T:Godot.PropertyHint"/>) and <c>hint_string</c>: <see cref="T:System.String"/></para>
  27286. <para>Example:</para>
  27287. <para><code>
  27288. ProjectSettings.set("category/property_name", 0)
  27289. var property_info = {
  27290. "name": "category/property_name",
  27291. "type": TYPE_INT,
  27292. "hint": PROPERTY_HINT_ENUM,
  27293. "hint_string": "one,two,three"
  27294. }
  27295. ProjectSettings.add_property_info(property_info)
  27296. </code></para>
  27297. </summary>
  27298. </member>
  27299. <member name="M:Godot.ProjectSettings.Clear(System.String)">
  27300. <summary>
  27301. <para>Clears the whole configuration (not recommended, may break things).</para>
  27302. </summary>
  27303. </member>
  27304. <member name="M:Godot.ProjectSettings.LocalizePath(System.String)">
  27305. <summary>
  27306. <para>Convert a path to a localized path (<c>res://</c> path).</para>
  27307. </summary>
  27308. </member>
  27309. <member name="M:Godot.ProjectSettings.GlobalizePath(System.String)">
  27310. <summary>
  27311. <para>Converts a localized path (<c>res://</c>) to a full native OS path.</para>
  27312. </summary>
  27313. </member>
  27314. <member name="M:Godot.ProjectSettings.Save">
  27315. <summary>
  27316. <para>Saves the configuration to the <c>project.godot</c> file.</para>
  27317. </summary>
  27318. </member>
  27319. <member name="M:Godot.ProjectSettings.LoadResourcePack(System.String,System.Boolean)">
  27320. <summary>
  27321. <para>Loads the contents of the .pck or .zip file specified by <c>pack</c> into the resource filesystem (<c>res://</c>). Returns <c>true</c> on success.</para>
  27322. <para>Note: If a file from <c>pack</c> shares the same path as a file already in the resource filesystem, any attempts to load that file will use the file from <c>pack</c> unless <c>replace_files</c> is set to <c>false</c>.</para>
  27323. </summary>
  27324. </member>
  27325. <member name="M:Godot.ProjectSettings.PropertyCanRevert(System.String)">
  27326. <summary>
  27327. <para>Returns <c>true</c> if the specified property exists and its initial value differs from the current value.</para>
  27328. </summary>
  27329. </member>
  27330. <member name="M:Godot.ProjectSettings.PropertyGetRevert(System.String)">
  27331. <summary>
  27332. <para>Returns the specified property's initial value. Returns <c>null</c> if the property does not exist.</para>
  27333. </summary>
  27334. </member>
  27335. <member name="M:Godot.ProjectSettings.SaveCustom(System.String)">
  27336. <summary>
  27337. <para>Saves the configuration to a custom file. The file extension must be <c>.godot</c> (to save in text-based <see cref="T:Godot.ConfigFile"/> format) or <c>.binary</c> (to save in binary format).</para>
  27338. </summary>
  27339. </member>
  27340. <member name="T:Godot.ProximityGroup">
  27341. <summary>
  27342. <para>General-purpose proximity detection node.</para>
  27343. </summary>
  27344. </member>
  27345. <member name="T:Godot.QuadMesh">
  27346. <summary>
  27347. <para>Class representing a square <see cref="T:Godot.PrimitiveMesh"/>. This flat mesh does not have a thickness. By default, this mesh is aligned on the X and Y axes; this default rotation is more suited for use with billboarded materials. Unlike <see cref="T:Godot.PlaneMesh"/>, this mesh doesn't provide subdivision options.</para>
  27348. </summary>
  27349. </member>
  27350. <member name="P:Godot.QuadMesh.Size">
  27351. <summary>
  27352. <para>Size on the X and Y axes.</para>
  27353. </summary>
  27354. </member>
  27355. <member name="T:Godot.RandomNumberGenerator">
  27356. <summary>
  27357. <para>RandomNumberGenerator is a class for generating pseudo-random numbers. It currently uses <a href="http://www.pcg-random.org/">PCG32</a>.</para>
  27358. <para>Note: The underlying algorithm is an implementation detail. As a result, it should not be depended upon for reproducible random streams across Godot versions.</para>
  27359. <para>To generate a random float number (within a given range) based on a time-dependant seed:</para>
  27360. <para><code>
  27361. var rng = RandomNumberGenerator.new()
  27362. func _ready():
  27363. rng.randomize()
  27364. var my_random_number = rng.randf_range(-10.0, 10.0)
  27365. </code></para>
  27366. </summary>
  27367. </member>
  27368. <member name="P:Godot.RandomNumberGenerator.Seed">
  27369. <summary>
  27370. <para>The seed used by the random number generator. A given seed will give a reproducible sequence of pseudo-random numbers.</para>
  27371. <para>Note: The RNG does not have an avalanche effect, and can output similar random streams given similar seeds. Consider using a hash function to improve your seed quality if they're sourced externally.</para>
  27372. </summary>
  27373. </member>
  27374. <member name="M:Godot.RandomNumberGenerator.Randi">
  27375. <summary>
  27376. <para>Generates a pseudo-random 32-bit unsigned integer between <c>0</c> and <c>4294967295</c> (inclusive).</para>
  27377. </summary>
  27378. </member>
  27379. <member name="M:Godot.RandomNumberGenerator.Randf">
  27380. <summary>
  27381. <para>Generates a pseudo-random float between <c>0.0</c> and <c>1.0</c> (inclusive).</para>
  27382. </summary>
  27383. </member>
  27384. <member name="M:Godot.RandomNumberGenerator.Randfn(System.Single,System.Single)">
  27385. <summary>
  27386. <para>Generates a <a href="https://en.wikipedia.org/wiki/Normal_distribution">normally-distributed</a> pseudo-random number, using Box-Muller transform with the specified <c>mean</c> and a standard <c>deviation</c>. This is also called Gaussian distribution.</para>
  27387. </summary>
  27388. </member>
  27389. <member name="M:Godot.RandomNumberGenerator.RandfRange(System.Single,System.Single)">
  27390. <summary>
  27391. <para>Generates a pseudo-random float between <c>from</c> and <c>to</c> (inclusive).</para>
  27392. </summary>
  27393. </member>
  27394. <member name="M:Godot.RandomNumberGenerator.RandiRange(System.Int32,System.Int32)">
  27395. <summary>
  27396. <para>Generates a pseudo-random 32-bit signed integer between <c>from</c> and <c>to</c> (inclusive).</para>
  27397. </summary>
  27398. </member>
  27399. <member name="M:Godot.RandomNumberGenerator.Randomize">
  27400. <summary>
  27401. <para>Setups a time-based seed to generator.</para>
  27402. </summary>
  27403. </member>
  27404. <member name="T:Godot.Range">
  27405. <summary>
  27406. <para>Range is a base class for <see cref="T:Godot.Control"/> nodes that change a floating-point value between a minimum and a maximum, using step and page, for example a <see cref="T:Godot.ScrollBar"/>.</para>
  27407. </summary>
  27408. </member>
  27409. <member name="P:Godot.Range.MinValue">
  27410. <summary>
  27411. <para>Minimum value. Range is clamped if <c>value</c> is less than <c>min_value</c>.</para>
  27412. </summary>
  27413. </member>
  27414. <member name="P:Godot.Range.MaxValue">
  27415. <summary>
  27416. <para>Maximum value. Range is clamped if <c>value</c> is greater than <c>max_value</c>.</para>
  27417. </summary>
  27418. </member>
  27419. <member name="P:Godot.Range.Step">
  27420. <summary>
  27421. <para>If greater than 0, <c>value</c> will always be rounded to a multiple of <c>step</c>. If <c>rounded</c> is also <c>true</c>, <c>value</c> will first be rounded to a multiple of <c>step</c> then rounded to the nearest integer.</para>
  27422. </summary>
  27423. </member>
  27424. <member name="P:Godot.Range.Page">
  27425. <summary>
  27426. <para>Page size. Used mainly for <see cref="T:Godot.ScrollBar"/>. ScrollBar's length is its size multiplied by <c>page</c> over the difference between <c>min_value</c> and <c>max_value</c>.</para>
  27427. </summary>
  27428. </member>
  27429. <member name="P:Godot.Range.Value">
  27430. <summary>
  27431. <para>Range's current value.</para>
  27432. </summary>
  27433. </member>
  27434. <member name="P:Godot.Range.Ratio">
  27435. <summary>
  27436. <para>The value mapped between 0 and 1.</para>
  27437. </summary>
  27438. </member>
  27439. <member name="P:Godot.Range.ExpEdit">
  27440. <summary>
  27441. <para>If <c>true</c>, and <c>min_value</c> is greater than 0, <c>value</c> will be represented exponentially rather than linearly.</para>
  27442. </summary>
  27443. </member>
  27444. <member name="P:Godot.Range.Rounded">
  27445. <summary>
  27446. <para>If <c>true</c>, <c>value</c> will always be rounded to the nearest integer.</para>
  27447. </summary>
  27448. </member>
  27449. <member name="P:Godot.Range.AllowGreater">
  27450. <summary>
  27451. <para>If <c>true</c>, <see cref="P:Godot.Range.Value"/> may be greater than <see cref="P:Godot.Range.MaxValue"/>.</para>
  27452. </summary>
  27453. </member>
  27454. <member name="P:Godot.Range.AllowLesser">
  27455. <summary>
  27456. <para>If <c>true</c>, <see cref="P:Godot.Range.Value"/> may be less than <see cref="P:Godot.Range.MinValue"/>.</para>
  27457. </summary>
  27458. </member>
  27459. <member name="M:Godot.Range.Share(Godot.Node)">
  27460. <summary>
  27461. <para>Binds two ranges together along with any ranges previously grouped with either of them. When any of range's member variables change, it will share the new value with all other ranges in its group.</para>
  27462. </summary>
  27463. </member>
  27464. <member name="M:Godot.Range.Unshare">
  27465. <summary>
  27466. <para>Stops range from sharing its member variables with any other.</para>
  27467. </summary>
  27468. </member>
  27469. <member name="T:Godot.RayCast">
  27470. <summary>
  27471. <para>A RayCast represents a line from its origin to its destination position, <c>cast_to</c>. It is used to query the 3D space in order to find the closest object along the path of the ray.</para>
  27472. <para>RayCast can ignore some objects by adding them to the exception list via <c>add_exception</c> or by setting proper filtering with collision layers and masks.</para>
  27473. <para>RayCast can be configured to report collisions with <see cref="T:Godot.Area"/>s (<see cref="P:Godot.RayCast.CollideWithAreas"/>) and/or <see cref="T:Godot.PhysicsBody"/>s (<see cref="P:Godot.RayCast.CollideWithBodies"/>).</para>
  27474. <para>Only enabled raycasts will be able to query the space and report collisions.</para>
  27475. <para>RayCast calculates intersection every physics frame (see <see cref="T:Godot.Node"/>), and the result is cached so it can be used later until the next frame. If multiple queries are required between physics frames (or during the same frame), use <see cref="M:Godot.RayCast.ForceRaycastUpdate"/> after adjusting the raycast.</para>
  27476. </summary>
  27477. </member>
  27478. <member name="P:Godot.RayCast.Enabled">
  27479. <summary>
  27480. <para>If <c>true</c>, collisions will be reported.</para>
  27481. </summary>
  27482. </member>
  27483. <member name="P:Godot.RayCast.ExcludeParent">
  27484. <summary>
  27485. <para>If <c>true</c>, collisions will be ignored for this RayCast's immediate parent.</para>
  27486. </summary>
  27487. </member>
  27488. <member name="P:Godot.RayCast.CastTo">
  27489. <summary>
  27490. <para>The ray's destination point, relative to the RayCast's <c>position</c>.</para>
  27491. </summary>
  27492. </member>
  27493. <member name="P:Godot.RayCast.CollisionMask">
  27494. <summary>
  27495. <para>The ray's collision mask. Only objects in at least one collision layer enabled in the mask will be detected.</para>
  27496. </summary>
  27497. </member>
  27498. <member name="P:Godot.RayCast.CollideWithAreas">
  27499. <summary>
  27500. <para>If <c>true</c>, collision with <see cref="T:Godot.Area"/>s will be reported.</para>
  27501. </summary>
  27502. </member>
  27503. <member name="P:Godot.RayCast.CollideWithBodies">
  27504. <summary>
  27505. <para>If <c>true</c>, collision with <see cref="T:Godot.PhysicsBody"/>s will be reported.</para>
  27506. </summary>
  27507. </member>
  27508. <member name="M:Godot.RayCast.IsColliding">
  27509. <summary>
  27510. <para>Returns whether any object is intersecting with the ray's vector (considering the vector length).</para>
  27511. </summary>
  27512. </member>
  27513. <member name="M:Godot.RayCast.ForceRaycastUpdate">
  27514. <summary>
  27515. <para>Updates the collision information for the ray.</para>
  27516. <para>Use this method to update the collision information immediately instead of waiting for the next <c>_physics_process</c> call, for example if the ray or its parent has changed state.</para>
  27517. <para>Note: <c>enabled == true</c> is not required for this to work.</para>
  27518. </summary>
  27519. </member>
  27520. <member name="M:Godot.RayCast.GetCollider">
  27521. <summary>
  27522. <para>Returns the first object that the ray intersects, or <c>null</c> if no object is intersecting the ray (i.e. <see cref="M:Godot.RayCast.IsColliding"/> returns <c>false</c>).</para>
  27523. </summary>
  27524. </member>
  27525. <member name="M:Godot.RayCast.GetColliderShape">
  27526. <summary>
  27527. <para>Returns the shape ID of the first object that the ray intersects, or <c>0</c> if no object is intersecting the ray (i.e. <see cref="M:Godot.RayCast.IsColliding"/> returns <c>false</c>).</para>
  27528. </summary>
  27529. </member>
  27530. <member name="M:Godot.RayCast.GetCollisionPoint">
  27531. <summary>
  27532. <para>Returns the collision point at which the ray intersects the closest object.</para>
  27533. <para>Note: This point is in the global coordinate system.</para>
  27534. </summary>
  27535. </member>
  27536. <member name="M:Godot.RayCast.GetCollisionNormal">
  27537. <summary>
  27538. <para>Returns the normal of the intersecting object's shape at the collision point.</para>
  27539. </summary>
  27540. </member>
  27541. <member name="M:Godot.RayCast.AddExceptionRid(Godot.RID)">
  27542. <summary>
  27543. <para>Adds a collision exception so the ray does not report collisions with the specified <see cref="T:Godot.RID"/>.</para>
  27544. </summary>
  27545. </member>
  27546. <member name="M:Godot.RayCast.AddException(Godot.Object)">
  27547. <summary>
  27548. <para>Adds a collision exception so the ray does not report collisions with the specified node.</para>
  27549. </summary>
  27550. </member>
  27551. <member name="M:Godot.RayCast.RemoveExceptionRid(Godot.RID)">
  27552. <summary>
  27553. <para>Removes a collision exception so the ray does report collisions with the specified <see cref="T:Godot.RID"/>.</para>
  27554. </summary>
  27555. </member>
  27556. <member name="M:Godot.RayCast.RemoveException(Godot.Object)">
  27557. <summary>
  27558. <para>Removes a collision exception so the ray does report collisions with the specified node.</para>
  27559. </summary>
  27560. </member>
  27561. <member name="M:Godot.RayCast.ClearExceptions">
  27562. <summary>
  27563. <para>Removes all collision exceptions for this ray.</para>
  27564. </summary>
  27565. </member>
  27566. <member name="M:Godot.RayCast.SetCollisionMaskBit(System.Int32,System.Boolean)">
  27567. <summary>
  27568. <para>Sets the bit index passed to the <c>value</c> passed.</para>
  27569. <para>Note: Bit indexes range from 0-19.</para>
  27570. </summary>
  27571. </member>
  27572. <member name="M:Godot.RayCast.GetCollisionMaskBit(System.Int32)">
  27573. <summary>
  27574. <para>Returns <c>true</c> if the bit index passed is turned on.</para>
  27575. <para>Note: Bit indices range from 0-19.</para>
  27576. </summary>
  27577. </member>
  27578. <member name="T:Godot.RayCast2D">
  27579. <summary>
  27580. <para>A RayCast represents a line from its origin to its destination position, <c>cast_to</c>. It is used to query the 2D space in order to find the closest object along the path of the ray.</para>
  27581. <para>RayCast2D can ignore some objects by adding them to the exception list via <c>add_exception</c>, by setting proper filtering with collision layers, or by filtering object types with type masks.</para>
  27582. <para>RayCast2D can be configured to report collisions with <see cref="T:Godot.Area2D"/>s (<see cref="P:Godot.RayCast2D.CollideWithAreas"/>) and/or <see cref="T:Godot.PhysicsBody2D"/>s (<see cref="P:Godot.RayCast2D.CollideWithBodies"/>).</para>
  27583. <para>Only enabled raycasts will be able to query the space and report collisions.</para>
  27584. <para>RayCast2D calculates intersection every physics frame (see <see cref="T:Godot.Node"/>), and the result is cached so it can be used later until the next frame. If multiple queries are required between physics frames (or during the same frame) use <see cref="M:Godot.RayCast2D.ForceRaycastUpdate"/> after adjusting the raycast.</para>
  27585. </summary>
  27586. </member>
  27587. <member name="P:Godot.RayCast2D.Enabled">
  27588. <summary>
  27589. <para>If <c>true</c>, collisions will be reported.</para>
  27590. </summary>
  27591. </member>
  27592. <member name="P:Godot.RayCast2D.ExcludeParent">
  27593. <summary>
  27594. <para>If <c>true</c>, the parent node will be excluded from collision detection.</para>
  27595. </summary>
  27596. </member>
  27597. <member name="P:Godot.RayCast2D.CastTo">
  27598. <summary>
  27599. <para>The ray's destination point, relative to the RayCast's <c>position</c>.</para>
  27600. </summary>
  27601. </member>
  27602. <member name="P:Godot.RayCast2D.CollisionMask">
  27603. <summary>
  27604. <para>The ray's collision mask. Only objects in at least one collision layer enabled in the mask will be detected.</para>
  27605. </summary>
  27606. </member>
  27607. <member name="P:Godot.RayCast2D.CollideWithAreas">
  27608. <summary>
  27609. <para>If <c>true</c>, collision with <see cref="T:Godot.Area2D"/>s will be reported.</para>
  27610. </summary>
  27611. </member>
  27612. <member name="P:Godot.RayCast2D.CollideWithBodies">
  27613. <summary>
  27614. <para>If <c>true</c>, collision with <see cref="T:Godot.PhysicsBody2D"/>s will be reported.</para>
  27615. </summary>
  27616. </member>
  27617. <member name="M:Godot.RayCast2D.IsColliding">
  27618. <summary>
  27619. <para>Returns whether any object is intersecting with the ray's vector (considering the vector length).</para>
  27620. </summary>
  27621. </member>
  27622. <member name="M:Godot.RayCast2D.ForceRaycastUpdate">
  27623. <summary>
  27624. <para>Updates the collision information for the ray. Use this method to update the collision information immediately instead of waiting for the next <c>_physics_process</c> call, for example if the ray or its parent has changed state.</para>
  27625. <para>Note: <c>enabled == true</c> is not required for this to work.</para>
  27626. </summary>
  27627. </member>
  27628. <member name="M:Godot.RayCast2D.GetCollider">
  27629. <summary>
  27630. <para>Returns the first object that the ray intersects, or <c>null</c> if no object is intersecting the ray (i.e. <see cref="M:Godot.RayCast2D.IsColliding"/> returns <c>false</c>).</para>
  27631. </summary>
  27632. </member>
  27633. <member name="M:Godot.RayCast2D.GetColliderShape">
  27634. <summary>
  27635. <para>Returns the shape ID of the first object that the ray intersects, or <c>0</c> if no object is intersecting the ray (i.e. <see cref="M:Godot.RayCast2D.IsColliding"/> returns <c>false</c>).</para>
  27636. </summary>
  27637. </member>
  27638. <member name="M:Godot.RayCast2D.GetCollisionPoint">
  27639. <summary>
  27640. <para>Returns the collision point at which the ray intersects the closest object.</para>
  27641. <para>Note: this point is in the global coordinate system.</para>
  27642. </summary>
  27643. </member>
  27644. <member name="M:Godot.RayCast2D.GetCollisionNormal">
  27645. <summary>
  27646. <para>Returns the normal of the intersecting object's shape at the collision point.</para>
  27647. </summary>
  27648. </member>
  27649. <member name="M:Godot.RayCast2D.AddExceptionRid(Godot.RID)">
  27650. <summary>
  27651. <para>Adds a collision exception so the ray does not report collisions with the specified <see cref="T:Godot.RID"/>.</para>
  27652. </summary>
  27653. </member>
  27654. <member name="M:Godot.RayCast2D.AddException(Godot.Object)">
  27655. <summary>
  27656. <para>Adds a collision exception so the ray does not report collisions with the specified node.</para>
  27657. </summary>
  27658. </member>
  27659. <member name="M:Godot.RayCast2D.RemoveExceptionRid(Godot.RID)">
  27660. <summary>
  27661. <para>Removes a collision exception so the ray does report collisions with the specified <see cref="T:Godot.RID"/>.</para>
  27662. </summary>
  27663. </member>
  27664. <member name="M:Godot.RayCast2D.RemoveException(Godot.Object)">
  27665. <summary>
  27666. <para>Removes a collision exception so the ray does report collisions with the specified node.</para>
  27667. </summary>
  27668. </member>
  27669. <member name="M:Godot.RayCast2D.ClearExceptions">
  27670. <summary>
  27671. <para>Removes all collision exceptions for this ray.</para>
  27672. </summary>
  27673. </member>
  27674. <member name="M:Godot.RayCast2D.SetCollisionMaskBit(System.Int32,System.Boolean)">
  27675. <summary>
  27676. <para>Sets or clears individual bits on the collision mask. This makes selecting the areas scanned easier.</para>
  27677. </summary>
  27678. </member>
  27679. <member name="M:Godot.RayCast2D.GetCollisionMaskBit(System.Int32)">
  27680. <summary>
  27681. <para>Returns an individual bit on the collision mask.</para>
  27682. </summary>
  27683. </member>
  27684. <member name="T:Godot.RayShape">
  27685. <summary>
  27686. <para>Ray shape for 3D collisions, which can be set into a <see cref="T:Godot.PhysicsBody"/> or <see cref="T:Godot.Area"/>. A ray is not really a collision body; instead, it tries to separate itself from whatever is touching its far endpoint. It's often useful for characters.</para>
  27687. </summary>
  27688. </member>
  27689. <member name="P:Godot.RayShape.Length">
  27690. <summary>
  27691. <para>The ray's length.</para>
  27692. </summary>
  27693. </member>
  27694. <member name="P:Godot.RayShape.SlipsOnSlope">
  27695. <summary>
  27696. <para>If <c>true</c>, allow the shape to return the correct normal.</para>
  27697. </summary>
  27698. </member>
  27699. <member name="T:Godot.RayShape2D">
  27700. <summary>
  27701. <para>Ray shape for 2D collisions. A ray is not really a collision body; instead, it tries to separate itself from whatever is touching its far endpoint. It's often useful for characters.</para>
  27702. </summary>
  27703. </member>
  27704. <member name="P:Godot.RayShape2D.Length">
  27705. <summary>
  27706. <para>The ray's length.</para>
  27707. </summary>
  27708. </member>
  27709. <member name="P:Godot.RayShape2D.SlipsOnSlope">
  27710. <summary>
  27711. <para>If <c>true</c>, allow the shape to return the correct normal.</para>
  27712. </summary>
  27713. </member>
  27714. <member name="T:Godot.RectangleShape2D">
  27715. <summary>
  27716. <para>Rectangle shape for 2D collisions. This shape is useful for modeling box-like 2D objects.</para>
  27717. </summary>
  27718. </member>
  27719. <member name="P:Godot.RectangleShape2D.Extents">
  27720. <summary>
  27721. <para>The rectangle's half extents. The width and height of this shape is twice the half extents.</para>
  27722. </summary>
  27723. </member>
  27724. <member name="T:Godot.Reference">
  27725. <summary>
  27726. <para>Base class for any object that keeps a reference count. <see cref="T:Godot.Resource"/> and many other helper objects inherit this class.</para>
  27727. <para>References keep an internal reference counter so that they are automatically released when no longer in use, and only then. References therefore do not need to be freed manually with <see cref="M:Godot.Object.Free"/>.</para>
  27728. <para>In the vast majority of use cases, instantiating and using <see cref="T:Godot.Reference"/>-derived types is all you need to do. The methods provided in this class are only for advanced users, and can cause issues if misused.</para>
  27729. </summary>
  27730. </member>
  27731. <member name="M:Godot.Reference.InitRef">
  27732. <summary>
  27733. <para>Initializes the internal reference counter. Use this only if you really know what you are doing.</para>
  27734. <para>Returns whether the initialization was successful.</para>
  27735. </summary>
  27736. </member>
  27737. <member name="M:Godot.Reference.Reference_">
  27738. <summary>
  27739. <para>Increments the internal reference counter. Use this only if you really know what you are doing.</para>
  27740. <para>Returns <c>true</c> if the increment was successful, <c>false</c> otherwise.</para>
  27741. </summary>
  27742. </member>
  27743. <member name="M:Godot.Reference.Unreference">
  27744. <summary>
  27745. <para>Decrements the internal reference counter. Use this only if you really know what you are doing.</para>
  27746. <para>Returns <c>true</c> if the decrement was successful, <c>false</c> otherwise.</para>
  27747. </summary>
  27748. </member>
  27749. <member name="T:Godot.ReferenceRect">
  27750. <summary>
  27751. <para>A rectangle box that displays only a <see cref="P:Godot.ReferenceRect.BorderColor"/> border color around its rectangle. <see cref="T:Godot.ReferenceRect"/> has no fill <see cref="T:Godot.Color"/>.</para>
  27752. </summary>
  27753. </member>
  27754. <member name="P:Godot.ReferenceRect.BorderColor">
  27755. <summary>
  27756. <para>Sets the border <see cref="T:Godot.Color"/> of the <see cref="T:Godot.ReferenceRect"/>.</para>
  27757. </summary>
  27758. </member>
  27759. <member name="P:Godot.ReferenceRect.EditorOnly">
  27760. <summary>
  27761. <para>If set to <c>true</c>, the <see cref="T:Godot.ReferenceRect"/> will only be visible while in editor. Otherwise, <see cref="T:Godot.ReferenceRect"/> will be visible in game.</para>
  27762. </summary>
  27763. </member>
  27764. <member name="T:Godot.ReflectionProbe">
  27765. <summary>
  27766. <para>Capture its surroundings as a dual paraboloid image, and stores versions of it with increasing levels of blur to simulate different material roughnesses.</para>
  27767. <para>The <see cref="T:Godot.ReflectionProbe"/> is used to create high-quality reflections at the cost of performance. It can be combined with <see cref="T:Godot.GIProbe"/>s and Screen Space Reflections to achieve high quality reflections. <see cref="T:Godot.ReflectionProbe"/>s render all objects within their <see cref="P:Godot.ReflectionProbe.CullMask"/>, so updating them can be quite expensive. It is best to update them once with the important static objects and then leave them.</para>
  27768. <para>Note: By default Godot will only render 16 reflection probes. If you need more, increase the number of atlas subdivisions. This setting can be found in .</para>
  27769. </summary>
  27770. </member>
  27771. <member name="F:Godot.ReflectionProbe.UpdateModeEnum.Once">
  27772. <summary>
  27773. <para>Update the probe once on the next frame.</para>
  27774. </summary>
  27775. </member>
  27776. <member name="F:Godot.ReflectionProbe.UpdateModeEnum.Always">
  27777. <summary>
  27778. <para>Update the probe every frame. This is needed when you want to capture dynamic objects. However, it results in an increased render time. Use whenever possible.</para>
  27779. </summary>
  27780. </member>
  27781. <member name="P:Godot.ReflectionProbe.UpdateMode">
  27782. <summary>
  27783. <para>Sets how frequently the probe is updated. Can be or .</para>
  27784. </summary>
  27785. </member>
  27786. <member name="P:Godot.ReflectionProbe.Intensity">
  27787. <summary>
  27788. <para>Defines the reflection intensity. Intensity modulates the strength of the reflection.</para>
  27789. </summary>
  27790. </member>
  27791. <member name="P:Godot.ReflectionProbe.MaxDistance">
  27792. <summary>
  27793. <para>Sets the max distance away from the probe an object can be before it is culled.</para>
  27794. </summary>
  27795. </member>
  27796. <member name="P:Godot.ReflectionProbe.Extents">
  27797. <summary>
  27798. <para>The size of the reflection probe. The larger the extents the more space covered by the probe which will lower the perceived resolution. It is best to keep the extents only as large as you need them.</para>
  27799. </summary>
  27800. </member>
  27801. <member name="P:Godot.ReflectionProbe.OriginOffset">
  27802. <summary>
  27803. <para>Sets the origin offset to be used when this reflection probe is in box project mode.</para>
  27804. </summary>
  27805. </member>
  27806. <member name="P:Godot.ReflectionProbe.BoxProjection">
  27807. <summary>
  27808. <para>If <c>true</c>, enables box projection. This makes reflections look more correct in rectangle-shaped rooms by offsetting the reflection center depending on the camera's location.</para>
  27809. </summary>
  27810. </member>
  27811. <member name="P:Godot.ReflectionProbe.EnableShadows">
  27812. <summary>
  27813. <para>If <c>true</c>, computes shadows in the reflection probe. This makes the reflection probe slower to render; you may want to disable this if using the <see cref="P:Godot.ReflectionProbe.UpdateMode"/>.</para>
  27814. </summary>
  27815. </member>
  27816. <member name="P:Godot.ReflectionProbe.CullMask">
  27817. <summary>
  27818. <para>Sets the cull mask which determines what objects are drawn by this probe. Every <see cref="T:Godot.VisualInstance"/> with a layer included in this cull mask will be rendered by the probe. It is best to only include large objects which are likely to take up a lot of space in the reflection in order to save on rendering cost.</para>
  27819. </summary>
  27820. </member>
  27821. <member name="P:Godot.ReflectionProbe.InteriorEnable">
  27822. <summary>
  27823. <para>If <c>true</c>, reflections will ignore sky contribution. Ambient lighting is then controlled by the <c>interior_ambient_*</c> properties.</para>
  27824. </summary>
  27825. </member>
  27826. <member name="P:Godot.ReflectionProbe.InteriorAmbientColor">
  27827. <summary>
  27828. <para>Sets the ambient light color to be used when this probe is set to <see cref="P:Godot.ReflectionProbe.InteriorEnable"/>.</para>
  27829. </summary>
  27830. </member>
  27831. <member name="P:Godot.ReflectionProbe.InteriorAmbientEnergy">
  27832. <summary>
  27833. <para>Sets the energy multiplier for this reflection probe's ambient light contribution when set to <see cref="P:Godot.ReflectionProbe.InteriorEnable"/>.</para>
  27834. </summary>
  27835. </member>
  27836. <member name="P:Godot.ReflectionProbe.InteriorAmbientContrib">
  27837. <summary>
  27838. <para>Sets the contribution value for how much the reflection affects the ambient light for this reflection probe when set to <see cref="P:Godot.ReflectionProbe.InteriorEnable"/>. Useful so that ambient light matches the color of the room.</para>
  27839. </summary>
  27840. </member>
  27841. <member name="T:Godot.RegEx">
  27842. <summary>
  27843. <para>A regular expression (or regex) is a compact language that can be used to recognise strings that follow a specific pattern, such as URLs, email addresses, complete sentences, etc. For instance, a regex of <c>ab[0-9]</c> would find any string that is <c>ab</c> followed by any number from <c>0</c> to <c>9</c>. For a more in-depth look, you can easily find various tutorials and detailed explanations on the Internet.</para>
  27844. <para>To begin, the RegEx object needs to be compiled with the search pattern using <see cref="M:Godot.RegEx.Compile(System.String)"/> before it can be used.</para>
  27845. <para><code>
  27846. var regex = RegEx.new()
  27847. regex.compile("\\w-(\\d+)")
  27848. </code></para>
  27849. <para>The search pattern must be escaped first for GDScript before it is escaped for the expression. For example, <c>compile("\\d+")</c> would be read by RegEx as <c>\d+</c>. Similarly, <c>compile("\"(?:\\\\.|[^\"])*\"")</c> would be read as <c>"(?:\\.|[^"])*"</c>.</para>
  27850. <para>Using <see cref="M:Godot.RegEx.Search(System.String,System.Int32,System.Int32)"/> you can find the pattern within the given text. If a pattern is found, <see cref="T:Godot.RegExMatch"/> is returned and you can retrieve details of the results using functions such as <see cref="M:Godot.RegExMatch.GetString(System.Object)"/> and <see cref="M:Godot.RegExMatch.GetStart(System.Object)"/>.</para>
  27851. <para><code>
  27852. var regex = RegEx.new()
  27853. regex.compile("\\w-(\\d+)")
  27854. var result = regex.search("abc n-0123")
  27855. if result:
  27856. print(result.get_string()) # Would print n-0123
  27857. </code></para>
  27858. <para>The results of capturing groups <c>()</c> can be retrieved by passing the group number to the various functions in <see cref="T:Godot.RegExMatch"/>. Group 0 is the default and will always refer to the entire pattern. In the above example, calling <c>result.get_string(1)</c> would give you <c>0123</c>.</para>
  27859. <para>This version of RegEx also supports named capturing groups, and the names can be used to retrieve the results. If two or more groups have the same name, the name would only refer to the first one with a match.</para>
  27860. <para><code>
  27861. var regex = RegEx.new()
  27862. regex.compile("d(?&lt;digit&gt;[0-9]+)|x(?&lt;digit&gt;[0-9a-f]+)")
  27863. var result = regex.search("the number is x2f")
  27864. if result:
  27865. print(result.get_string("digit")) # Would print 2f
  27866. </code></para>
  27867. <para>If you need to process multiple results, <see cref="M:Godot.RegEx.SearchAll(System.String,System.Int32,System.Int32)"/> generates a list of all non-overlapping results. This can be combined with a <c>for</c> loop for convenience.</para>
  27868. <para><code>
  27869. for result in regex.search_all("d01, d03, d0c, x3f and x42"):
  27870. print(result.get_string("digit"))
  27871. # Would print 01 03 0 3f 42
  27872. </code></para>
  27873. <para>Note: Godot's regex implementation is based on the <a href="https://www.pcre.org/">PCRE2</a> library. You can view the full pattern reference <a href="https://www.pcre.org/current/doc/html/pcre2pattern.html">here</a>.</para>
  27874. <para>Tip: You can use <a href="https://regexr.com/">Regexr</a> to test regular expressions online.</para>
  27875. </summary>
  27876. </member>
  27877. <member name="M:Godot.RegEx.Clear">
  27878. <summary>
  27879. <para>This method resets the state of the object, as if it was freshly created. Namely, it unassigns the regular expression of this object.</para>
  27880. </summary>
  27881. </member>
  27882. <member name="M:Godot.RegEx.Compile(System.String)">
  27883. <summary>
  27884. <para>Compiles and assign the search pattern to use. Returns if the compilation is successful. If an error is encountered, details are printed to standard output and an error is returned.</para>
  27885. </summary>
  27886. </member>
  27887. <member name="M:Godot.RegEx.Search(System.String,System.Int32,System.Int32)">
  27888. <summary>
  27889. <para>Searches the text for the compiled pattern. Returns a <see cref="T:Godot.RegExMatch"/> container of the first matching result if found, otherwise <c>null</c>. The region to search within can be specified without modifying where the start and end anchor would be.</para>
  27890. </summary>
  27891. </member>
  27892. <member name="M:Godot.RegEx.SearchAll(System.String,System.Int32,System.Int32)">
  27893. <summary>
  27894. <para>Searches the text for the compiled pattern. Returns an array of <see cref="T:Godot.RegExMatch"/> containers for each non-overlapping result. If no results were found, an empty array is returned instead. The region to search within can be specified without modifying where the start and end anchor would be.</para>
  27895. </summary>
  27896. </member>
  27897. <member name="M:Godot.RegEx.Sub(System.String,System.String,System.Boolean,System.Int32,System.Int32)">
  27898. <summary>
  27899. <para>Searches the text for the compiled pattern and replaces it with the specified string. Escapes and backreferences such as <c>$1</c> and <c>$name</c> are expanded and resolved. By default, only the first instance is replaced, but it can be changed for all instances (global replacement). The region to search within can be specified without modifying where the start and end anchor would be.</para>
  27900. </summary>
  27901. </member>
  27902. <member name="M:Godot.RegEx.IsValid">
  27903. <summary>
  27904. <para>Returns whether this object has a valid search pattern assigned.</para>
  27905. </summary>
  27906. </member>
  27907. <member name="M:Godot.RegEx.GetPattern">
  27908. <summary>
  27909. <para>Returns the original search pattern that was compiled.</para>
  27910. </summary>
  27911. </member>
  27912. <member name="M:Godot.RegEx.GetGroupCount">
  27913. <summary>
  27914. <para>Returns the number of capturing groups in compiled pattern.</para>
  27915. </summary>
  27916. </member>
  27917. <member name="M:Godot.RegEx.GetNames">
  27918. <summary>
  27919. <para>Returns an array of names of named capturing groups in the compiled pattern. They are ordered by appearance.</para>
  27920. </summary>
  27921. </member>
  27922. <member name="T:Godot.RegExMatch">
  27923. <summary>
  27924. <para>Contains the results of a single <see cref="T:Godot.RegEx"/> match returned by <see cref="M:Godot.RegEx.Search(System.String,System.Int32,System.Int32)"/> and <see cref="M:Godot.RegEx.SearchAll(System.String,System.Int32,System.Int32)"/>. It can be used to find the position and range of the match and its capturing groups, and it can extract its substring for you.</para>
  27925. </summary>
  27926. </member>
  27927. <member name="P:Godot.RegExMatch.Subject">
  27928. <summary>
  27929. <para>The source string used with the search pattern to find this matching result.</para>
  27930. </summary>
  27931. </member>
  27932. <member name="P:Godot.RegExMatch.Names">
  27933. <summary>
  27934. <para>A dictionary of named groups and its corresponding group number. Only groups that were matched are included. If multiple groups have the same name, that name would refer to the first matching one.</para>
  27935. </summary>
  27936. </member>
  27937. <member name="P:Godot.RegExMatch.Strings">
  27938. <summary>
  27939. <para>An <see cref="T:Godot.Collections.Array"/> of the match and its capturing groups.</para>
  27940. </summary>
  27941. </member>
  27942. <member name="M:Godot.RegExMatch.GetGroupCount">
  27943. <summary>
  27944. <para>Returns the number of capturing groups.</para>
  27945. </summary>
  27946. </member>
  27947. <member name="M:Godot.RegExMatch.GetString(System.Object)">
  27948. <summary>
  27949. <para>Returns the substring of the match from the source string. Capturing groups can be retrieved by providing its group number as an integer or its string name (if it's a named group). The default value of 0 refers to the whole pattern.</para>
  27950. <para>Returns an empty string if the group did not match or doesn't exist.</para>
  27951. </summary>
  27952. <param name="name">If the parameter is null, then the default value is (object)0</param>
  27953. </member>
  27954. <member name="M:Godot.RegExMatch.GetStart(System.Object)">
  27955. <summary>
  27956. <para>Returns the starting position of the match within the source string. The starting position of capturing groups can be retrieved by providing its group number as an integer or its string name (if it's a named group). The default value of 0 refers to the whole pattern.</para>
  27957. <para>Returns -1 if the group did not match or doesn't exist.</para>
  27958. </summary>
  27959. <param name="name">If the parameter is null, then the default value is (object)0</param>
  27960. </member>
  27961. <member name="M:Godot.RegExMatch.GetEnd(System.Object)">
  27962. <summary>
  27963. <para>Returns the end position of the match within the source string. The end position of capturing groups can be retrieved by providing its group number as an integer or its string name (if it's a named group). The default value of 0 refers to the whole pattern.</para>
  27964. <para>Returns -1 if the group did not match or doesn't exist.</para>
  27965. </summary>
  27966. <param name="name">If the parameter is null, then the default value is (object)0</param>
  27967. </member>
  27968. <member name="T:Godot.RemoteTransform">
  27969. <summary>
  27970. <para>RemoteTransform pushes its own <see cref="T:Godot.Transform"/> to another <see cref="T:Godot.Spatial"/> derived Node (called the remote node) in the scene.</para>
  27971. <para>It can be set to update another Node's position, rotation and/or scale. It can use either global or local coordinates.</para>
  27972. </summary>
  27973. </member>
  27974. <member name="P:Godot.RemoteTransform.RemotePath">
  27975. <summary>
  27976. <para>The <see cref="T:Godot.NodePath"/> to the remote node, relative to the RemoteTransform's position in the scene.</para>
  27977. </summary>
  27978. </member>
  27979. <member name="P:Godot.RemoteTransform.UseGlobalCoordinates">
  27980. <summary>
  27981. <para>If <c>true</c>, global coordinates are used. If <c>false</c>, local coordinates are used.</para>
  27982. </summary>
  27983. </member>
  27984. <member name="P:Godot.RemoteTransform.UpdatePosition">
  27985. <summary>
  27986. <para>If <c>true</c>, the remote node's position is updated.</para>
  27987. </summary>
  27988. </member>
  27989. <member name="P:Godot.RemoteTransform.UpdateRotation">
  27990. <summary>
  27991. <para>If <c>true</c>, the remote node's rotation is updated.</para>
  27992. </summary>
  27993. </member>
  27994. <member name="P:Godot.RemoteTransform.UpdateScale">
  27995. <summary>
  27996. <para>If <c>true</c>, the remote node's scale is updated.</para>
  27997. </summary>
  27998. </member>
  27999. <member name="M:Godot.RemoteTransform.ForceUpdateCache">
  28000. <summary>
  28001. <para><see cref="T:Godot.RemoteTransform"/> caches the remote node. It may not notice if the remote node disappears; <see cref="M:Godot.RemoteTransform.ForceUpdateCache"/> forces it to update the cache again.</para>
  28002. </summary>
  28003. </member>
  28004. <member name="T:Godot.RemoteTransform2D">
  28005. <summary>
  28006. <para>RemoteTransform2D pushes its own <see cref="T:Godot.Transform2D"/> to another <see cref="T:Godot.CanvasItem"/> derived Node (called the remote node) in the scene.</para>
  28007. <para>It can be set to update another Node's position, rotation and/or scale. It can use either global or local coordinates.</para>
  28008. </summary>
  28009. </member>
  28010. <member name="P:Godot.RemoteTransform2D.RemotePath">
  28011. <summary>
  28012. <para>The <see cref="T:Godot.NodePath"/> to the remote node, relative to the RemoteTransform2D's position in the scene.</para>
  28013. </summary>
  28014. </member>
  28015. <member name="P:Godot.RemoteTransform2D.UseGlobalCoordinates">
  28016. <summary>
  28017. <para>If <c>true</c>, global coordinates are used. If <c>false</c>, local coordinates are used.</para>
  28018. </summary>
  28019. </member>
  28020. <member name="P:Godot.RemoteTransform2D.UpdatePosition">
  28021. <summary>
  28022. <para>If <c>true</c>, the remote node's position is updated.</para>
  28023. </summary>
  28024. </member>
  28025. <member name="P:Godot.RemoteTransform2D.UpdateRotation">
  28026. <summary>
  28027. <para>If <c>true</c>, the remote node's rotation is updated.</para>
  28028. </summary>
  28029. </member>
  28030. <member name="P:Godot.RemoteTransform2D.UpdateScale">
  28031. <summary>
  28032. <para>If <c>true</c>, the remote node's scale is updated.</para>
  28033. </summary>
  28034. </member>
  28035. <member name="M:Godot.RemoteTransform2D.ForceUpdateCache">
  28036. <summary>
  28037. <para><see cref="T:Godot.RemoteTransform2D"/> caches the remote node. It may not notice if the remote node disappears; <see cref="M:Godot.RemoteTransform2D.ForceUpdateCache"/> forces it to update the cache again.</para>
  28038. </summary>
  28039. </member>
  28040. <member name="T:Godot.Resource">
  28041. <summary>
  28042. <para>Resource is the base class for all Godot-specific resource types, serving primarily as data containers. They are reference counted and freed when no longer in use. They are also cached once loaded from disk, so that any further attempts to load a resource from a given path will return the same reference (all this in contrast to a <see cref="T:Godot.Node"/>, which is not reference counted and can be instanced from disk as many times as desired). Resources can be saved externally on disk or bundled into another object, such as a <see cref="T:Godot.Node"/> or another resource.</para>
  28043. </summary>
  28044. </member>
  28045. <member name="P:Godot.Resource.ResourceLocalToScene">
  28046. <summary>
  28047. <para>If <c>true</c>, the resource will be made unique in each instance of its local scene. It can thus be modified in a scene instance without impacting other instances of that same scene.</para>
  28048. </summary>
  28049. </member>
  28050. <member name="P:Godot.Resource.ResourcePath">
  28051. <summary>
  28052. <para>The path to the resource. In case it has its own file, it will return its filepath. If it's tied to the scene, it will return the scene's path, followed by the resource's index.</para>
  28053. </summary>
  28054. </member>
  28055. <member name="P:Godot.Resource.ResourceName">
  28056. <summary>
  28057. <para>The name of the resource. This is an optional identifier.</para>
  28058. </summary>
  28059. </member>
  28060. <member name="M:Godot.Resource._SetupLocalToScene">
  28061. <summary>
  28062. <para>Virtual function which can be overridden to customize the behavior value of <see cref="M:Godot.Resource.SetupLocalToScene"/>.</para>
  28063. </summary>
  28064. </member>
  28065. <member name="M:Godot.Resource.TakeOverPath(System.String)">
  28066. <summary>
  28067. <para>Sets the path of the resource, potentially overriding an existing cache entry for this path. This differs from setting <see cref="P:Godot.Resource.ResourcePath"/>, as the latter would error out if another resource was already cached for the given path.</para>
  28068. </summary>
  28069. </member>
  28070. <member name="M:Godot.Resource.GetRid">
  28071. <summary>
  28072. <para>Returns the RID of the resource (or an empty RID). Many resources (such as <see cref="T:Godot.Texture"/>, <see cref="T:Godot.Mesh"/>, etc) are high-level abstractions of resources stored in a server, so this function will return the original RID.</para>
  28073. </summary>
  28074. </member>
  28075. <member name="M:Godot.Resource.GetLocalScene">
  28076. <summary>
  28077. <para>If <see cref="P:Godot.Resource.ResourceLocalToScene"/> is enabled and the resource was loaded from a <see cref="T:Godot.PackedScene"/> instantiation, returns the local scene where this resource's unique copy is in use. Otherwise, returns <c>null</c>.</para>
  28078. </summary>
  28079. </member>
  28080. <member name="M:Godot.Resource.SetupLocalToScene">
  28081. <summary>
  28082. <para>This method is called when a resource with <see cref="P:Godot.Resource.ResourceLocalToScene"/> enabled is loaded from a <see cref="T:Godot.PackedScene"/> instantiation. Its behavior can be customized by overriding <see cref="M:Godot.Resource._SetupLocalToScene"/> from script.</para>
  28083. <para>For most resources, this method performs no base logic. <see cref="T:Godot.ViewportTexture"/> performs custom logic to properly set the proxy texture and flags in the local viewport.</para>
  28084. </summary>
  28085. </member>
  28086. <member name="M:Godot.Resource.Duplicate(System.Boolean)">
  28087. <summary>
  28088. <para>Duplicates the resource, returning a new resource. By default, sub-resources are shared between resource copies for efficiency, this can be changed by passing <c>true</c> to the <c>subresources</c> argument.</para>
  28089. </summary>
  28090. </member>
  28091. <member name="T:Godot.ResourceFormatLoader">
  28092. <summary>
  28093. <para>Godot loads resources in the editor or in exported games using ResourceFormatLoaders. They are queried automatically via the <see cref="T:Godot.ResourceLoader"/> singleton, or when a resource with internal dependencies is loaded. Each file type may load as a different resource type, so multiple ResourceFormatLoaders are registered in the engine.</para>
  28094. <para>Extending this class allows you to define your own loader. Be sure to respect the documented return types and values. You should give it a global class name with <c>class_name</c> for it to be registered. Like built-in ResourceFormatLoaders, it will be called automatically when loading resources of its handled type(s). You may also implement a <see cref="T:Godot.ResourceFormatSaver"/>.</para>
  28095. <para>Note: You can also extend <see cref="!:Godot.EditorImportPlugin"/> if the resource type you need exists but Godot is unable to load its format. Choosing one way over another depends if the format is suitable or not for the final exported game. For example, it's better to import <c>.png</c> textures as <c>.stex</c> (<see cref="T:Godot.StreamTexture"/>) first, so they can be loaded with better efficiency on the graphics card.</para>
  28096. </summary>
  28097. </member>
  28098. <member name="M:Godot.ResourceFormatLoader.GetDependencies(System.String,System.String)">
  28099. <summary>
  28100. <para>If implemented, gets the dependencies of a given resource. If <c>add_types</c> is <c>true</c>, paths should be appended <c>::TypeName</c>, where <c>TypeName</c> is the class name of the dependency.</para>
  28101. <para>Note: Custom resource types defined by scripts aren't known by the <see cref="T:Godot.ClassDB"/>, so you might just return <c>"Resource"</c> for them.</para>
  28102. </summary>
  28103. </member>
  28104. <member name="M:Godot.ResourceFormatLoader.GetRecognizedExtensions">
  28105. <summary>
  28106. <para>Gets the list of extensions for files this loader is able to read.</para>
  28107. </summary>
  28108. </member>
  28109. <member name="M:Godot.ResourceFormatLoader.GetResourceType(System.String)">
  28110. <summary>
  28111. <para>Gets the class name of the resource associated with the given path. If the loader cannot handle it, it should return <c>""</c>.</para>
  28112. <para>Note: Custom resource types defined by scripts aren't known by the <see cref="T:Godot.ClassDB"/>, so you might just return <c>"Resource"</c> for them.</para>
  28113. </summary>
  28114. </member>
  28115. <member name="M:Godot.ResourceFormatLoader.HandlesType(System.String)">
  28116. <summary>
  28117. <para>Tells which resource class this loader can load.</para>
  28118. <para>Note: Custom resource types defined by scripts aren't known by the <see cref="T:Godot.ClassDB"/>, so you might just handle <c>"Resource"</c> for them.</para>
  28119. </summary>
  28120. </member>
  28121. <member name="M:Godot.ResourceFormatLoader.Load(System.String,System.String)">
  28122. <summary>
  28123. <para>Loads a resource when the engine finds this loader to be compatible. If the loaded resource is the result of an import, <c>original_path</c> will target the source file. Returns a <see cref="T:Godot.Resource"/> object on success, or an <see cref="T:Godot.Error"/> constant in case of failure.</para>
  28124. </summary>
  28125. </member>
  28126. <member name="M:Godot.ResourceFormatLoader.RenameDependencies(System.String,System.String)">
  28127. <summary>
  28128. <para>If implemented, renames dependencies within the given resource and saves it. <c>renames</c> is a dictionary <c>{ String =&gt; String }</c> mapping old dependency paths to new paths.</para>
  28129. <para>Returns on success, or an <see cref="T:Godot.Error"/> constant in case of failure.</para>
  28130. </summary>
  28131. </member>
  28132. <member name="T:Godot.ResourceFormatSaver">
  28133. <summary>
  28134. <para>The engine can save resources when you do it from the editor, or when you use the <see cref="T:Godot.ResourceSaver"/> singleton. This is accomplished thanks to multiple <see cref="T:Godot.ResourceFormatSaver"/>s, each handling its own format and called automatically by the engine.</para>
  28135. <para>By default, Godot saves resources as <c>.tres</c> (text-based), <c>.res</c> (binary) or another built-in format, but you can choose to create your own format by extending this class. Be sure to respect the documented return types and values. You should give it a global class name with <c>class_name</c> for it to be registered. Like built-in ResourceFormatSavers, it will be called automatically when saving resources of its recognized type(s). You may also implement a <see cref="T:Godot.ResourceFormatLoader"/>.</para>
  28136. </summary>
  28137. </member>
  28138. <member name="M:Godot.ResourceFormatSaver.GetRecognizedExtensions(Godot.Resource)">
  28139. <summary>
  28140. <para>Returns the list of extensions available for saving the resource object, provided it is recognized (see <see cref="M:Godot.ResourceFormatSaver.Recognize(Godot.Resource)"/>).</para>
  28141. </summary>
  28142. </member>
  28143. <member name="M:Godot.ResourceFormatSaver.Recognize(Godot.Resource)">
  28144. <summary>
  28145. <para>Returns whether the given resource object can be saved by this saver.</para>
  28146. </summary>
  28147. </member>
  28148. <member name="M:Godot.ResourceFormatSaver.Save(System.String,Godot.Resource,System.Int32)">
  28149. <summary>
  28150. <para>Saves the given resource object to a file at the target <c>path</c>. <c>flags</c> is a bitmask composed with <see cref="T:Godot.ResourceSaver.SaverFlags"/> constants.</para>
  28151. <para>Returns on success, or an <see cref="T:Godot.Error"/> constant in case of failure.</para>
  28152. </summary>
  28153. </member>
  28154. <member name="T:Godot.ResourceInteractiveLoader">
  28155. <summary>
  28156. <para>Interactive <see cref="T:Godot.Resource"/> loader. This object is returned by <see cref="T:Godot.ResourceLoader"/> when performing an interactive load. It allows loading resources with high granularity, which makes it mainly useful for displaying loading bars or percentages.</para>
  28157. </summary>
  28158. </member>
  28159. <member name="M:Godot.ResourceInteractiveLoader.GetResource">
  28160. <summary>
  28161. <para>Returns the loaded resource if the load operation completed successfully, <c>null</c> otherwise.</para>
  28162. </summary>
  28163. </member>
  28164. <member name="M:Godot.ResourceInteractiveLoader.Poll">
  28165. <summary>
  28166. <para>Polls the loading operation, i.e. loads a data chunk up to the next stage.</para>
  28167. <para>Returns if the poll is successful but the load operation has not finished yet (intermediate stage). This means <see cref="M:Godot.ResourceInteractiveLoader.Poll"/> will have to be called again until the last stage is completed.</para>
  28168. <para>Returns if the load operation has completed successfully. The loaded resource can be obtained by calling <see cref="M:Godot.ResourceInteractiveLoader.GetResource"/>.</para>
  28169. <para>Returns another <see cref="T:Godot.Error"/> code if the poll has failed.</para>
  28170. </summary>
  28171. </member>
  28172. <member name="M:Godot.ResourceInteractiveLoader.Wait">
  28173. <summary>
  28174. <para>Polls the loading operation successively until the resource is completely loaded or a <see cref="M:Godot.ResourceInteractiveLoader.Poll"/> fails.</para>
  28175. <para>Returns if the load operation has completed successfully. The loaded resource can be obtained by calling <see cref="M:Godot.ResourceInteractiveLoader.GetResource"/>.</para>
  28176. <para>Returns another <see cref="T:Godot.Error"/> code if a poll has failed, aborting the operation.</para>
  28177. </summary>
  28178. </member>
  28179. <member name="M:Godot.ResourceInteractiveLoader.GetStage">
  28180. <summary>
  28181. <para>Returns the load stage. The total amount of stages can be queried with <see cref="M:Godot.ResourceInteractiveLoader.GetStageCount"/>.</para>
  28182. </summary>
  28183. </member>
  28184. <member name="M:Godot.ResourceInteractiveLoader.GetStageCount">
  28185. <summary>
  28186. <para>Returns the total amount of stages (calls to <see cref="M:Godot.ResourceInteractiveLoader.Poll"/>) needed to completely load this resource.</para>
  28187. </summary>
  28188. </member>
  28189. <member name="T:Godot.ResourcePreloader">
  28190. <summary>
  28191. <para>This node is used to preload sub-resources inside a scene, so when the scene is loaded, all the resources are ready to use and can be retrieved from the preloader.</para>
  28192. <para>GDScript has a simplified <c>@GDScript.preload</c> built-in method which can be used in most situations, leaving the use of <see cref="T:Godot.ResourcePreloader"/> for more advanced scenarios.</para>
  28193. </summary>
  28194. </member>
  28195. <member name="M:Godot.ResourcePreloader.AddResource(System.String,Godot.Resource)">
  28196. <summary>
  28197. <para>Adds a resource to the preloader with the given <c>name</c>. If a resource with the given <c>name</c> already exists, the new resource will be renamed to "<c>name</c> N" where N is an incrementing number starting from 2.</para>
  28198. </summary>
  28199. </member>
  28200. <member name="M:Godot.ResourcePreloader.RemoveResource(System.String)">
  28201. <summary>
  28202. <para>Removes the resource associated to <c>name</c> from the preloader.</para>
  28203. </summary>
  28204. </member>
  28205. <member name="M:Godot.ResourcePreloader.RenameResource(System.String,System.String)">
  28206. <summary>
  28207. <para>Renames a resource inside the preloader from <c>name</c> to <c>newname</c>.</para>
  28208. </summary>
  28209. </member>
  28210. <member name="M:Godot.ResourcePreloader.HasResource(System.String)">
  28211. <summary>
  28212. <para>Returns <c>true</c> if the preloader contains a resource associated to <c>name</c>.</para>
  28213. </summary>
  28214. </member>
  28215. <member name="M:Godot.ResourcePreloader.GetResource(System.String)">
  28216. <summary>
  28217. <para>Returns the resource associated to <c>name</c>.</para>
  28218. </summary>
  28219. </member>
  28220. <member name="M:Godot.ResourcePreloader.GetResourceList">
  28221. <summary>
  28222. <para>Returns the list of resources inside the preloader.</para>
  28223. </summary>
  28224. </member>
  28225. <member name="T:Godot.RichTextEffect">
  28226. <summary>
  28227. <para>A custom effect for use with <see cref="T:Godot.RichTextLabel"/>.</para>
  28228. <para>Note: For a <see cref="T:Godot.RichTextEffect"/> to be usable, a BBCode tag must be defined as a member variable called <c>bbcode</c> in the script.</para>
  28229. <para><code>
  28230. # The RichTextEffect will be usable like this: `[example]Some text[/example]`
  28231. var bbcode = "example"
  28232. </code></para>
  28233. <para>Note: As soon as a <see cref="T:Godot.RichTextLabel"/> contains at least one <see cref="T:Godot.RichTextEffect"/>, it will continuously process the effect unless the project is paused. This may impact battery life negatively.</para>
  28234. </summary>
  28235. </member>
  28236. <member name="M:Godot.RichTextEffect._ProcessCustomFx(Godot.CharFXTransform)">
  28237. <summary>
  28238. <para>Override this method to modify properties in <c>char_fx</c>. The method must return <c>true</c> if the character could be transformed successfully. If the method returns <c>false</c>, it will skip transformation to avoid displaying broken text.</para>
  28239. </summary>
  28240. </member>
  28241. <member name="T:Godot.RichTextLabel">
  28242. <summary>
  28243. <para>Rich text can contain custom text, fonts, images and some basic formatting. The label manages these as an internal tag stack. It also adapts itself to given width/heights.</para>
  28244. <para>Note: Assignments to <see cref="P:Godot.RichTextLabel.BbcodeText"/> clear the tag stack and reconstruct it from the property's contents. Any edits made to <see cref="P:Godot.RichTextLabel.BbcodeText"/> will erase previous edits made from other manual sources such as <see cref="M:Godot.RichTextLabel.AppendBbcode(System.String)"/> and the <c>push_*</c> / <see cref="M:Godot.RichTextLabel.Pop"/> methods.</para>
  28245. </summary>
  28246. </member>
  28247. <member name="F:Godot.RichTextLabel.Align.Left">
  28248. <summary>
  28249. <para>Makes text left aligned.</para>
  28250. </summary>
  28251. </member>
  28252. <member name="F:Godot.RichTextLabel.Align.Center">
  28253. <summary>
  28254. <para>Makes text centered.</para>
  28255. </summary>
  28256. </member>
  28257. <member name="F:Godot.RichTextLabel.Align.Right">
  28258. <summary>
  28259. <para>Makes text right aligned.</para>
  28260. </summary>
  28261. </member>
  28262. <member name="F:Godot.RichTextLabel.Align.Fill">
  28263. <summary>
  28264. <para>Makes text fill width.</para>
  28265. </summary>
  28266. </member>
  28267. <member name="F:Godot.RichTextLabel.ListType.Numbers">
  28268. <summary>
  28269. <para>Each list item has a number marker.</para>
  28270. </summary>
  28271. </member>
  28272. <member name="F:Godot.RichTextLabel.ListType.Letters">
  28273. <summary>
  28274. <para>Each list item has a letter marker.</para>
  28275. </summary>
  28276. </member>
  28277. <member name="F:Godot.RichTextLabel.ListType.Dots">
  28278. <summary>
  28279. <para>Each list item has a filled circle marker.</para>
  28280. </summary>
  28281. </member>
  28282. <member name="P:Godot.RichTextLabel.BbcodeEnabled">
  28283. <summary>
  28284. <para>If <c>true</c>, the label uses BBCode formatting.</para>
  28285. </summary>
  28286. </member>
  28287. <member name="P:Godot.RichTextLabel.BbcodeText">
  28288. <summary>
  28289. <para>The label's text in BBCode format. Is not representative of manual modifications to the internal tag stack. Erases changes made by other methods when edited.</para>
  28290. <para>Note: It is unadvised to use <c>+=</c> operator with <c>bbcode_text</c> (e.g. <c>bbcode_text += "some string"</c>) as it replaces the whole text and can cause slowdowns. Use <see cref="M:Godot.RichTextLabel.AppendBbcode(System.String)"/> for adding text instead.</para>
  28291. </summary>
  28292. </member>
  28293. <member name="P:Godot.RichTextLabel.VisibleCharacters">
  28294. <summary>
  28295. <para>The restricted number of characters to display in the label. If <c>-1</c>, all characters will be displayed.</para>
  28296. </summary>
  28297. </member>
  28298. <member name="P:Godot.RichTextLabel.PercentVisible">
  28299. <summary>
  28300. <para>The range of characters to display, as a <see cref="T:System.Single"/> between 0.0 and 1.0. When assigned an out of range value, it's the same as assigning 1.0.</para>
  28301. <para>Note: Setting this property updates <see cref="P:Godot.RichTextLabel.VisibleCharacters"/> based on current <see cref="M:Godot.RichTextLabel.GetTotalCharacterCount"/>.</para>
  28302. </summary>
  28303. </member>
  28304. <member name="P:Godot.RichTextLabel.MetaUnderlined">
  28305. <summary>
  28306. <para>If <c>true</c>, the label underlines meta tags such as <c>[url]{text}[/url]</c>.</para>
  28307. </summary>
  28308. </member>
  28309. <member name="P:Godot.RichTextLabel.TabSize">
  28310. <summary>
  28311. <para>The number of spaces associated with a single tab length. Does not affect <c>\t</c> in text tags, only indent tags.</para>
  28312. </summary>
  28313. </member>
  28314. <member name="P:Godot.RichTextLabel.Text">
  28315. <summary>
  28316. <para>The raw text of the label.</para>
  28317. <para>When set, clears the tag stack and adds a raw text tag to the top of it. Does not parse BBCodes. Does not modify <see cref="P:Godot.RichTextLabel.BbcodeText"/>.</para>
  28318. </summary>
  28319. </member>
  28320. <member name="P:Godot.RichTextLabel.FitContentHeight">
  28321. <summary>
  28322. <para>If <c>true</c>, the label's height will be automatically updated to fit its content.</para>
  28323. <para>Note: This property is used as a workaround to fix issues with <see cref="T:Godot.RichTextLabel"/> in <see cref="T:Godot.Container"/>s, but it's unreliable in some cases and will be removed in future versions.</para>
  28324. </summary>
  28325. </member>
  28326. <member name="P:Godot.RichTextLabel.ScrollActive">
  28327. <summary>
  28328. <para>If <c>true</c>, the scrollbar is visible. Setting this to <c>false</c> does not block scrolling completely. See <see cref="M:Godot.RichTextLabel.ScrollToLine(System.Int32)"/>.</para>
  28329. </summary>
  28330. </member>
  28331. <member name="P:Godot.RichTextLabel.ScrollFollowing">
  28332. <summary>
  28333. <para>If <c>true</c>, the window scrolls down to display new content automatically.</para>
  28334. </summary>
  28335. </member>
  28336. <member name="P:Godot.RichTextLabel.SelectionEnabled">
  28337. <summary>
  28338. <para>If <c>true</c>, the label allows text selection.</para>
  28339. </summary>
  28340. </member>
  28341. <member name="P:Godot.RichTextLabel.OverrideSelectedFontColor">
  28342. <summary>
  28343. <para>If <c>true</c>, the label uses the custom font color.</para>
  28344. </summary>
  28345. </member>
  28346. <member name="P:Godot.RichTextLabel.CustomEffects">
  28347. <summary>
  28348. <para>The currently installed custom effects. This is an array of <see cref="T:Godot.RichTextEffect"/>s.</para>
  28349. <para>To add a custom effect, it's more convenient to use <see cref="M:Godot.RichTextLabel.InstallEffect(System.Object)"/>.</para>
  28350. </summary>
  28351. </member>
  28352. <member name="M:Godot.RichTextLabel.AddText(System.String)">
  28353. <summary>
  28354. <para>Adds raw non-BBCode-parsed text to the tag stack.</para>
  28355. </summary>
  28356. </member>
  28357. <member name="M:Godot.RichTextLabel.AddImage(Godot.Texture,System.Int32,System.Int32)">
  28358. <summary>
  28359. <para>Adds an image's opening and closing tags to the tag stack, optionally providing a <c>width</c> and <c>height</c> to resize the image.</para>
  28360. <para>If <c>width</c> or <c>height</c> is set to 0, the image size will be adjusted in order to keep the original aspect ratio.</para>
  28361. </summary>
  28362. </member>
  28363. <member name="M:Godot.RichTextLabel.Newline">
  28364. <summary>
  28365. <para>Adds a newline tag to the tag stack.</para>
  28366. </summary>
  28367. </member>
  28368. <member name="M:Godot.RichTextLabel.RemoveLine(System.Int32)">
  28369. <summary>
  28370. <para>Removes a line of content from the label. Returns <c>true</c> if the line exists.</para>
  28371. <para>The <c>line</c> argument is the index of the line to remove, it can take values in the interval <c>[0, get_line_count() - 1]</c>.</para>
  28372. </summary>
  28373. </member>
  28374. <member name="M:Godot.RichTextLabel.PushFont(Godot.Font)">
  28375. <summary>
  28376. <para>Adds a <c>[font]</c> tag to the tag stack. Overrides default fonts for its duration.</para>
  28377. </summary>
  28378. </member>
  28379. <member name="M:Godot.RichTextLabel.PushNormal">
  28380. <summary>
  28381. <para>Adds a <c>[font]</c> tag with a normal font to the tag stack.</para>
  28382. </summary>
  28383. </member>
  28384. <member name="M:Godot.RichTextLabel.PushBold">
  28385. <summary>
  28386. <para>Adds a <c>[font]</c> tag with a bold font to the tag stack. This is the same as adding a <c>[b]</c> tag if not currently in a <c>[i]</c> tag.</para>
  28387. </summary>
  28388. </member>
  28389. <member name="M:Godot.RichTextLabel.PushBoldItalics">
  28390. <summary>
  28391. <para>Adds a <c>[font]</c> tag with a bold italics font to the tag stack.</para>
  28392. </summary>
  28393. </member>
  28394. <member name="M:Godot.RichTextLabel.PushItalics">
  28395. <summary>
  28396. <para>Adds a <c>[font]</c> tag with a italics font to the tag stack. This is the same as adding a <c>[i]</c> tag if not currently in a <c>[b]</c> tag.</para>
  28397. </summary>
  28398. </member>
  28399. <member name="M:Godot.RichTextLabel.PushMono">
  28400. <summary>
  28401. <para>Adds a <c>[font]</c> tag with a monospace font to the tag stack.</para>
  28402. </summary>
  28403. </member>
  28404. <member name="M:Godot.RichTextLabel.PushColor(Godot.Color)">
  28405. <summary>
  28406. <para>Adds a <c>[color]</c> tag to the tag stack.</para>
  28407. </summary>
  28408. </member>
  28409. <member name="M:Godot.RichTextLabel.PushAlign(Godot.RichTextLabel.Align)">
  28410. <summary>
  28411. <para>Adds an <c>[align]</c> tag based on the given <c>align</c> value. See <see cref="T:Godot.RichTextLabel.Align"/> for possible values.</para>
  28412. </summary>
  28413. </member>
  28414. <member name="M:Godot.RichTextLabel.PushIndent(System.Int32)">
  28415. <summary>
  28416. <para>Adds an <c>[indent]</c> tag to the tag stack. Multiplies <c>level</c> by current <see cref="P:Godot.RichTextLabel.TabSize"/> to determine new margin length.</para>
  28417. </summary>
  28418. </member>
  28419. <member name="M:Godot.RichTextLabel.PushList(Godot.RichTextLabel.ListType)">
  28420. <summary>
  28421. <para>Adds a <c>[list]</c> tag to the tag stack. Similar to the BBCodes <c>[ol]</c> or <c>[ul]</c>, but supports more list types. Not fully implemented!</para>
  28422. </summary>
  28423. </member>
  28424. <member name="M:Godot.RichTextLabel.PushMeta(System.Object)">
  28425. <summary>
  28426. <para>Adds a <c>[meta]</c> tag to the tag stack. Similar to the BBCode <c>[url=something]{text}[/url]</c>, but supports non-<see cref="T:System.String"/> metadata types.</para>
  28427. </summary>
  28428. </member>
  28429. <member name="M:Godot.RichTextLabel.PushUnderline">
  28430. <summary>
  28431. <para>Adds a <c>[u]</c> tag to the tag stack.</para>
  28432. </summary>
  28433. </member>
  28434. <member name="M:Godot.RichTextLabel.PushStrikethrough">
  28435. <summary>
  28436. <para>Adds a <c>[s]</c> tag to the tag stack.</para>
  28437. </summary>
  28438. </member>
  28439. <member name="M:Godot.RichTextLabel.PushTable(System.Int32)">
  28440. <summary>
  28441. <para>Adds a <c>[table=columns]</c> tag to the tag stack.</para>
  28442. </summary>
  28443. </member>
  28444. <member name="M:Godot.RichTextLabel.SetTableColumnExpand(System.Int32,System.Boolean,System.Int32)">
  28445. <summary>
  28446. <para>Edits the selected column's expansion options. If <c>expand</c> is <c>true</c>, the column expands in proportion to its expansion ratio versus the other columns' ratios.</para>
  28447. <para>For example, 2 columns with ratios 3 and 4 plus 70 pixels in available width would expand 30 and 40 pixels, respectively.</para>
  28448. <para>If <c>expand</c> is <c>false</c>, the column will not contribute to the total ratio.</para>
  28449. </summary>
  28450. </member>
  28451. <member name="M:Godot.RichTextLabel.PushCell">
  28452. <summary>
  28453. <para>Adds a <c>[cell]</c> tag to the tag stack. Must be inside a <c>[table]</c> tag. See <see cref="M:Godot.RichTextLabel.PushTable(System.Int32)"/> for details.</para>
  28454. </summary>
  28455. </member>
  28456. <member name="M:Godot.RichTextLabel.Pop">
  28457. <summary>
  28458. <para>Terminates the current tag. Use after <c>push_*</c> methods to close BBCodes manually. Does not need to follow <c>add_*</c> methods.</para>
  28459. </summary>
  28460. </member>
  28461. <member name="M:Godot.RichTextLabel.Clear">
  28462. <summary>
  28463. <para>Clears the tag stack and sets <see cref="P:Godot.RichTextLabel.BbcodeText"/> to an empty string.</para>
  28464. </summary>
  28465. </member>
  28466. <member name="M:Godot.RichTextLabel.GetVScroll">
  28467. <summary>
  28468. <para>Returns the vertical scrollbar.</para>
  28469. </summary>
  28470. </member>
  28471. <member name="M:Godot.RichTextLabel.ScrollToLine(System.Int32)">
  28472. <summary>
  28473. <para>Scrolls the window's top line to match <c>line</c>.</para>
  28474. </summary>
  28475. </member>
  28476. <member name="M:Godot.RichTextLabel.ParseBbcode(System.String)">
  28477. <summary>
  28478. <para>The assignment version of <see cref="M:Godot.RichTextLabel.AppendBbcode(System.String)"/>. Clears the tag stack and inserts the new content. Returns if parses <c>bbcode</c> successfully.</para>
  28479. </summary>
  28480. </member>
  28481. <member name="M:Godot.RichTextLabel.AppendBbcode(System.String)">
  28482. <summary>
  28483. <para>Parses <c>bbcode</c> and adds tags to the tag stack as needed. Returns the result of the parsing, if successful.</para>
  28484. </summary>
  28485. </member>
  28486. <member name="M:Godot.RichTextLabel.GetTotalCharacterCount">
  28487. <summary>
  28488. <para>Returns the total number of characters from text tags. Does not include BBCodes.</para>
  28489. </summary>
  28490. </member>
  28491. <member name="M:Godot.RichTextLabel.GetLineCount">
  28492. <summary>
  28493. <para>Returns the total number of newlines in the tag stack's text tags. Considers wrapped text as one line.</para>
  28494. </summary>
  28495. </member>
  28496. <member name="M:Godot.RichTextLabel.GetVisibleLineCount">
  28497. <summary>
  28498. <para>Returns the number of visible lines.</para>
  28499. </summary>
  28500. </member>
  28501. <member name="M:Godot.RichTextLabel.GetContentHeight">
  28502. <summary>
  28503. <para>Returns the height of the content.</para>
  28504. </summary>
  28505. </member>
  28506. <member name="M:Godot.RichTextLabel.ParseExpressionsForValues(System.String[])">
  28507. <summary>
  28508. <para>Parses BBCode parameter <c>expressions</c> into a dictionary.</para>
  28509. </summary>
  28510. </member>
  28511. <member name="M:Godot.RichTextLabel.InstallEffect(System.Object)">
  28512. <summary>
  28513. <para>Installs a custom effect. <c>effect</c> should be a valid <see cref="T:Godot.RichTextEffect"/>.</para>
  28514. </summary>
  28515. </member>
  28516. <member name="T:Godot.RigidBody">
  28517. <summary>
  28518. <para>This is the node that implements full 3D physics. This means that you do not control a RigidBody directly. Instead, you can apply forces to it (gravity, impulses, etc.), and the physics simulation will calculate the resulting movement, collision, bouncing, rotating, etc.</para>
  28519. <para>A RigidBody has 4 behavior <see cref="P:Godot.RigidBody.Mode"/>s: Rigid, Static, Character, and Kinematic.</para>
  28520. <para>Note: Don't change a RigidBody's position every frame or very often. Sporadic changes work fine, but physics runs at a different granularity (fixed Hz) than usual rendering (process callback) and maybe even in a separate thread, so changing this from a process loop may result in strange behavior. If you need to directly affect the body's state, use <see cref="M:Godot.RigidBody._IntegrateForces(Godot.PhysicsDirectBodyState)"/>, which allows you to directly access the physics state.</para>
  28521. <para>If you need to override the default physics behavior, you can write a custom force integration function. See <see cref="P:Godot.RigidBody.CustomIntegrator"/>.</para>
  28522. </summary>
  28523. </member>
  28524. <member name="F:Godot.RigidBody.ModeEnum.Rigid">
  28525. <summary>
  28526. <para>Rigid body mode. This is the "natural" state of a rigid body. It is affected by forces, and can move, rotate, and be affected by user code.</para>
  28527. </summary>
  28528. </member>
  28529. <member name="F:Godot.RigidBody.ModeEnum.Static">
  28530. <summary>
  28531. <para>Static mode. The body behaves like a <see cref="T:Godot.StaticBody"/>, and can only move by user code.</para>
  28532. </summary>
  28533. </member>
  28534. <member name="F:Godot.RigidBody.ModeEnum.Character">
  28535. <summary>
  28536. <para>Character body mode. This behaves like a rigid body, but can not rotate.</para>
  28537. </summary>
  28538. </member>
  28539. <member name="F:Godot.RigidBody.ModeEnum.Kinematic">
  28540. <summary>
  28541. <para>Kinematic body mode. The body behaves like a <see cref="T:Godot.KinematicBody"/>, and can only move by user code.</para>
  28542. </summary>
  28543. </member>
  28544. <member name="P:Godot.RigidBody.Mode">
  28545. <summary>
  28546. <para>The body mode. See <see cref="T:Godot.RigidBody.ModeEnum"/> for possible values.</para>
  28547. </summary>
  28548. </member>
  28549. <member name="P:Godot.RigidBody.Mass">
  28550. <summary>
  28551. <para>The body's mass.</para>
  28552. </summary>
  28553. </member>
  28554. <member name="P:Godot.RigidBody.Weight">
  28555. <summary>
  28556. <para>The body's weight based on its mass and the global 3D gravity. Global values are set in Project &gt; Project Settings &gt; Physics &gt; 3d.</para>
  28557. </summary>
  28558. </member>
  28559. <member name="P:Godot.RigidBody.Friction">
  28560. <summary>
  28561. <para>The body's friction, from 0 (frictionless) to 1 (max friction).</para>
  28562. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Friction"/> instead via <see cref="P:Godot.RigidBody.PhysicsMaterialOverride"/>.</para>
  28563. </summary>
  28564. </member>
  28565. <member name="P:Godot.RigidBody.Bounce">
  28566. <summary>
  28567. <para>The body's bounciness. Values range from <c>0</c> (no bounce) to <c>1</c> (full bounciness).</para>
  28568. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Bounce"/> instead via <see cref="P:Godot.RigidBody.PhysicsMaterialOverride"/>.</para>
  28569. </summary>
  28570. </member>
  28571. <member name="P:Godot.RigidBody.PhysicsMaterialOverride">
  28572. <summary>
  28573. <para>The physics material override for the body.</para>
  28574. <para>If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one.</para>
  28575. </summary>
  28576. </member>
  28577. <member name="P:Godot.RigidBody.GravityScale">
  28578. <summary>
  28579. <para>This is multiplied by the global 3D gravity setting found in Project &gt; Project Settings &gt; Physics &gt; 3d to produce RigidBody's gravity. For example, a value of 1 will be normal gravity, 2 will apply double gravity, and 0.5 will apply half gravity to this object.</para>
  28580. </summary>
  28581. </member>
  28582. <member name="P:Godot.RigidBody.CustomIntegrator">
  28583. <summary>
  28584. <para>If <c>true</c>, internal force integration will be disabled (like gravity or air friction) for this body. Other than collision response, the body will only move as determined by the <see cref="M:Godot.RigidBody._IntegrateForces(Godot.PhysicsDirectBodyState)"/> function, if defined.</para>
  28585. </summary>
  28586. </member>
  28587. <member name="P:Godot.RigidBody.ContinuousCd">
  28588. <summary>
  28589. <para>If <c>true</c>, continuous collision detection is used.</para>
  28590. <para>Continuous collision detection tries to predict where a moving body will collide, instead of moving it and correcting its movement if it collided. Continuous collision detection is more precise, and misses fewer impacts by small, fast-moving objects. Not using continuous collision detection is faster to compute, but can miss small, fast-moving objects.</para>
  28591. </summary>
  28592. </member>
  28593. <member name="P:Godot.RigidBody.ContactsReported">
  28594. <summary>
  28595. <para>The maximum contacts to report. Bodies can keep a log of the contacts with other bodies, this is enabled by setting the maximum amount of contacts reported to a number greater than 0.</para>
  28596. </summary>
  28597. </member>
  28598. <member name="P:Godot.RigidBody.ContactMonitor">
  28599. <summary>
  28600. <para>If <c>true</c>, the RigidBody will emit signals when it collides with another RigidBody.</para>
  28601. </summary>
  28602. </member>
  28603. <member name="P:Godot.RigidBody.Sleeping">
  28604. <summary>
  28605. <para>If <c>true</c>, the body will not move and will not calculate forces until woken up by another body through, for example, a collision, or by using the <see cref="M:Godot.RigidBody.ApplyImpulse(Godot.Vector3,Godot.Vector3)"/> or <see cref="M:Godot.RigidBody.AddForce(Godot.Vector3,Godot.Vector3)"/> methods.</para>
  28606. </summary>
  28607. </member>
  28608. <member name="P:Godot.RigidBody.CanSleep">
  28609. <summary>
  28610. <para>If <c>true</c>, the body can enter sleep mode when there is no movement. See <see cref="P:Godot.RigidBody.Sleeping"/>.</para>
  28611. </summary>
  28612. </member>
  28613. <member name="P:Godot.RigidBody.AxisLockLinearX">
  28614. <summary>
  28615. <para>Lock the body's movement in the X axis.</para>
  28616. </summary>
  28617. </member>
  28618. <member name="P:Godot.RigidBody.AxisLockLinearY">
  28619. <summary>
  28620. <para>Lock the body's movement in the Y axis.</para>
  28621. </summary>
  28622. </member>
  28623. <member name="P:Godot.RigidBody.AxisLockLinearZ">
  28624. <summary>
  28625. <para>Lock the body's movement in the Z axis.</para>
  28626. </summary>
  28627. </member>
  28628. <member name="P:Godot.RigidBody.AxisLockAngularX">
  28629. <summary>
  28630. <para>Lock the body's rotation in the X axis.</para>
  28631. </summary>
  28632. </member>
  28633. <member name="P:Godot.RigidBody.AxisLockAngularY">
  28634. <summary>
  28635. <para>Lock the body's rotation in the Y axis.</para>
  28636. </summary>
  28637. </member>
  28638. <member name="P:Godot.RigidBody.AxisLockAngularZ">
  28639. <summary>
  28640. <para>Lock the body's rotation in the Z axis.</para>
  28641. </summary>
  28642. </member>
  28643. <member name="P:Godot.RigidBody.LinearVelocity">
  28644. <summary>
  28645. <para>The body's linear velocity. Can be used sporadically, but don't set this every frame, because physics may run in another thread and runs at a different granularity. Use <see cref="M:Godot.RigidBody._IntegrateForces(Godot.PhysicsDirectBodyState)"/> as your process loop for precise control of the body state.</para>
  28646. </summary>
  28647. </member>
  28648. <member name="P:Godot.RigidBody.LinearDamp">
  28649. <summary>
  28650. <para>The body's linear damp. Cannot be less than -1.0. If this value is different from -1.0, any linear damp derived from the world or areas will be overridden.</para>
  28651. </summary>
  28652. </member>
  28653. <member name="P:Godot.RigidBody.AngularVelocity">
  28654. <summary>
  28655. <para>RigidBody's rotational velocity.</para>
  28656. </summary>
  28657. </member>
  28658. <member name="P:Godot.RigidBody.AngularDamp">
  28659. <summary>
  28660. <para>Damps RigidBody's rotational forces.</para>
  28661. </summary>
  28662. </member>
  28663. <member name="M:Godot.RigidBody._IntegrateForces(Godot.PhysicsDirectBodyState)">
  28664. <summary>
  28665. <para>Called during physics processing, allowing you to read and safely modify the simulation state for the object. By default, it works in addition to the usual physics behavior, but the <see cref="P:Godot.RigidBody.CustomIntegrator"/> property allows you to disable the default behavior and do fully custom force integration for a body.</para>
  28666. </summary>
  28667. </member>
  28668. <member name="M:Godot.RigidBody.SetAxisVelocity(Godot.Vector3)">
  28669. <summary>
  28670. <para>Sets an axis velocity. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior.</para>
  28671. </summary>
  28672. </member>
  28673. <member name="M:Godot.RigidBody.AddCentralForce(Godot.Vector3)">
  28674. <summary>
  28675. <para>Adds a constant directional force (i.e. acceleration) without affecting rotation.</para>
  28676. <para>This is equivalent to <c>add_force(force, Vector3(0,0,0))</c>.</para>
  28677. </summary>
  28678. </member>
  28679. <member name="M:Godot.RigidBody.AddForce(Godot.Vector3,Godot.Vector3)">
  28680. <summary>
  28681. <para>Adds a constant directional force (i.e. acceleration).</para>
  28682. <para>The position uses the rotation of the global coordinate system, but is centered at the object's origin.</para>
  28683. </summary>
  28684. </member>
  28685. <member name="M:Godot.RigidBody.AddTorque(Godot.Vector3)">
  28686. <summary>
  28687. <para>Adds a constant rotational force (i.e. a motor) without affecting position.</para>
  28688. </summary>
  28689. </member>
  28690. <member name="M:Godot.RigidBody.ApplyCentralImpulse(Godot.Vector3)">
  28691. <summary>
  28692. <para>Applies a directional impulse without affecting rotation.</para>
  28693. <para>This is equivalent to <c>apply_impulse(Vector3(0,0,0), impulse)</c>.</para>
  28694. </summary>
  28695. </member>
  28696. <member name="M:Godot.RigidBody.ApplyImpulse(Godot.Vector3,Godot.Vector3)">
  28697. <summary>
  28698. <para>Applies a positioned impulse to the body. An impulse is time independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason it should only be used when simulating one-time impacts. The position uses the rotation of the global coordinate system, but is centered at the object's origin.</para>
  28699. </summary>
  28700. </member>
  28701. <member name="M:Godot.RigidBody.ApplyTorqueImpulse(Godot.Vector3)">
  28702. <summary>
  28703. <para>Applies a torque impulse which will be affected by the body mass and shape. This will rotate the body around the <c>impulse</c> vector passed.</para>
  28704. </summary>
  28705. </member>
  28706. <member name="M:Godot.RigidBody.SetAxisLock(Godot.PhysicsServer.BodyAxis,System.Boolean)">
  28707. <summary>
  28708. <para>Locks the specified linear or rotational axis.</para>
  28709. </summary>
  28710. </member>
  28711. <member name="M:Godot.RigidBody.GetAxisLock(Godot.PhysicsServer.BodyAxis)">
  28712. <summary>
  28713. <para>Returns <c>true</c> if the specified linear or rotational axis is locked.</para>
  28714. </summary>
  28715. </member>
  28716. <member name="M:Godot.RigidBody.GetCollidingBodies">
  28717. <summary>
  28718. <para>Returns a list of the bodies colliding with this one. By default, number of max contacts reported is at 0, see the <see cref="P:Godot.RigidBody.ContactsReported"/> property to increase it.</para>
  28719. <para>Note: The result of this test is not immediate after moving objects. For performance, list of collisions is updated once per frame and before the physics step. Consider using signals instead.</para>
  28720. </summary>
  28721. </member>
  28722. <member name="T:Godot.RigidBody2D">
  28723. <summary>
  28724. <para>This node implements simulated 2D physics. You do not control a RigidBody2D directly. Instead you apply forces to it (gravity, impulses, etc.) and the physics simulation calculates the resulting movement based on its mass, friction, and other physical properties.</para>
  28725. <para>A RigidBody2D has 4 behavior <see cref="P:Godot.RigidBody2D.Mode"/>s: Rigid, Static, Character, and Kinematic.</para>
  28726. <para>Note: You should not change a RigidBody2D's <c>position</c> or <c>linear_velocity</c> every frame or even very often. If you need to directly affect the body's state, use <see cref="M:Godot.RigidBody2D._IntegrateForces(Godot.Physics2DDirectBodyState)"/>, which allows you to directly access the physics state.</para>
  28727. <para>Please also keep in mind that physics bodies manage their own transform which overwrites the ones you set. So any direct or indirect transformation (including scaling of the node or its parent) will be visible in the editor only, and immediately reset at runtime.</para>
  28728. <para>If you need to override the default physics behavior or add a transformation at runtime, you can write a custom force integration. See <see cref="P:Godot.RigidBody2D.CustomIntegrator"/>.</para>
  28729. </summary>
  28730. </member>
  28731. <member name="F:Godot.RigidBody2D.ModeEnum.Rigid">
  28732. <summary>
  28733. <para>Rigid mode. The body behaves as a physical object. It collides with other bodies and responds to forces applied to it. This is the default mode.</para>
  28734. </summary>
  28735. </member>
  28736. <member name="F:Godot.RigidBody2D.ModeEnum.Static">
  28737. <summary>
  28738. <para>Static mode. The body behaves like a <see cref="T:Godot.StaticBody2D"/> and does not move.</para>
  28739. </summary>
  28740. </member>
  28741. <member name="F:Godot.RigidBody2D.ModeEnum.Character">
  28742. <summary>
  28743. <para>Character mode. Similar to , but the body can not rotate.</para>
  28744. </summary>
  28745. </member>
  28746. <member name="F:Godot.RigidBody2D.ModeEnum.Kinematic">
  28747. <summary>
  28748. <para>Kinematic mode. The body behaves like a <see cref="T:Godot.KinematicBody2D"/>, and must be moved by code.</para>
  28749. </summary>
  28750. </member>
  28751. <member name="F:Godot.RigidBody2D.CCDMode.Disabled">
  28752. <summary>
  28753. <para>Continuous collision detection disabled. This is the fastest way to detect body collisions, but can miss small, fast-moving objects.</para>
  28754. </summary>
  28755. </member>
  28756. <member name="F:Godot.RigidBody2D.CCDMode.CastRay">
  28757. <summary>
  28758. <para>Continuous collision detection enabled using raycasting. This is faster than shapecasting but less precise.</para>
  28759. </summary>
  28760. </member>
  28761. <member name="F:Godot.RigidBody2D.CCDMode.CastShape">
  28762. <summary>
  28763. <para>Continuous collision detection enabled using shapecasting. This is the slowest CCD method and the most precise.</para>
  28764. </summary>
  28765. </member>
  28766. <member name="P:Godot.RigidBody2D.Mode">
  28767. <summary>
  28768. <para>The body's mode. See <see cref="T:Godot.RigidBody2D.ModeEnum"/> for possible values.</para>
  28769. </summary>
  28770. </member>
  28771. <member name="P:Godot.RigidBody2D.Mass">
  28772. <summary>
  28773. <para>The body's mass.</para>
  28774. </summary>
  28775. </member>
  28776. <member name="P:Godot.RigidBody2D.Inertia">
  28777. <summary>
  28778. <para>The body's moment of inertia. This is like mass, but for rotation: it determines how much torque it takes to rotate the body. The moment of inertia is usually computed automatically from the mass and the shapes, but this function allows you to set a custom value. Set 0 inertia to return to automatically computing it.</para>
  28779. </summary>
  28780. </member>
  28781. <member name="P:Godot.RigidBody2D.Weight">
  28782. <summary>
  28783. <para>The body's weight based on its mass and the Default Gravity value in Project &gt; Project Settings &gt; Physics &gt; 2d.</para>
  28784. </summary>
  28785. </member>
  28786. <member name="P:Godot.RigidBody2D.Friction">
  28787. <summary>
  28788. <para>The body's friction. Values range from <c>0</c> (frictionless) to <c>1</c> (maximum friction).</para>
  28789. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Friction"/> instead via <see cref="P:Godot.RigidBody2D.PhysicsMaterialOverride"/>.</para>
  28790. </summary>
  28791. </member>
  28792. <member name="P:Godot.RigidBody2D.Bounce">
  28793. <summary>
  28794. <para>The body's bounciness. Values range from <c>0</c> (no bounce) to <c>1</c> (full bounciness).</para>
  28795. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Bounce"/> instead via <see cref="P:Godot.RigidBody2D.PhysicsMaterialOverride"/>.</para>
  28796. </summary>
  28797. </member>
  28798. <member name="P:Godot.RigidBody2D.PhysicsMaterialOverride">
  28799. <summary>
  28800. <para>The physics material override for the body.</para>
  28801. <para>If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one.</para>
  28802. </summary>
  28803. </member>
  28804. <member name="P:Godot.RigidBody2D.GravityScale">
  28805. <summary>
  28806. <para>Multiplies the gravity applied to the body. The body's gravity is calculated from the Default Gravity value in Project &gt; Project Settings &gt; Physics &gt; 2d and/or any additional gravity vector applied by <see cref="T:Godot.Area2D"/>s.</para>
  28807. </summary>
  28808. </member>
  28809. <member name="P:Godot.RigidBody2D.CustomIntegrator">
  28810. <summary>
  28811. <para>If <c>true</c>, internal force integration is disabled for this body. Aside from collision response, the body will only move as determined by the <see cref="M:Godot.RigidBody2D._IntegrateForces(Godot.Physics2DDirectBodyState)"/> function.</para>
  28812. </summary>
  28813. </member>
  28814. <member name="P:Godot.RigidBody2D.ContinuousCd">
  28815. <summary>
  28816. <para>Continuous collision detection mode.</para>
  28817. <para>Continuous collision detection tries to predict where a moving body will collide instead of moving it and correcting its movement after collision. Continuous collision detection is slower, but more precise and misses fewer collisions with small, fast-moving objects. Raycasting and shapecasting methods are available. See <see cref="T:Godot.RigidBody2D.CCDMode"/> for details.</para>
  28818. </summary>
  28819. </member>
  28820. <member name="P:Godot.RigidBody2D.ContactsReported">
  28821. <summary>
  28822. <para>The maximum number of contacts to report.</para>
  28823. </summary>
  28824. </member>
  28825. <member name="P:Godot.RigidBody2D.ContactMonitor">
  28826. <summary>
  28827. <para>If <c>true</c>, the body will emit signals when it collides with another RigidBody2D. See also <see cref="P:Godot.RigidBody2D.ContactsReported"/>.</para>
  28828. </summary>
  28829. </member>
  28830. <member name="P:Godot.RigidBody2D.Sleeping">
  28831. <summary>
  28832. <para>If <c>true</c>, the body will not move and will not calculate forces until woken up by another body through, for example, a collision, or by using the <see cref="M:Godot.RigidBody2D.ApplyImpulse(Godot.Vector2,Godot.Vector2)"/> or <see cref="M:Godot.RigidBody2D.AddForce(Godot.Vector2,Godot.Vector2)"/> methods.</para>
  28833. </summary>
  28834. </member>
  28835. <member name="P:Godot.RigidBody2D.CanSleep">
  28836. <summary>
  28837. <para>If <c>true</c>, the body can enter sleep mode when there is no movement. See <see cref="P:Godot.RigidBody2D.Sleeping"/>.</para>
  28838. </summary>
  28839. </member>
  28840. <member name="P:Godot.RigidBody2D.LinearVelocity">
  28841. <summary>
  28842. <para>The body's linear velocity.</para>
  28843. </summary>
  28844. </member>
  28845. <member name="P:Godot.RigidBody2D.LinearDamp">
  28846. <summary>
  28847. <para>Damps the body's <see cref="P:Godot.RigidBody2D.LinearVelocity"/>. If <c>-1</c>, the body will use the Default Linear Damp in Project &gt; Project Settings &gt; Physics &gt; 2d.</para>
  28848. </summary>
  28849. </member>
  28850. <member name="P:Godot.RigidBody2D.AngularVelocity">
  28851. <summary>
  28852. <para>The body's rotational velocity.</para>
  28853. </summary>
  28854. </member>
  28855. <member name="P:Godot.RigidBody2D.AngularDamp">
  28856. <summary>
  28857. <para>Damps the body's <see cref="P:Godot.RigidBody2D.AngularVelocity"/>. If <c>-1</c>, the body will use the Default Angular Damp defined in Project &gt; Project Settings &gt; Physics &gt; 2d.</para>
  28858. </summary>
  28859. </member>
  28860. <member name="P:Godot.RigidBody2D.AppliedForce">
  28861. <summary>
  28862. <para>The body's total applied force.</para>
  28863. </summary>
  28864. </member>
  28865. <member name="P:Godot.RigidBody2D.AppliedTorque">
  28866. <summary>
  28867. <para>The body's total applied torque.</para>
  28868. </summary>
  28869. </member>
  28870. <member name="M:Godot.RigidBody2D._IntegrateForces(Godot.Physics2DDirectBodyState)">
  28871. <summary>
  28872. <para>Allows you to read and safely modify the simulation state for the object. Use this instead of <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> if you need to directly change the body's <c>position</c> or other physics properties. By default, it works in addition to the usual physics behavior, but <see cref="P:Godot.RigidBody2D.CustomIntegrator"/> allows you to disable the default behavior and write custom force integration for a body.</para>
  28873. </summary>
  28874. </member>
  28875. <member name="M:Godot.RigidBody2D.SetAxisVelocity(Godot.Vector2)">
  28876. <summary>
  28877. <para>Sets the body's velocity on the given axis. The velocity in the given vector axis will be set as the given vector length. This is useful for jumping behavior.</para>
  28878. </summary>
  28879. </member>
  28880. <member name="M:Godot.RigidBody2D.ApplyCentralImpulse(Godot.Vector2)">
  28881. <summary>
  28882. <para>Applies a directional impulse without affecting rotation.</para>
  28883. </summary>
  28884. </member>
  28885. <member name="M:Godot.RigidBody2D.ApplyImpulse(Godot.Vector2,Godot.Vector2)">
  28886. <summary>
  28887. <para>Applies a positioned impulse to the body. An impulse is time-independent! Applying an impulse every frame would result in a framerate-dependent force. For this reason it should only be used when simulating one-time impacts (use the "_force" functions otherwise). The position uses the rotation of the global coordinate system, but is centered at the object's origin.</para>
  28888. </summary>
  28889. </member>
  28890. <member name="M:Godot.RigidBody2D.ApplyTorqueImpulse(System.Single)">
  28891. <summary>
  28892. <para>Applies a rotational impulse to the body.</para>
  28893. </summary>
  28894. </member>
  28895. <member name="M:Godot.RigidBody2D.AddCentralForce(Godot.Vector2)">
  28896. <summary>
  28897. <para>Adds a constant directional force without affecting rotation.</para>
  28898. </summary>
  28899. </member>
  28900. <member name="M:Godot.RigidBody2D.AddForce(Godot.Vector2,Godot.Vector2)">
  28901. <summary>
  28902. <para>Adds a positioned force to the body. Both the force and the offset from the body origin are in global coordinates.</para>
  28903. </summary>
  28904. </member>
  28905. <member name="M:Godot.RigidBody2D.AddTorque(System.Single)">
  28906. <summary>
  28907. <para>Adds a constant rotational force.</para>
  28908. </summary>
  28909. </member>
  28910. <member name="M:Godot.RigidBody2D.TestMotion(Godot.Vector2,System.Boolean,System.Single,Godot.Physics2DTestMotionResult)">
  28911. <summary>
  28912. <para>Returns <c>true</c> if a collision would result from moving in the given vector. <c>margin</c> increases the size of the shapes involved in the collision detection, and <c>result</c> is an object of type <see cref="T:Godot.Physics2DTestMotionResult"/>, which contains additional information about the collision (should there be one).</para>
  28913. </summary>
  28914. </member>
  28915. <member name="M:Godot.RigidBody2D.GetCollidingBodies">
  28916. <summary>
  28917. <para>Returns a list of the bodies colliding with this one. Use <see cref="P:Godot.RigidBody2D.ContactsReported"/> to set the maximum number reported. You must also set <see cref="P:Godot.RigidBody2D.ContactMonitor"/> to <c>true</c>.</para>
  28918. <para>Note: The result of this test is not immediate after moving objects. For performance, list of collisions is updated once per frame and before the physics step. Consider using signals instead.</para>
  28919. </summary>
  28920. </member>
  28921. <member name="T:Godot.SceneState">
  28922. <summary>
  28923. <para>Maintains a list of resources, nodes, exported, and overridden properties, and built-in scripts associated with a scene.</para>
  28924. <para>This class cannot be instantiated directly, it is retrieved for a given scene as the result of <see cref="M:Godot.PackedScene.GetState"/>.</para>
  28925. </summary>
  28926. </member>
  28927. <member name="F:Godot.SceneState.GenEditState.Disabled">
  28928. <summary>
  28929. <para>If passed to <see cref="M:Godot.PackedScene.Instance(Godot.PackedScene.GenEditState)"/>, blocks edits to the scene state.</para>
  28930. </summary>
  28931. </member>
  28932. <member name="F:Godot.SceneState.GenEditState.Instance">
  28933. <summary>
  28934. <para>If passed to <see cref="M:Godot.PackedScene.Instance(Godot.PackedScene.GenEditState)"/>, provides inherited scene resources to the local scene.</para>
  28935. <para>Note: Only available in editor builds.</para>
  28936. </summary>
  28937. </member>
  28938. <member name="F:Godot.SceneState.GenEditState.Main">
  28939. <summary>
  28940. <para>If passed to <see cref="M:Godot.PackedScene.Instance(Godot.PackedScene.GenEditState)"/>, provides local scene resources to the local scene. Only the main scene should receive the main edit state.</para>
  28941. <para>Note: Only available in editor builds.</para>
  28942. </summary>
  28943. </member>
  28944. <member name="M:Godot.SceneState.GetNodeCount">
  28945. <summary>
  28946. <para>Returns the number of nodes in the scene.</para>
  28947. <para>The <c>idx</c> argument used to query node data in other <c>get_node_*</c> methods in the interval <c>[0, get_node_count() - 1]</c>.</para>
  28948. </summary>
  28949. </member>
  28950. <member name="M:Godot.SceneState.GetNodeType(System.Int32)">
  28951. <summary>
  28952. <para>Returns the type of the node at <c>idx</c>.</para>
  28953. </summary>
  28954. </member>
  28955. <member name="M:Godot.SceneState.GetNodeName(System.Int32)">
  28956. <summary>
  28957. <para>Returns the name of the node at <c>idx</c>.</para>
  28958. </summary>
  28959. </member>
  28960. <member name="M:Godot.SceneState.GetNodePath(System.Int32,System.Boolean)">
  28961. <summary>
  28962. <para>Returns the path to the node at <c>idx</c>.</para>
  28963. <para>If <c>for_parent</c> is <c>true</c>, returns the path of the <c>idx</c> node's parent instead.</para>
  28964. </summary>
  28965. </member>
  28966. <member name="M:Godot.SceneState.GetNodeOwnerPath(System.Int32)">
  28967. <summary>
  28968. <para>Returns the path to the owner of the node at <c>idx</c>, relative to the root node.</para>
  28969. </summary>
  28970. </member>
  28971. <member name="M:Godot.SceneState.IsNodeInstancePlaceholder(System.Int32)">
  28972. <summary>
  28973. <para>Returns <c>true</c> if the node at <c>idx</c> is an <see cref="T:Godot.InstancePlaceholder"/>.</para>
  28974. </summary>
  28975. </member>
  28976. <member name="M:Godot.SceneState.GetNodeInstancePlaceholder(System.Int32)">
  28977. <summary>
  28978. <para>Returns the path to the represented scene file if the node at <c>idx</c> is an <see cref="T:Godot.InstancePlaceholder"/>.</para>
  28979. </summary>
  28980. </member>
  28981. <member name="M:Godot.SceneState.GetNodeInstance(System.Int32)">
  28982. <summary>
  28983. <para>Returns a <see cref="T:Godot.PackedScene"/> for the node at <c>idx</c> (i.e. the whole branch starting at this node, with its child nodes and resources), or <c>null</c> if the node is not an instance.</para>
  28984. </summary>
  28985. </member>
  28986. <member name="M:Godot.SceneState.GetNodeGroups(System.Int32)">
  28987. <summary>
  28988. <para>Returns the list of group names associated with the node at <c>idx</c>.</para>
  28989. </summary>
  28990. </member>
  28991. <member name="M:Godot.SceneState.GetNodeIndex(System.Int32)">
  28992. <summary>
  28993. <para>Returns the node's index, which is its position relative to its siblings. This is only relevant and saved in scenes for cases where new nodes are added to an instanced or inherited scene among siblings from the base scene. Despite the name, this index is not related to the <c>idx</c> argument used here and in other methods.</para>
  28994. </summary>
  28995. </member>
  28996. <member name="M:Godot.SceneState.GetNodePropertyCount(System.Int32)">
  28997. <summary>
  28998. <para>Returns the number of exported or overridden properties for the node at <c>idx</c>.</para>
  28999. <para>The <c>prop_idx</c> argument used to query node property data in other <c>get_node_property_*</c> methods in the interval <c>[0, get_node_property_count() - 1]</c>.</para>
  29000. </summary>
  29001. </member>
  29002. <member name="M:Godot.SceneState.GetNodePropertyName(System.Int32,System.Int32)">
  29003. <summary>
  29004. <para>Returns the name of the property at <c>prop_idx</c> for the node at <c>idx</c>.</para>
  29005. </summary>
  29006. </member>
  29007. <member name="M:Godot.SceneState.GetNodePropertyValue(System.Int32,System.Int32)">
  29008. <summary>
  29009. <para>Returns the value of the property at <c>prop_idx</c> for the node at <c>idx</c>.</para>
  29010. </summary>
  29011. </member>
  29012. <member name="M:Godot.SceneState.GetConnectionCount">
  29013. <summary>
  29014. <para>Returns the number of signal connections in the scene.</para>
  29015. <para>The <c>idx</c> argument used to query connection metadata in other <c>get_connection_*</c> methods in the interval <c>[0, get_connection_count() - 1]</c>.</para>
  29016. </summary>
  29017. </member>
  29018. <member name="M:Godot.SceneState.GetConnectionSource(System.Int32)">
  29019. <summary>
  29020. <para>Returns the path to the node that owns the signal at <c>idx</c>, relative to the root node.</para>
  29021. </summary>
  29022. </member>
  29023. <member name="M:Godot.SceneState.GetConnectionSignal(System.Int32)">
  29024. <summary>
  29025. <para>Returns the name of the signal at <c>idx</c>.</para>
  29026. </summary>
  29027. </member>
  29028. <member name="M:Godot.SceneState.GetConnectionTarget(System.Int32)">
  29029. <summary>
  29030. <para>Returns the path to the node that owns the method connected to the signal at <c>idx</c>, relative to the root node.</para>
  29031. </summary>
  29032. </member>
  29033. <member name="M:Godot.SceneState.GetConnectionMethod(System.Int32)">
  29034. <summary>
  29035. <para>Returns the method connected to the signal at <c>idx</c>.</para>
  29036. </summary>
  29037. </member>
  29038. <member name="M:Godot.SceneState.GetConnectionFlags(System.Int32)">
  29039. <summary>
  29040. <para>Returns the connection flags for the signal at <c>idx</c>. See <see cref="T:Godot.Object.ConnectFlags"/> constants.</para>
  29041. </summary>
  29042. </member>
  29043. <member name="M:Godot.SceneState.GetConnectionBinds(System.Int32)">
  29044. <summary>
  29045. <para>Returns the list of bound parameters for the signal at <c>idx</c>.</para>
  29046. </summary>
  29047. </member>
  29048. <member name="T:Godot.SceneTree">
  29049. <summary>
  29050. <para>As one of the most important classes, the <see cref="T:Godot.SceneTree"/> manages the hierarchy of nodes in a scene as well as scenes themselves. Nodes can be added, retrieved and removed. The whole scene tree (and thus the current scene) can be paused. Scenes can be loaded, switched and reloaded.</para>
  29051. <para>You can also use the <see cref="T:Godot.SceneTree"/> to organize your nodes into groups: every node can be assigned as many groups as you want to create, e.g. a "enemy" group. You can then iterate these groups or even call methods and set properties on all the group's members at once.</para>
  29052. <para><see cref="T:Godot.SceneTree"/> is the default <see cref="T:Godot.MainLoop"/> implementation used by scenes, and is thus in charge of the game loop.</para>
  29053. </summary>
  29054. </member>
  29055. <member name="F:Godot.SceneTree.StretchAspect.Ignore">
  29056. <summary>
  29057. <para>Fill the window with the content stretched to cover excessive space. Content may appear stretched.</para>
  29058. </summary>
  29059. </member>
  29060. <member name="F:Godot.SceneTree.StretchAspect.Keep">
  29061. <summary>
  29062. <para>Retain the same aspect ratio by padding with black bars on either axis. This prevents distortion.</para>
  29063. </summary>
  29064. </member>
  29065. <member name="F:Godot.SceneTree.StretchAspect.KeepWidth">
  29066. <summary>
  29067. <para>Expand vertically. Left/right black bars may appear if the window is too wide.</para>
  29068. </summary>
  29069. </member>
  29070. <member name="F:Godot.SceneTree.StretchAspect.KeepHeight">
  29071. <summary>
  29072. <para>Expand horizontally. Top/bottom black bars may appear if the window is too tall.</para>
  29073. </summary>
  29074. </member>
  29075. <member name="F:Godot.SceneTree.StretchAspect.Expand">
  29076. <summary>
  29077. <para>Expand in both directions, retaining the same aspect ratio. This prevents distortion while avoiding black bars.</para>
  29078. </summary>
  29079. </member>
  29080. <member name="F:Godot.SceneTree.GroupCallFlags.Default">
  29081. <summary>
  29082. <para>Call a group with no flags (default).</para>
  29083. </summary>
  29084. </member>
  29085. <member name="F:Godot.SceneTree.GroupCallFlags.Reverse">
  29086. <summary>
  29087. <para>Call a group in reverse scene order.</para>
  29088. </summary>
  29089. </member>
  29090. <member name="F:Godot.SceneTree.GroupCallFlags.Realtime">
  29091. <summary>
  29092. <para>Call a group immediately (calls are normally made on idle).</para>
  29093. </summary>
  29094. </member>
  29095. <member name="F:Godot.SceneTree.GroupCallFlags.Unique">
  29096. <summary>
  29097. <para>Call a group only once even if the call is executed many times.</para>
  29098. </summary>
  29099. </member>
  29100. <member name="F:Godot.SceneTree.StretchMode.Disabled">
  29101. <summary>
  29102. <para>No stretching.</para>
  29103. </summary>
  29104. </member>
  29105. <member name="F:Godot.SceneTree.StretchMode.Mode2d">
  29106. <summary>
  29107. <para>Render stretching in higher resolution (interpolated).</para>
  29108. </summary>
  29109. </member>
  29110. <member name="F:Godot.SceneTree.StretchMode.Viewport">
  29111. <summary>
  29112. <para>Keep the specified display resolution. No interpolation. Content may appear pixelated.</para>
  29113. </summary>
  29114. </member>
  29115. <member name="P:Godot.SceneTree.DebugCollisionsHint">
  29116. <summary>
  29117. <para>If <c>true</c>, collision shapes will be visible when running the game from the editor for debugging purposes.</para>
  29118. </summary>
  29119. </member>
  29120. <member name="P:Godot.SceneTree.DebugNavigationHint">
  29121. <summary>
  29122. <para>If <c>true</c>, navigation polygons will be visible when running the game from the editor for debugging purposes.</para>
  29123. </summary>
  29124. </member>
  29125. <member name="P:Godot.SceneTree.Paused">
  29126. <summary>
  29127. <para>If <c>true</c>, the <see cref="T:Godot.SceneTree"/> is paused. Doing so will have the following behavior:</para>
  29128. <para>- 2D and 3D physics will be stopped.</para>
  29129. <para>- <see cref="M:Godot.Node._Process(System.Single)"/>, <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> and <see cref="M:Godot.Node._Input(Godot.InputEvent)"/> will not be called anymore in nodes.</para>
  29130. </summary>
  29131. </member>
  29132. <member name="P:Godot.SceneTree.RefuseNewNetworkConnections">
  29133. <summary>
  29134. <para>If <c>true</c>, the <see cref="T:Godot.SceneTree"/>'s <see cref="P:Godot.SceneTree.NetworkPeer"/> refuses new incoming connections.</para>
  29135. </summary>
  29136. </member>
  29137. <member name="P:Godot.SceneTree.UseFontOversampling">
  29138. <summary>
  29139. <para>If <c>true</c>, font oversampling is used.</para>
  29140. </summary>
  29141. </member>
  29142. <member name="P:Godot.SceneTree.EditedSceneRoot">
  29143. <summary>
  29144. <para>The root of the edited scene.</para>
  29145. </summary>
  29146. </member>
  29147. <member name="P:Godot.SceneTree.CurrentScene">
  29148. <summary>
  29149. <para>The current scene.</para>
  29150. </summary>
  29151. </member>
  29152. <member name="P:Godot.SceneTree.NetworkPeer">
  29153. <summary>
  29154. <para>The peer object to handle the RPC system (effectively enabling networking when set). Depending on the peer itself, the <see cref="T:Godot.SceneTree"/> will become a network server (check with <see cref="M:Godot.SceneTree.IsNetworkServer"/>) and will set the root node's network mode to master, or it will become a regular peer with the root node set to puppet. All child nodes are set to inherit the network mode by default. Handling of networking-related events (connection, disconnection, new clients) is done by connecting to <see cref="T:Godot.SceneTree"/>'s signals.</para>
  29155. </summary>
  29156. </member>
  29157. <member name="P:Godot.SceneTree.Root">
  29158. <summary>
  29159. <para>The <see cref="T:Godot.SceneTree"/>'s root <see cref="T:Godot.Viewport"/>.</para>
  29160. </summary>
  29161. </member>
  29162. <member name="P:Godot.SceneTree.Multiplayer">
  29163. <summary>
  29164. <para>The default <see cref="T:Godot.MultiplayerAPI"/> instance for this <see cref="T:Godot.SceneTree"/>.</para>
  29165. </summary>
  29166. </member>
  29167. <member name="P:Godot.SceneTree.MultiplayerPoll">
  29168. <summary>
  29169. <para>If <c>true</c> (default value), enables automatic polling of the <see cref="T:Godot.MultiplayerAPI"/> for this SceneTree during <c>idle_frame</c>.</para>
  29170. <para>If <c>false</c>, you need to manually call <see cref="M:Godot.MultiplayerAPI.Poll"/> to process network packets and deliver RPCs/RSETs. This allows running RPCs/RSETs in a different loop (e.g. physics, thread, specific time step) and for manual <see cref="T:Godot.Mutex"/> protection when accessing the <see cref="T:Godot.MultiplayerAPI"/> from threads.</para>
  29171. </summary>
  29172. </member>
  29173. <member name="M:Godot.SceneTree.HasGroup(System.String)">
  29174. <summary>
  29175. <para>Returns <c>true</c> if the given group exists.</para>
  29176. </summary>
  29177. </member>
  29178. <member name="M:Godot.SceneTree.SetAutoAcceptQuit(System.Boolean)">
  29179. <summary>
  29180. <para>If <c>true</c>, the application automatically accepts quitting. Enabled by default.</para>
  29181. <para>For mobile platforms, see <see cref="M:Godot.SceneTree.SetQuitOnGoBack(System.Boolean)"/>.</para>
  29182. </summary>
  29183. </member>
  29184. <member name="M:Godot.SceneTree.SetQuitOnGoBack(System.Boolean)">
  29185. <summary>
  29186. <para>If <c>true</c>, the application quits automatically on going back (e.g. on Android). Enabled by default.</para>
  29187. <para>To handle 'Go Back' button when this option is disabled, use .</para>
  29188. </summary>
  29189. </member>
  29190. <member name="M:Godot.SceneTree.SetInputAsHandled">
  29191. <summary>
  29192. <para>Marks the most recent <see cref="T:Godot.InputEvent"/> as handled.</para>
  29193. </summary>
  29194. </member>
  29195. <member name="M:Godot.SceneTree.IsInputHandled">
  29196. <summary>
  29197. <para>Returns <c>true</c> if the most recent <see cref="T:Godot.InputEvent"/> was marked as handled with <see cref="M:Godot.SceneTree.SetInputAsHandled"/>.</para>
  29198. </summary>
  29199. </member>
  29200. <member name="M:Godot.SceneTree.CreateTimer(System.Single,System.Boolean)">
  29201. <summary>
  29202. <para>Returns a <see cref="T:Godot.SceneTreeTimer"/> which will <c>SceneTreeTimer.timeout</c> after the given time in seconds elapsed in this <see cref="T:Godot.SceneTree"/>. If <c>pause_mode_process</c> is set to <c>false</c>, pausing the <see cref="T:Godot.SceneTree"/> will also pause the timer.</para>
  29203. <para>Commonly used to create a one-shot delay timer as in the following example:</para>
  29204. <para><code>
  29205. func some_function():
  29206. print("start")
  29207. yield(get_tree().create_timer(1.0), "timeout")
  29208. print("end")
  29209. </code></para>
  29210. </summary>
  29211. </member>
  29212. <member name="M:Godot.SceneTree.GetNodeCount">
  29213. <summary>
  29214. <para>Returns the number of nodes in this <see cref="T:Godot.SceneTree"/>.</para>
  29215. </summary>
  29216. </member>
  29217. <member name="M:Godot.SceneTree.GetFrame">
  29218. <summary>
  29219. <para>Returns the current frame number, i.e. the total frame count since the application started.</para>
  29220. </summary>
  29221. </member>
  29222. <member name="M:Godot.SceneTree.Quit(System.Int32)">
  29223. <summary>
  29224. <para>Quits the application. A process <c>exit_code</c> can optionally be passed as an argument. If this argument is <c>0</c> or greater, it will override the <see cref="P:Godot.OS.ExitCode"/> defined before quitting the application.</para>
  29225. </summary>
  29226. </member>
  29227. <member name="M:Godot.SceneTree.SetScreenStretch(Godot.SceneTree.StretchMode,Godot.SceneTree.StretchAspect,Godot.Vector2,System.Single)">
  29228. <summary>
  29229. <para>Configures screen stretching to the given <see cref="T:Godot.SceneTree.StretchMode"/>, <see cref="T:Godot.SceneTree.StretchAspect"/>, minimum size and <c>shrink</c> ratio.</para>
  29230. </summary>
  29231. </member>
  29232. <member name="M:Godot.SceneTree.QueueDelete(Godot.Object)">
  29233. <summary>
  29234. <para>Queues the given object for deletion, delaying the call to <see cref="M:Godot.Object.Free"/> to after the current frame.</para>
  29235. </summary>
  29236. </member>
  29237. <member name="M:Godot.SceneTree.CallGroupFlags(System.Int32,System.String,System.String,System.Object[])">
  29238. <summary>
  29239. <para>Calls <c>method</c> on each member of the given group, respecting the given <see cref="T:Godot.SceneTree.GroupCallFlags"/>.</para>
  29240. </summary>
  29241. </member>
  29242. <member name="M:Godot.SceneTree.NotifyGroupFlags(System.UInt32,System.String,System.Int32)">
  29243. <summary>
  29244. <para>Sends the given notification to all members of the <c>group</c>, respecting the given <see cref="T:Godot.SceneTree.GroupCallFlags"/>.</para>
  29245. </summary>
  29246. </member>
  29247. <member name="M:Godot.SceneTree.SetGroupFlags(System.UInt32,System.String,System.String,System.Object)">
  29248. <summary>
  29249. <para>Sets the given <c>property</c> to <c>value</c> on all members of the given group, respecting the given <see cref="T:Godot.SceneTree.GroupCallFlags"/>.</para>
  29250. </summary>
  29251. </member>
  29252. <member name="M:Godot.SceneTree.CallGroup(System.String,System.String,System.Object[])">
  29253. <summary>
  29254. <para>Calls <c>method</c> on each member of the given group.</para>
  29255. </summary>
  29256. </member>
  29257. <member name="M:Godot.SceneTree.NotifyGroup(System.String,System.Int32)">
  29258. <summary>
  29259. <para>Sends the given notification to all members of the <c>group</c>.</para>
  29260. </summary>
  29261. </member>
  29262. <member name="M:Godot.SceneTree.SetGroup(System.String,System.String,System.Object)">
  29263. <summary>
  29264. <para>Sets the given <c>property</c> to <c>value</c> on all members of the given group.</para>
  29265. </summary>
  29266. </member>
  29267. <member name="M:Godot.SceneTree.GetNodesInGroup(System.String)">
  29268. <summary>
  29269. <para>Returns a list of all nodes assigned to the given group.</para>
  29270. </summary>
  29271. </member>
  29272. <member name="M:Godot.SceneTree.ChangeScene(System.String)">
  29273. <summary>
  29274. <para>Changes the running scene to the one at the given <c>path</c>, after loading it into a <see cref="T:Godot.PackedScene"/> and creating a new instance.</para>
  29275. <para>Returns on success, if the <c>path</c> cannot be loaded into a <see cref="T:Godot.PackedScene"/>, or if that scene cannot be instantiated.</para>
  29276. </summary>
  29277. </member>
  29278. <member name="M:Godot.SceneTree.ChangeSceneTo(Godot.PackedScene)">
  29279. <summary>
  29280. <para>Changes the running scene to a new instance of the given <see cref="T:Godot.PackedScene"/>.</para>
  29281. <para>Returns on success or if the scene cannot be instantiated.</para>
  29282. </summary>
  29283. </member>
  29284. <member name="M:Godot.SceneTree.ReloadCurrentScene">
  29285. <summary>
  29286. <para>Reloads the currently active scene.</para>
  29287. <para>Returns on success, if no <see cref="P:Godot.SceneTree.CurrentScene"/> was defined yet, if <see cref="P:Godot.SceneTree.CurrentScene"/> cannot be loaded into a <see cref="T:Godot.PackedScene"/>, or if the scene cannot be instantiated.</para>
  29288. </summary>
  29289. </member>
  29290. <member name="M:Godot.SceneTree.IsNetworkServer">
  29291. <summary>
  29292. <para>Returns <c>true</c> if this <see cref="T:Godot.SceneTree"/>'s <see cref="P:Godot.SceneTree.NetworkPeer"/> is in server mode (listening for connections).</para>
  29293. </summary>
  29294. </member>
  29295. <member name="M:Godot.SceneTree.HasNetworkPeer">
  29296. <summary>
  29297. <para>Returns <c>true</c> if there is a <see cref="P:Godot.SceneTree.NetworkPeer"/> set.</para>
  29298. </summary>
  29299. </member>
  29300. <member name="M:Godot.SceneTree.GetNetworkConnectedPeers">
  29301. <summary>
  29302. <para>Returns the peer IDs of all connected peers of this <see cref="T:Godot.SceneTree"/>'s <see cref="P:Godot.SceneTree.NetworkPeer"/>.</para>
  29303. </summary>
  29304. </member>
  29305. <member name="M:Godot.SceneTree.GetNetworkUniqueId">
  29306. <summary>
  29307. <para>Returns the unique peer ID of this <see cref="T:Godot.SceneTree"/>'s <see cref="P:Godot.SceneTree.NetworkPeer"/>.</para>
  29308. </summary>
  29309. </member>
  29310. <member name="M:Godot.SceneTree.GetRpcSenderId">
  29311. <summary>
  29312. <para>Returns the sender's peer ID for the most recently received RPC call.</para>
  29313. </summary>
  29314. </member>
  29315. <member name="T:Godot.SceneTreeTimer">
  29316. <summary>
  29317. <para>A one-shot timer managed by the scene tree, which emits <c>timeout</c> on completion. See also <see cref="M:Godot.SceneTree.CreateTimer(System.Single,System.Boolean)"/>.</para>
  29318. <para>As opposed to <see cref="T:Godot.Timer"/>, it does not require the instantiation of a node. Commonly used to create a one-shot delay timer as in the following example:</para>
  29319. <para><code>
  29320. func some_function():
  29321. print("Timer started.")
  29322. yield(get_tree().create_timer(1.0), "timeout")
  29323. print("Timer ended.")
  29324. </code></para>
  29325. </summary>
  29326. </member>
  29327. <member name="P:Godot.SceneTreeTimer.TimeLeft">
  29328. <summary>
  29329. <para>The time remaining.</para>
  29330. </summary>
  29331. </member>
  29332. <member name="T:Godot.Script">
  29333. <summary>
  29334. <para>A class stored as a resource. A script extends the functionality of all objects that instance it.</para>
  29335. <para>The <c>new</c> method of a script subclass creates a new instance. <see cref="M:Godot.Object.SetScript(Godot.Reference)"/> extends an existing object, if that object's class matches one of the script's base classes.</para>
  29336. </summary>
  29337. </member>
  29338. <member name="P:Godot.Script.SourceCode">
  29339. <summary>
  29340. <para>The script source code or an empty string if source code is not available. When set, does not reload the class implementation automatically.</para>
  29341. </summary>
  29342. </member>
  29343. <member name="M:Godot.Script.CanInstance">
  29344. <summary>
  29345. <para>Returns <c>true</c> if the script can be instanced.</para>
  29346. </summary>
  29347. </member>
  29348. <member name="M:Godot.Script.InstanceHas(Godot.Object)">
  29349. <summary>
  29350. <para>Returns <c>true</c> if <c>base_object</c> is an instance of this script.</para>
  29351. </summary>
  29352. </member>
  29353. <member name="M:Godot.Script.HasSourceCode">
  29354. <summary>
  29355. <para>Returns <c>true</c> if the script contains non-empty source code.</para>
  29356. </summary>
  29357. </member>
  29358. <member name="M:Godot.Script.Reload(System.Boolean)">
  29359. <summary>
  29360. <para>Reloads the script's class implementation. Returns an error code.</para>
  29361. </summary>
  29362. </member>
  29363. <member name="M:Godot.Script.GetBaseScript">
  29364. <summary>
  29365. <para>Returns the script directly inherited by this script.</para>
  29366. </summary>
  29367. </member>
  29368. <member name="M:Godot.Script.GetInstanceBaseType">
  29369. <summary>
  29370. <para>Returns the script's base type.</para>
  29371. </summary>
  29372. </member>
  29373. <member name="M:Godot.Script.HasScriptSignal(System.String)">
  29374. <summary>
  29375. <para>Returns <c>true</c> if the script, or a base class, defines a signal with the given name.</para>
  29376. </summary>
  29377. </member>
  29378. <member name="M:Godot.Script.GetScriptPropertyList">
  29379. <summary>
  29380. <para>Returns the list of properties in this <see cref="T:Godot.Script"/>.</para>
  29381. </summary>
  29382. </member>
  29383. <member name="M:Godot.Script.GetScriptMethodList">
  29384. <summary>
  29385. <para>Returns the list of methods in this <see cref="T:Godot.Script"/>.</para>
  29386. </summary>
  29387. </member>
  29388. <member name="M:Godot.Script.GetScriptSignalList">
  29389. <summary>
  29390. <para>Returns the list of user signals defined in this <see cref="T:Godot.Script"/>.</para>
  29391. </summary>
  29392. </member>
  29393. <member name="M:Godot.Script.GetScriptConstantMap">
  29394. <summary>
  29395. <para>Returns a dictionary containing constant names and their values.</para>
  29396. </summary>
  29397. </member>
  29398. <member name="M:Godot.Script.GetPropertyDefaultValue(System.String)">
  29399. <summary>
  29400. <para>Returns the default value of the specified property.</para>
  29401. </summary>
  29402. </member>
  29403. <member name="M:Godot.Script.IsTool">
  29404. <summary>
  29405. <para>Returns <c>true</c> if the script is a tool script. A tool script can run in the editor.</para>
  29406. </summary>
  29407. </member>
  29408. <member name="T:Godot.ScrollBar">
  29409. <summary>
  29410. <para>Scrollbars are a <see cref="T:Godot.Range"/>-based <see cref="T:Godot.Control"/>, that display a draggable area (the size of the page). Horizontal (<see cref="T:Godot.HScrollBar"/>) and Vertical (<see cref="T:Godot.VScrollBar"/>) versions are available.</para>
  29411. </summary>
  29412. </member>
  29413. <member name="P:Godot.ScrollBar.CustomStep">
  29414. <summary>
  29415. <para>Overrides the step used when clicking increment and decrement buttons or when using arrow keys when the <see cref="T:Godot.ScrollBar"/> is focused.</para>
  29416. </summary>
  29417. </member>
  29418. <member name="T:Godot.ScrollContainer">
  29419. <summary>
  29420. <para>A ScrollContainer node meant to contain a <see cref="T:Godot.Control"/> child. ScrollContainers will automatically create a scrollbar child (<see cref="T:Godot.HScrollBar"/>, <see cref="T:Godot.VScrollBar"/>, or both) when needed and will only draw the Control within the ScrollContainer area. Scrollbars will automatically be drawn at the right (for vertical) or bottom (for horizontal) and will enable dragging to move the viewable Control (and its children) within the ScrollContainer. Scrollbars will also automatically resize the grabber based on the <see cref="P:Godot.Control.RectMinSize"/> of the Control relative to the ScrollContainer. Works great with a <see cref="T:Godot.Panel"/> control. You can set <c>EXPAND</c> on the children's size flags, so they will upscale to the ScrollContainer's size if it's larger (scroll is invisible for the chosen dimension).</para>
  29421. </summary>
  29422. </member>
  29423. <member name="P:Godot.ScrollContainer.FollowFocus">
  29424. <summary>
  29425. <para>If <c>true</c>, the ScrollContainer will automatically scroll to focused children (including indirect children) to make sure they are fully visible.</para>
  29426. </summary>
  29427. </member>
  29428. <member name="P:Godot.ScrollContainer.ScrollHorizontalEnabled">
  29429. <summary>
  29430. <para>If <c>true</c>, enables horizontal scrolling.</para>
  29431. </summary>
  29432. </member>
  29433. <member name="P:Godot.ScrollContainer.ScrollHorizontal">
  29434. <summary>
  29435. <para>The current horizontal scroll value.</para>
  29436. </summary>
  29437. </member>
  29438. <member name="P:Godot.ScrollContainer.ScrollVerticalEnabled">
  29439. <summary>
  29440. <para>If <c>true</c>, enables vertical scrolling.</para>
  29441. </summary>
  29442. </member>
  29443. <member name="P:Godot.ScrollContainer.ScrollVertical">
  29444. <summary>
  29445. <para>The current vertical scroll value.</para>
  29446. </summary>
  29447. </member>
  29448. <member name="M:Godot.ScrollContainer.GetHScrollbar">
  29449. <summary>
  29450. <para>Returns the horizontal scrollbar <see cref="T:Godot.HScrollBar"/> of this <see cref="T:Godot.ScrollContainer"/>.</para>
  29451. </summary>
  29452. </member>
  29453. <member name="M:Godot.ScrollContainer.GetVScrollbar">
  29454. <summary>
  29455. <para>Returns the vertical scrollbar <see cref="T:Godot.VScrollBar"/> of this <see cref="T:Godot.ScrollContainer"/>.</para>
  29456. </summary>
  29457. </member>
  29458. <member name="T:Godot.SegmentShape2D">
  29459. <summary>
  29460. <para>Segment shape for 2D collisions. Consists of two points, <c>a</c> and <c>b</c>.</para>
  29461. </summary>
  29462. </member>
  29463. <member name="P:Godot.SegmentShape2D.A">
  29464. <summary>
  29465. <para>The segment's first point position.</para>
  29466. </summary>
  29467. </member>
  29468. <member name="P:Godot.SegmentShape2D.B">
  29469. <summary>
  29470. <para>The segment's second point position.</para>
  29471. </summary>
  29472. </member>
  29473. <member name="T:Godot.Separator">
  29474. <summary>
  29475. <para>Separator is a <see cref="T:Godot.Control"/> used for separating other controls. It's purely a visual decoration. Horizontal (<see cref="T:Godot.HSeparator"/>) and Vertical (<see cref="T:Godot.VSeparator"/>) versions are available.</para>
  29476. </summary>
  29477. </member>
  29478. <member name="T:Godot.Shader">
  29479. <summary>
  29480. <para>This class allows you to define a custom shader program that can be used by a <see cref="T:Godot.ShaderMaterial"/>. Shaders allow you to write your own custom behavior for rendering objects or updating particle information. For a detailed explanation and usage, please see the tutorials linked below.</para>
  29481. </summary>
  29482. </member>
  29483. <member name="F:Godot.Shader.Mode.Spatial">
  29484. <summary>
  29485. <para>Mode used to draw all 3D objects.</para>
  29486. </summary>
  29487. </member>
  29488. <member name="F:Godot.Shader.Mode.CanvasItem">
  29489. <summary>
  29490. <para>Mode used to draw all 2D objects.</para>
  29491. </summary>
  29492. </member>
  29493. <member name="F:Godot.Shader.Mode.Particles">
  29494. <summary>
  29495. <para>Mode used to calculate particle information on a per-particle basis. Not used for drawing.</para>
  29496. </summary>
  29497. </member>
  29498. <member name="P:Godot.Shader.Code">
  29499. <summary>
  29500. <para>Returns the shader's code as the user has written it, not the full generated code used internally.</para>
  29501. </summary>
  29502. </member>
  29503. <member name="P:Godot.Shader.CustomDefines">
  29504. <summary>
  29505. <para>Returns the shader's custom defines. Custom defines can be used in Godot to add GLSL preprocessor directives (e.g: extensions) required for the shader logic.</para>
  29506. <para>Note: Custom defines are not validated by the Godot shader parser, so care should be taken when using them.</para>
  29507. </summary>
  29508. </member>
  29509. <member name="M:Godot.Shader.GetMode">
  29510. <summary>
  29511. <para>Returns the shader mode for the shader, either , or .</para>
  29512. </summary>
  29513. </member>
  29514. <member name="M:Godot.Shader.SetDefaultTextureParam(System.String,Godot.Texture)">
  29515. <summary>
  29516. <para>Sets the default texture to be used with a texture uniform. The default is used if a texture is not set in the <see cref="T:Godot.ShaderMaterial"/>.</para>
  29517. <para>Note: <c>param</c> must match the name of the uniform in the code exactly.</para>
  29518. </summary>
  29519. </member>
  29520. <member name="M:Godot.Shader.GetDefaultTextureParam(System.String)">
  29521. <summary>
  29522. <para>Returns the texture that is set as default for the specified parameter.</para>
  29523. <para>Note: <c>param</c> must match the name of the uniform in the code exactly.</para>
  29524. </summary>
  29525. </member>
  29526. <member name="M:Godot.Shader.HasParam(System.String)">
  29527. <summary>
  29528. <para>Returns <c>true</c> if the shader has this param defined as a uniform in its code.</para>
  29529. <para>Note: <c>param</c> must match the name of the uniform in the code exactly.</para>
  29530. </summary>
  29531. </member>
  29532. <member name="T:Godot.ShaderMaterial">
  29533. <summary>
  29534. <para>A material that uses a custom <see cref="T:Godot.Shader"/> program to render either items to screen or process particles. You can create multiple materials for the same shader but configure different values for the uniforms defined in the shader.</para>
  29535. </summary>
  29536. </member>
  29537. <member name="P:Godot.ShaderMaterial.Shader">
  29538. <summary>
  29539. <para>The <see cref="T:Godot.Shader"/> program used to render this material.</para>
  29540. </summary>
  29541. </member>
  29542. <member name="M:Godot.ShaderMaterial.SetShaderParam(System.String,System.Object)">
  29543. <summary>
  29544. <para>Changes the value set for this material of a uniform in the shader. Note: <c>param</c> must match the name of the uniform in the code exactly.</para>
  29545. </summary>
  29546. </member>
  29547. <member name="M:Godot.ShaderMaterial.GetShaderParam(System.String)">
  29548. <summary>
  29549. <para>Returns the current value set for this material of a uniform in the shader.</para>
  29550. </summary>
  29551. </member>
  29552. <member name="M:Godot.ShaderMaterial.PropertyCanRevert(System.String)">
  29553. <summary>
  29554. <para>Returns <c>true</c> if the property identified by <c>name</c> can be reverted to a default value.</para>
  29555. </summary>
  29556. </member>
  29557. <member name="M:Godot.ShaderMaterial.PropertyGetRevert(System.String)">
  29558. <summary>
  29559. <para>Returns the default value of the material property with given <c>name</c>.</para>
  29560. </summary>
  29561. </member>
  29562. <member name="T:Godot.Shape">
  29563. <summary>
  29564. <para>Base class for all 3D shape resources. Nodes that inherit from this can be used as shapes for a <see cref="T:Godot.PhysicsBody"/> or <see cref="T:Godot.Area"/> objects.</para>
  29565. </summary>
  29566. </member>
  29567. <member name="P:Godot.Shape.Margin">
  29568. <summary>
  29569. <para>The collision margin for the shape.</para>
  29570. </summary>
  29571. </member>
  29572. <member name="T:Godot.Shape2D">
  29573. <summary>
  29574. <para>Base class for all 2D shapes. All 2D shape types inherit from this.</para>
  29575. </summary>
  29576. </member>
  29577. <member name="P:Godot.Shape2D.CustomSolverBias">
  29578. <summary>
  29579. <para>The shape's custom solver bias.</para>
  29580. </summary>
  29581. </member>
  29582. <member name="M:Godot.Shape2D.Collide(Godot.Transform2D,Godot.Shape2D,Godot.Transform2D)">
  29583. <summary>
  29584. <para>Returns <c>true</c> if this shape is colliding with another.</para>
  29585. <para>This method needs the transformation matrix for this shape (<c>local_xform</c>), the shape to check collisions with (<c>with_shape</c>), and the transformation matrix of that shape (<c>shape_xform</c>).</para>
  29586. </summary>
  29587. </member>
  29588. <member name="M:Godot.Shape2D.CollideWithMotion(Godot.Transform2D,Godot.Vector2,Godot.Shape2D,Godot.Transform2D,Godot.Vector2)">
  29589. <summary>
  29590. <para>Returns whether this shape would collide with another, if a given movement was applied.</para>
  29591. <para>This method needs the transformation matrix for this shape (<c>local_xform</c>), the movement to test on this shape (<c>local_motion</c>), the shape to check collisions with (<c>with_shape</c>), the transformation matrix of that shape (<c>shape_xform</c>), and the movement to test onto the other object (<c>shape_motion</c>).</para>
  29592. </summary>
  29593. </member>
  29594. <member name="M:Godot.Shape2D.CollideAndGetContacts(Godot.Transform2D,Godot.Shape2D,Godot.Transform2D)">
  29595. <summary>
  29596. <para>Returns a list of the points where this shape touches another. If there are no collisions the list is empty.</para>
  29597. <para>This method needs the transformation matrix for this shape (<c>local_xform</c>), the shape to check collisions with (<c>with_shape</c>), and the transformation matrix of that shape (<c>shape_xform</c>).</para>
  29598. </summary>
  29599. </member>
  29600. <member name="M:Godot.Shape2D.CollideWithMotionAndGetContacts(Godot.Transform2D,Godot.Vector2,Godot.Shape2D,Godot.Transform2D,Godot.Vector2)">
  29601. <summary>
  29602. <para>Returns a list of the points where this shape would touch another, if a given movement was applied. If there are no collisions the list is empty.</para>
  29603. <para>This method needs the transformation matrix for this shape (<c>local_xform</c>), the movement to test on this shape (<c>local_motion</c>), the shape to check collisions with (<c>with_shape</c>), the transformation matrix of that shape (<c>shape_xform</c>), and the movement to test onto the other object (<c>shape_motion</c>).</para>
  29604. </summary>
  29605. </member>
  29606. <member name="M:Godot.Shape2D.Draw(Godot.RID,Godot.Color)">
  29607. <summary>
  29608. <para>Draws a solid shape onto a <see cref="T:Godot.CanvasItem"/> with the <see cref="T:Godot.VisualServer"/> API filled with the specified <c>color</c>. The exact drawing method is specific for each shape and cannot be configured.</para>
  29609. </summary>
  29610. </member>
  29611. <member name="T:Godot.ShortCut">
  29612. <summary>
  29613. <para>A shortcut for binding input.</para>
  29614. <para>Shortcuts are commonly used for interacting with a <see cref="T:Godot.Control"/> element from a <see cref="T:Godot.InputEvent"/>.</para>
  29615. </summary>
  29616. </member>
  29617. <member name="P:Godot.ShortCut.Shortcut">
  29618. <summary>
  29619. <para>The shortcut's <see cref="T:Godot.InputEvent"/>.</para>
  29620. <para>Generally the <see cref="T:Godot.InputEvent"/> is a keyboard key, though it can be any <see cref="T:Godot.InputEvent"/>.</para>
  29621. </summary>
  29622. </member>
  29623. <member name="M:Godot.ShortCut.IsValid">
  29624. <summary>
  29625. <para>If <c>true</c>, this shortcut is valid.</para>
  29626. </summary>
  29627. </member>
  29628. <member name="M:Godot.ShortCut.IsShortcut(Godot.InputEvent)">
  29629. <summary>
  29630. <para>Returns <c>true</c> if the shortcut's <see cref="T:Godot.InputEvent"/> equals <c>event</c>.</para>
  29631. </summary>
  29632. </member>
  29633. <member name="M:Godot.ShortCut.GetAsText">
  29634. <summary>
  29635. <para>Returns the shortcut's <see cref="T:Godot.InputEvent"/> as a <see cref="T:System.String"/>.</para>
  29636. </summary>
  29637. </member>
  29638. <member name="T:Godot.Skeleton">
  29639. <summary>
  29640. <para>Skeleton provides a hierarchical interface for managing bones, including pose, rest and animation (see <see cref="T:Godot.Animation"/>). It can also use ragdoll physics.</para>
  29641. <para>The overall transform of a bone with respect to the skeleton is determined by the following hierarchical order: rest pose, custom pose and pose.</para>
  29642. <para>Note that "global pose" below refers to the overall transform of the bone with respect to skeleton, so it not the actual global/world transform of the bone.</para>
  29643. </summary>
  29644. </member>
  29645. <member name="M:Godot.Skeleton.AddBone(System.String)">
  29646. <summary>
  29647. <para>Adds a bone, with name <c>name</c>. <see cref="M:Godot.Skeleton.GetBoneCount"/> will become the bone index.</para>
  29648. </summary>
  29649. </member>
  29650. <member name="M:Godot.Skeleton.FindBone(System.String)">
  29651. <summary>
  29652. <para>Returns the bone index that matches <c>name</c> as its name.</para>
  29653. </summary>
  29654. </member>
  29655. <member name="M:Godot.Skeleton.GetBoneName(System.Int32)">
  29656. <summary>
  29657. <para>Returns the name of the bone at index <c>index</c>.</para>
  29658. </summary>
  29659. </member>
  29660. <member name="M:Godot.Skeleton.GetBoneParent(System.Int32)">
  29661. <summary>
  29662. <para>Returns the bone index which is the parent of the bone at <c>bone_idx</c>. If -1, then bone has no parent.</para>
  29663. <para>Note: The parent bone returned will always be less than <c>bone_idx</c>.</para>
  29664. </summary>
  29665. </member>
  29666. <member name="M:Godot.Skeleton.SetBoneParent(System.Int32,System.Int32)">
  29667. <summary>
  29668. <para>Sets the bone index <c>parent_idx</c> as the parent of the bone at <c>bone_idx</c>. If -1, then bone has no parent.</para>
  29669. <para>Note: <c>parent_idx</c> must be less than <c>bone_idx</c>.</para>
  29670. </summary>
  29671. </member>
  29672. <member name="M:Godot.Skeleton.GetBoneCount">
  29673. <summary>
  29674. <para>Returns the amount of bones in the skeleton.</para>
  29675. </summary>
  29676. </member>
  29677. <member name="M:Godot.Skeleton.GetBoneRest(System.Int32)">
  29678. <summary>
  29679. <para>Returns the rest transform for a bone <c>bone_idx</c>.</para>
  29680. </summary>
  29681. </member>
  29682. <member name="M:Godot.Skeleton.SetBoneRest(System.Int32,Godot.Transform)">
  29683. <summary>
  29684. <para>Sets the rest transform for bone <c>bone_idx</c>.</para>
  29685. </summary>
  29686. </member>
  29687. <member name="M:Godot.Skeleton.BindChildNodeToBone(System.Int32,Godot.Node)">
  29688. <summary>
  29689. <para>Deprecated soon.</para>
  29690. </summary>
  29691. </member>
  29692. <member name="M:Godot.Skeleton.UnbindChildNodeFromBone(System.Int32,Godot.Node)">
  29693. <summary>
  29694. <para>Deprecated soon.</para>
  29695. </summary>
  29696. </member>
  29697. <member name="M:Godot.Skeleton.GetBoundChildNodesToBone(System.Int32)">
  29698. <summary>
  29699. <para>Deprecated soon.</para>
  29700. </summary>
  29701. </member>
  29702. <member name="M:Godot.Skeleton.ClearBones">
  29703. <summary>
  29704. <para>Clear all the bones in this skeleton.</para>
  29705. </summary>
  29706. </member>
  29707. <member name="M:Godot.Skeleton.GetBonePose(System.Int32)">
  29708. <summary>
  29709. <para>Returns the pose transform of the specified bone. Pose is applied on top of the custom pose, which is applied on top the rest pose.</para>
  29710. </summary>
  29711. </member>
  29712. <member name="M:Godot.Skeleton.SetBonePose(System.Int32,Godot.Transform)">
  29713. <summary>
  29714. <para>Returns the pose transform for bone <c>bone_idx</c>.</para>
  29715. </summary>
  29716. </member>
  29717. <member name="M:Godot.Skeleton.GetBoneGlobalPose(System.Int32)">
  29718. <summary>
  29719. <para>Returns the overall transform of the specified bone, with respect to the skeleton. Being relative to the skeleton frame, this is not the actual "global" transform of the bone.</para>
  29720. </summary>
  29721. </member>
  29722. <member name="M:Godot.Skeleton.GetBoneCustomPose(System.Int32)">
  29723. <summary>
  29724. <para>Returns the custom pose of the specified bone. Custom pose is applied on top of the rest pose.</para>
  29725. </summary>
  29726. </member>
  29727. <member name="M:Godot.Skeleton.PhysicalBonesStartSimulation(Godot.Collections.Array)">
  29728. <param name="bones">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  29729. </member>
  29730. <member name="T:Godot.Skeleton2D">
  29731. <summary>
  29732. <para>Skeleton2D parents a hierarchy of <see cref="T:Godot.Bone2D"/> objects. It is a requirement of <see cref="T:Godot.Bone2D"/>. Skeleton2D holds a reference to the rest pose of its children and acts as a single point of access to its bones.</para>
  29733. </summary>
  29734. </member>
  29735. <member name="M:Godot.Skeleton2D.GetBoneCount">
  29736. <summary>
  29737. <para>Returns the number of <see cref="T:Godot.Bone2D"/> nodes in the node hierarchy parented by Skeleton2D.</para>
  29738. </summary>
  29739. </member>
  29740. <member name="M:Godot.Skeleton2D.GetBone(System.Int32)">
  29741. <summary>
  29742. <para>Returns a <see cref="T:Godot.Bone2D"/> from the node hierarchy parented by Skeleton2D. The object to return is identified by the parameter <c>idx</c>. Bones are indexed by descending the node hierarchy from top to bottom, adding the children of each branch before moving to the next sibling.</para>
  29743. </summary>
  29744. </member>
  29745. <member name="M:Godot.Skeleton2D.GetSkeleton">
  29746. <summary>
  29747. <para>Returns the <see cref="T:Godot.RID"/> of a Skeleton2D instance.</para>
  29748. </summary>
  29749. </member>
  29750. <member name="T:Godot.Sky">
  29751. <summary>
  29752. <para>The base class for <see cref="T:Godot.PanoramaSky"/> and <see cref="T:Godot.ProceduralSky"/>.</para>
  29753. </summary>
  29754. </member>
  29755. <member name="F:Godot.Sky.RadianceSizeEnum.Size32">
  29756. <summary>
  29757. <para>Radiance texture size is 32×32 pixels.</para>
  29758. </summary>
  29759. </member>
  29760. <member name="F:Godot.Sky.RadianceSizeEnum.Size64">
  29761. <summary>
  29762. <para>Radiance texture size is 64×64 pixels.</para>
  29763. </summary>
  29764. </member>
  29765. <member name="F:Godot.Sky.RadianceSizeEnum.Size128">
  29766. <summary>
  29767. <para>Radiance texture size is 128×128 pixels.</para>
  29768. </summary>
  29769. </member>
  29770. <member name="F:Godot.Sky.RadianceSizeEnum.Size256">
  29771. <summary>
  29772. <para>Radiance texture size is 256×256 pixels.</para>
  29773. </summary>
  29774. </member>
  29775. <member name="F:Godot.Sky.RadianceSizeEnum.Size512">
  29776. <summary>
  29777. <para>Radiance texture size is 512×512 pixels.</para>
  29778. </summary>
  29779. </member>
  29780. <member name="F:Godot.Sky.RadianceSizeEnum.Size1024">
  29781. <summary>
  29782. <para>Radiance texture size is 1024×1024 pixels.</para>
  29783. </summary>
  29784. </member>
  29785. <member name="F:Godot.Sky.RadianceSizeEnum.Size2048">
  29786. <summary>
  29787. <para>Radiance texture size is 2048×2048 pixels.</para>
  29788. </summary>
  29789. </member>
  29790. <member name="F:Godot.Sky.RadianceSizeEnum.Max">
  29791. <summary>
  29792. <para>Represents the size of the <see cref="T:Godot.Sky.RadianceSizeEnum"/> enum.</para>
  29793. </summary>
  29794. </member>
  29795. <member name="P:Godot.Sky.RadianceSize">
  29796. <summary>
  29797. <para>The <see cref="T:Godot.Sky"/>'s radiance map size. The higher the radiance map size, the more detailed the lighting from the <see cref="T:Godot.Sky"/> will be.</para>
  29798. <para>See <see cref="T:Godot.Sky.RadianceSizeEnum"/> constants for values.</para>
  29799. <para>Note: Some hardware will have trouble with higher radiance sizes, especially and above. Only use such high values on high-end hardware.</para>
  29800. </summary>
  29801. </member>
  29802. <member name="T:Godot.Slider">
  29803. <summary>
  29804. <para>Base class for GUI sliders.</para>
  29805. </summary>
  29806. </member>
  29807. <member name="P:Godot.Slider.Editable">
  29808. <summary>
  29809. <para>If <c>true</c>, the slider can be interacted with. If <c>false</c>, the value can be changed only by code.</para>
  29810. </summary>
  29811. </member>
  29812. <member name="P:Godot.Slider.Scrollable">
  29813. <summary>
  29814. <para>If <c>true</c>, the value can be changed using the mouse wheel.</para>
  29815. </summary>
  29816. </member>
  29817. <member name="P:Godot.Slider.TickCount">
  29818. <summary>
  29819. <para>Number of ticks displayed on the slider, including border ticks. Ticks are uniformly-distributed value markers.</para>
  29820. </summary>
  29821. </member>
  29822. <member name="P:Godot.Slider.TicksOnBorders">
  29823. <summary>
  29824. <para>If <c>true</c>, the slider will display ticks for minimum and maximum values.</para>
  29825. </summary>
  29826. </member>
  29827. <member name="T:Godot.SliderJoint">
  29828. <summary>
  29829. <para>Slides across the X axis of the pivot object.</para>
  29830. </summary>
  29831. </member>
  29832. <member name="F:Godot.SliderJoint.Param.LinearLimitUpper">
  29833. <summary>
  29834. <para>The maximum difference between the pivot points on their X axis before damping happens.</para>
  29835. </summary>
  29836. </member>
  29837. <member name="F:Godot.SliderJoint.Param.LinearLimitLower">
  29838. <summary>
  29839. <para>The minimum difference between the pivot points on their X axis before damping happens.</para>
  29840. </summary>
  29841. </member>
  29842. <member name="F:Godot.SliderJoint.Param.LinearLimitSoftness">
  29843. <summary>
  29844. <para>A factor applied to the movement across the slider axis once the limits get surpassed. The lower, the slower the movement.</para>
  29845. </summary>
  29846. </member>
  29847. <member name="F:Godot.SliderJoint.Param.LinearLimitRestitution">
  29848. <summary>
  29849. <para>The amount of restitution once the limits are surpassed. The lower, the more velocityenergy gets lost.</para>
  29850. </summary>
  29851. </member>
  29852. <member name="F:Godot.SliderJoint.Param.LinearLimitDamping">
  29853. <summary>
  29854. <para>The amount of damping once the slider limits are surpassed.</para>
  29855. </summary>
  29856. </member>
  29857. <member name="F:Godot.SliderJoint.Param.LinearMotionSoftness">
  29858. <summary>
  29859. <para>A factor applied to the movement across the slider axis as long as the slider is in the limits. The lower, the slower the movement.</para>
  29860. </summary>
  29861. </member>
  29862. <member name="F:Godot.SliderJoint.Param.LinearMotionRestitution">
  29863. <summary>
  29864. <para>The amount of restitution inside the slider limits.</para>
  29865. </summary>
  29866. </member>
  29867. <member name="F:Godot.SliderJoint.Param.LinearMotionDamping">
  29868. <summary>
  29869. <para>The amount of damping inside the slider limits.</para>
  29870. </summary>
  29871. </member>
  29872. <member name="F:Godot.SliderJoint.Param.LinearOrthogonalSoftness">
  29873. <summary>
  29874. <para>A factor applied to the movement across axes orthogonal to the slider.</para>
  29875. </summary>
  29876. </member>
  29877. <member name="F:Godot.SliderJoint.Param.LinearOrthogonalRestitution">
  29878. <summary>
  29879. <para>The amount of restitution when movement is across axes orthogonal to the slider.</para>
  29880. </summary>
  29881. </member>
  29882. <member name="F:Godot.SliderJoint.Param.LinearOrthogonalDamping">
  29883. <summary>
  29884. <para>The amount of damping when movement is across axes orthogonal to the slider.</para>
  29885. </summary>
  29886. </member>
  29887. <member name="F:Godot.SliderJoint.Param.AngularLimitUpper">
  29888. <summary>
  29889. <para>The upper limit of rotation in the slider.</para>
  29890. </summary>
  29891. </member>
  29892. <member name="F:Godot.SliderJoint.Param.AngularLimitLower">
  29893. <summary>
  29894. <para>The lower limit of rotation in the slider.</para>
  29895. </summary>
  29896. </member>
  29897. <member name="F:Godot.SliderJoint.Param.AngularLimitSoftness">
  29898. <summary>
  29899. <para>A factor applied to the all rotation once the limit is surpassed.</para>
  29900. </summary>
  29901. </member>
  29902. <member name="F:Godot.SliderJoint.Param.AngularLimitRestitution">
  29903. <summary>
  29904. <para>The amount of restitution of the rotation when the limit is surpassed.</para>
  29905. </summary>
  29906. </member>
  29907. <member name="F:Godot.SliderJoint.Param.AngularLimitDamping">
  29908. <summary>
  29909. <para>The amount of damping of the rotation when the limit is surpassed.</para>
  29910. </summary>
  29911. </member>
  29912. <member name="F:Godot.SliderJoint.Param.AngularMotionSoftness">
  29913. <summary>
  29914. <para>A factor applied to the all rotation in the limits.</para>
  29915. </summary>
  29916. </member>
  29917. <member name="F:Godot.SliderJoint.Param.AngularMotionRestitution">
  29918. <summary>
  29919. <para>The amount of restitution of the rotation in the limits.</para>
  29920. </summary>
  29921. </member>
  29922. <member name="F:Godot.SliderJoint.Param.AngularMotionDamping">
  29923. <summary>
  29924. <para>The amount of damping of the rotation in the limits.</para>
  29925. </summary>
  29926. </member>
  29927. <member name="F:Godot.SliderJoint.Param.AngularOrthogonalSoftness">
  29928. <summary>
  29929. <para>A factor applied to the all rotation across axes orthogonal to the slider.</para>
  29930. </summary>
  29931. </member>
  29932. <member name="F:Godot.SliderJoint.Param.AngularOrthogonalRestitution">
  29933. <summary>
  29934. <para>The amount of restitution of the rotation across axes orthogonal to the slider.</para>
  29935. </summary>
  29936. </member>
  29937. <member name="F:Godot.SliderJoint.Param.AngularOrthogonalDamping">
  29938. <summary>
  29939. <para>The amount of damping of the rotation across axes orthogonal to the slider.</para>
  29940. </summary>
  29941. </member>
  29942. <member name="F:Godot.SliderJoint.Param.Max">
  29943. <summary>
  29944. <para>Represents the size of the <see cref="T:Godot.SliderJoint.Param"/> enum.</para>
  29945. </summary>
  29946. </member>
  29947. <member name="P:Godot.SliderJoint.LinearLimit__upperDistance">
  29948. <summary>
  29949. <para>The maximum difference between the pivot points on their X axis before damping happens.</para>
  29950. </summary>
  29951. </member>
  29952. <member name="P:Godot.SliderJoint.LinearLimit__lowerDistance">
  29953. <summary>
  29954. <para>The minimum difference between the pivot points on their X axis before damping happens.</para>
  29955. </summary>
  29956. </member>
  29957. <member name="P:Godot.SliderJoint.LinearLimit__softness">
  29958. <summary>
  29959. <para>A factor applied to the movement across the slider axis once the limits get surpassed. The lower, the slower the movement.</para>
  29960. </summary>
  29961. </member>
  29962. <member name="P:Godot.SliderJoint.LinearLimit__restitution">
  29963. <summary>
  29964. <para>The amount of restitution once the limits are surpassed. The lower, the more velocity-energy gets lost.</para>
  29965. </summary>
  29966. </member>
  29967. <member name="P:Godot.SliderJoint.LinearLimit__damping">
  29968. <summary>
  29969. <para>The amount of damping that happens once the limit defined by <see cref="P:Godot.SliderJoint.LinearLimit__lowerDistance"/> and <see cref="P:Godot.SliderJoint.LinearLimit__upperDistance"/> is surpassed.</para>
  29970. </summary>
  29971. </member>
  29972. <member name="P:Godot.SliderJoint.LinearMotion__softness">
  29973. <summary>
  29974. <para>A factor applied to the movement across the slider axis as long as the slider is in the limits. The lower, the slower the movement.</para>
  29975. </summary>
  29976. </member>
  29977. <member name="P:Godot.SliderJoint.LinearMotion__restitution">
  29978. <summary>
  29979. <para>The amount of restitution inside the slider limits.</para>
  29980. </summary>
  29981. </member>
  29982. <member name="P:Godot.SliderJoint.LinearMotion__damping">
  29983. <summary>
  29984. <para>The amount of damping inside the slider limits.</para>
  29985. </summary>
  29986. </member>
  29987. <member name="P:Godot.SliderJoint.LinearOrtho__softness">
  29988. <summary>
  29989. <para>A factor applied to the movement across axes orthogonal to the slider.</para>
  29990. </summary>
  29991. </member>
  29992. <member name="P:Godot.SliderJoint.LinearOrtho__restitution">
  29993. <summary>
  29994. <para>The amount of restitution when movement is across axes orthogonal to the slider.</para>
  29995. </summary>
  29996. </member>
  29997. <member name="P:Godot.SliderJoint.LinearOrtho__damping">
  29998. <summary>
  29999. <para>The amount of damping when movement is across axes orthogonal to the slider.</para>
  30000. </summary>
  30001. </member>
  30002. <member name="P:Godot.SliderJoint.AngularLimit__upperAngle">
  30003. <summary>
  30004. <para>The upper limit of rotation in the slider.</para>
  30005. </summary>
  30006. </member>
  30007. <member name="P:Godot.SliderJoint.AngularLimit__lowerAngle">
  30008. <summary>
  30009. <para>The lower limit of rotation in the slider.</para>
  30010. </summary>
  30011. </member>
  30012. <member name="P:Godot.SliderJoint.AngularLimit__softness">
  30013. <summary>
  30014. <para>A factor applied to the all rotation once the limit is surpassed.</para>
  30015. <para>Makes all rotation slower when between 0 and 1.</para>
  30016. </summary>
  30017. </member>
  30018. <member name="P:Godot.SliderJoint.AngularLimit__restitution">
  30019. <summary>
  30020. <para>The amount of restitution of the rotation when the limit is surpassed.</para>
  30021. <para>Does not affect damping.</para>
  30022. </summary>
  30023. </member>
  30024. <member name="P:Godot.SliderJoint.AngularLimit__damping">
  30025. <summary>
  30026. <para>The amount of damping of the rotation when the limit is surpassed.</para>
  30027. <para>A lower damping value allows a rotation initiated by body A to travel to body B slower.</para>
  30028. </summary>
  30029. </member>
  30030. <member name="P:Godot.SliderJoint.AngularMotion__softness">
  30031. <summary>
  30032. <para>A factor applied to the all rotation in the limits.</para>
  30033. </summary>
  30034. </member>
  30035. <member name="P:Godot.SliderJoint.AngularMotion__restitution">
  30036. <summary>
  30037. <para>The amount of restitution of the rotation in the limits.</para>
  30038. </summary>
  30039. </member>
  30040. <member name="P:Godot.SliderJoint.AngularMotion__damping">
  30041. <summary>
  30042. <para>The amount of damping of the rotation in the limits.</para>
  30043. </summary>
  30044. </member>
  30045. <member name="P:Godot.SliderJoint.AngularOrtho__softness">
  30046. <summary>
  30047. <para>A factor applied to the all rotation across axes orthogonal to the slider.</para>
  30048. </summary>
  30049. </member>
  30050. <member name="P:Godot.SliderJoint.AngularOrtho__restitution">
  30051. <summary>
  30052. <para>The amount of restitution of the rotation across axes orthogonal to the slider.</para>
  30053. </summary>
  30054. </member>
  30055. <member name="P:Godot.SliderJoint.AngularOrtho__damping">
  30056. <summary>
  30057. <para>The amount of damping of the rotation across axes orthogonal to the slider.</para>
  30058. </summary>
  30059. </member>
  30060. <member name="T:Godot.SoftBody">
  30061. <summary>
  30062. <para>A deformable physics body. Used to create elastic or deformable objects such as cloth, rubber, or other flexible materials.</para>
  30063. </summary>
  30064. </member>
  30065. <member name="P:Godot.SoftBody.CollisionLayer">
  30066. <summary>
  30067. <para>The physics layers this SoftBody is in.</para>
  30068. <para>Collidable objects can exist in any of 32 different layers. These layers work like a tagging system, and are not visual. A collidable can use these layers to select with which objects it can collide, using the collision_mask property.</para>
  30069. <para>A contact is detected if object A is in any of the layers that object B scans, or object B is in any layer scanned by object A.</para>
  30070. </summary>
  30071. </member>
  30072. <member name="P:Godot.SoftBody.CollisionMask">
  30073. <summary>
  30074. <para>The physics layers this SoftBody scans for collisions.</para>
  30075. </summary>
  30076. </member>
  30077. <member name="P:Godot.SoftBody.ParentCollisionIgnore">
  30078. <summary>
  30079. <para><see cref="T:Godot.NodePath"/> to a <see cref="T:Godot.CollisionObject"/> this SoftBody should avoid clipping.</para>
  30080. </summary>
  30081. </member>
  30082. <member name="P:Godot.SoftBody.SimulationPrecision">
  30083. <summary>
  30084. <para>Increasing this value will improve the resulting simulation, but can affect performance. Use with care.</para>
  30085. </summary>
  30086. </member>
  30087. <member name="P:Godot.SoftBody.TotalMass">
  30088. <summary>
  30089. <para>The SoftBody's mass.</para>
  30090. </summary>
  30091. </member>
  30092. <member name="P:Godot.SoftBody.RayPickable">
  30093. <summary>
  30094. <para>If <c>true</c>, the <see cref="T:Godot.SoftBody"/> will respond to <see cref="T:Godot.RayCast"/>s.</para>
  30095. </summary>
  30096. </member>
  30097. <member name="M:Godot.SoftBody.SetCollisionMaskBit(System.Int32,System.Boolean)">
  30098. <summary>
  30099. <para>Sets individual bits on the collision mask. Use this if you only need to change one layer's value.</para>
  30100. </summary>
  30101. </member>
  30102. <member name="M:Godot.SoftBody.GetCollisionMaskBit(System.Int32)">
  30103. <summary>
  30104. <para>Returns an individual bit on the collision mask.</para>
  30105. </summary>
  30106. </member>
  30107. <member name="M:Godot.SoftBody.SetCollisionLayerBit(System.Int32,System.Boolean)">
  30108. <summary>
  30109. <para>Sets individual bits on the layer mask. Use this if you only need to change one layer's value.</para>
  30110. </summary>
  30111. </member>
  30112. <member name="M:Godot.SoftBody.GetCollisionLayerBit(System.Int32)">
  30113. <summary>
  30114. <para>Returns an individual bit on the collision mask.</para>
  30115. </summary>
  30116. </member>
  30117. <member name="M:Godot.SoftBody.GetCollisionExceptions">
  30118. <summary>
  30119. <para>Returns an array of nodes that were added as collision exceptions for this body.</para>
  30120. </summary>
  30121. </member>
  30122. <member name="M:Godot.SoftBody.AddCollisionExceptionWith(Godot.Node)">
  30123. <summary>
  30124. <para>Adds a body to the list of bodies that this body can't collide with.</para>
  30125. </summary>
  30126. </member>
  30127. <member name="M:Godot.SoftBody.RemoveCollisionExceptionWith(Godot.Node)">
  30128. <summary>
  30129. <para>Removes a body from the list of bodies that this body can't collide with.</para>
  30130. </summary>
  30131. </member>
  30132. <member name="T:Godot.Spatial">
  30133. <summary>
  30134. <para>Most basic 3D game object, with a 3D <see cref="T:Godot.Transform"/> and visibility settings. All other 3D game objects inherit from Spatial. Use <see cref="T:Godot.Spatial"/> as a parent node to move, scale, rotate and show/hide children in a 3D project.</para>
  30135. <para>Affine operations (rotate, scale, translate) happen in parent's local coordinate system, unless the <see cref="T:Godot.Spatial"/> object is set as top-level. Affine operations in this coordinate system correspond to direct affine operations on the <see cref="T:Godot.Spatial"/>'s transform. The word local below refers to this coordinate system. The coordinate system that is attached to the <see cref="T:Godot.Spatial"/> object itself is referred to as object-local coordinate system.</para>
  30136. <para>Note: Unless otherwise specified, all methods that have angle parameters must have angles specified as radians. To convert degrees to radians, use <c>@GDScript.deg2rad</c>.</para>
  30137. </summary>
  30138. </member>
  30139. <member name="F:Godot.Spatial.NotificationTransformChanged">
  30140. <summary>
  30141. <para>Spatial nodes receives this notification when their global transform changes. This means that either the current or a parent node changed its transform.</para>
  30142. <para>In order for to work, users first need to ask for it, with <see cref="M:Godot.Spatial.SetNotifyTransform(System.Boolean)"/>.</para>
  30143. </summary>
  30144. </member>
  30145. <member name="F:Godot.Spatial.NotificationEnterWorld">
  30146. <summary>
  30147. <para>Spatial nodes receives this notification when they are registered to new <see cref="T:Godot.World"/> resource.</para>
  30148. </summary>
  30149. </member>
  30150. <member name="F:Godot.Spatial.NotificationExitWorld">
  30151. <summary>
  30152. <para>Spatial nodes receives this notification when they are unregistered from current <see cref="T:Godot.World"/> resource.</para>
  30153. </summary>
  30154. </member>
  30155. <member name="F:Godot.Spatial.NotificationVisibilityChanged">
  30156. <summary>
  30157. <para>Spatial nodes receives this notification when their visibility changes.</para>
  30158. </summary>
  30159. </member>
  30160. <member name="P:Godot.Spatial.GlobalTransform">
  30161. <summary>
  30162. <para>World space (global) <see cref="T:Godot.Transform"/> of this node.</para>
  30163. </summary>
  30164. </member>
  30165. <member name="P:Godot.Spatial.Translation">
  30166. <summary>
  30167. <para>Local translation of this node.</para>
  30168. </summary>
  30169. </member>
  30170. <member name="P:Godot.Spatial.RotationDegrees">
  30171. <summary>
  30172. <para>Rotation part of the local transformation in degrees, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle).</para>
  30173. </summary>
  30174. </member>
  30175. <member name="P:Godot.Spatial.Rotation">
  30176. <summary>
  30177. <para>Rotation part of the local transformation in radians, specified in terms of YXZ-Euler angles in the format (X angle, Y angle, Z angle).</para>
  30178. <para>Note: In the mathematical sense, rotation is a matrix and not a vector. The three Euler angles, which are the three independent parameters of the Euler-angle parametrization of the rotation matrix, are stored in a <see cref="T:Godot.Vector3"/> data structure not because the rotation is a vector, but only because <see cref="T:Godot.Vector3"/> exists as a convenient data-structure to store 3 floating-point numbers. Therefore, applying affine operations on the rotation "vector" is not meaningful.</para>
  30179. </summary>
  30180. </member>
  30181. <member name="P:Godot.Spatial.Scale">
  30182. <summary>
  30183. <para>Scale part of the local transformation.</para>
  30184. </summary>
  30185. </member>
  30186. <member name="P:Godot.Spatial.Transform">
  30187. <summary>
  30188. <para>Local space <see cref="T:Godot.Transform"/> of this node, with respect to the parent node.</para>
  30189. </summary>
  30190. </member>
  30191. <member name="P:Godot.Spatial.Visible">
  30192. <summary>
  30193. <para>If <c>true</c>, this node is drawn.</para>
  30194. </summary>
  30195. </member>
  30196. <member name="P:Godot.Spatial.Gizmo">
  30197. <summary>
  30198. <para>The <see cref="T:Godot.SpatialGizmo"/> for this node. Used for example in <see cref="!:Godot.EditorSpatialGizmo"/> as custom visualization and editing handles in Editor.</para>
  30199. </summary>
  30200. </member>
  30201. <member name="M:Godot.Spatial.GetParentSpatial">
  30202. <summary>
  30203. <para>Returns the parent <see cref="T:Godot.Spatial"/>, or an empty <see cref="T:Godot.Object"/> if no parent exists or parent is not of type <see cref="T:Godot.Spatial"/>.</para>
  30204. </summary>
  30205. </member>
  30206. <member name="M:Godot.Spatial.SetIgnoreTransformNotification(System.Boolean)">
  30207. <summary>
  30208. <para>Sets whether the node ignores notification that its transformation (global or local) changed.</para>
  30209. </summary>
  30210. </member>
  30211. <member name="M:Godot.Spatial.SetAsToplevel(System.Boolean)">
  30212. <summary>
  30213. <para>Makes the node ignore its parents transformations. Node transformations are only in global space.</para>
  30214. </summary>
  30215. </member>
  30216. <member name="M:Godot.Spatial.IsSetAsToplevel">
  30217. <summary>
  30218. <para>Returns whether this node is set as Toplevel, that is whether it ignores its parent nodes transformations.</para>
  30219. </summary>
  30220. </member>
  30221. <member name="M:Godot.Spatial.SetDisableScale(System.Boolean)">
  30222. <summary>
  30223. <para>Sets whether the node uses a scale of <c>(1, 1, 1)</c> or its local transformation scale. Changes to the local transformation scale are preserved.</para>
  30224. </summary>
  30225. </member>
  30226. <member name="M:Godot.Spatial.IsScaleDisabled">
  30227. <summary>
  30228. <para>Returns whether this node uses a scale of <c>(1, 1, 1)</c> or its local transformation scale.</para>
  30229. </summary>
  30230. </member>
  30231. <member name="M:Godot.Spatial.GetWorld">
  30232. <summary>
  30233. <para>Returns the current <see cref="T:Godot.World"/> resource this <see cref="T:Godot.Spatial"/> node is registered to.</para>
  30234. </summary>
  30235. </member>
  30236. <member name="M:Godot.Spatial.ForceUpdateTransform">
  30237. <summary>
  30238. <para>Forces the transform to update. Transform changes in physics are not instant for performance reasons. Transforms are accumulated and then set. Use this if you need an up-to-date transform when doing physics operations.</para>
  30239. </summary>
  30240. </member>
  30241. <member name="M:Godot.Spatial.UpdateGizmo">
  30242. <summary>
  30243. <para>Updates the <see cref="T:Godot.SpatialGizmo"/> of this node.</para>
  30244. </summary>
  30245. </member>
  30246. <member name="M:Godot.Spatial.IsVisibleInTree">
  30247. <summary>
  30248. <para>Returns whether the node is visible, taking into consideration that its parents visibility.</para>
  30249. </summary>
  30250. </member>
  30251. <member name="M:Godot.Spatial.Show">
  30252. <summary>
  30253. <para>Enables rendering of this node. Changes <see cref="P:Godot.Spatial.Visible"/> to <c>true</c>.</para>
  30254. </summary>
  30255. </member>
  30256. <member name="M:Godot.Spatial.Hide">
  30257. <summary>
  30258. <para>Disables rendering of this node. Changes <see cref="P:Godot.Spatial.Visible"/> to <c>false</c>.</para>
  30259. </summary>
  30260. </member>
  30261. <member name="M:Godot.Spatial.SetNotifyLocalTransform(System.Boolean)">
  30262. <summary>
  30263. <para>Sets whether the node notifies about its local transformation changes. <see cref="T:Godot.Spatial"/> will not propagate this by default.</para>
  30264. </summary>
  30265. </member>
  30266. <member name="M:Godot.Spatial.IsLocalTransformNotificationEnabled">
  30267. <summary>
  30268. <para>Returns whether node notifies about its local transformation changes. <see cref="T:Godot.Spatial"/> will not propagate this by default.</para>
  30269. </summary>
  30270. </member>
  30271. <member name="M:Godot.Spatial.SetNotifyTransform(System.Boolean)">
  30272. <summary>
  30273. <para>Sets whether the node notifies about its global and local transformation changes. <see cref="T:Godot.Spatial"/> will not propagate this by default.</para>
  30274. </summary>
  30275. </member>
  30276. <member name="M:Godot.Spatial.IsTransformNotificationEnabled">
  30277. <summary>
  30278. <para>Returns whether the node notifies about its global and local transformation changes. <see cref="T:Godot.Spatial"/> will not propagate this by default.</para>
  30279. </summary>
  30280. </member>
  30281. <member name="M:Godot.Spatial.Rotate(Godot.Vector3,System.Single)">
  30282. <summary>
  30283. <para>Rotates the local transformation around axis, a unit <see cref="T:Godot.Vector3"/>, by specified angle in radians.</para>
  30284. </summary>
  30285. </member>
  30286. <member name="M:Godot.Spatial.GlobalRotate(Godot.Vector3,System.Single)">
  30287. <summary>
  30288. <para>Rotates the global (world) transformation around axis, a unit <see cref="T:Godot.Vector3"/>, by specified angle in radians. The rotation axis is in global coordinate system.</para>
  30289. </summary>
  30290. </member>
  30291. <member name="M:Godot.Spatial.GlobalScale(Godot.Vector3)">
  30292. <summary>
  30293. <para>Scales the global (world) transformation by the given <see cref="T:Godot.Vector3"/> scale factors.</para>
  30294. </summary>
  30295. </member>
  30296. <member name="M:Godot.Spatial.GlobalTranslate(Godot.Vector3)">
  30297. <summary>
  30298. <para>Moves the global (world) transformation by <see cref="T:Godot.Vector3"/> offset. The offset is in global coordinate system.</para>
  30299. </summary>
  30300. </member>
  30301. <member name="M:Godot.Spatial.RotateObjectLocal(Godot.Vector3,System.Single)">
  30302. <summary>
  30303. <para>Rotates the local transformation around axis, a unit <see cref="T:Godot.Vector3"/>, by specified angle in radians. The rotation axis is in object-local coordinate system.</para>
  30304. </summary>
  30305. </member>
  30306. <member name="M:Godot.Spatial.ScaleObjectLocal(Godot.Vector3)">
  30307. <summary>
  30308. <para>Scales the local transformation by given 3D scale factors in object-local coordinate system.</para>
  30309. </summary>
  30310. </member>
  30311. <member name="M:Godot.Spatial.TranslateObjectLocal(Godot.Vector3)">
  30312. <summary>
  30313. <para>Changes the node's position by the given offset <see cref="T:Godot.Vector3"/> in local space.</para>
  30314. </summary>
  30315. </member>
  30316. <member name="M:Godot.Spatial.RotateX(System.Single)">
  30317. <summary>
  30318. <para>Rotates the local transformation around the X axis by angle in radians.</para>
  30319. </summary>
  30320. </member>
  30321. <member name="M:Godot.Spatial.RotateY(System.Single)">
  30322. <summary>
  30323. <para>Rotates the local transformation around the Y axis by angle in radians.</para>
  30324. </summary>
  30325. </member>
  30326. <member name="M:Godot.Spatial.RotateZ(System.Single)">
  30327. <summary>
  30328. <para>Rotates the local transformation around the Z axis by angle in radians.</para>
  30329. </summary>
  30330. </member>
  30331. <member name="M:Godot.Spatial.Translate(Godot.Vector3)">
  30332. <summary>
  30333. <para>Changes the node's position by the given offset <see cref="T:Godot.Vector3"/>.</para>
  30334. <para>Note that the translation <c>offset</c> is affected by the node's scale, so if scaled by e.g. <c>(10, 1, 1)</c>, a translation by an offset of <c>(2, 0, 0)</c> would actually add 20 (<c>2 * 10</c>) to the X coordinate.</para>
  30335. </summary>
  30336. </member>
  30337. <member name="M:Godot.Spatial.Orthonormalize">
  30338. <summary>
  30339. <para>Resets this node's transformations (like scale, skew and taper) preserving its rotation and translation by performing Gram-Schmidt orthonormalization on this node's <see cref="T:Godot.Transform"/>.</para>
  30340. </summary>
  30341. </member>
  30342. <member name="M:Godot.Spatial.SetIdentity">
  30343. <summary>
  30344. <para>Reset all transformations for this node (sets its <see cref="T:Godot.Transform"/> to the identity matrix).</para>
  30345. </summary>
  30346. </member>
  30347. <member name="M:Godot.Spatial.LookAt(Godot.Vector3,Godot.Vector3)">
  30348. <summary>
  30349. <para>Rotates itself so that the local -Z axis points towards the <c>target</c> position.</para>
  30350. <para>The transform will first be rotated around the given <c>up</c> vector, and then fully aligned to the target by a further rotation around an axis perpendicular to both the <c>target</c> and <c>up</c> vectors.</para>
  30351. <para>Operations take place in global space.</para>
  30352. </summary>
  30353. </member>
  30354. <member name="M:Godot.Spatial.LookAtFromPosition(Godot.Vector3,Godot.Vector3,Godot.Vector3)">
  30355. <summary>
  30356. <para>Moves the node to the specified <c>position</c>, and then rotates itself to point toward the <c>target</c> as per <see cref="M:Godot.Spatial.LookAt(Godot.Vector3,Godot.Vector3)"/>. Operations take place in global space.</para>
  30357. </summary>
  30358. </member>
  30359. <member name="M:Godot.Spatial.ToLocal(Godot.Vector3)">
  30360. <summary>
  30361. <para>Transforms <c>global_point</c> from world space to this node's local space.</para>
  30362. </summary>
  30363. </member>
  30364. <member name="M:Godot.Spatial.ToGlobal(Godot.Vector3)">
  30365. <summary>
  30366. <para>Transforms <c>local_point</c> from this node's local space to world space.</para>
  30367. </summary>
  30368. </member>
  30369. <member name="T:Godot.SpatialMaterial">
  30370. <summary>
  30371. <para>This provides a default material with a wide variety of rendering features and properties without the need to write shader code. See the tutorial below for details.</para>
  30372. </summary>
  30373. </member>
  30374. <member name="F:Godot.SpatialMaterial.EmissionOperatorEnum.Add">
  30375. <summary>
  30376. <para>Adds the emission color to the color from the emission texture.</para>
  30377. </summary>
  30378. </member>
  30379. <member name="F:Godot.SpatialMaterial.EmissionOperatorEnum.Multiply">
  30380. <summary>
  30381. <para>Multiplies the emission color by the color from the emission texture.</para>
  30382. </summary>
  30383. </member>
  30384. <member name="F:Godot.SpatialMaterial.DiffuseMode.Burley">
  30385. <summary>
  30386. <para>Default diffuse scattering algorithm.</para>
  30387. </summary>
  30388. </member>
  30389. <member name="F:Godot.SpatialMaterial.DiffuseMode.Lambert">
  30390. <summary>
  30391. <para>Diffuse scattering ignores roughness.</para>
  30392. </summary>
  30393. </member>
  30394. <member name="F:Godot.SpatialMaterial.DiffuseMode.LambertWrap">
  30395. <summary>
  30396. <para>Extends Lambert to cover more than 90 degrees when roughness increases.</para>
  30397. </summary>
  30398. </member>
  30399. <member name="F:Godot.SpatialMaterial.DiffuseMode.OrenNayar">
  30400. <summary>
  30401. <para>Attempts to use roughness to emulate microsurfacing.</para>
  30402. </summary>
  30403. </member>
  30404. <member name="F:Godot.SpatialMaterial.DiffuseMode.Toon">
  30405. <summary>
  30406. <para>Uses a hard cut for lighting, with smoothing affected by roughness.</para>
  30407. </summary>
  30408. </member>
  30409. <member name="F:Godot.SpatialMaterial.SpecularMode.SchlickGgx">
  30410. <summary>
  30411. <para>Default specular blob.</para>
  30412. </summary>
  30413. </member>
  30414. <member name="F:Godot.SpatialMaterial.SpecularMode.Blinn">
  30415. <summary>
  30416. <para>Older specular algorithm, included for compatibility.</para>
  30417. </summary>
  30418. </member>
  30419. <member name="F:Godot.SpatialMaterial.SpecularMode.Phong">
  30420. <summary>
  30421. <para>Older specular algorithm, included for compatibility.</para>
  30422. </summary>
  30423. </member>
  30424. <member name="F:Godot.SpatialMaterial.SpecularMode.Toon">
  30425. <summary>
  30426. <para>Toon blob which changes size based on roughness.</para>
  30427. </summary>
  30428. </member>
  30429. <member name="F:Godot.SpatialMaterial.SpecularMode.Disabled">
  30430. <summary>
  30431. <para>No specular blob.</para>
  30432. </summary>
  30433. </member>
  30434. <member name="F:Godot.SpatialMaterial.Feature.Transparent">
  30435. <summary>
  30436. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.FlagsTransparent"/>.</para>
  30437. </summary>
  30438. </member>
  30439. <member name="F:Godot.SpatialMaterial.Feature.Emission">
  30440. <summary>
  30441. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.EmissionEnabled"/>.</para>
  30442. </summary>
  30443. </member>
  30444. <member name="F:Godot.SpatialMaterial.Feature.NormalMapping">
  30445. <summary>
  30446. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.NormalEnabled"/>.</para>
  30447. </summary>
  30448. </member>
  30449. <member name="F:Godot.SpatialMaterial.Feature.Rim">
  30450. <summary>
  30451. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.RimEnabled"/>.</para>
  30452. </summary>
  30453. </member>
  30454. <member name="F:Godot.SpatialMaterial.Feature.Clearcoat">
  30455. <summary>
  30456. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.ClearcoatEnabled"/>.</para>
  30457. </summary>
  30458. </member>
  30459. <member name="F:Godot.SpatialMaterial.Feature.Anisotropy">
  30460. <summary>
  30461. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.AnisotropyEnabled"/>.</para>
  30462. </summary>
  30463. </member>
  30464. <member name="F:Godot.SpatialMaterial.Feature.AmbientOcclusion">
  30465. <summary>
  30466. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.AoEnabled"/>.</para>
  30467. </summary>
  30468. </member>
  30469. <member name="F:Godot.SpatialMaterial.Feature.DepthMapping">
  30470. <summary>
  30471. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.DepthEnabled"/>.</para>
  30472. </summary>
  30473. </member>
  30474. <member name="F:Godot.SpatialMaterial.Feature.SubsuraceScattering">
  30475. <summary>
  30476. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.SubsurfScatterEnabled"/>.</para>
  30477. </summary>
  30478. </member>
  30479. <member name="F:Godot.SpatialMaterial.Feature.Transmission">
  30480. <summary>
  30481. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.TransmissionEnabled"/>.</para>
  30482. </summary>
  30483. </member>
  30484. <member name="F:Godot.SpatialMaterial.Feature.Refraction">
  30485. <summary>
  30486. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.RefractionEnabled"/>.</para>
  30487. </summary>
  30488. </member>
  30489. <member name="F:Godot.SpatialMaterial.Feature.Detail">
  30490. <summary>
  30491. <para>Constant for setting <see cref="P:Godot.SpatialMaterial.DetailEnabled"/>.</para>
  30492. </summary>
  30493. </member>
  30494. <member name="F:Godot.SpatialMaterial.Feature.Max">
  30495. <summary>
  30496. <para>Represents the size of the <see cref="T:Godot.SpatialMaterial.Feature"/> enum.</para>
  30497. </summary>
  30498. </member>
  30499. <member name="F:Godot.SpatialMaterial.Flags.Unshaded">
  30500. <summary>
  30501. <para>No lighting is used on the object. Color comes directly from <c>ALBEDO</c>.</para>
  30502. </summary>
  30503. </member>
  30504. <member name="F:Godot.SpatialMaterial.Flags.UseVertexLighting">
  30505. <summary>
  30506. <para>Lighting is calculated per-vertex rather than per-pixel. This can be used to increase the speed of the shader at the cost of quality.</para>
  30507. </summary>
  30508. </member>
  30509. <member name="F:Godot.SpatialMaterial.Flags.DisableDepthTest">
  30510. <summary>
  30511. <para>Disables the depth test, so this object is drawn on top of all others. However, objects drawn after it in the draw order may cover it.</para>
  30512. </summary>
  30513. </member>
  30514. <member name="F:Godot.SpatialMaterial.Flags.AlbedoFromVertexColor">
  30515. <summary>
  30516. <para>Set <c>ALBEDO</c> to the per-vertex color specified in the mesh.</para>
  30517. </summary>
  30518. </member>
  30519. <member name="F:Godot.SpatialMaterial.Flags.SrgbVertexColor">
  30520. <summary>
  30521. <para>Vertex color is in sRGB space and needs to be converted to linear. Only applies in the GLES3 renderer.</para>
  30522. </summary>
  30523. </member>
  30524. <member name="F:Godot.SpatialMaterial.Flags.UsePointSize">
  30525. <summary>
  30526. <para>Uses point size to alter the size of primitive points. Also changes the albedo texture lookup to use <c>POINT_COORD</c> instead of <c>UV</c>.</para>
  30527. </summary>
  30528. </member>
  30529. <member name="F:Godot.SpatialMaterial.Flags.FixedSize">
  30530. <summary>
  30531. <para>Object is scaled by depth so that it always appears the same size on screen.</para>
  30532. </summary>
  30533. </member>
  30534. <member name="F:Godot.SpatialMaterial.Flags.BillboardKeepScale">
  30535. <summary>
  30536. <para>Shader will keep the scale set for the mesh. Otherwise the scale is lost when billboarding. Only applies when <see cref="P:Godot.SpatialMaterial.ParamsBillboardMode"/> is .</para>
  30537. </summary>
  30538. </member>
  30539. <member name="F:Godot.SpatialMaterial.Flags.Uv1UseTriplanar">
  30540. <summary>
  30541. <para>Use triplanar texture lookup for all texture lookups that would normally use <c>UV</c>.</para>
  30542. </summary>
  30543. </member>
  30544. <member name="F:Godot.SpatialMaterial.Flags.Uv2UseTriplanar">
  30545. <summary>
  30546. <para>Use triplanar texture lookup for all texture lookups that would normally use <c>UV2</c>.</para>
  30547. </summary>
  30548. </member>
  30549. <member name="F:Godot.SpatialMaterial.Flags.AoOnUv2">
  30550. <summary>
  30551. <para>Use <c>UV2</c> coordinates to look up from the <see cref="P:Godot.SpatialMaterial.AoTexture"/>.</para>
  30552. </summary>
  30553. </member>
  30554. <member name="F:Godot.SpatialMaterial.Flags.EmissionOnUv2">
  30555. <summary>
  30556. <para>Use <c>UV2</c> coordinates to look up from the <see cref="P:Godot.SpatialMaterial.EmissionTexture"/>.</para>
  30557. </summary>
  30558. </member>
  30559. <member name="F:Godot.SpatialMaterial.Flags.UseAlphaScissor">
  30560. <summary>
  30561. <para>Use alpha scissor. Set by <see cref="P:Godot.SpatialMaterial.ParamsUseAlphaScissor"/>.</para>
  30562. </summary>
  30563. </member>
  30564. <member name="F:Godot.SpatialMaterial.Flags.TriplanarUseWorld">
  30565. <summary>
  30566. <para>Use world coordinates in the triplanar texture lookup instead of local coordinates.</para>
  30567. </summary>
  30568. </member>
  30569. <member name="F:Godot.SpatialMaterial.Flags.AlbedoTextureForceSrgb">
  30570. <summary>
  30571. <para>Forces the shader to convert albedo from sRGB space to linear space.</para>
  30572. </summary>
  30573. </member>
  30574. <member name="F:Godot.SpatialMaterial.Flags.DontReceiveShadows">
  30575. <summary>
  30576. <para>Disables receiving shadows from other objects.</para>
  30577. </summary>
  30578. </member>
  30579. <member name="F:Godot.SpatialMaterial.Flags.DisableAmbientLight">
  30580. <summary>
  30581. <para>Disables receiving ambient light.</para>
  30582. </summary>
  30583. </member>
  30584. <member name="F:Godot.SpatialMaterial.Flags.EnsureCorrectNormals">
  30585. <summary>
  30586. <para>Ensures that normals appear correct, even with non-uniform scaling.</para>
  30587. </summary>
  30588. </member>
  30589. <member name="F:Godot.SpatialMaterial.Flags.UseShadowToOpacity">
  30590. <summary>
  30591. <para>Enables the shadow to opacity feature.</para>
  30592. </summary>
  30593. </member>
  30594. <member name="F:Godot.SpatialMaterial.Flags.Max">
  30595. <summary>
  30596. <para>Represents the size of the <see cref="T:Godot.SpatialMaterial.Flags"/> enum.</para>
  30597. </summary>
  30598. </member>
  30599. <member name="F:Godot.SpatialMaterial.CullMode.Back">
  30600. <summary>
  30601. <para>Default cull mode. The back of the object is culled when not visible.</para>
  30602. </summary>
  30603. </member>
  30604. <member name="F:Godot.SpatialMaterial.CullMode.Front">
  30605. <summary>
  30606. <para>The front of the object is culled when not visible.</para>
  30607. </summary>
  30608. </member>
  30609. <member name="F:Godot.SpatialMaterial.CullMode.Disabled">
  30610. <summary>
  30611. <para>No culling is performed.</para>
  30612. </summary>
  30613. </member>
  30614. <member name="F:Godot.SpatialMaterial.DetailUV.Uv1">
  30615. <summary>
  30616. <para>Use <c>UV</c> with the detail texture.</para>
  30617. </summary>
  30618. </member>
  30619. <member name="F:Godot.SpatialMaterial.DetailUV.Uv2">
  30620. <summary>
  30621. <para>Use <c>UV2</c> with the detail texture.</para>
  30622. </summary>
  30623. </member>
  30624. <member name="F:Godot.SpatialMaterial.DistanceFadeModeEnum.Disabled">
  30625. <summary>
  30626. <para>Do not use distance fade.</para>
  30627. </summary>
  30628. </member>
  30629. <member name="F:Godot.SpatialMaterial.DistanceFadeModeEnum.PixelAlpha">
  30630. <summary>
  30631. <para>Smoothly fades the object out based on each pixel's distance from the camera using the alpha channel.</para>
  30632. </summary>
  30633. </member>
  30634. <member name="F:Godot.SpatialMaterial.DistanceFadeModeEnum.PixelDither">
  30635. <summary>
  30636. <para>Smoothly fades the object out based on each pixel's distance from the camera using a dither approach. Dithering discards pixels based on a set pattern to smoothly fade without enabling transparency. On certain hardware this can be faster than .</para>
  30637. </summary>
  30638. </member>
  30639. <member name="F:Godot.SpatialMaterial.DistanceFadeModeEnum.ObjectDither">
  30640. <summary>
  30641. <para>Smoothly fades the object out based on the object's distance from the camera using a dither approach. Dithering discards pixels based on a set pattern to smoothly fade without enabling transparency. On certain hardware this can be faster than .</para>
  30642. </summary>
  30643. </member>
  30644. <member name="F:Godot.SpatialMaterial.BillboardMode.Disabled">
  30645. <summary>
  30646. <para>Billboard mode is disabled.</para>
  30647. </summary>
  30648. </member>
  30649. <member name="F:Godot.SpatialMaterial.BillboardMode.Enabled">
  30650. <summary>
  30651. <para>The object's Z axis will always face the camera.</para>
  30652. </summary>
  30653. </member>
  30654. <member name="F:Godot.SpatialMaterial.BillboardMode.FixedY">
  30655. <summary>
  30656. <para>The object's X axis will always face the camera.</para>
  30657. </summary>
  30658. </member>
  30659. <member name="F:Godot.SpatialMaterial.BillboardMode.Particles">
  30660. <summary>
  30661. <para>Used for particle systems when assigned to <see cref="T:Godot.Particles"/> and <see cref="T:Godot.CPUParticles"/> nodes. Enables <c>particles_anim_*</c> properties.</para>
  30662. <para>The <see cref="P:Godot.ParticlesMaterial.AnimSpeed"/> or <see cref="P:Godot.CPUParticles.AnimSpeed"/> should also be set to a positive value for the animation to play.</para>
  30663. </summary>
  30664. </member>
  30665. <member name="F:Godot.SpatialMaterial.DepthDrawMode.OpaqueOnly">
  30666. <summary>
  30667. <para>Default depth draw mode. Depth is drawn only for opaque objects.</para>
  30668. </summary>
  30669. </member>
  30670. <member name="F:Godot.SpatialMaterial.DepthDrawMode.Always">
  30671. <summary>
  30672. <para>Depth draw is calculated for both opaque and transparent objects.</para>
  30673. </summary>
  30674. </member>
  30675. <member name="F:Godot.SpatialMaterial.DepthDrawMode.Disabled">
  30676. <summary>
  30677. <para>No depth draw.</para>
  30678. </summary>
  30679. </member>
  30680. <member name="F:Godot.SpatialMaterial.DepthDrawMode.AlphaOpaquePrepass">
  30681. <summary>
  30682. <para>For transparent objects, an opaque pass is made first with the opaque parts, then transparency is drawn.</para>
  30683. </summary>
  30684. </member>
  30685. <member name="F:Godot.SpatialMaterial.TextureChannel.Red">
  30686. <summary>
  30687. <para>Used to read from the red channel of a texture.</para>
  30688. </summary>
  30689. </member>
  30690. <member name="F:Godot.SpatialMaterial.TextureChannel.Green">
  30691. <summary>
  30692. <para>Used to read from the green channel of a texture.</para>
  30693. </summary>
  30694. </member>
  30695. <member name="F:Godot.SpatialMaterial.TextureChannel.Blue">
  30696. <summary>
  30697. <para>Used to read from the blue channel of a texture.</para>
  30698. </summary>
  30699. </member>
  30700. <member name="F:Godot.SpatialMaterial.TextureChannel.Alpha">
  30701. <summary>
  30702. <para>Used to read from the alpha channel of a texture.</para>
  30703. </summary>
  30704. </member>
  30705. <member name="F:Godot.SpatialMaterial.TextureChannel.Grayscale">
  30706. <summary>
  30707. <para>Currently unused.</para>
  30708. </summary>
  30709. </member>
  30710. <member name="F:Godot.SpatialMaterial.BlendMode.Mix">
  30711. <summary>
  30712. <para>Default blend mode. The color of the object is blended over the background based on the object's alpha value.</para>
  30713. </summary>
  30714. </member>
  30715. <member name="F:Godot.SpatialMaterial.BlendMode.Add">
  30716. <summary>
  30717. <para>The color of the object is added to the background.</para>
  30718. </summary>
  30719. </member>
  30720. <member name="F:Godot.SpatialMaterial.BlendMode.Sub">
  30721. <summary>
  30722. <para>The color of the object is subtracted from the background.</para>
  30723. </summary>
  30724. </member>
  30725. <member name="F:Godot.SpatialMaterial.BlendMode.Mul">
  30726. <summary>
  30727. <para>The color of the object is multiplied by the background.</para>
  30728. </summary>
  30729. </member>
  30730. <member name="F:Godot.SpatialMaterial.TextureParam.Albedo">
  30731. <summary>
  30732. <para>Texture specifying per-pixel color.</para>
  30733. </summary>
  30734. </member>
  30735. <member name="F:Godot.SpatialMaterial.TextureParam.Metallic">
  30736. <summary>
  30737. <para>Texture specifying per-pixel metallic value.</para>
  30738. </summary>
  30739. </member>
  30740. <member name="F:Godot.SpatialMaterial.TextureParam.Roughness">
  30741. <summary>
  30742. <para>Texture specifying per-pixel roughness value.</para>
  30743. </summary>
  30744. </member>
  30745. <member name="F:Godot.SpatialMaterial.TextureParam.Emission">
  30746. <summary>
  30747. <para>Texture specifying per-pixel emission color.</para>
  30748. </summary>
  30749. </member>
  30750. <member name="F:Godot.SpatialMaterial.TextureParam.Normal">
  30751. <summary>
  30752. <para>Texture specifying per-pixel normal vector.</para>
  30753. </summary>
  30754. </member>
  30755. <member name="F:Godot.SpatialMaterial.TextureParam.Rim">
  30756. <summary>
  30757. <para>Texture specifying per-pixel rim value.</para>
  30758. </summary>
  30759. </member>
  30760. <member name="F:Godot.SpatialMaterial.TextureParam.Clearcoat">
  30761. <summary>
  30762. <para>Texture specifying per-pixel clearcoat value.</para>
  30763. </summary>
  30764. </member>
  30765. <member name="F:Godot.SpatialMaterial.TextureParam.Flowmap">
  30766. <summary>
  30767. <para>Texture specifying per-pixel flowmap direction for use with <see cref="P:Godot.SpatialMaterial.Anisotropy"/>.</para>
  30768. </summary>
  30769. </member>
  30770. <member name="F:Godot.SpatialMaterial.TextureParam.AmbientOcclusion">
  30771. <summary>
  30772. <para>Texture specifying per-pixel ambient occlusion value.</para>
  30773. </summary>
  30774. </member>
  30775. <member name="F:Godot.SpatialMaterial.TextureParam.Depth">
  30776. <summary>
  30777. <para>Texture specifying per-pixel depth.</para>
  30778. </summary>
  30779. </member>
  30780. <member name="F:Godot.SpatialMaterial.TextureParam.SubsurfaceScattering">
  30781. <summary>
  30782. <para>Texture specifying per-pixel subsurface scattering.</para>
  30783. </summary>
  30784. </member>
  30785. <member name="F:Godot.SpatialMaterial.TextureParam.Transmission">
  30786. <summary>
  30787. <para>Texture specifying per-pixel transmission color.</para>
  30788. </summary>
  30789. </member>
  30790. <member name="F:Godot.SpatialMaterial.TextureParam.Refraction">
  30791. <summary>
  30792. <para>Texture specifying per-pixel refraction strength.</para>
  30793. </summary>
  30794. </member>
  30795. <member name="F:Godot.SpatialMaterial.TextureParam.DetailMask">
  30796. <summary>
  30797. <para>Texture specifying per-pixel detail mask blending value.</para>
  30798. </summary>
  30799. </member>
  30800. <member name="F:Godot.SpatialMaterial.TextureParam.DetailAlbedo">
  30801. <summary>
  30802. <para>Texture specifying per-pixel detail color.</para>
  30803. </summary>
  30804. </member>
  30805. <member name="F:Godot.SpatialMaterial.TextureParam.DetailNormal">
  30806. <summary>
  30807. <para>Texture specifying per-pixel detail normal.</para>
  30808. </summary>
  30809. </member>
  30810. <member name="F:Godot.SpatialMaterial.TextureParam.Max">
  30811. <summary>
  30812. <para>Represents the size of the <see cref="T:Godot.SpatialMaterial.TextureParam"/> enum.</para>
  30813. </summary>
  30814. </member>
  30815. <member name="P:Godot.SpatialMaterial.FlagsTransparent">
  30816. <summary>
  30817. <para>If <c>true</c>, transparency is enabled on the body. See also <see cref="P:Godot.SpatialMaterial.ParamsBlendMode"/>.</para>
  30818. </summary>
  30819. </member>
  30820. <member name="P:Godot.SpatialMaterial.FlagsUseShadowToOpacity">
  30821. <summary>
  30822. <para>If <c>true</c>, enables the "shadow to opacity" render mode where lighting modifies the alpha so shadowed areas are opaque and non-shadowed areas are transparent. Useful for overlaying shadows onto a camera feed in AR.</para>
  30823. </summary>
  30824. </member>
  30825. <member name="P:Godot.SpatialMaterial.FlagsUnshaded">
  30826. <summary>
  30827. <para>If <c>true</c>, the object is unaffected by lighting.</para>
  30828. </summary>
  30829. </member>
  30830. <member name="P:Godot.SpatialMaterial.FlagsVertexLighting">
  30831. <summary>
  30832. <para>If <c>true</c>, lighting is calculated per vertex rather than per pixel. This may increase performance on low-end devices.</para>
  30833. </summary>
  30834. </member>
  30835. <member name="P:Godot.SpatialMaterial.FlagsNoDepthTest">
  30836. <summary>
  30837. <para>If <c>true</c>, depth testing is disabled and the object will be drawn in render order.</para>
  30838. </summary>
  30839. </member>
  30840. <member name="P:Godot.SpatialMaterial.FlagsUsePointSize">
  30841. <summary>
  30842. <para>If <c>true</c>, render point size can be changed.</para>
  30843. <para>Note: this is only effective for objects whose geometry is point-based rather than triangle-based. See also <see cref="P:Godot.SpatialMaterial.ParamsPointSize"/>.</para>
  30844. </summary>
  30845. </member>
  30846. <member name="P:Godot.SpatialMaterial.FlagsWorldTriplanar">
  30847. <summary>
  30848. <para>If <c>true</c>, triplanar mapping is calculated in world space rather than object local space. See also <see cref="P:Godot.SpatialMaterial.Uv1Triplanar"/>.</para>
  30849. </summary>
  30850. </member>
  30851. <member name="P:Godot.SpatialMaterial.FlagsFixedSize">
  30852. <summary>
  30853. <para>If <c>true</c>, the object is rendered at the same size regardless of distance.</para>
  30854. </summary>
  30855. </member>
  30856. <member name="P:Godot.SpatialMaterial.FlagsAlbedoTexForceSrgb">
  30857. <summary>
  30858. <para>Forces a conversion of the <see cref="P:Godot.SpatialMaterial.AlbedoTexture"/> from sRGB space to linear space.</para>
  30859. </summary>
  30860. </member>
  30861. <member name="P:Godot.SpatialMaterial.FlagsDoNotReceiveShadows">
  30862. <summary>
  30863. <para>If <c>true</c>, the object receives no shadow that would otherwise be cast onto it.</para>
  30864. </summary>
  30865. </member>
  30866. <member name="P:Godot.SpatialMaterial.FlagsDisableAmbientLight">
  30867. <summary>
  30868. <para>If <c>true</c>, the object receives no ambient light.</para>
  30869. </summary>
  30870. </member>
  30871. <member name="P:Godot.SpatialMaterial.FlagsEnsureCorrectNormals">
  30872. <summary>
  30873. <para>If <c>true</c>, the shader will compute extra operations to make sure the normal stays correct when using a non-uniform scale. Only enable if using non-uniform scaling.</para>
  30874. </summary>
  30875. </member>
  30876. <member name="P:Godot.SpatialMaterial.VertexColorUseAsAlbedo">
  30877. <summary>
  30878. <para>If <c>true</c>, the vertex color is used as albedo color.</para>
  30879. </summary>
  30880. </member>
  30881. <member name="P:Godot.SpatialMaterial.VertexColorIsSrgb">
  30882. <summary>
  30883. <para>If <c>true</c>, the model's vertex colors are processed as sRGB mode.</para>
  30884. </summary>
  30885. </member>
  30886. <member name="P:Godot.SpatialMaterial.ParamsDiffuseMode">
  30887. <summary>
  30888. <para>The algorithm used for diffuse light scattering. See <see cref="T:Godot.SpatialMaterial.DiffuseMode"/>.</para>
  30889. </summary>
  30890. </member>
  30891. <member name="P:Godot.SpatialMaterial.ParamsSpecularMode">
  30892. <summary>
  30893. <para>The method for rendering the specular blob. See <see cref="T:Godot.SpatialMaterial.SpecularMode"/>.</para>
  30894. </summary>
  30895. </member>
  30896. <member name="P:Godot.SpatialMaterial.ParamsBlendMode">
  30897. <summary>
  30898. <para>The material's blend mode.</para>
  30899. <para>Note: Values other than <c>Mix</c> force the object into the transparent pipeline. See <see cref="T:Godot.SpatialMaterial.BlendMode"/>.</para>
  30900. </summary>
  30901. </member>
  30902. <member name="P:Godot.SpatialMaterial.ParamsCullMode">
  30903. <summary>
  30904. <para>Which side of the object is not drawn when backfaces are rendered. See <see cref="T:Godot.SpatialMaterial.CullMode"/>.</para>
  30905. </summary>
  30906. </member>
  30907. <member name="P:Godot.SpatialMaterial.ParamsDepthDrawMode">
  30908. <summary>
  30909. <para>Determines when depth rendering takes place. See <see cref="T:Godot.SpatialMaterial.DepthDrawMode"/>. See also <see cref="P:Godot.SpatialMaterial.FlagsTransparent"/>.</para>
  30910. </summary>
  30911. </member>
  30912. <member name="P:Godot.SpatialMaterial.ParamsLineWidth">
  30913. <summary>
  30914. <para>Currently unimplemented in Godot.</para>
  30915. </summary>
  30916. </member>
  30917. <member name="P:Godot.SpatialMaterial.ParamsPointSize">
  30918. <summary>
  30919. <para>The point size in pixels. See <see cref="P:Godot.SpatialMaterial.FlagsUsePointSize"/>.</para>
  30920. </summary>
  30921. </member>
  30922. <member name="P:Godot.SpatialMaterial.ParamsBillboardMode">
  30923. <summary>
  30924. <para>Controls how the object faces the camera. See <see cref="T:Godot.SpatialMaterial.BillboardMode"/>.</para>
  30925. </summary>
  30926. </member>
  30927. <member name="P:Godot.SpatialMaterial.ParamsBillboardKeepScale">
  30928. <summary>
  30929. <para>If <c>true</c>, the shader will keep the scale set for the mesh. Otherwise the scale is lost when billboarding. Only applies when <see cref="P:Godot.SpatialMaterial.ParamsBillboardMode"/> is .</para>
  30930. </summary>
  30931. </member>
  30932. <member name="P:Godot.SpatialMaterial.ParamsGrow">
  30933. <summary>
  30934. <para>If <c>true</c>, enables the vertex grow setting. See <see cref="P:Godot.SpatialMaterial.ParamsGrowAmount"/>.</para>
  30935. </summary>
  30936. </member>
  30937. <member name="P:Godot.SpatialMaterial.ParamsGrowAmount">
  30938. <summary>
  30939. <para>Grows object vertices in the direction of their normals.</para>
  30940. </summary>
  30941. </member>
  30942. <member name="P:Godot.SpatialMaterial.ParamsUseAlphaScissor">
  30943. <summary>
  30944. <para>If <c>true</c>, the shader will discard all pixels that have an alpha value less than <see cref="P:Godot.SpatialMaterial.ParamsAlphaScissorThreshold"/>.</para>
  30945. </summary>
  30946. </member>
  30947. <member name="P:Godot.SpatialMaterial.ParamsAlphaScissorThreshold">
  30948. <summary>
  30949. <para>Threshold at which the alpha scissor will discard values.</para>
  30950. </summary>
  30951. </member>
  30952. <member name="P:Godot.SpatialMaterial.ParticlesAnimHFrames">
  30953. <summary>
  30954. <para>The number of horizontal frames in the particle sprite sheet. Only enabled when using . See <see cref="P:Godot.SpatialMaterial.ParamsBillboardMode"/>.</para>
  30955. </summary>
  30956. </member>
  30957. <member name="P:Godot.SpatialMaterial.ParticlesAnimVFrames">
  30958. <summary>
  30959. <para>The number of vertical frames in the particle sprite sheet. Only enabled when using . See <see cref="P:Godot.SpatialMaterial.ParamsBillboardMode"/>.</para>
  30960. </summary>
  30961. </member>
  30962. <member name="P:Godot.SpatialMaterial.ParticlesAnimLoop">
  30963. <summary>
  30964. <para>If <c>true</c>, particle animations are looped. Only enabled when using . See <see cref="P:Godot.SpatialMaterial.ParamsBillboardMode"/>.</para>
  30965. </summary>
  30966. </member>
  30967. <member name="P:Godot.SpatialMaterial.AlbedoColor">
  30968. <summary>
  30969. <para>The material's base color.</para>
  30970. </summary>
  30971. </member>
  30972. <member name="P:Godot.SpatialMaterial.AlbedoTexture">
  30973. <summary>
  30974. <para>Texture to multiply by <see cref="P:Godot.SpatialMaterial.AlbedoColor"/>. Used for basic texturing of objects.</para>
  30975. </summary>
  30976. </member>
  30977. <member name="P:Godot.SpatialMaterial.Metallic">
  30978. <summary>
  30979. <para>A high value makes the material appear more like a metal. Non-metals use their albedo as the diffuse color and add diffuse to the specular reflection. With non-metals, the reflection appears on top of the albedo color. Metals use their albedo as a multiplier to the specular reflection and set the diffuse color to black resulting in a tinted reflection. Materials work better when fully metal or fully non-metal, values between <c>0</c> and <c>1</c> should only be used for blending between metal and non-metal sections. To alter the amount of reflection use <see cref="P:Godot.SpatialMaterial.Roughness"/>.</para>
  30980. </summary>
  30981. </member>
  30982. <member name="P:Godot.SpatialMaterial.MetallicSpecular">
  30983. <summary>
  30984. <para>Sets the size of the specular lobe. The specular lobe is the bright spot that is reflected from light sources.</para>
  30985. <para>Note: unlike <see cref="P:Godot.SpatialMaterial.Metallic"/>, this is not energy-conserving, so it should be left at <c>0.5</c> in most cases. See also <see cref="P:Godot.SpatialMaterial.Roughness"/>.</para>
  30986. </summary>
  30987. </member>
  30988. <member name="P:Godot.SpatialMaterial.MetallicTexture">
  30989. <summary>
  30990. <para>Texture used to specify metallic for an object. This is multiplied by <see cref="P:Godot.SpatialMaterial.Metallic"/>.</para>
  30991. </summary>
  30992. </member>
  30993. <member name="P:Godot.SpatialMaterial.MetallicTextureChannel">
  30994. <summary>
  30995. <para>Specifies the channel of the <see cref="P:Godot.SpatialMaterial.MetallicTexture"/> in which the metallic information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use.</para>
  30996. </summary>
  30997. </member>
  30998. <member name="P:Godot.SpatialMaterial.Roughness">
  30999. <summary>
  31000. <para>Surface reflection. A value of <c>0</c> represents a perfect mirror while a value of <c>1</c> completely blurs the reflection. See also <see cref="P:Godot.SpatialMaterial.Metallic"/>.</para>
  31001. </summary>
  31002. </member>
  31003. <member name="P:Godot.SpatialMaterial.RoughnessTexture">
  31004. <summary>
  31005. <para>Texture used to control the roughness per-pixel. Multiplied by <see cref="P:Godot.SpatialMaterial.Roughness"/>.</para>
  31006. </summary>
  31007. </member>
  31008. <member name="P:Godot.SpatialMaterial.RoughnessTextureChannel">
  31009. <summary>
  31010. <para>Specifies the channel of the <see cref="P:Godot.SpatialMaterial.AoTexture"/> in which the ambient occlusion information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use.</para>
  31011. </summary>
  31012. </member>
  31013. <member name="P:Godot.SpatialMaterial.EmissionEnabled">
  31014. <summary>
  31015. <para>If <c>true</c>, the body emits light. Emitting light makes the object appear brighter. The object can also cast light on other objects if a <see cref="T:Godot.GIProbe"/> or <see cref="T:Godot.BakedLightmap"/> is used and this object is used in baked lighting.</para>
  31016. </summary>
  31017. </member>
  31018. <member name="P:Godot.SpatialMaterial.Emission">
  31019. <summary>
  31020. <para>The emitted light's color. See <see cref="P:Godot.SpatialMaterial.EmissionEnabled"/>.</para>
  31021. </summary>
  31022. </member>
  31023. <member name="P:Godot.SpatialMaterial.EmissionEnergy">
  31024. <summary>
  31025. <para>The emitted light's strength. See <see cref="P:Godot.SpatialMaterial.EmissionEnabled"/>.</para>
  31026. </summary>
  31027. </member>
  31028. <member name="P:Godot.SpatialMaterial.EmissionOperator">
  31029. <summary>
  31030. <para>Sets how <see cref="P:Godot.SpatialMaterial.Emission"/> interacts with <see cref="P:Godot.SpatialMaterial.EmissionTexture"/>. Can either add or multiply. See <see cref="T:Godot.SpatialMaterial.EmissionOperatorEnum"/> for options.</para>
  31031. </summary>
  31032. </member>
  31033. <member name="P:Godot.SpatialMaterial.EmissionOnUv2">
  31034. <summary>
  31035. <para>Use <c>UV2</c> to read from the <see cref="P:Godot.SpatialMaterial.EmissionTexture"/>.</para>
  31036. </summary>
  31037. </member>
  31038. <member name="P:Godot.SpatialMaterial.EmissionTexture">
  31039. <summary>
  31040. <para>Texture that specifies how much surface emits light at a given point.</para>
  31041. </summary>
  31042. </member>
  31043. <member name="P:Godot.SpatialMaterial.NormalEnabled">
  31044. <summary>
  31045. <para>If <c>true</c>, normal mapping is enabled.</para>
  31046. </summary>
  31047. </member>
  31048. <member name="P:Godot.SpatialMaterial.NormalScale">
  31049. <summary>
  31050. <para>The strength of the normal map's effect.</para>
  31051. </summary>
  31052. </member>
  31053. <member name="P:Godot.SpatialMaterial.NormalTexture">
  31054. <summary>
  31055. <para>Texture used to specify the normal at a given pixel. The <c>normal_texture</c> only uses the red and green channels. The normal read from <c>normal_texture</c> is oriented around the surface normal provided by the <see cref="T:Godot.Mesh"/>.</para>
  31056. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  31057. </summary>
  31058. </member>
  31059. <member name="P:Godot.SpatialMaterial.RimEnabled">
  31060. <summary>
  31061. <para>If <c>true</c>, rim effect is enabled. Rim lighting increases the brightness at glancing angles on an object.</para>
  31062. </summary>
  31063. </member>
  31064. <member name="P:Godot.SpatialMaterial.Rim">
  31065. <summary>
  31066. <para>Sets the strength of the rim lighting effect.</para>
  31067. </summary>
  31068. </member>
  31069. <member name="P:Godot.SpatialMaterial.RimTint">
  31070. <summary>
  31071. <para>The amount of to blend light and albedo color when rendering rim effect. If <c>0</c> the light color is used, while <c>1</c> means albedo color is used. An intermediate value generally works best.</para>
  31072. </summary>
  31073. </member>
  31074. <member name="P:Godot.SpatialMaterial.RimTexture">
  31075. <summary>
  31076. <para>Texture used to set the strength of the rim lighting effect per-pixel. Multiplied by <see cref="P:Godot.SpatialMaterial.Rim"/>.</para>
  31077. </summary>
  31078. </member>
  31079. <member name="P:Godot.SpatialMaterial.ClearcoatEnabled">
  31080. <summary>
  31081. <para>If <c>true</c>, clearcoat rendering is enabled. Adds a secondary transparent pass to the lighting calculation resulting in an added specular blob. This makes materials appear as if they have a clear layer on them that can be either glossy or rough.</para>
  31082. </summary>
  31083. </member>
  31084. <member name="P:Godot.SpatialMaterial.Clearcoat">
  31085. <summary>
  31086. <para>Sets the strength of the clearcoat effect. Setting to <c>0</c> looks the same as disabling the clearcoat effect.</para>
  31087. </summary>
  31088. </member>
  31089. <member name="P:Godot.SpatialMaterial.ClearcoatGloss">
  31090. <summary>
  31091. <para>Sets the roughness of the clearcoat pass. A higher value results in a smoother clearcoat while a lower value results in a rougher clearcoat.</para>
  31092. </summary>
  31093. </member>
  31094. <member name="P:Godot.SpatialMaterial.ClearcoatTexture">
  31095. <summary>
  31096. <para>Texture that defines the strength of the clearcoat effect and the glossiness of the clearcoat. Strength is specified in the red channel while glossiness is specified in the green channel.</para>
  31097. </summary>
  31098. </member>
  31099. <member name="P:Godot.SpatialMaterial.AnisotropyEnabled">
  31100. <summary>
  31101. <para>If <c>true</c>, anisotropy is enabled. Changes the shape of the specular blob and aligns it to tangent space. Mesh tangents are needed for this to work. If the mesh does not contain tangents the anisotropy effect will appear broken.</para>
  31102. </summary>
  31103. </member>
  31104. <member name="P:Godot.SpatialMaterial.Anisotropy">
  31105. <summary>
  31106. <para>The strength of the anisotropy effect.</para>
  31107. </summary>
  31108. </member>
  31109. <member name="P:Godot.SpatialMaterial.AnisotropyFlowmap">
  31110. <summary>
  31111. <para>Texture that offsets the tangent map for anisotropy calculations.</para>
  31112. </summary>
  31113. </member>
  31114. <member name="P:Godot.SpatialMaterial.AoEnabled">
  31115. <summary>
  31116. <para>If <c>true</c>, ambient occlusion is enabled. Ambient occlusion darkens areas based on the <see cref="P:Godot.SpatialMaterial.AoTexture"/>.</para>
  31117. </summary>
  31118. </member>
  31119. <member name="P:Godot.SpatialMaterial.AoLightAffect">
  31120. <summary>
  31121. <para>Amount that ambient occlusion affects lighting from lights. If <c>0</c>, ambient occlusion only affects ambient light. If <c>1</c>, ambient occlusion affects lights just as much as it affects ambient light. This can be used to impact the strength of the ambient occlusion effect, but typically looks unrealistic.</para>
  31122. </summary>
  31123. </member>
  31124. <member name="P:Godot.SpatialMaterial.AoTexture">
  31125. <summary>
  31126. <para>Texture that defines the amount of ambient occlusion for a given point on the object.</para>
  31127. </summary>
  31128. </member>
  31129. <member name="P:Godot.SpatialMaterial.AoOnUv2">
  31130. <summary>
  31131. <para>If <c>true</c>, use <c>UV2</c> coordinates to look up from the <see cref="P:Godot.SpatialMaterial.AoTexture"/>.</para>
  31132. </summary>
  31133. </member>
  31134. <member name="P:Godot.SpatialMaterial.AoTextureChannel">
  31135. <summary>
  31136. <para>Specifies the channel of the <see cref="P:Godot.SpatialMaterial.AoTexture"/> in which the ambient occlusion information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use.</para>
  31137. </summary>
  31138. </member>
  31139. <member name="P:Godot.SpatialMaterial.DepthEnabled">
  31140. <summary>
  31141. <para>If <c>true</c>, depth mapping is enabled (also called "parallax mapping" or "height mapping"). See also <see cref="P:Godot.SpatialMaterial.NormalEnabled"/>.</para>
  31142. </summary>
  31143. </member>
  31144. <member name="P:Godot.SpatialMaterial.DepthScale">
  31145. <summary>
  31146. <para>Scales the depth offset effect. A higher number will create a larger depth.</para>
  31147. </summary>
  31148. </member>
  31149. <member name="P:Godot.SpatialMaterial.DepthDeepParallax">
  31150. <summary>
  31151. <para>If <c>true</c>, the shader will read depth texture at multiple points along the view ray to determine occlusion and parrallax. This can be very performance demanding, but results in more realistic looking depth mapping.</para>
  31152. </summary>
  31153. </member>
  31154. <member name="P:Godot.SpatialMaterial.DepthMinLayers">
  31155. <summary>
  31156. <para>Number of layers to use when using <see cref="P:Godot.SpatialMaterial.DepthDeepParallax"/> and the view direction is parallel to the surface of the object. A higher number will be more performance demanding while a lower number may not look as crisp.</para>
  31157. </summary>
  31158. </member>
  31159. <member name="P:Godot.SpatialMaterial.DepthMaxLayers">
  31160. <summary>
  31161. <para>Number of layers to use when using <see cref="P:Godot.SpatialMaterial.DepthDeepParallax"/> and the view direction is perpendicular to the surface of the object. A higher number will be more performance demanding while a lower number may not look as crisp.</para>
  31162. </summary>
  31163. </member>
  31164. <member name="P:Godot.SpatialMaterial.DepthFlipTangent">
  31165. <summary>
  31166. <para>If <c>true</c>, direction of the tangent is flipped before using in the depth effect. This may be necessary if you have encoded your tangents in a way that is conflicting with the depth effect.</para>
  31167. </summary>
  31168. </member>
  31169. <member name="P:Godot.SpatialMaterial.DepthFlipBinormal">
  31170. <summary>
  31171. <para>If <c>true</c>, direction of the binormal is flipped before using in the depth effect. This may be necessary if you have encoded your binormals in a way that is conflicting with the depth effect.</para>
  31172. </summary>
  31173. </member>
  31174. <member name="P:Godot.SpatialMaterial.DepthTexture">
  31175. <summary>
  31176. <para>Texture used to determine depth at a given pixel. Depth is always stored in the red channel.</para>
  31177. </summary>
  31178. </member>
  31179. <member name="P:Godot.SpatialMaterial.SubsurfScatterEnabled">
  31180. <summary>
  31181. <para>If <c>true</c>, subsurface scattering is enabled. Emulates light that penetrates an object's surface, is scattered, and then emerges.</para>
  31182. </summary>
  31183. </member>
  31184. <member name="P:Godot.SpatialMaterial.SubsurfScatterStrength">
  31185. <summary>
  31186. <para>The strength of the subsurface scattering effect.</para>
  31187. </summary>
  31188. </member>
  31189. <member name="P:Godot.SpatialMaterial.SubsurfScatterTexture">
  31190. <summary>
  31191. <para>Texture used to control the subsurface scattering strength. Stored in the red texture channel. Multiplied by <see cref="P:Godot.SpatialMaterial.SubsurfScatterStrength"/>.</para>
  31192. </summary>
  31193. </member>
  31194. <member name="P:Godot.SpatialMaterial.TransmissionEnabled">
  31195. <summary>
  31196. <para>If <c>true</c>, the transmission effect is enabled.</para>
  31197. </summary>
  31198. </member>
  31199. <member name="P:Godot.SpatialMaterial.Transmission">
  31200. <summary>
  31201. <para>The color used by the transmission effect. Represents the light passing through an object.</para>
  31202. </summary>
  31203. </member>
  31204. <member name="P:Godot.SpatialMaterial.TransmissionTexture">
  31205. <summary>
  31206. <para>Texture used to control the transmission effect per-pixel. Added to <see cref="P:Godot.SpatialMaterial.Transmission"/>.</para>
  31207. </summary>
  31208. </member>
  31209. <member name="P:Godot.SpatialMaterial.RefractionEnabled">
  31210. <summary>
  31211. <para>If <c>true</c>, the refraction effect is enabled. Distorts transparency based on light from behind the object.</para>
  31212. </summary>
  31213. </member>
  31214. <member name="P:Godot.SpatialMaterial.RefractionScale">
  31215. <summary>
  31216. <para>The strength of the refraction effect.</para>
  31217. </summary>
  31218. </member>
  31219. <member name="P:Godot.SpatialMaterial.RefractionTexture">
  31220. <summary>
  31221. <para>Texture that controls the strength of the refraction per-pixel. Multiplied by <see cref="P:Godot.SpatialMaterial.RefractionScale"/>.</para>
  31222. </summary>
  31223. </member>
  31224. <member name="P:Godot.SpatialMaterial.RefractionTextureChannel">
  31225. <summary>
  31226. <para>Specifies the channel of the <see cref="P:Godot.SpatialMaterial.AoTexture"/> in which the ambient occlusion information is stored. This is useful when you store the information for multiple effects in a single texture. For example if you stored metallic in the red channel, roughness in the blue, and ambient occlusion in the green you could reduce the number of textures you use.</para>
  31227. </summary>
  31228. </member>
  31229. <member name="P:Godot.SpatialMaterial.DetailEnabled">
  31230. <summary>
  31231. <para>If <c>true</c>, enables the detail overlay. Detail is a second texture that gets mixed over the surface of the object based on <see cref="P:Godot.SpatialMaterial.DetailMask"/>. This can be used to add variation to objects, or to blend between two different albedo/normal textures.</para>
  31232. </summary>
  31233. </member>
  31234. <member name="P:Godot.SpatialMaterial.DetailMask">
  31235. <summary>
  31236. <para>Texture used to specify how the detail textures get blended with the base textures.</para>
  31237. </summary>
  31238. </member>
  31239. <member name="P:Godot.SpatialMaterial.DetailBlendMode">
  31240. <summary>
  31241. <para>Specifies how the <see cref="P:Godot.SpatialMaterial.DetailAlbedo"/> should blend with the current <c>ALBEDO</c>. See <see cref="T:Godot.SpatialMaterial.BlendMode"/> for options.</para>
  31242. </summary>
  31243. </member>
  31244. <member name="P:Godot.SpatialMaterial.DetailUvLayer">
  31245. <summary>
  31246. <para>Specifies whether to use <c>UV</c> or <c>UV2</c> for the detail layer. See <see cref="T:Godot.SpatialMaterial.DetailUV"/> for options.</para>
  31247. </summary>
  31248. </member>
  31249. <member name="P:Godot.SpatialMaterial.DetailAlbedo">
  31250. <summary>
  31251. <para>Texture that specifies the color of the detail overlay.</para>
  31252. </summary>
  31253. </member>
  31254. <member name="P:Godot.SpatialMaterial.DetailNormal">
  31255. <summary>
  31256. <para>Texture that specifies the per-pixel normal of the detail overlay.</para>
  31257. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  31258. </summary>
  31259. </member>
  31260. <member name="P:Godot.SpatialMaterial.Uv1Scale">
  31261. <summary>
  31262. <para>How much to scale the <c>UV</c> coordinates. This is multiplied by <c>UV</c> in the vertex function.</para>
  31263. </summary>
  31264. </member>
  31265. <member name="P:Godot.SpatialMaterial.Uv1Offset">
  31266. <summary>
  31267. <para>How much to offset the <c>UV</c> coordinates. This amount will be added to <c>UV</c> in the vertex function. This can be used to offset a texture.</para>
  31268. </summary>
  31269. </member>
  31270. <member name="P:Godot.SpatialMaterial.Uv1Triplanar">
  31271. <summary>
  31272. <para>If <c>true</c>, instead of using <c>UV</c> textures will use a triplanar texture lookup to determine how to apply textures. Triplanar uses the orientation of the object's surface to blend between texture coordinates. It reads from the source texture 3 times, once for each axis and then blends between the results based on how closely the pixel aligns with each axis. This is often used for natural features to get a realistic blend of materials. Because triplanar texturing requires many more texture reads per-pixel it is much slower than normal UV texturing. Additionally, because it is blending the texture between the three axes, it is unsuitable when you are trying to achieve crisp texturing.</para>
  31273. </summary>
  31274. </member>
  31275. <member name="P:Godot.SpatialMaterial.Uv1TriplanarSharpness">
  31276. <summary>
  31277. <para>A lower number blends the texture more softly while a higher number blends the texture more sharply.</para>
  31278. </summary>
  31279. </member>
  31280. <member name="P:Godot.SpatialMaterial.Uv2Scale">
  31281. <summary>
  31282. <para>How much to scale the <c>UV2</c> coordinates. This is multiplied by <c>UV2</c> in the vertex function.</para>
  31283. </summary>
  31284. </member>
  31285. <member name="P:Godot.SpatialMaterial.Uv2Offset">
  31286. <summary>
  31287. <para>How much to offset the <c>UV2</c> coordinates. This amount will be added to <c>UV2</c> in the vertex function. This can be used to offset a texture.</para>
  31288. </summary>
  31289. </member>
  31290. <member name="P:Godot.SpatialMaterial.Uv2Triplanar">
  31291. <summary>
  31292. <para>If <c>true</c>, instead of using <c>UV2</c> textures will use a triplanar texture lookup to determine how to apply textures. Triplanar uses the orientation of the object's surface to blend between texture coordinates. It reads from the source texture 3 times, once for each axis and then blends between the results based on how closely the pixel aligns with each axis. This is often used for natural features to get a realistic blend of materials. Because triplanar texturing requires many more texture reads per-pixel it is much slower than normal UV texturing. Additionally, because it is blending the texture between the three axes, it is unsuitable when you are trying to achieve crisp texturing.</para>
  31293. </summary>
  31294. </member>
  31295. <member name="P:Godot.SpatialMaterial.Uv2TriplanarSharpness">
  31296. <summary>
  31297. <para>A lower number blends the texture more softly while a higher number blends the texture more sharply.</para>
  31298. </summary>
  31299. </member>
  31300. <member name="P:Godot.SpatialMaterial.ProximityFadeEnable">
  31301. <summary>
  31302. <para>If <c>true</c>, the proximity fade effect is enabled. The proximity fade effect fades out each pixel based on its distance to another object.</para>
  31303. </summary>
  31304. </member>
  31305. <member name="P:Godot.SpatialMaterial.ProximityFadeDistance">
  31306. <summary>
  31307. <para>Distance over which the fade effect takes place. The larger the distance the longer it takes for an object to fade.</para>
  31308. </summary>
  31309. </member>
  31310. <member name="P:Godot.SpatialMaterial.DistanceFadeMode">
  31311. <summary>
  31312. <para>Specifies which type of fade to use. Can be any of the <see cref="T:Godot.SpatialMaterial.DistanceFadeModeEnum"/>s.</para>
  31313. </summary>
  31314. </member>
  31315. <member name="P:Godot.SpatialMaterial.DistanceFadeMinDistance">
  31316. <summary>
  31317. <para>Distance at which the object starts to fade. If the object is less than this distance away it will appear normal.</para>
  31318. </summary>
  31319. </member>
  31320. <member name="P:Godot.SpatialMaterial.DistanceFadeMaxDistance">
  31321. <summary>
  31322. <para>Distance at which the object fades fully and is no longer visible.</para>
  31323. </summary>
  31324. </member>
  31325. <member name="M:Godot.SpatialMaterial.SetFlag(Godot.SpatialMaterial.Flags,System.Boolean)">
  31326. <summary>
  31327. <para>If <c>true</c>, enables the specified flag. Flags are optional behaviour that can be turned on and off. Only one flag can be enabled at a time with this function, the flag enumerators cannot be bit-masked together to enable or disable multiple flags at once. Flags can also be enabled by setting the corresponding member to <c>true</c>. See <see cref="T:Godot.SpatialMaterial.Flags"/> enumerator for options.</para>
  31328. </summary>
  31329. </member>
  31330. <member name="M:Godot.SpatialMaterial.GetFlag(Godot.SpatialMaterial.Flags)">
  31331. <summary>
  31332. <para>Returns <c>true</c>, if the specified flag is enabled. See <see cref="T:Godot.SpatialMaterial.Flags"/> enumerator for options.</para>
  31333. </summary>
  31334. </member>
  31335. <member name="M:Godot.SpatialMaterial.SetFeature(Godot.SpatialMaterial.Feature,System.Boolean)">
  31336. <summary>
  31337. <para>If <c>true</c>, enables the specified <see cref="T:Godot.SpatialMaterial.Feature"/>. Many features that are available in <see cref="T:Godot.SpatialMaterial"/>s need to be enabled before use. This way the cost for using the feature is only incurred when specified. Features can also be enabled by setting the corresponding member to <c>true</c>.</para>
  31338. </summary>
  31339. </member>
  31340. <member name="M:Godot.SpatialMaterial.GetFeature(Godot.SpatialMaterial.Feature)">
  31341. <summary>
  31342. <para>Returns <c>true</c>, if the specified <see cref="T:Godot.SpatialMaterial.Feature"/> is enabled.</para>
  31343. </summary>
  31344. </member>
  31345. <member name="M:Godot.SpatialMaterial.SetTexture(Godot.SpatialMaterial.TextureParam,Godot.Texture)">
  31346. <summary>
  31347. <para>Sets the <see cref="T:Godot.Texture"/> to be used by the specified <see cref="T:Godot.SpatialMaterial.TextureParam"/>. This function is called when setting members ending in <c>*_texture</c>.</para>
  31348. </summary>
  31349. </member>
  31350. <member name="M:Godot.SpatialMaterial.GetTexture(Godot.SpatialMaterial.TextureParam)">
  31351. <summary>
  31352. <para>Returns the <see cref="T:Godot.Texture"/> associated with the specified <see cref="T:Godot.SpatialMaterial.TextureParam"/>.</para>
  31353. </summary>
  31354. </member>
  31355. <member name="T:Godot.SphereMesh">
  31356. <summary>
  31357. <para>Class representing a spherical <see cref="T:Godot.PrimitiveMesh"/>.</para>
  31358. </summary>
  31359. </member>
  31360. <member name="P:Godot.SphereMesh.Radius">
  31361. <summary>
  31362. <para>Radius of sphere.</para>
  31363. </summary>
  31364. </member>
  31365. <member name="P:Godot.SphereMesh.Height">
  31366. <summary>
  31367. <para>Full height of the sphere.</para>
  31368. </summary>
  31369. </member>
  31370. <member name="P:Godot.SphereMesh.RadialSegments">
  31371. <summary>
  31372. <para>Number of radial segments on the sphere.</para>
  31373. </summary>
  31374. </member>
  31375. <member name="P:Godot.SphereMesh.Rings">
  31376. <summary>
  31377. <para>Number of segments along the height of the sphere.</para>
  31378. </summary>
  31379. </member>
  31380. <member name="P:Godot.SphereMesh.IsHemisphere">
  31381. <summary>
  31382. <para>If <c>true</c>, a hemisphere is created rather than a full sphere.</para>
  31383. <para>Note: To get a regular hemisphere, the height and radius of the sphere must be equal.</para>
  31384. </summary>
  31385. </member>
  31386. <member name="T:Godot.SphereShape">
  31387. <summary>
  31388. <para>Sphere shape for 3D collisions, which can be set into a <see cref="T:Godot.PhysicsBody"/> or <see cref="T:Godot.Area"/>. This shape is useful for modeling sphere-like 3D objects.</para>
  31389. </summary>
  31390. </member>
  31391. <member name="P:Godot.SphereShape.Radius">
  31392. <summary>
  31393. <para>The sphere's radius. The shape's diameter is double the radius.</para>
  31394. </summary>
  31395. </member>
  31396. <member name="T:Godot.SpinBox">
  31397. <summary>
  31398. <para>SpinBox is a numerical input text field. It allows entering integers and floats.</para>
  31399. <para>Example:</para>
  31400. <para><code>
  31401. var spin_box = SpinBox.new()
  31402. add_child(spin_box)
  31403. var line_edit = spin_box.get_line_edit()
  31404. line_edit.context_menu_enabled = false
  31405. spin_box.align = LineEdit.ALIGN_RIGHT
  31406. </code></para>
  31407. <para>The above code will create a <see cref="T:Godot.SpinBox"/>, disable context menu on it and set the text alignment to right.</para>
  31408. <para>See <see cref="T:Godot.Range"/> class for more options over the <see cref="T:Godot.SpinBox"/>.</para>
  31409. </summary>
  31410. </member>
  31411. <member name="P:Godot.SpinBox.Align">
  31412. <summary>
  31413. <para>Sets the text alignment of the <see cref="T:Godot.SpinBox"/>.</para>
  31414. </summary>
  31415. </member>
  31416. <member name="P:Godot.SpinBox.Editable">
  31417. <summary>
  31418. <para>If <c>true</c>, the <see cref="T:Godot.SpinBox"/> will be editable. Otherwise, it will be read only.</para>
  31419. </summary>
  31420. </member>
  31421. <member name="P:Godot.SpinBox.Prefix">
  31422. <summary>
  31423. <para>Adds the specified <c>prefix</c> string before the numerical value of the <see cref="T:Godot.SpinBox"/>.</para>
  31424. </summary>
  31425. </member>
  31426. <member name="P:Godot.SpinBox.Suffix">
  31427. <summary>
  31428. <para>Adds the specified <c>suffix</c> string after the numerical value of the <see cref="T:Godot.SpinBox"/>.</para>
  31429. </summary>
  31430. </member>
  31431. <member name="M:Godot.SpinBox.Apply">
  31432. <summary>
  31433. <para>Applies the current value of this <see cref="T:Godot.SpinBox"/>.</para>
  31434. </summary>
  31435. </member>
  31436. <member name="M:Godot.SpinBox.GetLineEdit">
  31437. <summary>
  31438. <para>Returns the <see cref="T:Godot.LineEdit"/> instance from this <see cref="T:Godot.SpinBox"/>. You can use it to access properties and methods of <see cref="T:Godot.LineEdit"/>.</para>
  31439. </summary>
  31440. </member>
  31441. <member name="T:Godot.SplitContainer">
  31442. <summary>
  31443. <para>Container for splitting two <see cref="T:Godot.Control"/>s vertically or horizontally, with a grabber that allows adjusting the split offset or ratio.</para>
  31444. </summary>
  31445. </member>
  31446. <member name="F:Godot.SplitContainer.DraggerVisibilityEnum.Visible">
  31447. <summary>
  31448. <para>The split dragger is visible when the cursor hovers it.</para>
  31449. </summary>
  31450. </member>
  31451. <member name="F:Godot.SplitContainer.DraggerVisibilityEnum.Hidden">
  31452. <summary>
  31453. <para>The split dragger is never visible.</para>
  31454. </summary>
  31455. </member>
  31456. <member name="F:Godot.SplitContainer.DraggerVisibilityEnum.HiddenCollapsed">
  31457. <summary>
  31458. <para>The split dragger is never visible and its space collapsed.</para>
  31459. </summary>
  31460. </member>
  31461. <member name="P:Godot.SplitContainer.SplitOffset">
  31462. <summary>
  31463. <para>The initial offset of the splitting between the two <see cref="T:Godot.Control"/>s, with <c>0</c> being at the end of the first <see cref="T:Godot.Control"/>.</para>
  31464. </summary>
  31465. </member>
  31466. <member name="P:Godot.SplitContainer.Collapsed">
  31467. <summary>
  31468. <para>If <c>true</c>, the area of the first <see cref="T:Godot.Control"/> will be collapsed and the dragger will be disabled.</para>
  31469. </summary>
  31470. </member>
  31471. <member name="P:Godot.SplitContainer.DraggerVisibility">
  31472. <summary>
  31473. <para>Determines the dragger's visibility. See <see cref="T:Godot.SplitContainer.DraggerVisibilityEnum"/> for details.</para>
  31474. </summary>
  31475. </member>
  31476. <member name="M:Godot.SplitContainer.ClampSplitOffset">
  31477. <summary>
  31478. <para>Clamps the <see cref="P:Godot.SplitContainer.SplitOffset"/> value to not go outside the currently possible minimal and maximum values.</para>
  31479. </summary>
  31480. </member>
  31481. <member name="T:Godot.SpotLight">
  31482. <summary>
  31483. <para>A Spotlight is a type of <see cref="T:Godot.Light"/> node that emits lights in a specific direction, in the shape of a cone. The light is attenuated through the distance. This attenuation can be configured by changing the energy, radius and attenuation parameters of <see cref="T:Godot.Light"/>.</para>
  31484. </summary>
  31485. </member>
  31486. <member name="P:Godot.SpotLight.SpotRange">
  31487. <summary>
  31488. <para>The maximal range that can be reached by the spotlight. Note that the effectively lit area may appear to be smaller depending on the <see cref="P:Godot.SpotLight.SpotAttenuation"/> in use. No matter the <see cref="P:Godot.SpotLight.SpotAttenuation"/> in use, the light will never reach anything outside this range.</para>
  31489. </summary>
  31490. </member>
  31491. <member name="P:Godot.SpotLight.SpotAttenuation">
  31492. <summary>
  31493. <para>The spotlight's light energy attenuation curve.</para>
  31494. </summary>
  31495. </member>
  31496. <member name="P:Godot.SpotLight.SpotAngle">
  31497. <summary>
  31498. <para>The spotlight's angle in degrees.</para>
  31499. </summary>
  31500. </member>
  31501. <member name="P:Godot.SpotLight.SpotAngleAttenuation">
  31502. <summary>
  31503. <para>The spotlight's angular attenuation curve.</para>
  31504. </summary>
  31505. </member>
  31506. <member name="T:Godot.SpringArm">
  31507. <summary>
  31508. <para>The SpringArm node is a node that casts a ray (or collision shape) along its z axis and moves all its direct children to the collision point, minus a margin.</para>
  31509. <para>The most common use case for this is to make a 3rd person camera that reacts to collisions in the environment.</para>
  31510. <para>The SpringArm will either cast a ray, or if a shape is given, it will cast the shape in the direction of its z axis.</para>
  31511. <para>If you use the SpringArm as a camera controller for your player, you might need to exclude the player's collider from the SpringArm's collision check.</para>
  31512. </summary>
  31513. </member>
  31514. <member name="P:Godot.SpringArm.CollisionMask">
  31515. <summary>
  31516. <para>The layers against which the collision check shall be done.</para>
  31517. </summary>
  31518. </member>
  31519. <member name="P:Godot.SpringArm.Shape">
  31520. <summary>
  31521. <para>The <see cref="T:Godot.Shape"/> to use for the SpringArm.</para>
  31522. <para>When the shape is set, the SpringArm will cast the <see cref="T:Godot.Shape"/> on its z axis instead of performing a ray cast.</para>
  31523. </summary>
  31524. </member>
  31525. <member name="P:Godot.SpringArm.SpringLength">
  31526. <summary>
  31527. <para>The maximum extent of the SpringArm. This is used as a length for both the ray and the shape cast used internally to calculate the desired position of the SpringArm's child nodes.</para>
  31528. <para>To know more about how to perform a shape cast or a ray cast, please consult the <see cref="T:Godot.PhysicsDirectSpaceState"/> documentation.</para>
  31529. </summary>
  31530. </member>
  31531. <member name="P:Godot.SpringArm.Margin">
  31532. <summary>
  31533. <para>When the collision check is made, a candidate length for the SpringArm is given.</para>
  31534. <para>The margin is then subtracted to this length and the translation is applied to the child objects of the SpringArm.</para>
  31535. <para>This margin is useful for when the SpringArm has a <see cref="T:Godot.Camera"/> as a child node: without the margin, the <see cref="T:Godot.Camera"/> would be placed on the exact point of collision, while with the margin the <see cref="T:Godot.Camera"/> would be placed close to the point of collision.</para>
  31536. </summary>
  31537. </member>
  31538. <member name="M:Godot.SpringArm.GetHitLength">
  31539. <summary>
  31540. <para>Returns the proportion between the current arm length (after checking for collisions) and the <see cref="P:Godot.SpringArm.SpringLength"/>. Ranges from 0 to 1.</para>
  31541. </summary>
  31542. </member>
  31543. <member name="M:Godot.SpringArm.AddExcludedObject(Godot.RID)">
  31544. <summary>
  31545. <para>Adds the <see cref="T:Godot.PhysicsBody"/> object with the given <see cref="T:Godot.RID"/> to the list of <see cref="T:Godot.PhysicsBody"/> objects excluded from the collision check.</para>
  31546. </summary>
  31547. </member>
  31548. <member name="M:Godot.SpringArm.RemoveExcludedObject(Godot.RID)">
  31549. <summary>
  31550. <para>Removes the given <see cref="T:Godot.RID"/> from the list of <see cref="T:Godot.PhysicsBody"/> objects excluded from the collision check.</para>
  31551. </summary>
  31552. </member>
  31553. <member name="M:Godot.SpringArm.ClearExcludedObjects">
  31554. <summary>
  31555. <para>Clears the list of <see cref="T:Godot.PhysicsBody"/> objects excluded from the collision check.</para>
  31556. </summary>
  31557. </member>
  31558. <member name="T:Godot.Sprite">
  31559. <summary>
  31560. <para>A node that displays a 2D texture. The texture displayed can be a region from a larger atlas texture, or a frame from a sprite sheet animation.</para>
  31561. </summary>
  31562. </member>
  31563. <member name="P:Godot.Sprite.Texture">
  31564. <summary>
  31565. <para><see cref="T:Godot.Texture"/> object to draw.</para>
  31566. </summary>
  31567. </member>
  31568. <member name="P:Godot.Sprite.NormalMap">
  31569. <summary>
  31570. <para>The normal map gives depth to the Sprite.</para>
  31571. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  31572. </summary>
  31573. </member>
  31574. <member name="P:Godot.Sprite.Centered">
  31575. <summary>
  31576. <para>If <c>true</c>, texture is centered.</para>
  31577. </summary>
  31578. </member>
  31579. <member name="P:Godot.Sprite.Offset">
  31580. <summary>
  31581. <para>The texture's drawing offset.</para>
  31582. </summary>
  31583. </member>
  31584. <member name="P:Godot.Sprite.FlipH">
  31585. <summary>
  31586. <para>If <c>true</c>, texture is flipped horizontally.</para>
  31587. </summary>
  31588. </member>
  31589. <member name="P:Godot.Sprite.FlipV">
  31590. <summary>
  31591. <para>If <c>true</c>, texture is flipped vertically.</para>
  31592. </summary>
  31593. </member>
  31594. <member name="P:Godot.Sprite.Vframes">
  31595. <summary>
  31596. <para>The number of rows in the sprite sheet.</para>
  31597. </summary>
  31598. </member>
  31599. <member name="P:Godot.Sprite.Hframes">
  31600. <summary>
  31601. <para>The number of columns in the sprite sheet.</para>
  31602. </summary>
  31603. </member>
  31604. <member name="P:Godot.Sprite.Frame">
  31605. <summary>
  31606. <para>Current frame to display from sprite sheet. <see cref="P:Godot.Sprite.Vframes"/> or <see cref="P:Godot.Sprite.Hframes"/> must be greater than 1.</para>
  31607. </summary>
  31608. </member>
  31609. <member name="P:Godot.Sprite.FrameCoords">
  31610. <summary>
  31611. <para>Coordinates of the frame to display from sprite sheet. This is as an alias for the <see cref="P:Godot.Sprite.Frame"/> property. <see cref="P:Godot.Sprite.Vframes"/> or <see cref="P:Godot.Sprite.Hframes"/> must be greater than 1.</para>
  31612. </summary>
  31613. </member>
  31614. <member name="P:Godot.Sprite.RegionEnabled">
  31615. <summary>
  31616. <para>If <c>true</c>, texture is cut from a larger atlas texture. See <see cref="P:Godot.Sprite.RegionRect"/>.</para>
  31617. </summary>
  31618. </member>
  31619. <member name="P:Godot.Sprite.RegionRect">
  31620. <summary>
  31621. <para>The region of the atlas texture to display. <see cref="P:Godot.Sprite.RegionEnabled"/> must be <c>true</c>.</para>
  31622. </summary>
  31623. </member>
  31624. <member name="P:Godot.Sprite.RegionFilterClip">
  31625. <summary>
  31626. <para>If <c>true</c>, the outermost pixels get blurred out.</para>
  31627. </summary>
  31628. </member>
  31629. <member name="M:Godot.Sprite.IsPixelOpaque(Godot.Vector2)">
  31630. <summary>
  31631. <para>Returns <c>true</c>, if the pixel at the given position is opaque and <c>false</c> in other case.</para>
  31632. <para>Note: It also returns <c>false</c>, if the sprite's texture is <c>null</c> or if the given position is invalid.</para>
  31633. </summary>
  31634. </member>
  31635. <member name="M:Godot.Sprite.GetRect">
  31636. <summary>
  31637. <para>Returns a <see cref="T:Godot.Rect2"/> representing the Sprite's boundary in local coordinates. Can be used to detect if the Sprite was clicked. Example:</para>
  31638. <para><code>
  31639. func _input(event):
  31640. if event is InputEventMouseButton and event.pressed and event.button_index == BUTTON_LEFT:
  31641. if get_rect().has_point(to_local(event.position)):
  31642. print("A click!")
  31643. </code></para>
  31644. </summary>
  31645. </member>
  31646. <member name="T:Godot.Sprite3D">
  31647. <summary>
  31648. <para>A node that displays a 2D texture in a 3D environment. The texture displayed can be a region from a larger atlas texture, or a frame from a sprite sheet animation.</para>
  31649. <para>Note: There are <a href="https://github.com/godotengine/godot/issues/20855">known performance issues</a> when using <see cref="T:Godot.Sprite3D"/>. Consider using a <see cref="T:Godot.MeshInstance"/> with a <see cref="T:Godot.QuadMesh"/> as the mesh instead. You can still have billboarding by enabling billboard properties in the QuadMesh's <see cref="T:Godot.SpatialMaterial"/>.</para>
  31650. </summary>
  31651. </member>
  31652. <member name="P:Godot.Sprite3D.Texture">
  31653. <summary>
  31654. <para><see cref="T:Godot.Texture"/> object to draw.</para>
  31655. </summary>
  31656. </member>
  31657. <member name="P:Godot.Sprite3D.Vframes">
  31658. <summary>
  31659. <para>The number of rows in the sprite sheet.</para>
  31660. </summary>
  31661. </member>
  31662. <member name="P:Godot.Sprite3D.Hframes">
  31663. <summary>
  31664. <para>The number of columns in the sprite sheet.</para>
  31665. </summary>
  31666. </member>
  31667. <member name="P:Godot.Sprite3D.Frame">
  31668. <summary>
  31669. <para>Current frame to display from sprite sheet. <see cref="P:Godot.Sprite3D.Vframes"/> or <see cref="P:Godot.Sprite3D.Hframes"/> must be greater than 1.</para>
  31670. </summary>
  31671. </member>
  31672. <member name="P:Godot.Sprite3D.FrameCoords">
  31673. <summary>
  31674. <para>Coordinates of the frame to display from sprite sheet. This is as an alias for the <see cref="P:Godot.Sprite3D.Frame"/> property. <see cref="P:Godot.Sprite3D.Vframes"/> or <see cref="P:Godot.Sprite3D.Hframes"/> must be greater than 1.</para>
  31675. </summary>
  31676. </member>
  31677. <member name="P:Godot.Sprite3D.RegionEnabled">
  31678. <summary>
  31679. <para>If <c>true</c>, texture will be cut from a larger atlas texture. See <see cref="P:Godot.Sprite3D.RegionRect"/>.</para>
  31680. </summary>
  31681. </member>
  31682. <member name="P:Godot.Sprite3D.RegionRect">
  31683. <summary>
  31684. <para>The region of the atlas texture to display. <see cref="P:Godot.Sprite3D.RegionEnabled"/> must be <c>true</c>.</para>
  31685. </summary>
  31686. </member>
  31687. <member name="T:Godot.SpriteBase3D">
  31688. <summary>
  31689. <para>A node that displays 2D texture information in a 3D environment.</para>
  31690. </summary>
  31691. </member>
  31692. <member name="F:Godot.SpriteBase3D.DrawFlags.Transparent">
  31693. <summary>
  31694. <para>If set, the texture's transparency and the opacity are used to make those parts of the sprite invisible.</para>
  31695. </summary>
  31696. </member>
  31697. <member name="F:Godot.SpriteBase3D.DrawFlags.Shaded">
  31698. <summary>
  31699. <para>If set, lights in the environment affect the sprite.</para>
  31700. </summary>
  31701. </member>
  31702. <member name="F:Godot.SpriteBase3D.DrawFlags.DoubleSided">
  31703. <summary>
  31704. <para>If set, texture can be seen from the back as well, if not, it is invisible when looking at it from behind.</para>
  31705. </summary>
  31706. </member>
  31707. <member name="F:Godot.SpriteBase3D.DrawFlags.Max">
  31708. <summary>
  31709. <para>Represents the size of the <see cref="T:Godot.SpriteBase3D.DrawFlags"/> enum.</para>
  31710. </summary>
  31711. </member>
  31712. <member name="P:Godot.SpriteBase3D.Centered">
  31713. <summary>
  31714. <para>If <c>true</c>, texture will be centered.</para>
  31715. </summary>
  31716. </member>
  31717. <member name="P:Godot.SpriteBase3D.Offset">
  31718. <summary>
  31719. <para>The texture's drawing offset.</para>
  31720. </summary>
  31721. </member>
  31722. <member name="P:Godot.SpriteBase3D.FlipH">
  31723. <summary>
  31724. <para>If <c>true</c>, texture is flipped horizontally.</para>
  31725. </summary>
  31726. </member>
  31727. <member name="P:Godot.SpriteBase3D.FlipV">
  31728. <summary>
  31729. <para>If <c>true</c>, texture is flipped vertically.</para>
  31730. </summary>
  31731. </member>
  31732. <member name="P:Godot.SpriteBase3D.Modulate">
  31733. <summary>
  31734. <para>A color value that gets multiplied on, could be used for mood-coloring or to simulate the color of light.</para>
  31735. </summary>
  31736. </member>
  31737. <member name="P:Godot.SpriteBase3D.Opacity">
  31738. <summary>
  31739. <para>The objects visibility on a scale from <c>0</c> fully invisible to <c>1</c> fully visible.</para>
  31740. </summary>
  31741. </member>
  31742. <member name="P:Godot.SpriteBase3D.PixelSize">
  31743. <summary>
  31744. <para>The size of one pixel's width on the sprite to scale it in 3D.</para>
  31745. </summary>
  31746. </member>
  31747. <member name="P:Godot.SpriteBase3D.Axis">
  31748. <summary>
  31749. <para>The direction in which the front of the texture faces.</para>
  31750. </summary>
  31751. </member>
  31752. <member name="P:Godot.SpriteBase3D.Transparent">
  31753. <summary>
  31754. <para>If <c>true</c>, the texture's transparency and the opacity are used to make those parts of the sprite invisible.</para>
  31755. </summary>
  31756. </member>
  31757. <member name="P:Godot.SpriteBase3D.Shaded">
  31758. <summary>
  31759. <para>If <c>true</c>, the <see cref="T:Godot.Light"/> in the <see cref="T:Godot.Environment"/> has effects on the sprite.</para>
  31760. </summary>
  31761. </member>
  31762. <member name="P:Godot.SpriteBase3D.DoubleSided">
  31763. <summary>
  31764. <para>If <c>true</c>, texture can be seen from the back as well, if <c>false</c>, it is invisible when looking at it from behind.</para>
  31765. </summary>
  31766. </member>
  31767. <member name="M:Godot.SpriteBase3D.SetDrawFlag(Godot.SpriteBase3D.DrawFlags,System.Boolean)">
  31768. <summary>
  31769. <para>If <c>true</c>, the specified flag will be enabled.</para>
  31770. </summary>
  31771. </member>
  31772. <member name="M:Godot.SpriteBase3D.GetDrawFlag(Godot.SpriteBase3D.DrawFlags)">
  31773. <summary>
  31774. <para>Returns the value of the specified flag.</para>
  31775. </summary>
  31776. </member>
  31777. <member name="M:Godot.SpriteBase3D.GetItemRect">
  31778. <summary>
  31779. <para>Returns the rectangle representing this sprite.</para>
  31780. </summary>
  31781. </member>
  31782. <member name="T:Godot.SpriteFrames">
  31783. <summary>
  31784. <para>Sprite frame library for <see cref="T:Godot.AnimatedSprite"/>. Contains frames and animation data for playback.</para>
  31785. </summary>
  31786. </member>
  31787. <member name="P:Godot.SpriteFrames.Frames">
  31788. <summary>
  31789. <para>Compatibility property, always equals to an empty array.</para>
  31790. </summary>
  31791. </member>
  31792. <member name="M:Godot.SpriteFrames.AddAnimation(System.String)">
  31793. <summary>
  31794. <para>Adds a new animation to the library.</para>
  31795. </summary>
  31796. </member>
  31797. <member name="M:Godot.SpriteFrames.HasAnimation(System.String)">
  31798. <summary>
  31799. <para>If <c>true</c>, the named animation exists.</para>
  31800. </summary>
  31801. </member>
  31802. <member name="M:Godot.SpriteFrames.RemoveAnimation(System.String)">
  31803. <summary>
  31804. <para>Removes the given animation.</para>
  31805. </summary>
  31806. </member>
  31807. <member name="M:Godot.SpriteFrames.RenameAnimation(System.String,System.String)">
  31808. <summary>
  31809. <para>Changes the animation's name to <c>newname</c>.</para>
  31810. </summary>
  31811. </member>
  31812. <member name="M:Godot.SpriteFrames.GetAnimationNames">
  31813. <summary>
  31814. <para>Returns an array containing the names associated to each animation. Values are placed in alphabetical order.</para>
  31815. </summary>
  31816. </member>
  31817. <member name="M:Godot.SpriteFrames.SetAnimationSpeed(System.String,System.Single)">
  31818. <summary>
  31819. <para>The animation's speed in frames per second.</para>
  31820. </summary>
  31821. </member>
  31822. <member name="M:Godot.SpriteFrames.GetAnimationSpeed(System.String)">
  31823. <summary>
  31824. <para>The animation's speed in frames per second.</para>
  31825. </summary>
  31826. </member>
  31827. <member name="M:Godot.SpriteFrames.SetAnimationLoop(System.String,System.Boolean)">
  31828. <summary>
  31829. <para>If <c>true</c>, the animation will loop.</para>
  31830. </summary>
  31831. </member>
  31832. <member name="M:Godot.SpriteFrames.GetAnimationLoop(System.String)">
  31833. <summary>
  31834. <para>If <c>true</c>, the given animation will loop.</para>
  31835. </summary>
  31836. </member>
  31837. <member name="M:Godot.SpriteFrames.AddFrame(System.String,Godot.Texture,System.Int32)">
  31838. <summary>
  31839. <para>Adds a frame to the given animation.</para>
  31840. </summary>
  31841. </member>
  31842. <member name="M:Godot.SpriteFrames.GetFrameCount(System.String)">
  31843. <summary>
  31844. <para>Returns the number of frames in the animation.</para>
  31845. </summary>
  31846. </member>
  31847. <member name="M:Godot.SpriteFrames.GetFrame(System.String,System.Int32)">
  31848. <summary>
  31849. <para>Returns the animation's selected frame.</para>
  31850. </summary>
  31851. </member>
  31852. <member name="M:Godot.SpriteFrames.SetFrame(System.String,System.Int32,Godot.Texture)">
  31853. <summary>
  31854. <para>Sets the texture of the given frame.</para>
  31855. </summary>
  31856. </member>
  31857. <member name="M:Godot.SpriteFrames.RemoveFrame(System.String,System.Int32)">
  31858. <summary>
  31859. <para>Removes the animation's selected frame.</para>
  31860. </summary>
  31861. </member>
  31862. <member name="M:Godot.SpriteFrames.Clear(System.String)">
  31863. <summary>
  31864. <para>Removes all frames from the given animation.</para>
  31865. </summary>
  31866. </member>
  31867. <member name="M:Godot.SpriteFrames.ClearAll">
  31868. <summary>
  31869. <para>Removes all animations. A "default" animation will be created.</para>
  31870. </summary>
  31871. </member>
  31872. <member name="T:Godot.StaticBody">
  31873. <summary>
  31874. <para>Static body for 3D physics. A static body is a simple body that is not intended to move. In contrast to <see cref="T:Godot.RigidBody"/>, they don't consume any CPU resources as long as they don't move.</para>
  31875. <para>Additionally, a constant linear or angular velocity can be set for the static body, so even if it doesn't move, it affects other bodies as if it was moving (this is useful for simulating conveyor belts or conveyor wheels).</para>
  31876. </summary>
  31877. </member>
  31878. <member name="P:Godot.StaticBody.Friction">
  31879. <summary>
  31880. <para>The body's friction, from 0 (frictionless) to 1 (full friction).</para>
  31881. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Friction"/> instead via <see cref="P:Godot.StaticBody.PhysicsMaterialOverride"/>.</para>
  31882. </summary>
  31883. </member>
  31884. <member name="P:Godot.StaticBody.Bounce">
  31885. <summary>
  31886. <para>The body's bounciness. Values range from <c>0</c> (no bounce) to <c>1</c> (full bounciness).</para>
  31887. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Bounce"/> instead via <see cref="P:Godot.StaticBody.PhysicsMaterialOverride"/>.</para>
  31888. </summary>
  31889. </member>
  31890. <member name="P:Godot.StaticBody.PhysicsMaterialOverride">
  31891. <summary>
  31892. <para>The physics material override for the body.</para>
  31893. <para>If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one.</para>
  31894. </summary>
  31895. </member>
  31896. <member name="P:Godot.StaticBody.ConstantLinearVelocity">
  31897. <summary>
  31898. <para>The body's constant linear velocity. This does not move the body, but affects other bodies that touch it, as if it was in a state of movement.</para>
  31899. </summary>
  31900. </member>
  31901. <member name="P:Godot.StaticBody.ConstantAngularVelocity">
  31902. <summary>
  31903. <para>The body's constant angular velocity. This does not rotate the body, but affects other bodies that touch it, as if it was in a state of rotation.</para>
  31904. </summary>
  31905. </member>
  31906. <member name="T:Godot.StaticBody2D">
  31907. <summary>
  31908. <para>Static body for 2D physics. A StaticBody2D is a body that is not intended to move. It is ideal for implementing objects in the environment, such as walls or platforms.</para>
  31909. <para>Additionally, a constant linear or angular velocity can be set for the static body, which will affect colliding bodies as if it were moving (for example, a conveyor belt).</para>
  31910. </summary>
  31911. </member>
  31912. <member name="P:Godot.StaticBody2D.ConstantLinearVelocity">
  31913. <summary>
  31914. <para>The body's constant linear velocity. This does not move the body, but affects colliding bodies, as if it were moving.</para>
  31915. </summary>
  31916. </member>
  31917. <member name="P:Godot.StaticBody2D.ConstantAngularVelocity">
  31918. <summary>
  31919. <para>The body's constant angular velocity. This does not rotate the body, but affects colliding bodies, as if it were rotating.</para>
  31920. </summary>
  31921. </member>
  31922. <member name="P:Godot.StaticBody2D.Friction">
  31923. <summary>
  31924. <para>The body's friction. Values range from <c>0</c> (no friction) to <c>1</c> (full friction).</para>
  31925. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Friction"/> instead via <see cref="P:Godot.StaticBody2D.PhysicsMaterialOverride"/>.</para>
  31926. </summary>
  31927. </member>
  31928. <member name="P:Godot.StaticBody2D.Bounce">
  31929. <summary>
  31930. <para>The body's bounciness. Values range from <c>0</c> (no bounce) to <c>1</c> (full bounciness).</para>
  31931. <para>Deprecated, use <see cref="P:Godot.PhysicsMaterial.Bounce"/> instead via <see cref="P:Godot.StaticBody2D.PhysicsMaterialOverride"/>.</para>
  31932. </summary>
  31933. </member>
  31934. <member name="P:Godot.StaticBody2D.PhysicsMaterialOverride">
  31935. <summary>
  31936. <para>The physics material override for the body.</para>
  31937. <para>If a material is assigned to this property, it will be used instead of any other physics material, such as an inherited one.</para>
  31938. </summary>
  31939. </member>
  31940. <member name="T:Godot.StreamPeer">
  31941. <summary>
  31942. <para>StreamPeer is an abstraction and base class for stream-based protocols (such as TCP or UNIX sockets). It provides an API for sending and receiving data through streams as raw data or strings.</para>
  31943. </summary>
  31944. </member>
  31945. <member name="P:Godot.StreamPeer.BigEndian">
  31946. <summary>
  31947. <para>If <c>true</c>, this <see cref="T:Godot.StreamPeer"/> will using big-endian format for encoding and decoding.</para>
  31948. </summary>
  31949. </member>
  31950. <member name="M:Godot.StreamPeer.PutData(System.Byte[])">
  31951. <summary>
  31952. <para>Sends a chunk of data through the connection, blocking if necessary until the data is done sending. This function returns an <see cref="T:Godot.Error"/> code.</para>
  31953. </summary>
  31954. </member>
  31955. <member name="M:Godot.StreamPeer.PutPartialData(System.Byte[])">
  31956. <summary>
  31957. <para>Sends a chunk of data through the connection. If all the data could not be sent at once, only part of it will. This function returns two values, an <see cref="T:Godot.Error"/> code and an integer, describing how much data was actually sent.</para>
  31958. </summary>
  31959. </member>
  31960. <member name="M:Godot.StreamPeer.GetData(System.Int32)">
  31961. <summary>
  31962. <para>Returns a chunk data with the received bytes. The amount of bytes to be received can be requested in the <c>bytes</c> argument. If not enough bytes are available, the function will block until the desired amount is received. This function returns two values, an <see cref="T:Godot.Error"/> code and a data array.</para>
  31963. </summary>
  31964. </member>
  31965. <member name="M:Godot.StreamPeer.GetPartialData(System.Int32)">
  31966. <summary>
  31967. <para>Returns a chunk data with the received bytes. The amount of bytes to be received can be requested in the "bytes" argument. If not enough bytes are available, the function will return how many were actually received. This function returns two values, an <see cref="T:Godot.Error"/> code, and a data array.</para>
  31968. </summary>
  31969. </member>
  31970. <member name="M:Godot.StreamPeer.GetAvailableBytes">
  31971. <summary>
  31972. <para>Returns the amount of bytes this <see cref="T:Godot.StreamPeer"/> has available.</para>
  31973. </summary>
  31974. </member>
  31975. <member name="M:Godot.StreamPeer.Put8(System.SByte)">
  31976. <summary>
  31977. <para>Puts a signed byte into the stream.</para>
  31978. </summary>
  31979. </member>
  31980. <member name="M:Godot.StreamPeer.PutU8(System.Byte)">
  31981. <summary>
  31982. <para>Puts an unsigned byte into the stream.</para>
  31983. </summary>
  31984. </member>
  31985. <member name="M:Godot.StreamPeer.Put16(System.Int16)">
  31986. <summary>
  31987. <para>Puts a signed 16-bit value into the stream.</para>
  31988. </summary>
  31989. </member>
  31990. <member name="M:Godot.StreamPeer.PutU16(System.UInt16)">
  31991. <summary>
  31992. <para>Puts an unsigned 16-bit value into the stream.</para>
  31993. </summary>
  31994. </member>
  31995. <member name="M:Godot.StreamPeer.Put32(System.Int32)">
  31996. <summary>
  31997. <para>Puts a signed 32-bit value into the stream.</para>
  31998. </summary>
  31999. </member>
  32000. <member name="M:Godot.StreamPeer.PutU32(System.UInt32)">
  32001. <summary>
  32002. <para>Puts an unsigned 32-bit value into the stream.</para>
  32003. </summary>
  32004. </member>
  32005. <member name="M:Godot.StreamPeer.Put64(System.Int64)">
  32006. <summary>
  32007. <para>Puts a signed 64-bit value into the stream.</para>
  32008. </summary>
  32009. </member>
  32010. <member name="M:Godot.StreamPeer.PutU64(System.UInt64)">
  32011. <summary>
  32012. <para>Puts an unsigned 64-bit value into the stream.</para>
  32013. </summary>
  32014. </member>
  32015. <member name="M:Godot.StreamPeer.PutFloat(System.Single)">
  32016. <summary>
  32017. <para>Puts a single-precision float into the stream.</para>
  32018. </summary>
  32019. </member>
  32020. <member name="M:Godot.StreamPeer.PutDouble(System.Double)">
  32021. <summary>
  32022. <para>Puts a double-precision float into the stream.</para>
  32023. </summary>
  32024. </member>
  32025. <member name="M:Godot.StreamPeer.PutString(System.String)">
  32026. <summary>
  32027. <para>Puts a zero-terminated ASCII string into the stream prepended by a 32-bit unsigned integer representing its size.</para>
  32028. <para>Note: To put an ASCII string without prepending its size, you can use <see cref="M:Godot.StreamPeer.PutData(System.Byte[])"/>:</para>
  32029. <para><code>
  32030. put_data("Hello world".to_ascii())
  32031. </code></para>
  32032. </summary>
  32033. </member>
  32034. <member name="M:Godot.StreamPeer.PutUtf8String(System.String)">
  32035. <summary>
  32036. <para>Puts a zero-terminated UTF-8 string into the stream prepended by a 32 bits unsigned integer representing its size.</para>
  32037. <para>Note: To put an UTF-8 string without prepending its size, you can use <see cref="M:Godot.StreamPeer.PutData(System.Byte[])"/>:</para>
  32038. <para><code>
  32039. put_data("Hello world".to_utf8())
  32040. </code></para>
  32041. </summary>
  32042. </member>
  32043. <member name="M:Godot.StreamPeer.PutVar(System.Object,System.Boolean)">
  32044. <summary>
  32045. <para>Puts a Variant into the stream. If <c>full_objects</c> is <c>true</c> encoding objects is allowed (and can potentially include code).</para>
  32046. </summary>
  32047. </member>
  32048. <member name="M:Godot.StreamPeer.Get8">
  32049. <summary>
  32050. <para>Gets a signed byte from the stream.</para>
  32051. </summary>
  32052. </member>
  32053. <member name="M:Godot.StreamPeer.GetU8">
  32054. <summary>
  32055. <para>Gets an unsigned byte from the stream.</para>
  32056. </summary>
  32057. </member>
  32058. <member name="M:Godot.StreamPeer.Get16">
  32059. <summary>
  32060. <para>Gets a signed 16-bit value from the stream.</para>
  32061. </summary>
  32062. </member>
  32063. <member name="M:Godot.StreamPeer.GetU16">
  32064. <summary>
  32065. <para>Gets an unsigned 16-bit value from the stream.</para>
  32066. </summary>
  32067. </member>
  32068. <member name="M:Godot.StreamPeer.Get32">
  32069. <summary>
  32070. <para>Gets a signed 32-bit value from the stream.</para>
  32071. </summary>
  32072. </member>
  32073. <member name="M:Godot.StreamPeer.GetU32">
  32074. <summary>
  32075. <para>Gets an unsigned 32-bit value from the stream.</para>
  32076. </summary>
  32077. </member>
  32078. <member name="M:Godot.StreamPeer.Get64">
  32079. <summary>
  32080. <para>Gets a signed 64-bit value from the stream.</para>
  32081. </summary>
  32082. </member>
  32083. <member name="M:Godot.StreamPeer.GetU64">
  32084. <summary>
  32085. <para>Gets an unsigned 64-bit value from the stream.</para>
  32086. </summary>
  32087. </member>
  32088. <member name="M:Godot.StreamPeer.GetFloat">
  32089. <summary>
  32090. <para>Gets a single-precision float from the stream.</para>
  32091. </summary>
  32092. </member>
  32093. <member name="M:Godot.StreamPeer.GetDouble">
  32094. <summary>
  32095. <para>Gets a double-precision float from the stream.</para>
  32096. </summary>
  32097. </member>
  32098. <member name="M:Godot.StreamPeer.GetString(System.Int32)">
  32099. <summary>
  32100. <para>Gets a string with byte-length <c>bytes</c> from the stream. If <c>bytes</c> is negative (default) the length will be read from the stream using the reverse process of <see cref="M:Godot.StreamPeer.PutString(System.String)"/>.</para>
  32101. </summary>
  32102. </member>
  32103. <member name="M:Godot.StreamPeer.GetUtf8String(System.Int32)">
  32104. <summary>
  32105. <para>Gets an UTF-8 string with byte-length <c>bytes</c> from the stream (this decodes the string sent as UTF-8). If <c>bytes</c> is negative (default) the length will be read from the stream using the reverse process of <see cref="M:Godot.StreamPeer.PutUtf8String(System.String)"/>.</para>
  32106. </summary>
  32107. </member>
  32108. <member name="M:Godot.StreamPeer.GetVar(System.Boolean)">
  32109. <summary>
  32110. <para>Gets a Variant from the stream. If <c>allow_objects</c> is <c>true</c>, decoding objects is allowed.</para>
  32111. <para>Warning: Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.</para>
  32112. </summary>
  32113. </member>
  32114. <member name="T:Godot.StreamPeerSSL">
  32115. <summary>
  32116. <para>SSL stream peer. This object can be used to connect to an SSL server or accept a single SSL client connection.</para>
  32117. </summary>
  32118. </member>
  32119. <member name="F:Godot.StreamPeerSSL.Status.Disconnected">
  32120. <summary>
  32121. <para>A status representing a <see cref="T:Godot.StreamPeerSSL"/> that is disconnected.</para>
  32122. </summary>
  32123. </member>
  32124. <member name="F:Godot.StreamPeerSSL.Status.Handshaking">
  32125. <summary>
  32126. <para>A status representing a <see cref="T:Godot.StreamPeerSSL"/> during handshaking.</para>
  32127. </summary>
  32128. </member>
  32129. <member name="F:Godot.StreamPeerSSL.Status.Connected">
  32130. <summary>
  32131. <para>A status representing a <see cref="T:Godot.StreamPeerSSL"/> that is connected to a host.</para>
  32132. </summary>
  32133. </member>
  32134. <member name="F:Godot.StreamPeerSSL.Status.Error">
  32135. <summary>
  32136. <para>A status representing a <see cref="T:Godot.StreamPeerSSL"/> in error state.</para>
  32137. </summary>
  32138. </member>
  32139. <member name="F:Godot.StreamPeerSSL.Status.ErrorHostnameMismatch">
  32140. <summary>
  32141. <para>An error status that shows a mismatch in the SSL certificate domain presented by the host and the domain requested for validation.</para>
  32142. </summary>
  32143. </member>
  32144. <member name="M:Godot.StreamPeerSSL.Poll">
  32145. <summary>
  32146. <para>Poll the connection to check for incoming bytes. Call this right before <see cref="M:Godot.StreamPeer.GetAvailableBytes"/> for it to work properly.</para>
  32147. </summary>
  32148. </member>
  32149. <member name="M:Godot.StreamPeerSSL.AcceptStream(Godot.StreamPeer,Godot.CryptoKey,Godot.X509Certificate,Godot.X509Certificate)">
  32150. <summary>
  32151. <para>Accepts a peer connection as a server using the given <c>private_key</c> and providing the given <c>certificate</c> to the client. You can pass the optional <c>chain</c> parameter to provide additional CA chain information along with the certificate.</para>
  32152. </summary>
  32153. </member>
  32154. <member name="M:Godot.StreamPeerSSL.ConnectToStream(Godot.StreamPeer,System.Boolean,System.String,Godot.X509Certificate)">
  32155. <summary>
  32156. <para>Connects to a peer using an underlying <see cref="T:Godot.StreamPeer"/> <c>stream</c>. If <c>validate_certs</c> is <c>true</c>, <see cref="T:Godot.StreamPeerSSL"/> will validate that the certificate presented by the peer matches the <c>for_hostname</c>.</para>
  32157. <para>Note: Specifying a custom <c>valid_certificate</c> is not supported in HTML5 exports due to browsers restrictions.</para>
  32158. </summary>
  32159. </member>
  32160. <member name="M:Godot.StreamPeerSSL.GetStatus">
  32161. <summary>
  32162. <para>Returns the status of the connection. See <see cref="T:Godot.StreamPeerSSL.Status"/> for values.</para>
  32163. </summary>
  32164. </member>
  32165. <member name="M:Godot.StreamPeerSSL.DisconnectFromStream">
  32166. <summary>
  32167. <para>Disconnects from host.</para>
  32168. </summary>
  32169. </member>
  32170. <member name="T:Godot.StreamPeerTCP">
  32171. <summary>
  32172. <para>TCP stream peer. This object can be used to connect to TCP servers, or also is returned by a TCP server.</para>
  32173. </summary>
  32174. </member>
  32175. <member name="F:Godot.StreamPeerTCP.Status.None">
  32176. <summary>
  32177. <para>The initial status of the <see cref="T:Godot.StreamPeerTCP"/>. This is also the status after disconnecting.</para>
  32178. </summary>
  32179. </member>
  32180. <member name="F:Godot.StreamPeerTCP.Status.Connecting">
  32181. <summary>
  32182. <para>A status representing a <see cref="T:Godot.StreamPeerTCP"/> that is connecting to a host.</para>
  32183. </summary>
  32184. </member>
  32185. <member name="F:Godot.StreamPeerTCP.Status.Connected">
  32186. <summary>
  32187. <para>A status representing a <see cref="T:Godot.StreamPeerTCP"/> that is connected to a host.</para>
  32188. </summary>
  32189. </member>
  32190. <member name="F:Godot.StreamPeerTCP.Status.Error">
  32191. <summary>
  32192. <para>A status representing a <see cref="T:Godot.StreamPeerTCP"/> in error state.</para>
  32193. </summary>
  32194. </member>
  32195. <member name="M:Godot.StreamPeerTCP.ConnectToHost(System.String,System.Int32)">
  32196. <summary>
  32197. <para>Connects to the specified <c>host:port</c> pair. A hostname will be resolved if valid. Returns on success or on failure.</para>
  32198. </summary>
  32199. </member>
  32200. <member name="M:Godot.StreamPeerTCP.IsConnectedToHost">
  32201. <summary>
  32202. <para>Returns <c>true</c> if this peer is currently connected to a host, <c>false</c> otherwise.</para>
  32203. </summary>
  32204. </member>
  32205. <member name="M:Godot.StreamPeerTCP.GetStatus">
  32206. <summary>
  32207. <para>Returns the status of the connection, see <see cref="T:Godot.StreamPeerTCP.Status"/>.</para>
  32208. </summary>
  32209. </member>
  32210. <member name="M:Godot.StreamPeerTCP.GetConnectedHost">
  32211. <summary>
  32212. <para>Returns the IP of this peer.</para>
  32213. </summary>
  32214. </member>
  32215. <member name="M:Godot.StreamPeerTCP.GetConnectedPort">
  32216. <summary>
  32217. <para>Returns the port of this peer.</para>
  32218. </summary>
  32219. </member>
  32220. <member name="M:Godot.StreamPeerTCP.DisconnectFromHost">
  32221. <summary>
  32222. <para>Disconnects from host.</para>
  32223. </summary>
  32224. </member>
  32225. <member name="M:Godot.StreamPeerTCP.SetNoDelay(System.Boolean)">
  32226. <summary>
  32227. <para>Disables Nagle's algorithm to improve latency for small packets.</para>
  32228. <para>Note: For applications that send large packets or need to transfer a lot of data, this can decrease the total available bandwidth.</para>
  32229. </summary>
  32230. </member>
  32231. <member name="T:Godot.StreamTexture">
  32232. <summary>
  32233. <para>A texture that is loaded from a <c>.stex</c> file.</para>
  32234. </summary>
  32235. </member>
  32236. <member name="P:Godot.StreamTexture.LoadPath">
  32237. <summary>
  32238. <para>The StreamTexture's file path to a <c>.stex</c> file.</para>
  32239. </summary>
  32240. </member>
  32241. <member name="M:Godot.StreamTexture.Load(System.String)">
  32242. <summary>
  32243. <para>Loads the texture from the given path.</para>
  32244. </summary>
  32245. </member>
  32246. <member name="T:Godot.StyleBox">
  32247. <summary>
  32248. <para>StyleBox is <see cref="T:Godot.Resource"/> that provides an abstract base class for drawing stylized boxes for the UI. StyleBoxes are used for drawing the styles of buttons, line edit backgrounds, tree backgrounds, etc. and also for testing a transparency mask for pointer signals. If mask test fails on a StyleBox assigned as mask to a control, clicks and motion signals will go through it to the one below.</para>
  32249. </summary>
  32250. </member>
  32251. <member name="P:Godot.StyleBox.ContentMarginLeft">
  32252. <summary>
  32253. <para>The left margin for the contents of this style box.Increasing this value reduces the space available to the contents from the left.</para>
  32254. <para>Refer to <see cref="P:Godot.StyleBox.ContentMarginBottom"/> for extra considerations.</para>
  32255. </summary>
  32256. </member>
  32257. <member name="P:Godot.StyleBox.ContentMarginRight">
  32258. <summary>
  32259. <para>The right margin for the contents of this style box. Increasing this value reduces the space available to the contents from the right.</para>
  32260. <para>Refer to <see cref="P:Godot.StyleBox.ContentMarginBottom"/> for extra considerations.</para>
  32261. </summary>
  32262. </member>
  32263. <member name="P:Godot.StyleBox.ContentMarginTop">
  32264. <summary>
  32265. <para>The top margin for the contents of this style box. Increasing this value reduces the space available to the contents from the top.</para>
  32266. <para>Refer to <see cref="P:Godot.StyleBox.ContentMarginBottom"/> for extra considerations.</para>
  32267. </summary>
  32268. </member>
  32269. <member name="P:Godot.StyleBox.ContentMarginBottom">
  32270. <summary>
  32271. <para>The bottom margin for the contents of this style box. Increasing this value reduces the space available to the contents from the bottom.</para>
  32272. <para>If this value is negative, it is ignored and a child-specific margin is used instead. For example for <see cref="T:Godot.StyleBoxFlat"/> the border thickness (if any) is used instead.</para>
  32273. <para>It is up to the code using this style box to decide what these contents are: for example, a <see cref="T:Godot.Button"/> respects this content margin for the textual contents of the button.</para>
  32274. <para><see cref="M:Godot.StyleBox.GetMargin(Godot.Margin)"/> should be used to fetch this value as consumer instead of reading these properties directly. This is because it correctly respects negative values and the fallback mentioned above.</para>
  32275. </summary>
  32276. </member>
  32277. <member name="M:Godot.StyleBox.TestMask(Godot.Vector2,Godot.Rect2)">
  32278. <summary>
  32279. <para>Test a position in a rectangle, return whether it passes the mask test.</para>
  32280. </summary>
  32281. </member>
  32282. <member name="M:Godot.StyleBox.SetDefaultMargin(Godot.Margin,System.Single)">
  32283. <summary>
  32284. <para>Sets the default value of the specified <see cref="T:Godot.Margin"/> to given <c>offset</c> in pixels.</para>
  32285. </summary>
  32286. </member>
  32287. <member name="M:Godot.StyleBox.GetDefaultMargin(Godot.Margin)">
  32288. <summary>
  32289. <para>Returns the default value of the specified <see cref="T:Godot.Margin"/>.</para>
  32290. </summary>
  32291. </member>
  32292. <member name="M:Godot.StyleBox.GetMargin(Godot.Margin)">
  32293. <summary>
  32294. <para>Returns the content margin offset for the specified <see cref="T:Godot.Margin"/>.</para>
  32295. <para>Positive values reduce size inwards, unlike <see cref="T:Godot.Control"/>'s margin values.</para>
  32296. </summary>
  32297. </member>
  32298. <member name="M:Godot.StyleBox.GetMinimumSize">
  32299. <summary>
  32300. <para>Returns the minimum size that this stylebox can be shrunk to.</para>
  32301. </summary>
  32302. </member>
  32303. <member name="M:Godot.StyleBox.GetCenterSize">
  32304. <summary>
  32305. <para>Returns the size of this <see cref="T:Godot.StyleBox"/> without the margins.</para>
  32306. </summary>
  32307. </member>
  32308. <member name="M:Godot.StyleBox.GetOffset">
  32309. <summary>
  32310. <para>Returns the "offset" of a stylebox. This helper function returns a value equivalent to <c>Vector2(style.get_margin(MARGIN_LEFT), style.get_margin(MARGIN_TOP))</c>.</para>
  32311. </summary>
  32312. </member>
  32313. <member name="M:Godot.StyleBox.GetCurrentItemDrawn">
  32314. <summary>
  32315. <para>Returns the <see cref="T:Godot.CanvasItem"/> that handles its or <see cref="M:Godot.CanvasItem._Draw"/> callback at this moment.</para>
  32316. </summary>
  32317. </member>
  32318. <member name="M:Godot.StyleBox.Draw(Godot.RID,Godot.Rect2)">
  32319. <summary>
  32320. <para>Draws this stylebox using a <see cref="T:Godot.CanvasItem"/> with given <see cref="T:Godot.RID"/>.</para>
  32321. <para>You can get a <see cref="T:Godot.RID"/> value using <see cref="M:Godot.Object.GetInstanceId"/> on a <see cref="T:Godot.CanvasItem"/>-derived node.</para>
  32322. </summary>
  32323. </member>
  32324. <member name="T:Godot.StyleBoxEmpty">
  32325. <summary>
  32326. <para>Empty stylebox (really does not display anything).</para>
  32327. </summary>
  32328. </member>
  32329. <member name="T:Godot.StyleBoxFlat">
  32330. <summary>
  32331. <para>This <see cref="T:Godot.StyleBox"/> can be used to achieve all kinds of looks without the need of a texture. Those properties are customizable:</para>
  32332. <para>- Color</para>
  32333. <para>- Border width (individual width for each border)</para>
  32334. <para>- Rounded corners (individual radius for each corner)</para>
  32335. <para>- Shadow (with blur and offset)</para>
  32336. <para>Setting corner radius to high values is allowed. As soon as corners would overlap, the stylebox will switch to a relative system. Example:</para>
  32337. <para><code>
  32338. height = 30
  32339. corner_radius_top_left = 50
  32340. corner_radius_bottom_left = 100
  32341. </code></para>
  32342. <para>The relative system now would take the 1:2 ratio of the two left corners to calculate the actual corner width. Both corners added will never be more than the height. Result:</para>
  32343. <para><code>
  32344. corner_radius_top_left: 10
  32345. corner_radius_bottom_left: 20
  32346. </code></para>
  32347. </summary>
  32348. </member>
  32349. <member name="P:Godot.StyleBoxFlat.BgColor">
  32350. <summary>
  32351. <para>The background color of the stylebox.</para>
  32352. </summary>
  32353. </member>
  32354. <member name="P:Godot.StyleBoxFlat.DrawCenter">
  32355. <summary>
  32356. <para>Toggles drawing of the inner part of the stylebox.</para>
  32357. </summary>
  32358. </member>
  32359. <member name="P:Godot.StyleBoxFlat.BorderWidthLeft">
  32360. <summary>
  32361. <para>Border width for the left border.</para>
  32362. </summary>
  32363. </member>
  32364. <member name="P:Godot.StyleBoxFlat.BorderWidthTop">
  32365. <summary>
  32366. <para>Border width for the top border.</para>
  32367. </summary>
  32368. </member>
  32369. <member name="P:Godot.StyleBoxFlat.BorderWidthRight">
  32370. <summary>
  32371. <para>Border width for the right border.</para>
  32372. </summary>
  32373. </member>
  32374. <member name="P:Godot.StyleBoxFlat.BorderWidthBottom">
  32375. <summary>
  32376. <para>Border width for the bottom border.</para>
  32377. </summary>
  32378. </member>
  32379. <member name="P:Godot.StyleBoxFlat.BorderColor">
  32380. <summary>
  32381. <para>Sets the color of the border.</para>
  32382. </summary>
  32383. </member>
  32384. <member name="P:Godot.StyleBoxFlat.BorderBlend">
  32385. <summary>
  32386. <para>If <c>true</c>, the border will fade into the background color.</para>
  32387. </summary>
  32388. </member>
  32389. <member name="P:Godot.StyleBoxFlat.CornerRadiusTopLeft">
  32390. <summary>
  32391. <para>The top-left corner's radius. If <c>0</c>, the corner is not rounded.</para>
  32392. </summary>
  32393. </member>
  32394. <member name="P:Godot.StyleBoxFlat.CornerRadiusTopRight">
  32395. <summary>
  32396. <para>The top-right corner's radius. If <c>0</c>, the corner is not rounded.</para>
  32397. </summary>
  32398. </member>
  32399. <member name="P:Godot.StyleBoxFlat.CornerRadiusBottomRight">
  32400. <summary>
  32401. <para>The bottom-right corner's radius. If <c>0</c>, the corner is not rounded.</para>
  32402. </summary>
  32403. </member>
  32404. <member name="P:Godot.StyleBoxFlat.CornerRadiusBottomLeft">
  32405. <summary>
  32406. <para>The bottom-left corner's radius. If <c>0</c>, the corner is not rounded.</para>
  32407. </summary>
  32408. </member>
  32409. <member name="P:Godot.StyleBoxFlat.CornerDetail">
  32410. <summary>
  32411. <para>This sets the amount of vertices used for each corner. Higher values result in rounder corners but take more processing power to compute. When choosing a value, you should take the corner radius (<see cref="M:Godot.StyleBoxFlat.SetCornerRadiusAll(System.Int32)"/>) into account.</para>
  32412. <para>For corner radii smaller than 10, <c>4</c> or <c>5</c> should be enough. For corner radii smaller than 30, values between <c>8</c> and <c>12</c> should be enough.</para>
  32413. <para>A corner detail of <c>1</c> will result in chamfered corners instead of rounded corners, which is useful for some artistic effects.</para>
  32414. </summary>
  32415. </member>
  32416. <member name="P:Godot.StyleBoxFlat.ExpandMarginLeft">
  32417. <summary>
  32418. <para>Expands the stylebox outside of the control rect on the left edge. Useful in combination with <see cref="P:Godot.StyleBoxFlat.BorderWidthLeft"/> to draw a border outside the control rect.</para>
  32419. </summary>
  32420. </member>
  32421. <member name="P:Godot.StyleBoxFlat.ExpandMarginRight">
  32422. <summary>
  32423. <para>Expands the stylebox outside of the control rect on the right edge. Useful in combination with <see cref="P:Godot.StyleBoxFlat.BorderWidthRight"/> to draw a border outside the control rect.</para>
  32424. </summary>
  32425. </member>
  32426. <member name="P:Godot.StyleBoxFlat.ExpandMarginTop">
  32427. <summary>
  32428. <para>Expands the stylebox outside of the control rect on the top edge. Useful in combination with <see cref="P:Godot.StyleBoxFlat.BorderWidthTop"/> to draw a border outside the control rect.</para>
  32429. </summary>
  32430. </member>
  32431. <member name="P:Godot.StyleBoxFlat.ExpandMarginBottom">
  32432. <summary>
  32433. <para>Expands the stylebox outside of the control rect on the bottom edge. Useful in combination with <see cref="P:Godot.StyleBoxFlat.BorderWidthBottom"/> to draw a border outside the control rect.</para>
  32434. </summary>
  32435. </member>
  32436. <member name="P:Godot.StyleBoxFlat.ShadowColor">
  32437. <summary>
  32438. <para>The color of the shadow. This has no effect if <see cref="P:Godot.StyleBoxFlat.ShadowSize"/> is lower than 1.</para>
  32439. </summary>
  32440. </member>
  32441. <member name="P:Godot.StyleBoxFlat.ShadowSize">
  32442. <summary>
  32443. <para>The shadow size in pixels.</para>
  32444. </summary>
  32445. </member>
  32446. <member name="P:Godot.StyleBoxFlat.ShadowOffset">
  32447. <summary>
  32448. <para>The shadow offset in pixels. Adjusts the position of the shadow relatively to the stylebox.</para>
  32449. </summary>
  32450. </member>
  32451. <member name="P:Godot.StyleBoxFlat.AntiAliasing">
  32452. <summary>
  32453. <para>Antialiasing draws a small ring around the edges, which fades to transparency. As a result, edges look much smoother. This is only noticeable when using rounded corners.</para>
  32454. </summary>
  32455. </member>
  32456. <member name="P:Godot.StyleBoxFlat.AntiAliasingSize">
  32457. <summary>
  32458. <para>This changes the size of the faded ring. Higher values can be used to achieve a "blurry" effect.</para>
  32459. </summary>
  32460. </member>
  32461. <member name="M:Godot.StyleBoxFlat.SetBorderWidthAll(System.Int32)">
  32462. <summary>
  32463. <para>Sets the border width to <c>width</c> pixels for all margins.</para>
  32464. </summary>
  32465. </member>
  32466. <member name="M:Godot.StyleBoxFlat.GetBorderWidthMin">
  32467. <summary>
  32468. <para>Returns the smallest border width out of all four borders.</para>
  32469. </summary>
  32470. </member>
  32471. <member name="M:Godot.StyleBoxFlat.SetBorderWidth(Godot.Margin,System.Int32)">
  32472. <summary>
  32473. <para>Sets the border width to <c>width</c> pixels for the given <c>margin</c>. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32474. </summary>
  32475. </member>
  32476. <member name="M:Godot.StyleBoxFlat.GetBorderWidth(Godot.Margin)">
  32477. <summary>
  32478. <para>Returns the given <c>margin</c>'s border width. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32479. </summary>
  32480. </member>
  32481. <member name="M:Godot.StyleBoxFlat.SetCornerRadiusIndividual(System.Int32,System.Int32,System.Int32,System.Int32)">
  32482. <summary>
  32483. <para>Sets the corner radius for each corner to <c>radius_top_left</c>, <c>radius_top_right</c>, <c>radius_bottom_right</c>, and <c>radius_bottom_left</c> pixels.</para>
  32484. </summary>
  32485. </member>
  32486. <member name="M:Godot.StyleBoxFlat.SetCornerRadiusAll(System.Int32)">
  32487. <summary>
  32488. <para>Sets the corner radius to <c>radius</c> pixels for all corners.</para>
  32489. </summary>
  32490. </member>
  32491. <member name="M:Godot.StyleBoxFlat.SetCornerRadius(Godot.Corner,System.Int32)">
  32492. <summary>
  32493. <para>Sets the corner radius to <c>radius</c> pixels for the given <c>corner</c>. See <see cref="T:Godot.Corner"/> for possible values.</para>
  32494. </summary>
  32495. </member>
  32496. <member name="M:Godot.StyleBoxFlat.GetCornerRadius(Godot.Corner)">
  32497. <summary>
  32498. <para>Returns the given <c>corner</c>'s radius. See <see cref="T:Godot.Corner"/> for possible values.</para>
  32499. </summary>
  32500. </member>
  32501. <member name="M:Godot.StyleBoxFlat.SetExpandMargin(Godot.Margin,System.Single)">
  32502. <summary>
  32503. <para>Sets the expand margin to <c>size</c> pixels for the given <c>margin</c>. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32504. </summary>
  32505. </member>
  32506. <member name="M:Godot.StyleBoxFlat.SetExpandMarginAll(System.Single)">
  32507. <summary>
  32508. <para>Sets the expand margin to <c>size</c> pixels for all margins.</para>
  32509. </summary>
  32510. </member>
  32511. <member name="M:Godot.StyleBoxFlat.SetExpandMarginIndividual(System.Single,System.Single,System.Single,System.Single)">
  32512. <summary>
  32513. <para>Sets the expand margin for each margin to <c>size_left</c>, <c>size_top</c>, <c>size_right</c>, and <c>size_bottom</c> pixels.</para>
  32514. </summary>
  32515. </member>
  32516. <member name="M:Godot.StyleBoxFlat.GetExpandMargin(Godot.Margin)">
  32517. <summary>
  32518. <para>Returns the size of the given <c>margin</c>'s expand margin. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32519. </summary>
  32520. </member>
  32521. <member name="T:Godot.StyleBoxLine">
  32522. <summary>
  32523. <para><see cref="T:Godot.StyleBox"/> that displays a single line of a given color and thickness. It can be used to draw things like separators.</para>
  32524. </summary>
  32525. </member>
  32526. <member name="P:Godot.StyleBoxLine.Color">
  32527. <summary>
  32528. <para>The line's color.</para>
  32529. </summary>
  32530. </member>
  32531. <member name="P:Godot.StyleBoxLine.GrowBegin">
  32532. <summary>
  32533. <para>The number of pixels the line will extend before the <see cref="T:Godot.StyleBoxLine"/>'s bounds. If set to a negative value, the line will begin inside the <see cref="T:Godot.StyleBoxLine"/>'s bounds.</para>
  32534. </summary>
  32535. </member>
  32536. <member name="P:Godot.StyleBoxLine.GrowEnd">
  32537. <summary>
  32538. <para>The number of pixels the line will extend past the <see cref="T:Godot.StyleBoxLine"/>'s bounds. If set to a negative value, the line will end inside the <see cref="T:Godot.StyleBoxLine"/>'s bounds.</para>
  32539. </summary>
  32540. </member>
  32541. <member name="P:Godot.StyleBoxLine.Thickness">
  32542. <summary>
  32543. <para>The line's thickness in pixels.</para>
  32544. </summary>
  32545. </member>
  32546. <member name="P:Godot.StyleBoxLine.Vertical">
  32547. <summary>
  32548. <para>If <c>true</c>, the line will be vertical. If <c>false</c>, the line will be horizontal.</para>
  32549. </summary>
  32550. </member>
  32551. <member name="T:Godot.StyleBoxTexture">
  32552. <summary>
  32553. <para>Texture-based nine-patch <see cref="T:Godot.StyleBox"/>, in a way similar to <see cref="T:Godot.NinePatchRect"/>. This stylebox performs a 3×3 scaling of a texture, where only the center cell is fully stretched. This makes it possible to design bordered styles regardless of the stylebox's size.</para>
  32554. </summary>
  32555. </member>
  32556. <member name="F:Godot.StyleBoxTexture.AxisStretchMode.Stretch">
  32557. <summary>
  32558. <para>Stretch the stylebox's texture. This results in visible distortion unless the texture size matches the stylebox's size perfectly.</para>
  32559. </summary>
  32560. </member>
  32561. <member name="F:Godot.StyleBoxTexture.AxisStretchMode.Tile">
  32562. <summary>
  32563. <para>Repeats the stylebox's texture to match the stylebox's size according to the nine-patch system.</para>
  32564. </summary>
  32565. </member>
  32566. <member name="F:Godot.StyleBoxTexture.AxisStretchMode.TileFit">
  32567. <summary>
  32568. <para>Repeats the stylebox's texture to match the stylebox's size according to the nine-patch system. Unlike , the texture may be slightly stretched to make the nine-patch texture tile seamlessly.</para>
  32569. </summary>
  32570. </member>
  32571. <member name="P:Godot.StyleBoxTexture.Texture">
  32572. <summary>
  32573. <para>The texture to use when drawing this style box.</para>
  32574. </summary>
  32575. </member>
  32576. <member name="P:Godot.StyleBoxTexture.NormalMap">
  32577. <summary>
  32578. <para>The normal map to use when drawing this style box.</para>
  32579. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  32580. </summary>
  32581. </member>
  32582. <member name="P:Godot.StyleBoxTexture.RegionRect">
  32583. <summary>
  32584. <para>Species a sub-region of the texture to use.</para>
  32585. <para>This is equivalent to first wrapping the texture in an <see cref="T:Godot.AtlasTexture"/> with the same region.</para>
  32586. </summary>
  32587. </member>
  32588. <member name="P:Godot.StyleBoxTexture.MarginLeft">
  32589. <summary>
  32590. <para>Increases the left margin of the 3×3 texture box.</para>
  32591. <para>A higher value means more of the source texture is considered to be part of the left border of the 3×3 box.</para>
  32592. <para>This is also the value used as fallback for <see cref="P:Godot.StyleBox.ContentMarginLeft"/> if it is negative.</para>
  32593. </summary>
  32594. </member>
  32595. <member name="P:Godot.StyleBoxTexture.MarginRight">
  32596. <summary>
  32597. <para>Increases the right margin of the 3×3 texture box.</para>
  32598. <para>A higher value means more of the source texture is considered to be part of the right border of the 3×3 box.</para>
  32599. <para>This is also the value used as fallback for <see cref="P:Godot.StyleBox.ContentMarginRight"/> if it is negative.</para>
  32600. </summary>
  32601. </member>
  32602. <member name="P:Godot.StyleBoxTexture.MarginTop">
  32603. <summary>
  32604. <para>Increases the top margin of the 3×3 texture box.</para>
  32605. <para>A higher value means more of the source texture is considered to be part of the top border of the 3×3 box.</para>
  32606. <para>This is also the value used as fallback for <see cref="P:Godot.StyleBox.ContentMarginTop"/> if it is negative.</para>
  32607. </summary>
  32608. </member>
  32609. <member name="P:Godot.StyleBoxTexture.MarginBottom">
  32610. <summary>
  32611. <para>Increases the bottom margin of the 3×3 texture box.</para>
  32612. <para>A higher value means more of the source texture is considered to be part of the bottom border of the 3×3 box.</para>
  32613. <para>This is also the value used as fallback for <see cref="P:Godot.StyleBox.ContentMarginBottom"/> if it is negative.</para>
  32614. </summary>
  32615. </member>
  32616. <member name="P:Godot.StyleBoxTexture.ExpandMarginLeft">
  32617. <summary>
  32618. <para>Expands the left margin of this style box when drawing, causing it to be drawn larger than requested.</para>
  32619. </summary>
  32620. </member>
  32621. <member name="P:Godot.StyleBoxTexture.ExpandMarginRight">
  32622. <summary>
  32623. <para>Expands the right margin of this style box when drawing, causing it to be drawn larger than requested.</para>
  32624. </summary>
  32625. </member>
  32626. <member name="P:Godot.StyleBoxTexture.ExpandMarginTop">
  32627. <summary>
  32628. <para>Expands the top margin of this style box when drawing, causing it to be drawn larger than requested.</para>
  32629. </summary>
  32630. </member>
  32631. <member name="P:Godot.StyleBoxTexture.ExpandMarginBottom">
  32632. <summary>
  32633. <para>Expands the bottom margin of this style box when drawing, causing it to be drawn larger than requested.</para>
  32634. </summary>
  32635. </member>
  32636. <member name="P:Godot.StyleBoxTexture.AxisStretchHorizontal">
  32637. <summary>
  32638. <para>Controls how the stylebox's texture will be stretched or tiled horizontally. See <see cref="T:Godot.StyleBoxTexture.AxisStretchMode"/> for possible values.</para>
  32639. </summary>
  32640. </member>
  32641. <member name="P:Godot.StyleBoxTexture.AxisStretchVertical">
  32642. <summary>
  32643. <para>Controls how the stylebox's texture will be stretched or tiled vertically. See <see cref="T:Godot.StyleBoxTexture.AxisStretchMode"/> for possible values.</para>
  32644. </summary>
  32645. </member>
  32646. <member name="P:Godot.StyleBoxTexture.ModulateColor">
  32647. <summary>
  32648. <para>Modulates the color of the texture when this style box is drawn.</para>
  32649. </summary>
  32650. </member>
  32651. <member name="P:Godot.StyleBoxTexture.DrawCenter">
  32652. <summary>
  32653. <para>If <c>true</c>, the nine-patch texture's center tile will be drawn.</para>
  32654. </summary>
  32655. </member>
  32656. <member name="M:Godot.StyleBoxTexture.SetMarginSize(Godot.Margin,System.Single)">
  32657. <summary>
  32658. <para>Sets the margin to <c>size</c> pixels for the given <c>margin</c>. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32659. </summary>
  32660. </member>
  32661. <member name="M:Godot.StyleBoxTexture.GetMarginSize(Godot.Margin)">
  32662. <summary>
  32663. <para>Returns the size of the given <c>margin</c>. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32664. </summary>
  32665. </member>
  32666. <member name="M:Godot.StyleBoxTexture.SetExpandMarginSize(Godot.Margin,System.Single)">
  32667. <summary>
  32668. <para>Sets the expand margin to <c>size</c> pixels for the given <c>margin</c>. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32669. </summary>
  32670. </member>
  32671. <member name="M:Godot.StyleBoxTexture.SetExpandMarginAll(System.Single)">
  32672. <summary>
  32673. <para>Sets the expand margin to <c>size</c> pixels for all margins.</para>
  32674. </summary>
  32675. </member>
  32676. <member name="M:Godot.StyleBoxTexture.SetExpandMarginIndividual(System.Single,System.Single,System.Single,System.Single)">
  32677. <summary>
  32678. <para>Sets the expand margin for each margin to <c>size_left</c>, <c>size_top</c>, <c>size_right</c>, and <c>size_bottom</c> pixels.</para>
  32679. </summary>
  32680. </member>
  32681. <member name="M:Godot.StyleBoxTexture.GetExpandMarginSize(Godot.Margin)">
  32682. <summary>
  32683. <para>Returns the size of the given <c>margin</c>'s expand margin. See <see cref="T:Godot.Margin"/> for possible values.</para>
  32684. </summary>
  32685. </member>
  32686. <member name="T:Godot.SurfaceTool">
  32687. <summary>
  32688. <para>The <see cref="T:Godot.SurfaceTool"/> is used to construct a <see cref="T:Godot.Mesh"/> by specifying vertex attributes individually. It can be used to construct a <see cref="T:Godot.Mesh"/> from a script. All properties except indices need to be added before calling <see cref="M:Godot.SurfaceTool.AddVertex(Godot.Vector3)"/>. For example, to add vertex colors and UVs:</para>
  32689. <para><code>
  32690. var st = SurfaceTool.new()
  32691. st.begin(Mesh.PRIMITIVE_TRIANGLES)
  32692. st.add_color(Color(1, 0, 0))
  32693. st.add_uv(Vector2(0, 0))
  32694. st.add_vertex(Vector3(0, 0, 0))
  32695. </code></para>
  32696. <para>The above <see cref="T:Godot.SurfaceTool"/> now contains one vertex of a triangle which has a UV coordinate and a specified <see cref="T:Godot.Color"/>. If another vertex were added without calling <see cref="M:Godot.SurfaceTool.AddUv(Godot.Vector2)"/> or <see cref="M:Godot.SurfaceTool.AddColor(Godot.Color)"/>, then the last values would be used.</para>
  32697. <para>Vertex attributes must be passed before calling <see cref="M:Godot.SurfaceTool.AddVertex(Godot.Vector3)"/>. Failure to do so will result in an error when committing the vertex information to a mesh.</para>
  32698. <para>Additionally, the attributes used before the first vertex is added determine the format of the mesh. For example, if you only add UVs to the first vertex, you cannot add color to any of the subsequent vertices.</para>
  32699. <para>See also <see cref="T:Godot.ArrayMesh"/>, <see cref="T:Godot.ImmediateGeometry"/> and <see cref="T:Godot.MeshDataTool"/> for procedural geometry generation.</para>
  32700. <para>Note: Godot uses clockwise <a href="https://learnopengl.com/Advanced-OpenGL/Face-culling">winding order</a> for front faces of triangle primitive modes.</para>
  32701. </summary>
  32702. </member>
  32703. <member name="M:Godot.SurfaceTool.Begin(Godot.Mesh.PrimitiveType)">
  32704. <summary>
  32705. <para>Called before adding any vertices. Takes the primitive type as an argument (e.g. ).</para>
  32706. </summary>
  32707. </member>
  32708. <member name="M:Godot.SurfaceTool.AddVertex(Godot.Vector3)">
  32709. <summary>
  32710. <para>Specifies the position of current vertex. Should be called after specifying other vertex properties (e.g. Color, UV).</para>
  32711. </summary>
  32712. </member>
  32713. <member name="M:Godot.SurfaceTool.AddColor(Godot.Color)">
  32714. <summary>
  32715. <para>Specifies a <see cref="T:Godot.Color"/> for the next vertex to use.</para>
  32716. </summary>
  32717. </member>
  32718. <member name="M:Godot.SurfaceTool.AddNormal(Godot.Vector3)">
  32719. <summary>
  32720. <para>Specifies a normal for the next vertex to use.</para>
  32721. </summary>
  32722. </member>
  32723. <member name="M:Godot.SurfaceTool.AddTangent(Godot.Plane)">
  32724. <summary>
  32725. <para>Specifies a tangent for the next vertex to use.</para>
  32726. </summary>
  32727. </member>
  32728. <member name="M:Godot.SurfaceTool.AddUv(Godot.Vector2)">
  32729. <summary>
  32730. <para>Specifies a set of UV coordinates to use for the next vertex.</para>
  32731. </summary>
  32732. </member>
  32733. <member name="M:Godot.SurfaceTool.AddUv2(Godot.Vector2)">
  32734. <summary>
  32735. <para>Specifies an optional second set of UV coordinates to use for the next vertex.</para>
  32736. </summary>
  32737. </member>
  32738. <member name="M:Godot.SurfaceTool.AddBones(System.Int32[])">
  32739. <summary>
  32740. <para>Adds an array of bones for the next vertex to use. <c>bones</c> must contain 4 integers.</para>
  32741. </summary>
  32742. </member>
  32743. <member name="M:Godot.SurfaceTool.AddWeights(System.Single[])">
  32744. <summary>
  32745. <para>Specifies weight values for next vertex to use. <c>weights</c> must contain 4 values.</para>
  32746. </summary>
  32747. </member>
  32748. <member name="M:Godot.SurfaceTool.AddSmoothGroup(System.Boolean)">
  32749. <summary>
  32750. <para>Specifies whether the current vertex (if using only vertex arrays) or current index (if also using index arrays) should use smooth normals for normal calculation.</para>
  32751. </summary>
  32752. </member>
  32753. <member name="M:Godot.SurfaceTool.AddTriangleFan(Godot.Vector3[],Godot.Vector2[],Godot.Color[],Godot.Vector2[],Godot.Vector3[],Godot.Collections.Array)">
  32754. <summary>
  32755. <para>Inserts a triangle fan made of array data into <see cref="T:Godot.Mesh"/> being constructed.</para>
  32756. <para>Requires the primitive type be set to .</para>
  32757. </summary>
  32758. <param name="uvs">If the parameter is null, then the default value is new Vector2[] {}</param>
  32759. <param name="colors">If the parameter is null, then the default value is new Color[] {}</param>
  32760. <param name="uv2s">If the parameter is null, then the default value is new Vector2[] {}</param>
  32761. <param name="normals">If the parameter is null, then the default value is new Vector3[] {}</param>
  32762. <param name="tangents">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  32763. </member>
  32764. <member name="M:Godot.SurfaceTool.AddIndex(System.Int32)">
  32765. <summary>
  32766. <para>Adds an index to index array if you are using indexed vertices. Does not need to be called before adding vertices.</para>
  32767. </summary>
  32768. </member>
  32769. <member name="M:Godot.SurfaceTool.Index">
  32770. <summary>
  32771. <para>Shrinks the vertex array by creating an index array (avoids reusing vertices).</para>
  32772. </summary>
  32773. </member>
  32774. <member name="M:Godot.SurfaceTool.Deindex">
  32775. <summary>
  32776. <para>Removes the index array by expanding the vertex array.</para>
  32777. </summary>
  32778. </member>
  32779. <member name="M:Godot.SurfaceTool.GenerateNormals(System.Boolean)">
  32780. <summary>
  32781. <para>Generates normals from vertices so you do not have to do it manually. If <c>flip</c> is <c>true</c>, the resulting normals will be inverted.</para>
  32782. <para>Requires the primitive type to be set to .</para>
  32783. </summary>
  32784. </member>
  32785. <member name="M:Godot.SurfaceTool.GenerateTangents">
  32786. <summary>
  32787. <para>Generates a tangent vector for each vertex. Requires that each vertex have UVs and normals set already.</para>
  32788. </summary>
  32789. </member>
  32790. <member name="M:Godot.SurfaceTool.SetMaterial(Godot.Material)">
  32791. <summary>
  32792. <para>Sets <see cref="T:Godot.Material"/> to be used by the <see cref="T:Godot.Mesh"/> you are constructing.</para>
  32793. </summary>
  32794. </member>
  32795. <member name="M:Godot.SurfaceTool.Clear">
  32796. <summary>
  32797. <para>Clear all information passed into the surface tool so far.</para>
  32798. </summary>
  32799. </member>
  32800. <member name="M:Godot.SurfaceTool.CreateFrom(Godot.Mesh,System.Int32)">
  32801. <summary>
  32802. <para>Creates a vertex array from an existing <see cref="T:Godot.Mesh"/>.</para>
  32803. </summary>
  32804. </member>
  32805. <member name="M:Godot.SurfaceTool.CreateFromBlendShape(Godot.Mesh,System.Int32,System.String)">
  32806. <summary>
  32807. <para>Creates a vertex array from the specified blend shape of an existing <see cref="T:Godot.Mesh"/>. This can be used to extract a specific pose from a blend shape.</para>
  32808. </summary>
  32809. </member>
  32810. <member name="M:Godot.SurfaceTool.AppendFrom(Godot.Mesh,System.Int32,Godot.Transform)">
  32811. <summary>
  32812. <para>Append vertices from a given <see cref="T:Godot.Mesh"/> surface onto the current vertex array with specified <see cref="T:Godot.Transform"/>.</para>
  32813. </summary>
  32814. </member>
  32815. <member name="M:Godot.SurfaceTool.Commit(Godot.ArrayMesh,System.UInt32)">
  32816. <summary>
  32817. <para>Returns a constructed <see cref="T:Godot.ArrayMesh"/> from current information passed in. If an existing <see cref="T:Godot.ArrayMesh"/> is passed in as an argument, will add an extra surface to the existing <see cref="T:Godot.ArrayMesh"/>.</para>
  32818. <para>Default flag is . See <c>ARRAY_COMPRESS_*</c> constants in <see cref="T:Godot.Mesh.ArrayFormat"/> for other flags.</para>
  32819. </summary>
  32820. </member>
  32821. <member name="M:Godot.SurfaceTool.CommitToArrays">
  32822. <summary>
  32823. <para>Commits the data to the same format used by <see cref="M:Godot.ArrayMesh.AddSurfaceFromArrays(Godot.Mesh.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)"/>. This way you can further process the mesh data using the <see cref="T:Godot.ArrayMesh"/> API.</para>
  32824. </summary>
  32825. </member>
  32826. <member name="T:Godot.TCP_Server">
  32827. <summary>
  32828. <para>A TCP server. Listens to connections on a port and returns a <see cref="T:Godot.StreamPeerTCP"/> when it gets an incoming connection.</para>
  32829. </summary>
  32830. </member>
  32831. <member name="M:Godot.TCP_Server.Listen(System.UInt16,System.String)">
  32832. <summary>
  32833. <para>Listen on the <c>port</c> binding to <c>bind_address</c>.</para>
  32834. <para>If <c>bind_address</c> is set as <c>"*"</c> (default), the server will listen on all available addresses (both IPv4 and IPv6).</para>
  32835. <para>If <c>bind_address</c> is set as <c>"0.0.0.0"</c> (for IPv4) or <c>"::"</c> (for IPv6), the server will listen on all available addresses matching that IP type.</para>
  32836. <para>If <c>bind_address</c> is set to any valid address (e.g. <c>"192.168.1.101"</c>, <c>"::1"</c>, etc), the server will only listen on the interface with that addresses (or fail if no interface with the given address exists).</para>
  32837. </summary>
  32838. </member>
  32839. <member name="M:Godot.TCP_Server.IsConnectionAvailable">
  32840. <summary>
  32841. <para>Returns <c>true</c> if a connection is available for taking.</para>
  32842. </summary>
  32843. </member>
  32844. <member name="M:Godot.TCP_Server.IsListening">
  32845. <summary>
  32846. <para>Returns <c>true</c> if the server is currently listening for connections.</para>
  32847. </summary>
  32848. </member>
  32849. <member name="M:Godot.TCP_Server.TakeConnection">
  32850. <summary>
  32851. <para>If a connection is available, returns a StreamPeerTCP with the connection.</para>
  32852. </summary>
  32853. </member>
  32854. <member name="M:Godot.TCP_Server.Stop">
  32855. <summary>
  32856. <para>Stops listening.</para>
  32857. </summary>
  32858. </member>
  32859. <member name="T:Godot.TabContainer">
  32860. <summary>
  32861. <para>Sets the active tab's <c>visible</c> property to the value <c>true</c>. Sets all other children's to <c>false</c>.</para>
  32862. <para>Ignores non-<see cref="T:Godot.Control"/> children.</para>
  32863. <para>Individual tabs are always visible unless you use <see cref="M:Godot.TabContainer.SetTabDisabled(System.Int32,System.Boolean)"/> and <see cref="M:Godot.TabContainer.SetTabTitle(System.Int32,System.String)"/> to hide it.</para>
  32864. <para>To hide only a tab's content, nest the content inside a child <see cref="T:Godot.Control"/>, so it receives the <see cref="T:Godot.TabContainer"/>'s visibility setting instead.</para>
  32865. </summary>
  32866. </member>
  32867. <member name="F:Godot.TabContainer.TabAlignEnum.Left">
  32868. <summary>
  32869. <para>Align the tabs to the left.</para>
  32870. </summary>
  32871. </member>
  32872. <member name="F:Godot.TabContainer.TabAlignEnum.Center">
  32873. <summary>
  32874. <para>Align the tabs to the center.</para>
  32875. </summary>
  32876. </member>
  32877. <member name="F:Godot.TabContainer.TabAlignEnum.Right">
  32878. <summary>
  32879. <para>Align the tabs to the right.</para>
  32880. </summary>
  32881. </member>
  32882. <member name="P:Godot.TabContainer.TabAlign">
  32883. <summary>
  32884. <para>The alignment of all tabs in the tab container. See the <see cref="T:Godot.TabContainer.TabAlignEnum"/> constants for details.</para>
  32885. </summary>
  32886. </member>
  32887. <member name="P:Godot.TabContainer.CurrentTab">
  32888. <summary>
  32889. <para>The current tab index. When set, this index's <see cref="T:Godot.Control"/> node's <c>visible</c> property is set to <c>true</c> and all others are set to <c>false</c>.</para>
  32890. </summary>
  32891. </member>
  32892. <member name="P:Godot.TabContainer.TabsVisible">
  32893. <summary>
  32894. <para>If <c>true</c>, tabs are visible. If <c>false</c>, tabs' content and titles are hidden.</para>
  32895. </summary>
  32896. </member>
  32897. <member name="P:Godot.TabContainer.DragToRearrangeEnabled">
  32898. <summary>
  32899. <para>If <c>true</c>, tabs can be rearranged with mouse drag.</para>
  32900. </summary>
  32901. </member>
  32902. <member name="P:Godot.TabContainer.UseHiddenTabsForMinSize">
  32903. <summary>
  32904. <para>If <c>true</c>, children <see cref="T:Godot.Control"/> nodes that are hidden have their minimum size take into account in the total, instead of only the currently visible one.</para>
  32905. </summary>
  32906. </member>
  32907. <member name="M:Godot.TabContainer.GetTabCount">
  32908. <summary>
  32909. <para>Returns the number of tabs.</para>
  32910. </summary>
  32911. </member>
  32912. <member name="M:Godot.TabContainer.GetPreviousTab">
  32913. <summary>
  32914. <para>Returns the previously active tab index.</para>
  32915. </summary>
  32916. </member>
  32917. <member name="M:Godot.TabContainer.GetCurrentTabControl">
  32918. <summary>
  32919. <para>Returns the child <see cref="T:Godot.Control"/> node located at the active tab index.</para>
  32920. </summary>
  32921. </member>
  32922. <member name="M:Godot.TabContainer.GetTabControl(System.Int32)">
  32923. <summary>
  32924. <para>Returns the <see cref="T:Godot.Control"/> node from the tab at index <c>tab_idx</c>.</para>
  32925. </summary>
  32926. </member>
  32927. <member name="M:Godot.TabContainer.SetTabTitle(System.Int32,System.String)">
  32928. <summary>
  32929. <para>Sets a title for the tab at index <c>tab_idx</c>. Tab titles default to the name of the indexed child node, but this can be overridden with <see cref="M:Godot.TabContainer.SetTabTitle(System.Int32,System.String)"/>.</para>
  32930. </summary>
  32931. </member>
  32932. <member name="M:Godot.TabContainer.GetTabTitle(System.Int32)">
  32933. <summary>
  32934. <para>Returns the title of the tab at index <c>tab_idx</c>. Tab titles default to the name of the indexed child node, but this can be overridden with <see cref="M:Godot.TabContainer.SetTabTitle(System.Int32,System.String)"/>.</para>
  32935. </summary>
  32936. </member>
  32937. <member name="M:Godot.TabContainer.SetTabIcon(System.Int32,Godot.Texture)">
  32938. <summary>
  32939. <para>Sets an icon for the tab at index <c>tab_idx</c>.</para>
  32940. </summary>
  32941. </member>
  32942. <member name="M:Godot.TabContainer.GetTabIcon(System.Int32)">
  32943. <summary>
  32944. <para>Returns the <see cref="T:Godot.Texture"/> for the tab at index <c>tab_idx</c> or <c>null</c> if the tab has no <see cref="T:Godot.Texture"/>.</para>
  32945. </summary>
  32946. </member>
  32947. <member name="M:Godot.TabContainer.SetTabDisabled(System.Int32,System.Boolean)">
  32948. <summary>
  32949. <para>If <c>disabled</c> is <c>false</c>, hides the tab at index <c>tab_idx</c>.</para>
  32950. <para>Note: Its title text will remain, unless also removed with <see cref="M:Godot.TabContainer.SetTabTitle(System.Int32,System.String)"/>.</para>
  32951. </summary>
  32952. </member>
  32953. <member name="M:Godot.TabContainer.GetTabDisabled(System.Int32)">
  32954. <summary>
  32955. <para>Returns <c>true</c> if the tab at index <c>tab_idx</c> is disabled.</para>
  32956. </summary>
  32957. </member>
  32958. <member name="M:Godot.TabContainer.SetPopup(Godot.Node)">
  32959. <summary>
  32960. <para>If set on a <see cref="T:Godot.Popup"/> node instance, a popup menu icon appears in the top-right corner of the <see cref="T:Godot.TabContainer"/>. Clicking it will expand the <see cref="T:Godot.Popup"/> node.</para>
  32961. </summary>
  32962. </member>
  32963. <member name="M:Godot.TabContainer.GetPopup">
  32964. <summary>
  32965. <para>Returns the <see cref="T:Godot.Popup"/> node instance if one has been set already with <see cref="M:Godot.TabContainer.SetPopup(Godot.Node)"/>.</para>
  32966. </summary>
  32967. </member>
  32968. <member name="M:Godot.TabContainer.SetTabsRearrangeGroup(System.Int32)">
  32969. <summary>
  32970. <para>Defines rearrange group id, choose for each <see cref="T:Godot.TabContainer"/> the same value to enable tab drag between <see cref="T:Godot.TabContainer"/>. Enable drag with <c>set_drag_to_rearrange_enabled(true)</c>.</para>
  32971. </summary>
  32972. </member>
  32973. <member name="M:Godot.TabContainer.GetTabsRearrangeGroup">
  32974. <summary>
  32975. <para>Returns the <see cref="T:Godot.TabContainer"/> rearrange group id.</para>
  32976. </summary>
  32977. </member>
  32978. <member name="T:Godot.Tabs">
  32979. <summary>
  32980. <para>Simple tabs control, similar to <see cref="T:Godot.TabContainer"/> but is only in charge of drawing tabs, not interact with children.</para>
  32981. </summary>
  32982. </member>
  32983. <member name="F:Godot.Tabs.CloseButtonDisplayPolicy.ShowNever">
  32984. <summary>
  32985. <para>Never show the close buttons.</para>
  32986. </summary>
  32987. </member>
  32988. <member name="F:Godot.Tabs.CloseButtonDisplayPolicy.ShowActiveOnly">
  32989. <summary>
  32990. <para>Only show the close button on the currently active tab.</para>
  32991. </summary>
  32992. </member>
  32993. <member name="F:Godot.Tabs.CloseButtonDisplayPolicy.ShowAlways">
  32994. <summary>
  32995. <para>Show the close button on all tabs.</para>
  32996. </summary>
  32997. </member>
  32998. <member name="F:Godot.Tabs.CloseButtonDisplayPolicy.Max">
  32999. <summary>
  33000. <para>Represents the size of the <see cref="T:Godot.Tabs.CloseButtonDisplayPolicy"/> enum.</para>
  33001. </summary>
  33002. </member>
  33003. <member name="F:Godot.Tabs.TabAlignEnum.Left">
  33004. <summary>
  33005. <para>Align the tabs to the left.</para>
  33006. </summary>
  33007. </member>
  33008. <member name="F:Godot.Tabs.TabAlignEnum.Center">
  33009. <summary>
  33010. <para>Align the tabs to the center.</para>
  33011. </summary>
  33012. </member>
  33013. <member name="F:Godot.Tabs.TabAlignEnum.Right">
  33014. <summary>
  33015. <para>Align the tabs to the right.</para>
  33016. </summary>
  33017. </member>
  33018. <member name="F:Godot.Tabs.TabAlignEnum.Max">
  33019. <summary>
  33020. <para>Represents the size of the <see cref="T:Godot.Tabs.TabAlignEnum"/> enum.</para>
  33021. </summary>
  33022. </member>
  33023. <member name="P:Godot.Tabs.CurrentTab">
  33024. <summary>
  33025. <para>Select tab at index <c>tab_idx</c>.</para>
  33026. </summary>
  33027. </member>
  33028. <member name="P:Godot.Tabs.TabAlign">
  33029. <summary>
  33030. <para>The alignment of all tabs. See <see cref="T:Godot.Tabs.TabAlignEnum"/> for details.</para>
  33031. </summary>
  33032. </member>
  33033. <member name="P:Godot.Tabs.TabCloseDisplayPolicy">
  33034. <summary>
  33035. <para>Sets when the close button will appear on the tabs. See <see cref="T:Godot.Tabs.CloseButtonDisplayPolicy"/> for details.</para>
  33036. </summary>
  33037. </member>
  33038. <member name="P:Godot.Tabs.ScrollingEnabled">
  33039. <summary>
  33040. <para>if <c>true</c>, the mouse's scroll wheel cab be used to navigate the scroll view.</para>
  33041. </summary>
  33042. </member>
  33043. <member name="P:Godot.Tabs.DragToRearrangeEnabled">
  33044. <summary>
  33045. <para>If <c>true</c>, tabs can be rearranged with mouse drag.</para>
  33046. </summary>
  33047. </member>
  33048. <member name="M:Godot.Tabs.GetTabCount">
  33049. <summary>
  33050. <para>Returns the number of tabs.</para>
  33051. </summary>
  33052. </member>
  33053. <member name="M:Godot.Tabs.SetTabTitle(System.Int32,System.String)">
  33054. <summary>
  33055. <para>Sets a <c>title</c> for the tab at index <c>tab_idx</c>.</para>
  33056. </summary>
  33057. </member>
  33058. <member name="M:Godot.Tabs.GetTabTitle(System.Int32)">
  33059. <summary>
  33060. <para>Returns the title of the tab at index <c>tab_idx</c>. Tab titles default to the name of the indexed child node, but this can be overridden with <see cref="M:Godot.Tabs.SetTabTitle(System.Int32,System.String)"/>.</para>
  33061. </summary>
  33062. </member>
  33063. <member name="M:Godot.Tabs.SetTabIcon(System.Int32,Godot.Texture)">
  33064. <summary>
  33065. <para>Sets an <c>icon</c> for the tab at index <c>tab_idx</c>.</para>
  33066. </summary>
  33067. </member>
  33068. <member name="M:Godot.Tabs.GetTabIcon(System.Int32)">
  33069. <summary>
  33070. <para>Returns the <see cref="T:Godot.Texture"/> for the tab at index <c>tab_idx</c> or <c>null</c> if the tab has no <see cref="T:Godot.Texture"/>.</para>
  33071. </summary>
  33072. </member>
  33073. <member name="M:Godot.Tabs.SetTabDisabled(System.Int32,System.Boolean)">
  33074. <summary>
  33075. <para>If <c>disabled</c> is <c>false</c>, hides the tab at index <c>tab_idx</c>.</para>
  33076. <para>Note: Its title text will remain unless it is also removed with <see cref="M:Godot.Tabs.SetTabTitle(System.Int32,System.String)"/>.</para>
  33077. </summary>
  33078. </member>
  33079. <member name="M:Godot.Tabs.GetTabDisabled(System.Int32)">
  33080. <summary>
  33081. <para>Returns <c>true</c> if the tab at index <c>tab_idx</c> is disabled.</para>
  33082. </summary>
  33083. </member>
  33084. <member name="M:Godot.Tabs.RemoveTab(System.Int32)">
  33085. <summary>
  33086. <para>Removes the tab at index <c>tab_idx</c>.</para>
  33087. </summary>
  33088. </member>
  33089. <member name="M:Godot.Tabs.AddTab(System.String,Godot.Texture)">
  33090. <summary>
  33091. <para>Adds a new tab.</para>
  33092. </summary>
  33093. </member>
  33094. <member name="M:Godot.Tabs.GetTabOffset">
  33095. <summary>
  33096. <para>Returns the number of hidden tabs offsetted to the left.</para>
  33097. </summary>
  33098. </member>
  33099. <member name="M:Godot.Tabs.GetOffsetButtonsVisible">
  33100. <summary>
  33101. <para>Returns <c>true</c> if the offset buttons (the ones that appear when there's not enough space for all tabs) are visible.</para>
  33102. </summary>
  33103. </member>
  33104. <member name="M:Godot.Tabs.EnsureTabVisible(System.Int32)">
  33105. <summary>
  33106. <para>Moves the scroll view to make the tab visible.</para>
  33107. </summary>
  33108. </member>
  33109. <member name="M:Godot.Tabs.GetTabRect(System.Int32)">
  33110. <summary>
  33111. <para>Returns tab <see cref="T:Godot.Rect2"/> with local position and size.</para>
  33112. </summary>
  33113. </member>
  33114. <member name="M:Godot.Tabs.MoveTab(System.Int32,System.Int32)">
  33115. <summary>
  33116. <para>Moves a tab from <c>from</c> to <c>to</c>.</para>
  33117. </summary>
  33118. </member>
  33119. <member name="M:Godot.Tabs.SetTabsRearrangeGroup(System.Int32)">
  33120. <summary>
  33121. <para>Defines the rearrange group ID. Choose for each <see cref="T:Godot.Tabs"/> the same value to dragging tabs between <see cref="T:Godot.Tabs"/>. Enable drag with <c>set_drag_to_rearrange_enabled(true)</c>.</para>
  33122. </summary>
  33123. </member>
  33124. <member name="M:Godot.Tabs.GetTabsRearrangeGroup">
  33125. <summary>
  33126. <para>Returns the <see cref="T:Godot.Tabs"/>' rearrange group ID.</para>
  33127. </summary>
  33128. </member>
  33129. <member name="M:Godot.Tabs.SetSelectWithRmb(System.Boolean)">
  33130. <summary>
  33131. <para>If <c>true</c>, enables selecting a tab with the right mouse button.</para>
  33132. </summary>
  33133. </member>
  33134. <member name="M:Godot.Tabs.GetSelectWithRmb">
  33135. <summary>
  33136. <para>Returns <c>true</c> if select with right mouse button is enabled.</para>
  33137. </summary>
  33138. </member>
  33139. <member name="T:Godot.TextEdit">
  33140. <summary>
  33141. <para>TextEdit is meant for editing large, multiline text. It also has facilities for editing code, such as syntax highlighting support and multiple levels of undo/redo.</para>
  33142. </summary>
  33143. </member>
  33144. <member name="F:Godot.TextEdit.SearchFlags.MatchCase">
  33145. <summary>
  33146. <para>Match case when searching.</para>
  33147. </summary>
  33148. </member>
  33149. <member name="F:Godot.TextEdit.SearchFlags.WholeWords">
  33150. <summary>
  33151. <para>Match whole words when searching.</para>
  33152. </summary>
  33153. </member>
  33154. <member name="F:Godot.TextEdit.SearchFlags.Backwards">
  33155. <summary>
  33156. <para>Search from end to beginning.</para>
  33157. </summary>
  33158. </member>
  33159. <member name="F:Godot.TextEdit.SearchResult.Column">
  33160. <summary>
  33161. <para>Used to access the result column from <see cref="M:Godot.TextEdit.Search(System.String,System.UInt32,System.Int32,System.Int32)"/>.</para>
  33162. </summary>
  33163. </member>
  33164. <member name="F:Godot.TextEdit.SearchResult.Line">
  33165. <summary>
  33166. <para>Used to access the result line from <see cref="M:Godot.TextEdit.Search(System.String,System.UInt32,System.Int32,System.Int32)"/>.</para>
  33167. </summary>
  33168. </member>
  33169. <member name="F:Godot.TextEdit.MenuItems.Cut">
  33170. <summary>
  33171. <para>Cuts (copies and clears) the selected text.</para>
  33172. </summary>
  33173. </member>
  33174. <member name="F:Godot.TextEdit.MenuItems.Copy">
  33175. <summary>
  33176. <para>Copies the selected text.</para>
  33177. </summary>
  33178. </member>
  33179. <member name="F:Godot.TextEdit.MenuItems.Paste">
  33180. <summary>
  33181. <para>Pastes the clipboard text over the selected text (or at the cursor's position).</para>
  33182. </summary>
  33183. </member>
  33184. <member name="F:Godot.TextEdit.MenuItems.Clear">
  33185. <summary>
  33186. <para>Erases the whole <see cref="T:Godot.TextEdit"/> text.</para>
  33187. </summary>
  33188. </member>
  33189. <member name="F:Godot.TextEdit.MenuItems.SelectAll">
  33190. <summary>
  33191. <para>Selects the whole <see cref="T:Godot.TextEdit"/> text.</para>
  33192. </summary>
  33193. </member>
  33194. <member name="F:Godot.TextEdit.MenuItems.Undo">
  33195. <summary>
  33196. <para>Undoes the previous action.</para>
  33197. </summary>
  33198. </member>
  33199. <member name="F:Godot.TextEdit.MenuItems.Redo">
  33200. <summary>
  33201. <para>Redoes the previous action.</para>
  33202. </summary>
  33203. </member>
  33204. <member name="F:Godot.TextEdit.MenuItems.Max">
  33205. <summary>
  33206. <para>Represents the size of the <see cref="T:Godot.TextEdit.MenuItems"/> enum.</para>
  33207. </summary>
  33208. </member>
  33209. <member name="P:Godot.TextEdit.Text">
  33210. <summary>
  33211. <para>String value of the <see cref="T:Godot.TextEdit"/>.</para>
  33212. </summary>
  33213. </member>
  33214. <member name="P:Godot.TextEdit.Readonly">
  33215. <summary>
  33216. <para>If <c>true</c>, read-only mode is enabled. Existing text cannot be modified and new text cannot be added.</para>
  33217. </summary>
  33218. </member>
  33219. <member name="P:Godot.TextEdit.HighlightCurrentLine">
  33220. <summary>
  33221. <para>If <c>true</c>, the line containing the cursor is highlighted.</para>
  33222. </summary>
  33223. </member>
  33224. <member name="P:Godot.TextEdit.SyntaxHighlighting">
  33225. <summary>
  33226. <para>If <c>true</c>, any custom color properties that have been set for this <see cref="T:Godot.TextEdit"/> will be visible.</para>
  33227. </summary>
  33228. </member>
  33229. <member name="P:Godot.TextEdit.ShowLineNumbers">
  33230. <summary>
  33231. <para>If <c>true</c>, line numbers are displayed to the left of the text.</para>
  33232. </summary>
  33233. </member>
  33234. <member name="P:Godot.TextEdit.DrawTabs">
  33235. <summary>
  33236. <para>If <c>true</c>, the "tab" character will have a visible representation.</para>
  33237. </summary>
  33238. </member>
  33239. <member name="P:Godot.TextEdit.DrawSpaces">
  33240. <summary>
  33241. <para>If <c>true</c>, the "space" character will have a visible representation.</para>
  33242. </summary>
  33243. </member>
  33244. <member name="P:Godot.TextEdit.BreakpointGutter">
  33245. <summary>
  33246. <para>If <c>true</c>, the breakpoint gutter is visible.</para>
  33247. </summary>
  33248. </member>
  33249. <member name="P:Godot.TextEdit.FoldGutter">
  33250. <summary>
  33251. <para>If <c>true</c>, the fold gutter is visible. This enables folding groups of indented lines.</para>
  33252. </summary>
  33253. </member>
  33254. <member name="P:Godot.TextEdit.HighlightAllOccurrences">
  33255. <summary>
  33256. <para>If <c>true</c>, all occurrences of the selected text will be highlighted.</para>
  33257. </summary>
  33258. </member>
  33259. <member name="P:Godot.TextEdit.OverrideSelectedFontColor">
  33260. <summary>
  33261. <para>If <c>true</c>, custom <c>font_color_selected</c> will be used for selected text.</para>
  33262. </summary>
  33263. </member>
  33264. <member name="P:Godot.TextEdit.ContextMenuEnabled">
  33265. <summary>
  33266. <para>If <c>true</c>, a right-click displays the context menu.</para>
  33267. </summary>
  33268. </member>
  33269. <member name="P:Godot.TextEdit.SmoothScrolling">
  33270. <summary>
  33271. <para>If <c>true</c>, sets the <c>step</c> of the scrollbars to <c>0.25</c> which results in smoother scrolling.</para>
  33272. </summary>
  33273. </member>
  33274. <member name="P:Godot.TextEdit.VScrollSpeed">
  33275. <summary>
  33276. <para>Vertical scroll sensitivity.</para>
  33277. </summary>
  33278. </member>
  33279. <member name="P:Godot.TextEdit.HidingEnabled">
  33280. <summary>
  33281. <para>If <c>true</c>, all lines that have been set to hidden by <see cref="M:Godot.TextEdit.SetLineAsHidden(System.Int32,System.Boolean)"/>, will not be visible.</para>
  33282. </summary>
  33283. </member>
  33284. <member name="P:Godot.TextEdit.WrapEnabled">
  33285. <summary>
  33286. <para>If <c>true</c>, enables text wrapping when it goes beyond the edge of what is visible.</para>
  33287. </summary>
  33288. </member>
  33289. <member name="P:Godot.TextEdit.ScrollVertical">
  33290. <summary>
  33291. <para>The current vertical scroll value.</para>
  33292. </summary>
  33293. </member>
  33294. <member name="P:Godot.TextEdit.ScrollHorizontal">
  33295. <summary>
  33296. <para>The current horizontal scroll value.</para>
  33297. </summary>
  33298. </member>
  33299. <member name="P:Godot.TextEdit.CaretBlockMode">
  33300. <summary>
  33301. <para>If <c>true</c>, the caret displays as a rectangle.</para>
  33302. <para>If <c>false</c>, the caret displays as a bar.</para>
  33303. </summary>
  33304. </member>
  33305. <member name="P:Godot.TextEdit.CaretBlink">
  33306. <summary>
  33307. <para>If <c>true</c>, the caret (visual cursor) blinks.</para>
  33308. </summary>
  33309. </member>
  33310. <member name="P:Godot.TextEdit.CaretBlinkSpeed">
  33311. <summary>
  33312. <para>Duration (in seconds) of a caret's blinking cycle.</para>
  33313. </summary>
  33314. </member>
  33315. <member name="P:Godot.TextEdit.CaretMovingByRightClick">
  33316. <summary>
  33317. <para>If <c>true</c>, a right-click moves the cursor at the mouse position before displaying the context menu.</para>
  33318. <para>If <c>false</c>, the context menu disregards mouse location.</para>
  33319. </summary>
  33320. </member>
  33321. <member name="M:Godot.TextEdit.InsertTextAtCursor(System.String)">
  33322. <summary>
  33323. <para>Insert the specified text at the cursor position.</para>
  33324. </summary>
  33325. </member>
  33326. <member name="M:Godot.TextEdit.GetLineCount">
  33327. <summary>
  33328. <para>Returns the amount of total lines in the text.</para>
  33329. </summary>
  33330. </member>
  33331. <member name="M:Godot.TextEdit.GetLine(System.Int32)">
  33332. <summary>
  33333. <para>Returns the text of a specific line.</para>
  33334. </summary>
  33335. </member>
  33336. <member name="M:Godot.TextEdit.SetLine(System.Int32,System.String)">
  33337. <summary>
  33338. <para>Sets the text for a specific line.</para>
  33339. </summary>
  33340. </member>
  33341. <member name="M:Godot.TextEdit.CursorSetColumn(System.Int32,System.Boolean)">
  33342. <summary>
  33343. <para>Moves the cursor at the specified <c>column</c> index.</para>
  33344. <para>If <c>adjust_viewport</c> is set to <c>true</c>, the viewport will center at the cursor position after the move occurs.</para>
  33345. </summary>
  33346. </member>
  33347. <member name="M:Godot.TextEdit.CursorSetLine(System.Int32,System.Boolean,System.Boolean,System.Int32)">
  33348. <summary>
  33349. <para>Moves the cursor at the specified <c>line</c> index.</para>
  33350. <para>If <c>adjust_viewport</c> is set to <c>true</c>, the viewport will center at the cursor position after the move occurs.</para>
  33351. <para>If <c>can_be_hidden</c> is set to <c>true</c>, the specified <c>line</c> can be hidden using <see cref="M:Godot.TextEdit.SetLineAsHidden(System.Int32,System.Boolean)"/>.</para>
  33352. </summary>
  33353. </member>
  33354. <member name="M:Godot.TextEdit.CursorGetColumn">
  33355. <summary>
  33356. <para>Returns the column the editing cursor is at.</para>
  33357. </summary>
  33358. </member>
  33359. <member name="M:Godot.TextEdit.CursorGetLine">
  33360. <summary>
  33361. <para>Returns the line the editing cursor is at.</para>
  33362. </summary>
  33363. </member>
  33364. <member name="M:Godot.TextEdit.Cut">
  33365. <summary>
  33366. <para>Cut's the current selection.</para>
  33367. </summary>
  33368. </member>
  33369. <member name="M:Godot.TextEdit.Copy">
  33370. <summary>
  33371. <para>Copy's the current text selection.</para>
  33372. </summary>
  33373. </member>
  33374. <member name="M:Godot.TextEdit.Paste">
  33375. <summary>
  33376. <para>Paste the current selection.</para>
  33377. </summary>
  33378. </member>
  33379. <member name="M:Godot.TextEdit.Select(System.Int32,System.Int32,System.Int32,System.Int32)">
  33380. <summary>
  33381. <para>Perform selection, from line/column to line/column.</para>
  33382. </summary>
  33383. </member>
  33384. <member name="M:Godot.TextEdit.SelectAll">
  33385. <summary>
  33386. <para>Select all the text.</para>
  33387. </summary>
  33388. </member>
  33389. <member name="M:Godot.TextEdit.Deselect">
  33390. <summary>
  33391. <para>Deselects the current selection.</para>
  33392. </summary>
  33393. </member>
  33394. <member name="M:Godot.TextEdit.IsSelectionActive">
  33395. <summary>
  33396. <para>Returns <c>true</c> if the selection is active.</para>
  33397. </summary>
  33398. </member>
  33399. <member name="M:Godot.TextEdit.GetSelectionFromLine">
  33400. <summary>
  33401. <para>Returns the selection begin line.</para>
  33402. </summary>
  33403. </member>
  33404. <member name="M:Godot.TextEdit.GetSelectionFromColumn">
  33405. <summary>
  33406. <para>Returns the selection begin column.</para>
  33407. </summary>
  33408. </member>
  33409. <member name="M:Godot.TextEdit.GetSelectionToLine">
  33410. <summary>
  33411. <para>Returns the selection end line.</para>
  33412. </summary>
  33413. </member>
  33414. <member name="M:Godot.TextEdit.GetSelectionToColumn">
  33415. <summary>
  33416. <para>Returns the selection end column.</para>
  33417. </summary>
  33418. </member>
  33419. <member name="M:Godot.TextEdit.GetSelectionText">
  33420. <summary>
  33421. <para>Returns the text inside the selection.</para>
  33422. </summary>
  33423. </member>
  33424. <member name="M:Godot.TextEdit.GetWordUnderCursor">
  33425. <summary>
  33426. <para>Returns a <see cref="T:System.String"/> text with the word under the mouse cursor location.</para>
  33427. </summary>
  33428. </member>
  33429. <member name="M:Godot.TextEdit.Search(System.String,System.UInt32,System.Int32,System.Int32)">
  33430. <summary>
  33431. <para>Perform a search inside the text. Search flags can be specified in the <see cref="T:Godot.TextEdit.SearchFlags"/> enum.</para>
  33432. <para>Returns an empty <c>PoolIntArray</c> if no result was found. Otherwise, the result line and column can be accessed at indices specified in the <see cref="T:Godot.TextEdit.SearchResult"/> enum, e.g:</para>
  33433. <para><code>
  33434. var result = search(key, flags, line, column)
  33435. if result.size() &gt; 0:
  33436. # Result found.
  33437. var res_line = result[TextEdit.SEARCH_RESULT_LINE]
  33438. var res_column = result[TextEdit.SEARCH_RESULT_COLUMN]
  33439. </code></para>
  33440. </summary>
  33441. </member>
  33442. <member name="M:Godot.TextEdit.Undo">
  33443. <summary>
  33444. <para>Perform undo operation.</para>
  33445. </summary>
  33446. </member>
  33447. <member name="M:Godot.TextEdit.Redo">
  33448. <summary>
  33449. <para>Perform redo operation.</para>
  33450. </summary>
  33451. </member>
  33452. <member name="M:Godot.TextEdit.ClearUndoHistory">
  33453. <summary>
  33454. <para>Clears the undo history.</para>
  33455. </summary>
  33456. </member>
  33457. <member name="M:Godot.TextEdit.SetLineAsHidden(System.Int32,System.Boolean)">
  33458. <summary>
  33459. <para>If <c>true</c>, hides the line of the specified index.</para>
  33460. </summary>
  33461. </member>
  33462. <member name="M:Godot.TextEdit.IsLineHidden(System.Int32)">
  33463. <summary>
  33464. <para>Returns whether the line at the specified index is hidden or not.</para>
  33465. </summary>
  33466. </member>
  33467. <member name="M:Godot.TextEdit.FoldAllLines">
  33468. <summary>
  33469. <para>Folds all lines that are possible to be folded (see <see cref="M:Godot.TextEdit.CanFold(System.Int32)"/>).</para>
  33470. </summary>
  33471. </member>
  33472. <member name="M:Godot.TextEdit.UnhideAllLines">
  33473. <summary>
  33474. <para>Unhide all lines that were previously set to hidden by <see cref="M:Godot.TextEdit.SetLineAsHidden(System.Int32,System.Boolean)"/>.</para>
  33475. </summary>
  33476. </member>
  33477. <member name="M:Godot.TextEdit.FoldLine(System.Int32)">
  33478. <summary>
  33479. <para>Folds the given line, if possible (see <see cref="M:Godot.TextEdit.CanFold(System.Int32)"/>).</para>
  33480. </summary>
  33481. </member>
  33482. <member name="M:Godot.TextEdit.UnfoldLine(System.Int32)">
  33483. <summary>
  33484. <para>Unfolds the given line, if folded.</para>
  33485. </summary>
  33486. </member>
  33487. <member name="M:Godot.TextEdit.ToggleFoldLine(System.Int32)">
  33488. <summary>
  33489. <para>Toggle the folding of the code block at the given line.</para>
  33490. </summary>
  33491. </member>
  33492. <member name="M:Godot.TextEdit.CanFold(System.Int32)">
  33493. <summary>
  33494. <para>Returns if the given line is foldable, that is, it has indented lines right below it.</para>
  33495. </summary>
  33496. </member>
  33497. <member name="M:Godot.TextEdit.IsFolded(System.Int32)">
  33498. <summary>
  33499. <para>Returns whether the line at the specified index is folded or not.</para>
  33500. </summary>
  33501. </member>
  33502. <member name="M:Godot.TextEdit.AddKeywordColor(System.String,Godot.Color)">
  33503. <summary>
  33504. <para>Adds a <c>keyword</c> and its <see cref="T:Godot.Color"/>.</para>
  33505. </summary>
  33506. </member>
  33507. <member name="M:Godot.TextEdit.HasKeywordColor(System.String)">
  33508. <summary>
  33509. <para>Returns whether the specified <c>keyword</c> has a color set to it or not.</para>
  33510. </summary>
  33511. </member>
  33512. <member name="M:Godot.TextEdit.GetKeywordColor(System.String)">
  33513. <summary>
  33514. <para>Returns the <see cref="T:Godot.Color"/> of the specified <c>keyword</c>.</para>
  33515. </summary>
  33516. </member>
  33517. <member name="M:Godot.TextEdit.AddColorRegion(System.String,System.String,Godot.Color,System.Boolean)">
  33518. <summary>
  33519. <para>Adds color region (given the delimiters) and its colors.</para>
  33520. </summary>
  33521. </member>
  33522. <member name="M:Godot.TextEdit.ClearColors">
  33523. <summary>
  33524. <para>Clears all custom syntax coloring information previously added with <see cref="M:Godot.TextEdit.AddColorRegion(System.String,System.String,Godot.Color,System.Boolean)"/> or <see cref="M:Godot.TextEdit.AddKeywordColor(System.String,Godot.Color)"/>.</para>
  33525. </summary>
  33526. </member>
  33527. <member name="M:Godot.TextEdit.MenuOption(System.Int32)">
  33528. <summary>
  33529. <para>Triggers a right-click menu action by the specified index. See <see cref="T:Godot.TextEdit.MenuItems"/> for a list of available indexes.</para>
  33530. </summary>
  33531. </member>
  33532. <member name="M:Godot.TextEdit.GetMenu">
  33533. <summary>
  33534. <para>Returns the <see cref="T:Godot.PopupMenu"/> of this <see cref="T:Godot.TextEdit"/>. By default, this menu is displayed when right-clicking on the <see cref="T:Godot.TextEdit"/>.</para>
  33535. </summary>
  33536. </member>
  33537. <member name="M:Godot.TextEdit.GetBreakpoints">
  33538. <summary>
  33539. <para>Returns an array containing the line number of each breakpoint.</para>
  33540. </summary>
  33541. </member>
  33542. <member name="M:Godot.TextEdit.RemoveBreakpoints">
  33543. <summary>
  33544. <para>Removes all the breakpoints. This will not fire the <c>breakpoint_toggled</c> signal.</para>
  33545. </summary>
  33546. </member>
  33547. <member name="T:Godot.Texture">
  33548. <summary>
  33549. <para>A texture works by registering an image in the video hardware, which then can be used in 3D models or 2D <see cref="T:Godot.Sprite"/> or GUI <see cref="T:Godot.Control"/>.</para>
  33550. <para>Textures are often created by loading them from a file. See <c>@GDScript.load</c>.</para>
  33551. <para><see cref="T:Godot.Texture"/> is a base for other resources. It cannot be used directly.</para>
  33552. </summary>
  33553. </member>
  33554. <member name="F:Godot.Texture.FlagsEnum.Default">
  33555. <summary>
  33556. <para>Default flags. , and are enabled.</para>
  33557. </summary>
  33558. </member>
  33559. <member name="F:Godot.Texture.FlagsEnum.Mipmaps">
  33560. <summary>
  33561. <para>Generates mipmaps, which are smaller versions of the same texture to use when zoomed out, keeping the aspect ratio.</para>
  33562. </summary>
  33563. </member>
  33564. <member name="F:Godot.Texture.FlagsEnum.Repeat">
  33565. <summary>
  33566. <para>Repeats the texture (instead of clamp to edge).</para>
  33567. </summary>
  33568. </member>
  33569. <member name="F:Godot.Texture.FlagsEnum.Filter">
  33570. <summary>
  33571. <para>Uses a magnifying filter, to enable smooth zooming in of the texture.</para>
  33572. </summary>
  33573. </member>
  33574. <member name="F:Godot.Texture.FlagsEnum.AnisotropicFilter">
  33575. <summary>
  33576. <para>Uses anisotropic mipmap filtering. Generates smaller versions of the same texture with different aspect ratios.</para>
  33577. <para>This results in better-looking textures when viewed from oblique angles.</para>
  33578. </summary>
  33579. </member>
  33580. <member name="F:Godot.Texture.FlagsEnum.ConvertToLinear">
  33581. <summary>
  33582. <para>Converts the texture to the sRGB color space.</para>
  33583. </summary>
  33584. </member>
  33585. <member name="F:Godot.Texture.FlagsEnum.MirroredRepeat">
  33586. <summary>
  33587. <para>Repeats the texture with alternate sections mirrored.</para>
  33588. </summary>
  33589. </member>
  33590. <member name="F:Godot.Texture.FlagsEnum.VideoSurface">
  33591. <summary>
  33592. <para>Texture is a video surface.</para>
  33593. </summary>
  33594. </member>
  33595. <member name="P:Godot.Texture.Flags">
  33596. <summary>
  33597. <para>The texture's <see cref="T:Godot.Texture.FlagsEnum"/>. <see cref="T:Godot.Texture.FlagsEnum"/> are used to set various properties of the <see cref="T:Godot.Texture"/>.</para>
  33598. </summary>
  33599. </member>
  33600. <member name="M:Godot.Texture.GetWidth">
  33601. <summary>
  33602. <para>Returns the texture width.</para>
  33603. </summary>
  33604. </member>
  33605. <member name="M:Godot.Texture.GetHeight">
  33606. <summary>
  33607. <para>Returns the texture height.</para>
  33608. </summary>
  33609. </member>
  33610. <member name="M:Godot.Texture.GetSize">
  33611. <summary>
  33612. <para>Returns the texture size.</para>
  33613. </summary>
  33614. </member>
  33615. <member name="M:Godot.Texture.HasAlpha">
  33616. <summary>
  33617. <para>Returns <c>true</c> if this <see cref="T:Godot.Texture"/> has an alpha channel.</para>
  33618. </summary>
  33619. </member>
  33620. <member name="M:Godot.Texture.Draw(Godot.RID,Godot.Vector2,System.Nullable{Godot.Color},System.Boolean,Godot.Texture)">
  33621. <summary>
  33622. <para>Draws the texture using a <see cref="T:Godot.CanvasItem"/> with the <see cref="T:Godot.VisualServer"/> API at the specified <c>position</c>. Equivalent to <see cref="M:Godot.VisualServer.CanvasItemAddTextureRect(Godot.RID,Godot.Rect2,Godot.RID,System.Boolean,System.Nullable{Godot.Color},System.Boolean,Godot.RID)"/> with a rect at <c>position</c> and the size of this <see cref="T:Godot.Texture"/>.</para>
  33623. </summary>
  33624. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  33625. </member>
  33626. <member name="M:Godot.Texture.DrawRect(Godot.RID,Godot.Rect2,System.Boolean,System.Nullable{Godot.Color},System.Boolean,Godot.Texture)">
  33627. <summary>
  33628. <para>Draws the texture using a <see cref="T:Godot.CanvasItem"/> with the <see cref="T:Godot.VisualServer"/> API. Equivalent to <see cref="M:Godot.VisualServer.CanvasItemAddTextureRect(Godot.RID,Godot.Rect2,Godot.RID,System.Boolean,System.Nullable{Godot.Color},System.Boolean,Godot.RID)"/>.</para>
  33629. </summary>
  33630. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  33631. </member>
  33632. <member name="M:Godot.Texture.DrawRectRegion(Godot.RID,Godot.Rect2,Godot.Rect2,System.Nullable{Godot.Color},System.Boolean,Godot.Texture,System.Boolean)">
  33633. <summary>
  33634. <para>Draws a part of the texture using a <see cref="T:Godot.CanvasItem"/> with the <see cref="T:Godot.VisualServer"/> API. Equivalent to <see cref="M:Godot.VisualServer.CanvasItemAddTextureRectRegion(Godot.RID,Godot.Rect2,Godot.RID,Godot.Rect2,System.Nullable{Godot.Color},System.Boolean,Godot.RID,System.Boolean)"/>.</para>
  33635. </summary>
  33636. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  33637. </member>
  33638. <member name="M:Godot.Texture.GetData">
  33639. <summary>
  33640. <para>Returns an <see cref="T:Godot.Image"/> with the data from this <see cref="T:Godot.Texture"/>. <see cref="T:Godot.Image"/>s can be accessed and manipulated directly.</para>
  33641. </summary>
  33642. </member>
  33643. <member name="T:Godot.Texture3D">
  33644. <summary>
  33645. <para>Texture3D is a 3-dimensional texture that has a width, height, and depth.</para>
  33646. </summary>
  33647. </member>
  33648. <member name="T:Godot.TextureArray">
  33649. <summary>
  33650. <para><see cref="T:Godot.TextureArray"/>s store an array of images in a single <see cref="T:Godot.Texture"/> primitive. Each layer of the texture array has its own mipmap chain. This makes it is a good alternative to texture atlases.</para>
  33651. </summary>
  33652. </member>
  33653. <member name="T:Godot.TextureButton">
  33654. <summary>
  33655. <para><see cref="T:Godot.TextureButton"/> has the same functionality as <see cref="T:Godot.Button"/>, except it uses sprites instead of Godot's <see cref="T:Godot.Theme"/> resource. It is faster to create, but it doesn't support localization like more complex <see cref="T:Godot.Control"/>s.</para>
  33656. <para>The "normal" state must contain a texture (<see cref="P:Godot.TextureButton.TextureNormal"/>); other textures are optional.</para>
  33657. </summary>
  33658. </member>
  33659. <member name="F:Godot.TextureButton.StretchModeEnum.Scale">
  33660. <summary>
  33661. <para>Scale to fit the node's bounding rectangle.</para>
  33662. </summary>
  33663. </member>
  33664. <member name="F:Godot.TextureButton.StretchModeEnum.Tile">
  33665. <summary>
  33666. <para>Tile inside the node's bounding rectangle.</para>
  33667. </summary>
  33668. </member>
  33669. <member name="F:Godot.TextureButton.StretchModeEnum.Keep">
  33670. <summary>
  33671. <para>The texture keeps its original size and stays in the bounding rectangle's top-left corner.</para>
  33672. </summary>
  33673. </member>
  33674. <member name="F:Godot.TextureButton.StretchModeEnum.KeepCentered">
  33675. <summary>
  33676. <para>The texture keeps its original size and stays centered in the node's bounding rectangle.</para>
  33677. </summary>
  33678. </member>
  33679. <member name="F:Godot.TextureButton.StretchModeEnum.KeepAspect">
  33680. <summary>
  33681. <para>Scale the texture to fit the node's bounding rectangle, but maintain the texture's aspect ratio.</para>
  33682. </summary>
  33683. </member>
  33684. <member name="F:Godot.TextureButton.StretchModeEnum.KeepAspectCentered">
  33685. <summary>
  33686. <para>Scale the texture to fit the node's bounding rectangle, center it, and maintain its aspect ratio.</para>
  33687. </summary>
  33688. </member>
  33689. <member name="F:Godot.TextureButton.StretchModeEnum.KeepAspectCovered">
  33690. <summary>
  33691. <para>Scale the texture so that the shorter side fits the bounding rectangle. The other side clips to the node's limits.</para>
  33692. </summary>
  33693. </member>
  33694. <member name="P:Godot.TextureButton.TextureNormal">
  33695. <summary>
  33696. <para>Texture to display by default, when the node is not in the disabled, focused, hover or pressed state.</para>
  33697. </summary>
  33698. </member>
  33699. <member name="P:Godot.TextureButton.TexturePressed">
  33700. <summary>
  33701. <para>Texture to display on mouse down over the node, if the node has keyboard focus and the player presses the Enter key or if the player presses the <see cref="P:Godot.BaseButton.Shortcut"/> key.</para>
  33702. </summary>
  33703. </member>
  33704. <member name="P:Godot.TextureButton.TextureHover">
  33705. <summary>
  33706. <para>Texture to display when the mouse hovers the node.</para>
  33707. </summary>
  33708. </member>
  33709. <member name="P:Godot.TextureButton.TextureDisabled">
  33710. <summary>
  33711. <para>Texture to display when the node is disabled. See <see cref="P:Godot.BaseButton.Disabled"/>.</para>
  33712. </summary>
  33713. </member>
  33714. <member name="P:Godot.TextureButton.TextureFocused">
  33715. <summary>
  33716. <para>Texture to display when the node has mouse or keyboard focus.</para>
  33717. </summary>
  33718. </member>
  33719. <member name="P:Godot.TextureButton.TextureClickMask">
  33720. <summary>
  33721. <para>Pure black and white <see cref="T:Godot.BitMap"/> image to use for click detection. On the mask, white pixels represent the button's clickable area. Use it to create buttons with curved shapes.</para>
  33722. </summary>
  33723. </member>
  33724. <member name="P:Godot.TextureButton.Expand">
  33725. <summary>
  33726. <para>If <c>true</c>, the texture stretches to the edges of the node's bounding rectangle using the <see cref="P:Godot.TextureButton.StretchMode"/>. If <c>false</c>, the texture will not scale with the node.</para>
  33727. </summary>
  33728. </member>
  33729. <member name="P:Godot.TextureButton.StretchMode">
  33730. <summary>
  33731. <para>Controls the texture's behavior when you resize the node's bounding rectangle, only if <see cref="P:Godot.TextureButton.Expand"/> is <c>true</c>. Set it to one of the <see cref="T:Godot.TextureButton.StretchModeEnum"/> constants. See the constants to learn more.</para>
  33732. </summary>
  33733. </member>
  33734. <member name="T:Godot.TextureLayered">
  33735. <summary>
  33736. <para>Base class for <see cref="T:Godot.Texture3D"/> and <see cref="T:Godot.TextureArray"/>. Cannot be used directly, but contains all the functions necessary for accessing and using <see cref="T:Godot.Texture3D"/> and <see cref="T:Godot.TextureArray"/>. Data is set on a per-layer basis. For <see cref="T:Godot.Texture3D"/>s, the layer sepcifies the depth or Z-index, they can be treated as a bunch of 2D slices. Similarly, for <see cref="T:Godot.TextureArray"/>s, the layer specifies the array layer.</para>
  33737. </summary>
  33738. </member>
  33739. <member name="F:Godot.TextureLayered.FlagsEnum.Mipmaps">
  33740. <summary>
  33741. <para>Texture will generate mipmaps on creation.</para>
  33742. </summary>
  33743. </member>
  33744. <member name="F:Godot.TextureLayered.FlagsEnum.Repeat">
  33745. <summary>
  33746. <para>Texture will repeat when UV used is outside the 0-1 range.</para>
  33747. </summary>
  33748. </member>
  33749. <member name="F:Godot.TextureLayered.FlagsEnum.Filter">
  33750. <summary>
  33751. <para>Use filtering when reading from texture. Filtering smooths out pixels. Turning filtering off is slightly faster and more appropriate when you need access to individual pixels.</para>
  33752. </summary>
  33753. </member>
  33754. <member name="F:Godot.TextureLayered.FlagsEnum.Default">
  33755. <summary>
  33756. <para>Equivalent to .</para>
  33757. </summary>
  33758. </member>
  33759. <member name="P:Godot.TextureLayered.Flags">
  33760. <summary>
  33761. <para>Specifies which <see cref="T:Godot.TextureLayered.FlagsEnum"/> apply to this texture.</para>
  33762. </summary>
  33763. </member>
  33764. <member name="P:Godot.TextureLayered.Data">
  33765. <summary>
  33766. <para>Returns a dictionary with all the data used by this texture.</para>
  33767. </summary>
  33768. </member>
  33769. <member name="M:Godot.TextureLayered.GetFormat">
  33770. <summary>
  33771. <para>Returns the current format being used by this texture. See <see cref="T:Godot.Image.Format"/> for details.</para>
  33772. </summary>
  33773. </member>
  33774. <member name="M:Godot.TextureLayered.GetWidth">
  33775. <summary>
  33776. <para>Returns the width of the texture. Width is typically represented by the X-axis.</para>
  33777. </summary>
  33778. </member>
  33779. <member name="M:Godot.TextureLayered.GetHeight">
  33780. <summary>
  33781. <para>Returns the height of the texture. Height is typically represented by the Y-axis.</para>
  33782. </summary>
  33783. </member>
  33784. <member name="M:Godot.TextureLayered.GetDepth">
  33785. <summary>
  33786. <para>Returns the depth of the texture. Depth is the 3rd dimension (typically Z-axis).</para>
  33787. </summary>
  33788. </member>
  33789. <member name="M:Godot.TextureLayered.Create(System.UInt32,System.UInt32,System.UInt32,Godot.Image.Format,System.UInt32)">
  33790. <summary>
  33791. <para>Creates the <see cref="T:Godot.Texture3D"/> or <see cref="T:Godot.TextureArray"/> with specified <c>width</c>, <c>height</c>, and <c>depth</c>. See <see cref="T:Godot.Image.Format"/> for <c>format</c> options. See <see cref="T:Godot.TextureLayered.FlagsEnum"/> enumerator for <c>flags</c> options.</para>
  33792. </summary>
  33793. </member>
  33794. <member name="M:Godot.TextureLayered.SetLayerData(Godot.Image,System.Int32)">
  33795. <summary>
  33796. <para>Sets the data for the specified layer. Data takes the form of a 2-dimensional <see cref="T:Godot.Image"/> resource.</para>
  33797. </summary>
  33798. </member>
  33799. <member name="M:Godot.TextureLayered.GetLayerData(System.Int32)">
  33800. <summary>
  33801. <para>Returns an <see cref="T:Godot.Image"/> resource with the data from specified <c>layer</c>.</para>
  33802. </summary>
  33803. </member>
  33804. <member name="M:Godot.TextureLayered.SetDataPartial(Godot.Image,System.Int32,System.Int32,System.Int32,System.Int32)">
  33805. <summary>
  33806. <para>Partially sets the data for a specified <c>layer</c> by overwriting using the data of the specified <c>image</c>. <c>x_offset</c> and <c>y_offset</c> determine where the <see cref="T:Godot.Image"/> is "stamped" over the texture. The <c>image</c> must fit within the texture.</para>
  33807. </summary>
  33808. </member>
  33809. <member name="T:Godot.TextureProgress">
  33810. <summary>
  33811. <para>TextureProgress works like <see cref="T:Godot.ProgressBar"/>, but uses up to 3 textures instead of Godot's <see cref="T:Godot.Theme"/> resource. It can be used to create horizontal, vertical and radial progress bars.</para>
  33812. </summary>
  33813. </member>
  33814. <member name="F:Godot.TextureProgress.FillModeEnum.LeftToRight">
  33815. <summary>
  33816. <para>The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills from left to right.</para>
  33817. </summary>
  33818. </member>
  33819. <member name="F:Godot.TextureProgress.FillModeEnum.RightToLeft">
  33820. <summary>
  33821. <para>The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills from right to left.</para>
  33822. </summary>
  33823. </member>
  33824. <member name="F:Godot.TextureProgress.FillModeEnum.TopToBottom">
  33825. <summary>
  33826. <para>The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills from top to bottom.</para>
  33827. </summary>
  33828. </member>
  33829. <member name="F:Godot.TextureProgress.FillModeEnum.BottomToTop">
  33830. <summary>
  33831. <para>The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills from bottom to top.</para>
  33832. </summary>
  33833. </member>
  33834. <member name="F:Godot.TextureProgress.FillModeEnum.Clockwise">
  33835. <summary>
  33836. <para>Turns the node into a radial bar. The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills clockwise. See <see cref="P:Godot.TextureProgress.RadialCenterOffset"/>, <see cref="P:Godot.TextureProgress.RadialInitialAngle"/> and <see cref="P:Godot.TextureProgress.RadialFillDegrees"/> to control the way the bar fills up.</para>
  33837. </summary>
  33838. </member>
  33839. <member name="F:Godot.TextureProgress.FillModeEnum.CounterClockwise">
  33840. <summary>
  33841. <para>Turns the node into a radial bar. The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills counterclockwise. See <see cref="P:Godot.TextureProgress.RadialCenterOffset"/>, <see cref="P:Godot.TextureProgress.RadialInitialAngle"/> and <see cref="P:Godot.TextureProgress.RadialFillDegrees"/> to control the way the bar fills up.</para>
  33842. </summary>
  33843. </member>
  33844. <member name="F:Godot.TextureProgress.FillModeEnum.BilinearLeftAndRight">
  33845. <summary>
  33846. <para>The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills from the center, expanding both towards the left and the right.</para>
  33847. </summary>
  33848. </member>
  33849. <member name="F:Godot.TextureProgress.FillModeEnum.BilinearTopAndBottom">
  33850. <summary>
  33851. <para>The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills from the center, expanding both towards the top and the bottom.</para>
  33852. </summary>
  33853. </member>
  33854. <member name="F:Godot.TextureProgress.FillModeEnum.ClockwiseAndCounterClockwise">
  33855. <summary>
  33856. <para>Turns the node into a radial bar. The <see cref="P:Godot.TextureProgress.TextureProgress_"/> fills radially from the center, expanding both clockwise and counterclockwise. See <see cref="P:Godot.TextureProgress.RadialCenterOffset"/>, <see cref="P:Godot.TextureProgress.RadialInitialAngle"/> and <see cref="P:Godot.TextureProgress.RadialFillDegrees"/> to control the way the bar fills up.</para>
  33857. </summary>
  33858. </member>
  33859. <member name="P:Godot.TextureProgress.TextureUnder">
  33860. <summary>
  33861. <para><see cref="T:Godot.Texture"/> that draws under the progress bar. The bar's background.</para>
  33862. </summary>
  33863. </member>
  33864. <member name="P:Godot.TextureProgress.TextureOver">
  33865. <summary>
  33866. <para><see cref="T:Godot.Texture"/> that draws over the progress bar. Use it to add highlights or an upper-frame that hides part of <see cref="P:Godot.TextureProgress.TextureProgress_"/>.</para>
  33867. </summary>
  33868. </member>
  33869. <member name="P:Godot.TextureProgress.TextureProgress_">
  33870. <summary>
  33871. <para><see cref="T:Godot.Texture"/> that clips based on the node's <c>value</c> and <see cref="P:Godot.TextureProgress.FillMode"/>. As <c>value</c> increased, the texture fills up. It shows entirely when <c>value</c> reaches <c>max_value</c>. It doesn't show at all if <c>value</c> is equal to <c>min_value</c>.</para>
  33872. <para>The <c>value</c> property comes from <see cref="T:Godot.Range"/>. See <see cref="P:Godot.Range.Value"/>, <see cref="P:Godot.Range.MinValue"/>, <see cref="P:Godot.Range.MaxValue"/>.</para>
  33873. </summary>
  33874. </member>
  33875. <member name="P:Godot.TextureProgress.FillMode">
  33876. <summary>
  33877. <para>The fill direction. See <see cref="T:Godot.TextureProgress.FillModeEnum"/> for possible values.</para>
  33878. </summary>
  33879. </member>
  33880. <member name="P:Godot.TextureProgress.TintUnder">
  33881. <summary>
  33882. <para>Multiplies the color of the bar's <c>texture_under</c> texture.</para>
  33883. </summary>
  33884. </member>
  33885. <member name="P:Godot.TextureProgress.TintOver">
  33886. <summary>
  33887. <para>Multiplies the color of the bar's <c>texture_over</c> texture. The effect is similar to <see cref="P:Godot.CanvasItem.Modulate"/>, except it only affects this specific texture instead of the entire node.</para>
  33888. </summary>
  33889. </member>
  33890. <member name="P:Godot.TextureProgress.TintProgress">
  33891. <summary>
  33892. <para>Multiplies the color of the bar's <c>texture_progress</c> texture.</para>
  33893. </summary>
  33894. </member>
  33895. <member name="P:Godot.TextureProgress.RadialInitialAngle">
  33896. <summary>
  33897. <para>Starting angle for the fill of <see cref="P:Godot.TextureProgress.TextureProgress_"/> if <see cref="P:Godot.TextureProgress.FillMode"/> is or . When the node's <c>value</c> is equal to its <c>min_value</c>, the texture doesn't show up at all. When the <c>value</c> increases, the texture fills and tends towards <see cref="P:Godot.TextureProgress.RadialFillDegrees"/>.</para>
  33898. </summary>
  33899. </member>
  33900. <member name="P:Godot.TextureProgress.RadialFillDegrees">
  33901. <summary>
  33902. <para>Upper limit for the fill of <see cref="P:Godot.TextureProgress.TextureProgress_"/> if <see cref="P:Godot.TextureProgress.FillMode"/> is or . When the node's <c>value</c> is equal to its <c>max_value</c>, the texture fills up to this angle.</para>
  33903. <para>See <see cref="P:Godot.Range.Value"/>, <see cref="P:Godot.Range.MaxValue"/>.</para>
  33904. </summary>
  33905. </member>
  33906. <member name="P:Godot.TextureProgress.RadialCenterOffset">
  33907. <summary>
  33908. <para>Offsets <see cref="P:Godot.TextureProgress.TextureProgress_"/> if <see cref="P:Godot.TextureProgress.FillMode"/> is or .</para>
  33909. </summary>
  33910. </member>
  33911. <member name="P:Godot.TextureProgress.NinePatchStretch">
  33912. <summary>
  33913. <para>If <c>true</c>, Godot treats the bar's textures like in <see cref="T:Godot.NinePatchRect"/>. Use the <c>stretch_margin_*</c> properties like <see cref="P:Godot.TextureProgress.StretchMarginBottom"/> to set up the nine patch's 3×3 grid. When using a radial <see cref="P:Godot.TextureProgress.FillMode"/>, this setting will enable stretching.</para>
  33914. </summary>
  33915. </member>
  33916. <member name="P:Godot.TextureProgress.StretchMarginLeft">
  33917. <summary>
  33918. <para>The width of the 9-patch's left column.</para>
  33919. </summary>
  33920. </member>
  33921. <member name="P:Godot.TextureProgress.StretchMarginTop">
  33922. <summary>
  33923. <para>The height of the 9-patch's top row.</para>
  33924. </summary>
  33925. </member>
  33926. <member name="P:Godot.TextureProgress.StretchMarginRight">
  33927. <summary>
  33928. <para>The width of the 9-patch's right column.</para>
  33929. </summary>
  33930. </member>
  33931. <member name="P:Godot.TextureProgress.StretchMarginBottom">
  33932. <summary>
  33933. <para>The height of the 9-patch's bottom row. A margin of 16 means the 9-slice's bottom corners and side will have a height of 16 pixels. You can set all 4 margin values individually to create panels with non-uniform borders.</para>
  33934. </summary>
  33935. </member>
  33936. <member name="T:Godot.TextureRect">
  33937. <summary>
  33938. <para>Used to draw icons and sprites in a user interface. The texture's placement can be controlled with the <see cref="P:Godot.TextureRect.StretchMode"/> property. It can scale, tile, or stay centered inside its bounding rectangle.</para>
  33939. </summary>
  33940. </member>
  33941. <member name="F:Godot.TextureRect.StretchModeEnum.ScaleOnExpand">
  33942. <summary>
  33943. <para>Scale to fit the node's bounding rectangle, only if <c>expand</c> is <c>true</c>. Default <c>stretch_mode</c>, for backwards compatibility. Until you set <c>expand</c> to <c>true</c>, the texture will behave like .</para>
  33944. </summary>
  33945. </member>
  33946. <member name="F:Godot.TextureRect.StretchModeEnum.Scale">
  33947. <summary>
  33948. <para>Scale to fit the node's bounding rectangle.</para>
  33949. </summary>
  33950. </member>
  33951. <member name="F:Godot.TextureRect.StretchModeEnum.Tile">
  33952. <summary>
  33953. <para>Tile inside the node's bounding rectangle.</para>
  33954. </summary>
  33955. </member>
  33956. <member name="F:Godot.TextureRect.StretchModeEnum.Keep">
  33957. <summary>
  33958. <para>The texture keeps its original size and stays in the bounding rectangle's top-left corner.</para>
  33959. </summary>
  33960. </member>
  33961. <member name="F:Godot.TextureRect.StretchModeEnum.KeepCentered">
  33962. <summary>
  33963. <para>The texture keeps its original size and stays centered in the node's bounding rectangle.</para>
  33964. </summary>
  33965. </member>
  33966. <member name="F:Godot.TextureRect.StretchModeEnum.KeepAspect">
  33967. <summary>
  33968. <para>Scale the texture to fit the node's bounding rectangle, but maintain the texture's aspect ratio.</para>
  33969. </summary>
  33970. </member>
  33971. <member name="F:Godot.TextureRect.StretchModeEnum.KeepAspectCentered">
  33972. <summary>
  33973. <para>Scale the texture to fit the node's bounding rectangle, center it and maintain its aspect ratio.</para>
  33974. </summary>
  33975. </member>
  33976. <member name="F:Godot.TextureRect.StretchModeEnum.KeepAspectCovered">
  33977. <summary>
  33978. <para>Scale the texture so that the shorter side fits the bounding rectangle. The other side clips to the node's limits.</para>
  33979. </summary>
  33980. </member>
  33981. <member name="P:Godot.TextureRect.Texture">
  33982. <summary>
  33983. <para>The node's <see cref="T:Godot.Texture"/> resource.</para>
  33984. </summary>
  33985. </member>
  33986. <member name="P:Godot.TextureRect.Expand">
  33987. <summary>
  33988. <para>If <c>true</c>, the texture scales to fit its bounding rectangle.</para>
  33989. </summary>
  33990. </member>
  33991. <member name="P:Godot.TextureRect.StretchMode">
  33992. <summary>
  33993. <para>Controls the texture's behavior when resizing the node's bounding rectangle. See <see cref="T:Godot.TextureRect.StretchModeEnum"/>.</para>
  33994. </summary>
  33995. </member>
  33996. <member name="P:Godot.TextureRect.FlipH">
  33997. <summary>
  33998. <para>If <c>true</c>, texture is flipped horizontally.</para>
  33999. </summary>
  34000. </member>
  34001. <member name="P:Godot.TextureRect.FlipV">
  34002. <summary>
  34003. <para>If <c>true</c>, texture is flipped vertically.</para>
  34004. </summary>
  34005. </member>
  34006. <member name="T:Godot.Theme">
  34007. <summary>
  34008. <para>A theme for skinning controls. Controls can be skinned individually, but for complex applications, it's more practical to just create a global theme that defines everything. This theme can be applied to any <see cref="T:Godot.Control"/>; the Control and its children will automatically use it.</para>
  34009. <para>Theme resources can alternatively be loaded by writing them in a <c>.theme</c> file, see the documentation for more information.</para>
  34010. </summary>
  34011. </member>
  34012. <member name="P:Godot.Theme.DefaultFont">
  34013. <summary>
  34014. <para>The theme's default font.</para>
  34015. </summary>
  34016. </member>
  34017. <member name="M:Godot.Theme.SetIcon(System.String,System.String,Godot.Texture)">
  34018. <summary>
  34019. <para>Sets the theme's icon <see cref="T:Godot.Texture"/> to <c>texture</c> at <c>name</c> in <c>type</c>.</para>
  34020. <para>Does nothing if the theme does not have <c>type</c>.</para>
  34021. </summary>
  34022. </member>
  34023. <member name="M:Godot.Theme.GetIcon(System.String,System.String)">
  34024. <summary>
  34025. <para>Returns the icon <see cref="T:Godot.Texture"/> at <c>name</c> if the theme has <c>type</c>.</para>
  34026. </summary>
  34027. </member>
  34028. <member name="M:Godot.Theme.HasIcon(System.String,System.String)">
  34029. <summary>
  34030. <para>Returns <c>true</c> if icon <see cref="T:Godot.Texture"/> with <c>name</c> is in <c>type</c>.</para>
  34031. <para>Returns <c>false</c> if the theme does not have <c>type</c>.</para>
  34032. </summary>
  34033. </member>
  34034. <member name="M:Godot.Theme.ClearIcon(System.String,System.String)">
  34035. <summary>
  34036. <para>Clears the icon at <c>name</c> if the theme has <c>type</c>.</para>
  34037. </summary>
  34038. </member>
  34039. <member name="M:Godot.Theme.GetIconList(System.String)">
  34040. <summary>
  34041. <para>Returns all the icons as a <see cref="T:System.String"/> filled with each <see cref="T:Godot.Texture"/>'s name, for use in <see cref="M:Godot.Theme.GetIcon(System.String,System.String)"/>, if the theme has <c>type</c>.</para>
  34042. </summary>
  34043. </member>
  34044. <member name="M:Godot.Theme.SetStylebox(System.String,System.String,Godot.StyleBox)">
  34045. <summary>
  34046. <para>Sets theme's <see cref="T:Godot.StyleBox"/> to <c>stylebox</c> at <c>name</c> in <c>type</c>.</para>
  34047. <para>Does nothing if the theme does not have <c>type</c>.</para>
  34048. </summary>
  34049. </member>
  34050. <member name="M:Godot.Theme.GetStylebox(System.String,System.String)">
  34051. <summary>
  34052. <para>Returns the icon <see cref="T:Godot.StyleBox"/> at <c>name</c> if the theme has <c>type</c>.</para>
  34053. </summary>
  34054. </member>
  34055. <member name="M:Godot.Theme.HasStylebox(System.String,System.String)">
  34056. <summary>
  34057. <para>Returns <c>true</c> if <see cref="T:Godot.StyleBox"/> with <c>name</c> is in <c>type</c>.</para>
  34058. <para>Returns <c>false</c> if the theme does not have <c>type</c>.</para>
  34059. </summary>
  34060. </member>
  34061. <member name="M:Godot.Theme.ClearStylebox(System.String,System.String)">
  34062. <summary>
  34063. <para>Clears <see cref="T:Godot.StyleBox"/> at <c>name</c> if the theme has <c>type</c>.</para>
  34064. </summary>
  34065. </member>
  34066. <member name="M:Godot.Theme.GetStyleboxList(System.String)">
  34067. <summary>
  34068. <para>Returns all the <see cref="T:Godot.StyleBox"/>s as a <see cref="T:System.String"/> filled with each <see cref="T:Godot.StyleBox"/>'s name, for use in <see cref="M:Godot.Theme.GetStylebox(System.String,System.String)"/>, if the theme has <c>type</c>.</para>
  34069. </summary>
  34070. </member>
  34071. <member name="M:Godot.Theme.GetStyleboxTypes">
  34072. <summary>
  34073. <para>Returns all the <see cref="T:Godot.StyleBox"/> types as a <see cref="T:System.String"/> filled with each <see cref="T:Godot.StyleBox"/>'s type, for use in <see cref="M:Godot.Theme.GetStylebox(System.String,System.String)"/> and/or <see cref="M:Godot.Theme.GetStyleboxList(System.String)"/>, if the theme has <c>type</c>.</para>
  34074. </summary>
  34075. </member>
  34076. <member name="M:Godot.Theme.SetFont(System.String,System.String,Godot.Font)">
  34077. <summary>
  34078. <para>Sets the theme's <see cref="T:Godot.Font"/> to <c>font</c> at <c>name</c> in <c>type</c>.</para>
  34079. <para>Does nothing if the theme does not have <c>type</c>.</para>
  34080. </summary>
  34081. </member>
  34082. <member name="M:Godot.Theme.GetFont(System.String,System.String)">
  34083. <summary>
  34084. <para>Returns the <see cref="T:Godot.Font"/> at <c>name</c> if the theme has <c>type</c>.</para>
  34085. </summary>
  34086. </member>
  34087. <member name="M:Godot.Theme.HasFont(System.String,System.String)">
  34088. <summary>
  34089. <para>Returns <c>true</c> if <see cref="T:Godot.Font"/> with <c>name</c> is in <c>type</c>.</para>
  34090. <para>Returns <c>false</c> if the theme does not have <c>type</c>.</para>
  34091. </summary>
  34092. </member>
  34093. <member name="M:Godot.Theme.ClearFont(System.String,System.String)">
  34094. <summary>
  34095. <para>Clears the <see cref="T:Godot.Font"/> at <c>name</c> if the theme has <c>type</c>.</para>
  34096. </summary>
  34097. </member>
  34098. <member name="M:Godot.Theme.GetFontList(System.String)">
  34099. <summary>
  34100. <para>Returns all the <see cref="T:Godot.Font"/>s as a <see cref="T:System.String"/> filled with each <see cref="T:Godot.Font"/>'s name, for use in <see cref="M:Godot.Theme.GetFont(System.String,System.String)"/>, if the theme has <c>type</c>.</para>
  34101. </summary>
  34102. </member>
  34103. <member name="M:Godot.Theme.SetColor(System.String,System.String,Godot.Color)">
  34104. <summary>
  34105. <para>Sets the theme's <see cref="T:Godot.Color"/> to <c>color</c> at <c>name</c> in <c>type</c>.</para>
  34106. <para>Does nothing if the theme does not have <c>type</c>.</para>
  34107. </summary>
  34108. </member>
  34109. <member name="M:Godot.Theme.GetColor(System.String,System.String)">
  34110. <summary>
  34111. <para>Returns the <see cref="T:Godot.Color"/> at <c>name</c> if the theme has <c>type</c>.</para>
  34112. </summary>
  34113. </member>
  34114. <member name="M:Godot.Theme.HasColor(System.String,System.String)">
  34115. <summary>
  34116. <para>Returns <c>true</c> if <see cref="T:Godot.Color"/> with <c>name</c> is in <c>type</c>.</para>
  34117. <para>Returns <c>false</c> if the theme does not have <c>type</c>.</para>
  34118. </summary>
  34119. </member>
  34120. <member name="M:Godot.Theme.ClearColor(System.String,System.String)">
  34121. <summary>
  34122. <para>Clears the <see cref="T:Godot.Color"/> at <c>name</c> if the theme has <c>type</c>.</para>
  34123. </summary>
  34124. </member>
  34125. <member name="M:Godot.Theme.GetColorList(System.String)">
  34126. <summary>
  34127. <para>Returns all the <see cref="T:Godot.Color"/>s as a <see cref="T:System.String"/> filled with each <see cref="T:Godot.Color"/>'s name, for use in <see cref="M:Godot.Theme.GetColor(System.String,System.String)"/>, if the theme has <c>type</c>.</para>
  34128. </summary>
  34129. </member>
  34130. <member name="M:Godot.Theme.SetConstant(System.String,System.String,System.Int32)">
  34131. <summary>
  34132. <para>Sets the theme's constant to <c>constant</c> at <c>name</c> in <c>type</c>.</para>
  34133. <para>Does nothing if the theme does not have <c>type</c>.</para>
  34134. </summary>
  34135. </member>
  34136. <member name="M:Godot.Theme.GetConstant(System.String,System.String)">
  34137. <summary>
  34138. <para>Returns the constant at <c>name</c> if the theme has <c>type</c>.</para>
  34139. </summary>
  34140. </member>
  34141. <member name="M:Godot.Theme.HasConstant(System.String,System.String)">
  34142. <summary>
  34143. <para>Returns <c>true</c> if constant with <c>name</c> is in <c>type</c>.</para>
  34144. <para>Returns <c>false</c> if the theme does not have <c>type</c>.</para>
  34145. </summary>
  34146. </member>
  34147. <member name="M:Godot.Theme.ClearConstant(System.String,System.String)">
  34148. <summary>
  34149. <para>Clears the constant at <c>name</c> if the theme has <c>type</c>.</para>
  34150. </summary>
  34151. </member>
  34152. <member name="M:Godot.Theme.GetConstantList(System.String)">
  34153. <summary>
  34154. <para>Returns all the constants as a <see cref="T:System.String"/> filled with each constant's name, for use in <see cref="M:Godot.Theme.GetConstant(System.String,System.String)"/>, if the theme has <c>type</c>.</para>
  34155. </summary>
  34156. </member>
  34157. <member name="M:Godot.Theme.Clear">
  34158. <summary>
  34159. <para>Clears all values on the theme.</para>
  34160. </summary>
  34161. </member>
  34162. <member name="M:Godot.Theme.GetTypeList(System.String)">
  34163. <summary>
  34164. <para>Returns all the types in <c>type</c> as a <see cref="T:System.String"/> for use in any of the <c>get_*</c> functions, if the theme has <c>type</c>.</para>
  34165. </summary>
  34166. </member>
  34167. <member name="M:Godot.Theme.CopyDefaultTheme">
  34168. <summary>
  34169. <para>Sets the theme's values to a copy of the default theme values.</para>
  34170. </summary>
  34171. </member>
  34172. <member name="M:Godot.Theme.CopyTheme(Godot.Theme)">
  34173. <summary>
  34174. <para>Sets the theme's values to a copy of a given theme.</para>
  34175. </summary>
  34176. </member>
  34177. <member name="T:Godot.TileMap">
  34178. <summary>
  34179. <para>Node for 2D tile-based maps. Tilemaps use a <see cref="T:Godot.TileSet"/> which contain a list of tiles (textures plus optional collision, navigation, and/or occluder shapes) which are used to create grid-based maps.</para>
  34180. </summary>
  34181. </member>
  34182. <member name="F:Godot.TileMap.InvalidCell">
  34183. <summary>
  34184. <para>Returned when a cell doesn't exist.</para>
  34185. </summary>
  34186. </member>
  34187. <member name="F:Godot.TileMap.ModeEnum.Square">
  34188. <summary>
  34189. <para>Orthogonal orientation mode.</para>
  34190. </summary>
  34191. </member>
  34192. <member name="F:Godot.TileMap.ModeEnum.Isometric">
  34193. <summary>
  34194. <para>Isometric orientation mode.</para>
  34195. </summary>
  34196. </member>
  34197. <member name="F:Godot.TileMap.ModeEnum.Custom">
  34198. <summary>
  34199. <para>Custom orientation mode.</para>
  34200. </summary>
  34201. </member>
  34202. <member name="F:Godot.TileMap.TileOrigin.TopLeft">
  34203. <summary>
  34204. <para>Tile origin at its top-left corner.</para>
  34205. </summary>
  34206. </member>
  34207. <member name="F:Godot.TileMap.TileOrigin.Center">
  34208. <summary>
  34209. <para>Tile origin at its center.</para>
  34210. </summary>
  34211. </member>
  34212. <member name="F:Godot.TileMap.TileOrigin.BottomLeft">
  34213. <summary>
  34214. <para>Tile origin at its bottom-left corner.</para>
  34215. </summary>
  34216. </member>
  34217. <member name="F:Godot.TileMap.HalfOffset.X">
  34218. <summary>
  34219. <para>Half offset on the X coordinate.</para>
  34220. </summary>
  34221. </member>
  34222. <member name="F:Godot.TileMap.HalfOffset.Y">
  34223. <summary>
  34224. <para>Half offset on the Y coordinate.</para>
  34225. </summary>
  34226. </member>
  34227. <member name="F:Godot.TileMap.HalfOffset.Disabled">
  34228. <summary>
  34229. <para>Half offset disabled.</para>
  34230. </summary>
  34231. </member>
  34232. <member name="F:Godot.TileMap.HalfOffset.NegativeX">
  34233. <summary>
  34234. <para>Half offset on the X coordinate (negative).</para>
  34235. </summary>
  34236. </member>
  34237. <member name="F:Godot.TileMap.HalfOffset.NegativeY">
  34238. <summary>
  34239. <para>Half offset on the Y coordinate (negative).</para>
  34240. </summary>
  34241. </member>
  34242. <member name="P:Godot.TileMap.Mode">
  34243. <summary>
  34244. <para>The TileMap orientation mode. See <see cref="T:Godot.TileMap.ModeEnum"/> for possible values.</para>
  34245. </summary>
  34246. </member>
  34247. <member name="P:Godot.TileMap.TileSet">
  34248. <summary>
  34249. <para>The assigned <see cref="T:Godot.TileSet"/>.</para>
  34250. </summary>
  34251. </member>
  34252. <member name="P:Godot.TileMap.CellSize">
  34253. <summary>
  34254. <para>The TileMap's cell size.</para>
  34255. </summary>
  34256. </member>
  34257. <member name="P:Godot.TileMap.CellQuadrantSize">
  34258. <summary>
  34259. <para>The TileMap's quadrant size. Optimizes drawing by batching, using chunks of this size.</para>
  34260. </summary>
  34261. </member>
  34262. <member name="P:Godot.TileMap.CellCustomTransform">
  34263. <summary>
  34264. <para>The custom <see cref="T:Godot.Transform2D"/> to be applied to the TileMap's cells.</para>
  34265. </summary>
  34266. </member>
  34267. <member name="P:Godot.TileMap.CellHalfOffset">
  34268. <summary>
  34269. <para>Amount to offset alternating tiles. See <see cref="T:Godot.TileMap.HalfOffset"/> for possible values.</para>
  34270. </summary>
  34271. </member>
  34272. <member name="P:Godot.TileMap.CellTileOrigin">
  34273. <summary>
  34274. <para>Position for tile origin. See <see cref="T:Godot.TileMap.TileOrigin"/> for possible values.</para>
  34275. </summary>
  34276. </member>
  34277. <member name="P:Godot.TileMap.CellYSort">
  34278. <summary>
  34279. <para>If <c>true</c>, the TileMap's children will be drawn in order of their Y coordinate.</para>
  34280. </summary>
  34281. </member>
  34282. <member name="P:Godot.TileMap.CompatibilityMode">
  34283. <summary>
  34284. <para>If <c>true</c>, the compatibility with the tilemaps made in Godot 3.1 or earlier is maintained (textures move when the tile origin changes and rotate if the texture size is not homogeneous). This mode presents problems when doing <c>flip_h</c>, <c>flip_v</c> and <c>transpose</c> tile operations on non-homogeneous isometric tiles (e.g. 2:1), in which the texture could not coincide with the collision, thus it is not recommended for isometric or non-square tiles.</para>
  34285. <para>If <c>false</c>, the textures do not move when doing <c>flip_h</c>, <c>flip_v</c> operations if no offset is used, nor when changing the tile origin.</para>
  34286. <para>The compatibility mode doesn't work with the <see cref="P:Godot.TileMap.CenteredTextures"/> option, because displacing textures with the <see cref="P:Godot.TileMap.CellTileOrigin"/> option or in irregular tiles is not relevant when centering those textures.</para>
  34287. </summary>
  34288. </member>
  34289. <member name="P:Godot.TileMap.CenteredTextures">
  34290. <summary>
  34291. <para>If <c>true</c>, the textures will be centered in the middle of each tile. This is useful for certain isometric or top-down modes when textures are made larger or smaller than the tiles (e.g. to avoid flickering on tile edges). The offset is still applied, but from the center of the tile. If used, <see cref="P:Godot.TileMap.CompatibilityMode"/> is ignored.</para>
  34292. <para>If <c>false</c>, the texture position start in the top-left corner unless <see cref="P:Godot.TileMap.CompatibilityMode"/> is enabled.</para>
  34293. </summary>
  34294. </member>
  34295. <member name="P:Godot.TileMap.CellClipUv">
  34296. <summary>
  34297. <para>If <c>true</c>, the cell's UVs will be clipped.</para>
  34298. </summary>
  34299. </member>
  34300. <member name="P:Godot.TileMap.CollisionUseParent">
  34301. <summary>
  34302. <para>If <c>true</c>, this tilemap's collision shape will be added to the collision shape of the parent. The parent has to be a <see cref="T:Godot.CollisionObject2D"/>.</para>
  34303. </summary>
  34304. </member>
  34305. <member name="P:Godot.TileMap.CollisionUseKinematic">
  34306. <summary>
  34307. <para>If <c>true</c>, TileMap collisions will be handled as a kinematic body. If <c>false</c>, collisions will be handled as static body.</para>
  34308. </summary>
  34309. </member>
  34310. <member name="P:Godot.TileMap.CollisionFriction">
  34311. <summary>
  34312. <para>Friction value for static body collisions (see <c>collision_use_kinematic</c>).</para>
  34313. </summary>
  34314. </member>
  34315. <member name="P:Godot.TileMap.CollisionBounce">
  34316. <summary>
  34317. <para>Bounce value for static body collisions (see <c>collision_use_kinematic</c>).</para>
  34318. </summary>
  34319. </member>
  34320. <member name="P:Godot.TileMap.CollisionLayer">
  34321. <summary>
  34322. <para>The collision layer(s) for all colliders in the TileMap.</para>
  34323. </summary>
  34324. </member>
  34325. <member name="P:Godot.TileMap.CollisionMask">
  34326. <summary>
  34327. <para>The collision mask(s) for all colliders in the TileMap.</para>
  34328. </summary>
  34329. </member>
  34330. <member name="P:Godot.TileMap.OccluderLightMask">
  34331. <summary>
  34332. <para>The light mask assigned to all light occluders in the TileMap. The TileSet's light occluders will cast shadows only from Light2D(s) that have the same light mask(s).</para>
  34333. </summary>
  34334. </member>
  34335. <member name="M:Godot.TileMap.SetCollisionLayerBit(System.Int32,System.Boolean)">
  34336. <summary>
  34337. <para>Sets the given collision layer bit.</para>
  34338. </summary>
  34339. </member>
  34340. <member name="M:Godot.TileMap.GetCollisionLayerBit(System.Int32)">
  34341. <summary>
  34342. <para>Returns <c>true</c> if the given collision layer bit is set.</para>
  34343. </summary>
  34344. </member>
  34345. <member name="M:Godot.TileMap.SetCollisionMaskBit(System.Int32,System.Boolean)">
  34346. <summary>
  34347. <para>Sets the given collision mask bit.</para>
  34348. </summary>
  34349. </member>
  34350. <member name="M:Godot.TileMap.GetCollisionMaskBit(System.Int32)">
  34351. <summary>
  34352. <para>Returns <c>true</c> if the given collision mask bit is set.</para>
  34353. </summary>
  34354. </member>
  34355. <member name="M:Godot.TileMap.SetCell(System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Nullable{Godot.Vector2})">
  34356. <summary>
  34357. <para>Sets the tile index for the cell given by a Vector2.</para>
  34358. <para>An index of <c>-1</c> clears the cell.</para>
  34359. <para>Optionally, the tile can also be flipped, transposed, or given autotile coordinates. The autotile coordinate refers to the column and row of the subtile.</para>
  34360. <para>Note: Data such as navigation polygons and collision shapes are not immediately updated for performance reasons.</para>
  34361. <para>If you need these to be immediately updated, you can call <see cref="M:Godot.TileMap.UpdateDirtyQuadrants"/>.</para>
  34362. <para>Overriding this method also overrides it internally, allowing custom logic to be implemented when tiles are placed/removed:</para>
  34363. <para><code>
  34364. func set_cell(x, y, tile, flip_x, flip_y, transpose, autotile_coord)
  34365. # Write your custom logic here.
  34366. # To call the default method:
  34367. .set_cell(x, y, tile, flip_x, flip_y, transpose, autotile_coord)
  34368. </code></para>
  34369. </summary>
  34370. <param name="autotileCoord">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  34371. </member>
  34372. <member name="M:Godot.TileMap.SetCellv(Godot.Vector2,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
  34373. <summary>
  34374. <para>Sets the tile index for the given cell.</para>
  34375. <para>An index of <c>-1</c> clears the cell.</para>
  34376. <para>Optionally, the tile can also be flipped or transposed.</para>
  34377. <para>Note: Data such as navigation polygons and collision shapes are not immediately updated for performance reasons.</para>
  34378. <para>If you need these to be immediately updated, you can call <see cref="M:Godot.TileMap.UpdateDirtyQuadrants"/>.</para>
  34379. </summary>
  34380. </member>
  34381. <member name="M:Godot.TileMap.GetCell(System.Int32,System.Int32)">
  34382. <summary>
  34383. <para>Returns the tile index of the given cell. If no tile exists in the cell, returns .</para>
  34384. </summary>
  34385. </member>
  34386. <member name="M:Godot.TileMap.GetCellv(Godot.Vector2)">
  34387. <summary>
  34388. <para>Returns the tile index of the cell given by a Vector2. If no tile exists in the cell, returns .</para>
  34389. </summary>
  34390. </member>
  34391. <member name="M:Godot.TileMap.IsCellXFlipped(System.Int32,System.Int32)">
  34392. <summary>
  34393. <para>Returns <c>true</c> if the given cell is flipped in the X axis.</para>
  34394. </summary>
  34395. </member>
  34396. <member name="M:Godot.TileMap.IsCellYFlipped(System.Int32,System.Int32)">
  34397. <summary>
  34398. <para>Returns <c>true</c> if the given cell is flipped in the Y axis.</para>
  34399. </summary>
  34400. </member>
  34401. <member name="M:Godot.TileMap.IsCellTransposed(System.Int32,System.Int32)">
  34402. <summary>
  34403. <para>Returns <c>true</c> if the given cell is transposed, i.e. the X and Y axes are swapped.</para>
  34404. </summary>
  34405. </member>
  34406. <member name="M:Godot.TileMap.GetCellAutotileCoord(System.Int32,System.Int32)">
  34407. <summary>
  34408. <para>Returns the coordinate (subtile column and row) of the autotile variation in the tileset. Returns a zero vector if the cell doesn't have autotiling.</para>
  34409. </summary>
  34410. </member>
  34411. <member name="M:Godot.TileMap.FixInvalidTiles">
  34412. <summary>
  34413. <para>Clears cells that do not exist in the tileset.</para>
  34414. </summary>
  34415. </member>
  34416. <member name="M:Godot.TileMap.Clear">
  34417. <summary>
  34418. <para>Clears all cells.</para>
  34419. </summary>
  34420. </member>
  34421. <member name="M:Godot.TileMap.GetUsedCells">
  34422. <summary>
  34423. <para>Returns a <see cref="T:Godot.Vector2"/> array with the positions of all cells containing a tile from the tileset (i.e. a tile index different from <c>-1</c>).</para>
  34424. </summary>
  34425. </member>
  34426. <member name="M:Godot.TileMap.GetUsedCellsById(System.Int32)">
  34427. <summary>
  34428. <para>Returns an array of all cells with the given tile index specified in <c>id</c>.</para>
  34429. </summary>
  34430. </member>
  34431. <member name="M:Godot.TileMap.GetUsedRect">
  34432. <summary>
  34433. <para>Returns a rectangle enclosing the used (non-empty) tiles of the map.</para>
  34434. </summary>
  34435. </member>
  34436. <member name="M:Godot.TileMap.MapToWorld(Godot.Vector2,System.Boolean)">
  34437. <summary>
  34438. <para>Returns the global position corresponding to the given tilemap (grid-based) coordinates.</para>
  34439. <para>Optionally, the tilemap's half offset can be ignored.</para>
  34440. </summary>
  34441. </member>
  34442. <member name="M:Godot.TileMap.WorldToMap(Godot.Vector2)">
  34443. <summary>
  34444. <para>Returns the tilemap (grid-based) coordinates corresponding to the given local position.</para>
  34445. </summary>
  34446. </member>
  34447. <member name="M:Godot.TileMap.UpdateDirtyQuadrants">
  34448. <summary>
  34449. <para>Updates the tile map's quadrants, allowing things such as navigation and collision shapes to be immediately used if modified.</para>
  34450. </summary>
  34451. </member>
  34452. <member name="M:Godot.TileMap.UpdateBitmaskArea(Godot.Vector2)">
  34453. <summary>
  34454. <para>Applies autotiling rules to the cell (and its adjacent cells) referenced by its grid-based X and Y coordinates.</para>
  34455. </summary>
  34456. </member>
  34457. <member name="M:Godot.TileMap.UpdateBitmaskRegion(System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2})">
  34458. <summary>
  34459. <para>Applies autotiling rules to the cells in the given region (specified by grid-based X and Y coordinates).</para>
  34460. <para>Calling with invalid (or missing) parameters applies autotiling rules for the entire tilemap.</para>
  34461. </summary>
  34462. <param name="start">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  34463. <param name="end">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  34464. </member>
  34465. <member name="T:Godot.TileSet">
  34466. <summary>
  34467. <para>A TileSet is a library of tiles for a <see cref="T:Godot.TileMap"/>. It contains a list of tiles, each consisting of a sprite and optional collision shapes.</para>
  34468. <para>Tiles are referenced by a unique integer ID.</para>
  34469. </summary>
  34470. </member>
  34471. <member name="M:Godot.TileSet._IsTileBound(System.Int32,System.Int32)">
  34472. <summary>
  34473. <para>Determines when the auto-tiler should consider two different auto-tile IDs to be bound together.</para>
  34474. <para>Note: <c>neighbor_id</c> will be <c>-1</c> () when checking a tile against an empty neighbor tile.</para>
  34475. </summary>
  34476. </member>
  34477. <member name="M:Godot.TileSet.CreateTile(System.Int32)">
  34478. <summary>
  34479. <para>Creates a new tile with the given ID.</para>
  34480. </summary>
  34481. </member>
  34482. <member name="M:Godot.TileSet.AutotileClearBitmaskMap(System.Int32)">
  34483. <summary>
  34484. <para>Clears all bitmask information of the autotile.</para>
  34485. </summary>
  34486. </member>
  34487. <member name="M:Godot.TileSet.AutotileSetIconCoordinate(System.Int32,Godot.Vector2)">
  34488. <summary>
  34489. <para>Sets the subtile that will be used as an icon in an atlas/autotile given its coordinates.</para>
  34490. <para>The subtile defined as the icon will be used as a fallback when the atlas/autotile's bitmask information is incomplete. It will also be used to represent it in the TileSet editor.</para>
  34491. </summary>
  34492. </member>
  34493. <member name="M:Godot.TileSet.AutotileGetIconCoordinate(System.Int32)">
  34494. <summary>
  34495. <para>Returns the subtile that's being used as an icon in an atlas/autotile given its coordinates.</para>
  34496. <para>The subtile defined as the icon will be used as a fallback when the atlas/autotile's bitmask information is incomplete. It will also be used to represent it in the TileSet editor.</para>
  34497. </summary>
  34498. </member>
  34499. <member name="M:Godot.TileSet.AutotileSetSubtilePriority(System.Int32,Godot.Vector2,System.Int32)">
  34500. <summary>
  34501. <para>Sets the priority of the subtile from an autotile given its coordinates.</para>
  34502. <para>When more than one subtile has the same bitmask value, one of them will be picked randomly for drawing. Its priority will define how often it will be picked.</para>
  34503. </summary>
  34504. </member>
  34505. <member name="M:Godot.TileSet.AutotileGetSubtilePriority(System.Int32,Godot.Vector2)">
  34506. <summary>
  34507. <para>Returns the priority of the subtile from an autotile given its coordinates.</para>
  34508. <para>When more than one subtile has the same bitmask value, one of them will be picked randomly for drawing. Its priority will define how often it will be picked.</para>
  34509. </summary>
  34510. </member>
  34511. <member name="M:Godot.TileSet.AutotileSetZIndex(System.Int32,Godot.Vector2,System.Int32)">
  34512. <summary>
  34513. <para>Sets the drawing index of the subtile from an atlas/autotile given its coordinates.</para>
  34514. </summary>
  34515. </member>
  34516. <member name="M:Godot.TileSet.AutotileGetZIndex(System.Int32,Godot.Vector2)">
  34517. <summary>
  34518. <para>Returns the drawing index of the subtile from an atlas/autotile given its coordinates.</para>
  34519. </summary>
  34520. </member>
  34521. <member name="M:Godot.TileSet.AutotileSetLightOccluder(System.Int32,Godot.OccluderPolygon2D,Godot.Vector2)">
  34522. <summary>
  34523. <para>Sets the light occluder of the subtile from an atlas/autotile given its coordinates.</para>
  34524. </summary>
  34525. </member>
  34526. <member name="M:Godot.TileSet.AutotileGetLightOccluder(System.Int32,Godot.Vector2)">
  34527. <summary>
  34528. <para>Returns the light occluder of the subtile from an atlas/autotile given its coordinates.</para>
  34529. </summary>
  34530. </member>
  34531. <member name="M:Godot.TileSet.AutotileSetNavigationPolygon(System.Int32,Godot.NavigationPolygon,Godot.Vector2)">
  34532. <summary>
  34533. <para>Sets the navigation polygon of the subtile from an atlas/autotile given its coordinates.</para>
  34534. </summary>
  34535. </member>
  34536. <member name="M:Godot.TileSet.AutotileGetNavigationPolygon(System.Int32,Godot.Vector2)">
  34537. <summary>
  34538. <para>Returns the navigation polygon of the subtile from an atlas/autotile given its coordinates.</para>
  34539. </summary>
  34540. </member>
  34541. <member name="M:Godot.TileSet.AutotileSetBitmask(System.Int32,Godot.Vector2,System.UInt32)">
  34542. <summary>
  34543. <para>Sets the bitmask of the subtile from an autotile given its coordinates.</para>
  34544. <para>The value is the sum of the values in <see cref="T:Godot.TileSet.AutotileBindings"/> present in the subtile (e.g. a value of 5 means the bitmask has bindings in both the top left and top right).</para>
  34545. </summary>
  34546. </member>
  34547. <member name="M:Godot.TileSet.AutotileGetBitmask(System.Int32,Godot.Vector2)">
  34548. <summary>
  34549. <para>Returns the bitmask of the subtile from an autotile given its coordinates.</para>
  34550. <para>The value is the sum of the values in <see cref="T:Godot.TileSet.AutotileBindings"/> present in the subtile (e.g. a value of 5 means the bitmask has bindings in both the top left and top right).</para>
  34551. </summary>
  34552. </member>
  34553. <member name="M:Godot.TileSet.AutotileSetBitmaskMode(System.Int32,Godot.TileSet.BitmaskMode)">
  34554. <summary>
  34555. <para>Sets the <see cref="T:Godot.TileSet.BitmaskMode"/> of the autotile.</para>
  34556. </summary>
  34557. </member>
  34558. <member name="M:Godot.TileSet.AutotileGetBitmaskMode(System.Int32)">
  34559. <summary>
  34560. <para>Returns the <see cref="T:Godot.TileSet.BitmaskMode"/> of the autotile.</para>
  34561. </summary>
  34562. </member>
  34563. <member name="M:Godot.TileSet.AutotileSetSpacing(System.Int32,System.Int32)">
  34564. <summary>
  34565. <para>Sets the spacing between subtiles of the atlas/autotile.</para>
  34566. </summary>
  34567. </member>
  34568. <member name="M:Godot.TileSet.AutotileGetSpacing(System.Int32)">
  34569. <summary>
  34570. <para>Returns the spacing between subtiles of the atlas/autotile.</para>
  34571. </summary>
  34572. </member>
  34573. <member name="M:Godot.TileSet.AutotileSetSize(System.Int32,Godot.Vector2)">
  34574. <summary>
  34575. <para>Sets the size of the subtiles in an atlas/autotile.</para>
  34576. </summary>
  34577. </member>
  34578. <member name="M:Godot.TileSet.AutotileGetSize(System.Int32)">
  34579. <summary>
  34580. <para>Returns the size of the subtiles in an atlas/autotile.</para>
  34581. </summary>
  34582. </member>
  34583. <member name="M:Godot.TileSet.TileSetName(System.Int32,System.String)">
  34584. <summary>
  34585. <para>Sets the tile's name.</para>
  34586. </summary>
  34587. </member>
  34588. <member name="M:Godot.TileSet.TileGetName(System.Int32)">
  34589. <summary>
  34590. <para>Returns the tile's name.</para>
  34591. </summary>
  34592. </member>
  34593. <member name="M:Godot.TileSet.TileSetTexture(System.Int32,Godot.Texture)">
  34594. <summary>
  34595. <para>Sets the tile's texture.</para>
  34596. </summary>
  34597. </member>
  34598. <member name="M:Godot.TileSet.TileGetTexture(System.Int32)">
  34599. <summary>
  34600. <para>Returns the tile's texture.</para>
  34601. </summary>
  34602. </member>
  34603. <member name="M:Godot.TileSet.TileSetNormalMap(System.Int32,Godot.Texture)">
  34604. <summary>
  34605. <para>Sets the tile's normal map texture.</para>
  34606. <para>Note: Godot expects the normal map to use X+, Y-, and Z+ coordinates. See <a href="http://wiki.polycount.com/wiki/Normal_Map_Technical_Details#Common_Swizzle_Coordinates">this page</a> for a comparison of normal map coordinates expected by popular engines.</para>
  34607. </summary>
  34608. </member>
  34609. <member name="M:Godot.TileSet.TileGetNormalMap(System.Int32)">
  34610. <summary>
  34611. <para>Returns the tile's normal map texture.</para>
  34612. </summary>
  34613. </member>
  34614. <member name="M:Godot.TileSet.TileSetMaterial(System.Int32,Godot.ShaderMaterial)">
  34615. <summary>
  34616. <para>Sets the tile's material.</para>
  34617. </summary>
  34618. </member>
  34619. <member name="M:Godot.TileSet.TileGetMaterial(System.Int32)">
  34620. <summary>
  34621. <para>Returns the tile's material.</para>
  34622. </summary>
  34623. </member>
  34624. <member name="M:Godot.TileSet.TileSetModulate(System.Int32,Godot.Color)">
  34625. <summary>
  34626. <para>Sets the tile's modulation color.</para>
  34627. </summary>
  34628. </member>
  34629. <member name="M:Godot.TileSet.TileGetModulate(System.Int32)">
  34630. <summary>
  34631. <para>Returns the tile's modulation color.</para>
  34632. </summary>
  34633. </member>
  34634. <member name="M:Godot.TileSet.TileSetTextureOffset(System.Int32,Godot.Vector2)">
  34635. <summary>
  34636. <para>Sets the tile's texture offset.</para>
  34637. </summary>
  34638. </member>
  34639. <member name="M:Godot.TileSet.TileGetTextureOffset(System.Int32)">
  34640. <summary>
  34641. <para>Returns the texture offset of the tile.</para>
  34642. </summary>
  34643. </member>
  34644. <member name="M:Godot.TileSet.TileSetRegion(System.Int32,Godot.Rect2)">
  34645. <summary>
  34646. <para>Sets the tile's sub-region in the texture. This is common in texture atlases.</para>
  34647. </summary>
  34648. </member>
  34649. <member name="M:Godot.TileSet.TileGetRegion(System.Int32)">
  34650. <summary>
  34651. <para>Returns the tile sub-region in the texture.</para>
  34652. </summary>
  34653. </member>
  34654. <member name="M:Godot.TileSet.TileSetShape(System.Int32,System.Int32,Godot.Shape2D)">
  34655. <summary>
  34656. <para>Sets a shape for the tile, enabling collision.</para>
  34657. </summary>
  34658. </member>
  34659. <member name="M:Godot.TileSet.TileGetShape(System.Int32,System.Int32)">
  34660. <summary>
  34661. <para>Returns a tile's given shape.</para>
  34662. </summary>
  34663. </member>
  34664. <member name="M:Godot.TileSet.TileSetShapeOffset(System.Int32,System.Int32,Godot.Vector2)">
  34665. <summary>
  34666. <para>Sets the offset of a tile's shape.</para>
  34667. </summary>
  34668. </member>
  34669. <member name="M:Godot.TileSet.TileGetShapeOffset(System.Int32,System.Int32)">
  34670. <summary>
  34671. <para>Returns the offset of a tile's shape.</para>
  34672. </summary>
  34673. </member>
  34674. <member name="M:Godot.TileSet.TileSetShapeTransform(System.Int32,System.Int32,Godot.Transform2D)">
  34675. <summary>
  34676. <para>Sets a <see cref="T:Godot.Transform2D"/> on a tile's shape.</para>
  34677. </summary>
  34678. </member>
  34679. <member name="M:Godot.TileSet.TileGetShapeTransform(System.Int32,System.Int32)">
  34680. <summary>
  34681. <para>Returns the <see cref="T:Godot.Transform2D"/> of a tile's shape.</para>
  34682. </summary>
  34683. </member>
  34684. <member name="M:Godot.TileSet.TileSetShapeOneWay(System.Int32,System.Int32,System.Boolean)">
  34685. <summary>
  34686. <para>Enables one-way collision on a tile's shape.</para>
  34687. </summary>
  34688. </member>
  34689. <member name="M:Godot.TileSet.TileGetShapeOneWay(System.Int32,System.Int32)">
  34690. <summary>
  34691. <para>Returns the one-way collision value of a tile's shape.</para>
  34692. </summary>
  34693. </member>
  34694. <member name="M:Godot.TileSet.TileAddShape(System.Int32,Godot.Shape2D,Godot.Transform2D,System.Boolean,System.Nullable{Godot.Vector2})">
  34695. <summary>
  34696. <para>Adds a shape to the tile.</para>
  34697. </summary>
  34698. <param name="autotileCoord">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  34699. </member>
  34700. <member name="M:Godot.TileSet.TileGetShapeCount(System.Int32)">
  34701. <summary>
  34702. <para>Returns the number of shapes assigned to a tile.</para>
  34703. </summary>
  34704. </member>
  34705. <member name="M:Godot.TileSet.TileSetShapes(System.Int32,Godot.Collections.Array)">
  34706. <summary>
  34707. <para>Sets an array of shapes for the tile, enabling collision.</para>
  34708. </summary>
  34709. </member>
  34710. <member name="M:Godot.TileSet.TileGetShapes(System.Int32)">
  34711. <summary>
  34712. <para>Returns an array of the tile's shapes.</para>
  34713. </summary>
  34714. </member>
  34715. <member name="M:Godot.TileSet.TileSetTileMode(System.Int32,Godot.TileSet.TileMode)">
  34716. <summary>
  34717. <para>Sets the tile's <see cref="T:Godot.TileSet.TileMode"/>.</para>
  34718. </summary>
  34719. </member>
  34720. <member name="M:Godot.TileSet.TileGetTileMode(System.Int32)">
  34721. <summary>
  34722. <para>Returns the tile's <see cref="T:Godot.TileSet.TileMode"/>.</para>
  34723. </summary>
  34724. </member>
  34725. <member name="M:Godot.TileSet.TileSetNavigationPolygon(System.Int32,Godot.NavigationPolygon)">
  34726. <summary>
  34727. <para>Sets the tile's navigation polygon.</para>
  34728. </summary>
  34729. </member>
  34730. <member name="M:Godot.TileSet.TileGetNavigationPolygon(System.Int32)">
  34731. <summary>
  34732. <para>Returns the navigation polygon of the tile.</para>
  34733. </summary>
  34734. </member>
  34735. <member name="M:Godot.TileSet.TileSetNavigationPolygonOffset(System.Int32,Godot.Vector2)">
  34736. <summary>
  34737. <para>Sets an offset for the tile's navigation polygon.</para>
  34738. </summary>
  34739. </member>
  34740. <member name="M:Godot.TileSet.TileGetNavigationPolygonOffset(System.Int32)">
  34741. <summary>
  34742. <para>Returns the offset of the tile's navigation polygon.</para>
  34743. </summary>
  34744. </member>
  34745. <member name="M:Godot.TileSet.TileSetLightOccluder(System.Int32,Godot.OccluderPolygon2D)">
  34746. <summary>
  34747. <para>Sets a light occluder for the tile.</para>
  34748. </summary>
  34749. </member>
  34750. <member name="M:Godot.TileSet.TileGetLightOccluder(System.Int32)">
  34751. <summary>
  34752. <para>Returns the tile's light occluder.</para>
  34753. </summary>
  34754. </member>
  34755. <member name="M:Godot.TileSet.TileSetOccluderOffset(System.Int32,Godot.Vector2)">
  34756. <summary>
  34757. <para>Sets an offset for the tile's light occluder.</para>
  34758. </summary>
  34759. </member>
  34760. <member name="M:Godot.TileSet.TileGetOccluderOffset(System.Int32)">
  34761. <summary>
  34762. <para>Returns the offset of the tile's light occluder.</para>
  34763. </summary>
  34764. </member>
  34765. <member name="M:Godot.TileSet.TileSetZIndex(System.Int32,System.Int32)">
  34766. <summary>
  34767. <para>Sets the tile's drawing index.</para>
  34768. </summary>
  34769. </member>
  34770. <member name="M:Godot.TileSet.TileGetZIndex(System.Int32)">
  34771. <summary>
  34772. <para>Returns the tile's Z index (drawing layer).</para>
  34773. </summary>
  34774. </member>
  34775. <member name="M:Godot.TileSet.RemoveTile(System.Int32)">
  34776. <summary>
  34777. <para>Removes the given tile ID.</para>
  34778. </summary>
  34779. </member>
  34780. <member name="M:Godot.TileSet.Clear">
  34781. <summary>
  34782. <para>Clears all tiles.</para>
  34783. </summary>
  34784. </member>
  34785. <member name="M:Godot.TileSet.GetLastUnusedTileId">
  34786. <summary>
  34787. <para>Returns the ID following the last currently used ID, useful when creating a new tile.</para>
  34788. </summary>
  34789. </member>
  34790. <member name="M:Godot.TileSet.FindTileByName(System.String)">
  34791. <summary>
  34792. <para>Returns the first tile matching the given name.</para>
  34793. </summary>
  34794. </member>
  34795. <member name="M:Godot.TileSet.GetTilesIds">
  34796. <summary>
  34797. <para>Returns an array of all currently used tile IDs.</para>
  34798. </summary>
  34799. </member>
  34800. <member name="T:Godot.Timer">
  34801. <summary>
  34802. <para>Counts down a specified interval and emits a signal on reaching 0. Can be set to repeat or "one-shot" mode.</para>
  34803. </summary>
  34804. </member>
  34805. <member name="F:Godot.Timer.TimerProcessMode.Physics">
  34806. <summary>
  34807. <para>Update the timer during the physics step at each frame (fixed framerate processing).</para>
  34808. </summary>
  34809. </member>
  34810. <member name="F:Godot.Timer.TimerProcessMode.Idle">
  34811. <summary>
  34812. <para>Update the timer during the idle time at each frame.</para>
  34813. </summary>
  34814. </member>
  34815. <member name="P:Godot.Timer.ProcessMode">
  34816. <summary>
  34817. <para>Processing mode. See <see cref="T:Godot.Timer.TimerProcessMode"/>.</para>
  34818. </summary>
  34819. </member>
  34820. <member name="P:Godot.Timer.WaitTime">
  34821. <summary>
  34822. <para>Wait time in seconds.</para>
  34823. </summary>
  34824. </member>
  34825. <member name="P:Godot.Timer.OneShot">
  34826. <summary>
  34827. <para>If <c>true</c>, the timer will stop when reaching 0. If <c>false</c>, it will restart.</para>
  34828. </summary>
  34829. </member>
  34830. <member name="P:Godot.Timer.Autostart">
  34831. <summary>
  34832. <para>If <c>true</c>, the timer will automatically start when entering the scene tree.</para>
  34833. <para>Note: This property is automatically set to <c>false</c> after the timer enters the scene tree and starts.</para>
  34834. </summary>
  34835. </member>
  34836. <member name="P:Godot.Timer.Paused">
  34837. <summary>
  34838. <para>If <c>true</c>, the timer is paused and will not process until it is unpaused again, even if <see cref="M:Godot.Timer.Start(System.Single)"/> is called.</para>
  34839. </summary>
  34840. </member>
  34841. <member name="P:Godot.Timer.TimeLeft">
  34842. <summary>
  34843. <para>The timer's remaining time in seconds. Returns 0 if the timer is inactive.</para>
  34844. <para>Note: You cannot set this value. To change the timer's remaining time, use <see cref="M:Godot.Timer.Start(System.Single)"/>.</para>
  34845. </summary>
  34846. </member>
  34847. <member name="M:Godot.Timer.Start(System.Single)">
  34848. <summary>
  34849. <para>Starts the timer. Sets <c>wait_time</c> to <c>time_sec</c> if <c>time_sec &gt; 0</c>. This also resets the remaining time to <c>wait_time</c>.</para>
  34850. <para>Note: this method will not resume a paused timer. See <see cref="P:Godot.Timer.Paused"/>.</para>
  34851. </summary>
  34852. </member>
  34853. <member name="M:Godot.Timer.Stop">
  34854. <summary>
  34855. <para>Stops the timer.</para>
  34856. </summary>
  34857. </member>
  34858. <member name="M:Godot.Timer.IsStopped">
  34859. <summary>
  34860. <para>Returns <c>true</c> if the timer is stopped.</para>
  34861. </summary>
  34862. </member>
  34863. <member name="T:Godot.ToolButton">
  34864. <summary>
  34865. <para>This is a helper class to generate a flat <see cref="T:Godot.Button"/> (see <see cref="P:Godot.Button.Flat"/>), creating a <see cref="T:Godot.ToolButton"/> is equivalent to:</para>
  34866. <para><code>
  34867. var btn = Button.new()
  34868. btn.flat = true
  34869. </code></para>
  34870. </summary>
  34871. </member>
  34872. <member name="T:Godot.TouchScreenButton">
  34873. <summary>
  34874. <para>Button for touch screen devices. You can set it to be visible on all screens, or only on touch devices.</para>
  34875. </summary>
  34876. </member>
  34877. <member name="F:Godot.TouchScreenButton.VisibilityModeEnum.Always">
  34878. <summary>
  34879. <para>Always visible.</para>
  34880. </summary>
  34881. </member>
  34882. <member name="F:Godot.TouchScreenButton.VisibilityModeEnum.TouchscreenOnly">
  34883. <summary>
  34884. <para>Visible on touch screens only.</para>
  34885. </summary>
  34886. </member>
  34887. <member name="P:Godot.TouchScreenButton.Normal">
  34888. <summary>
  34889. <para>The button's texture for the normal state.</para>
  34890. </summary>
  34891. </member>
  34892. <member name="P:Godot.TouchScreenButton.Pressed">
  34893. <summary>
  34894. <para>The button's texture for the pressed state.</para>
  34895. </summary>
  34896. </member>
  34897. <member name="P:Godot.TouchScreenButton.Bitmask">
  34898. <summary>
  34899. <para>The button's bitmask.</para>
  34900. </summary>
  34901. </member>
  34902. <member name="P:Godot.TouchScreenButton.Shape">
  34903. <summary>
  34904. <para>The button's shape.</para>
  34905. </summary>
  34906. </member>
  34907. <member name="P:Godot.TouchScreenButton.ShapeCentered">
  34908. <summary>
  34909. <para>If <c>true</c>, the button's shape is centered in the provided texture. If no texture is used, this property has no effect.</para>
  34910. </summary>
  34911. </member>
  34912. <member name="P:Godot.TouchScreenButton.ShapeVisible">
  34913. <summary>
  34914. <para>If <c>true</c>, the button's shape is visible.</para>
  34915. </summary>
  34916. </member>
  34917. <member name="P:Godot.TouchScreenButton.PassbyPress">
  34918. <summary>
  34919. <para>If <c>true</c>, pass-by presses are enabled.</para>
  34920. </summary>
  34921. </member>
  34922. <member name="P:Godot.TouchScreenButton.Action">
  34923. <summary>
  34924. <para>The button's action. Actions can be handled with <see cref="T:Godot.InputEventAction"/>.</para>
  34925. </summary>
  34926. </member>
  34927. <member name="P:Godot.TouchScreenButton.VisibilityMode">
  34928. <summary>
  34929. <para>The button's visibility mode. See <see cref="T:Godot.TouchScreenButton.VisibilityModeEnum"/> for possible values.</para>
  34930. </summary>
  34931. </member>
  34932. <member name="M:Godot.TouchScreenButton.IsPressed">
  34933. <summary>
  34934. <para>Returns <c>true</c> if this button is currently pressed.</para>
  34935. </summary>
  34936. </member>
  34937. <member name="T:Godot.Translation">
  34938. <summary>
  34939. <para>Translations are resources that can be loaded and unloaded on demand. They map a string to another string.</para>
  34940. </summary>
  34941. </member>
  34942. <member name="P:Godot.Translation.Locale">
  34943. <summary>
  34944. <para>The locale of the translation.</para>
  34945. </summary>
  34946. </member>
  34947. <member name="M:Godot.Translation.AddMessage(System.String,System.String)">
  34948. <summary>
  34949. <para>Adds a message if nonexistent, followed by its translation.</para>
  34950. </summary>
  34951. </member>
  34952. <member name="M:Godot.Translation.GetMessage(System.String)">
  34953. <summary>
  34954. <para>Returns a message's translation.</para>
  34955. </summary>
  34956. </member>
  34957. <member name="M:Godot.Translation.EraseMessage(System.String)">
  34958. <summary>
  34959. <para>Erases a message.</para>
  34960. </summary>
  34961. </member>
  34962. <member name="M:Godot.Translation.GetMessageList">
  34963. <summary>
  34964. <para>Returns all the messages (keys).</para>
  34965. </summary>
  34966. </member>
  34967. <member name="M:Godot.Translation.GetMessageCount">
  34968. <summary>
  34969. <para>Returns the number of existing messages.</para>
  34970. </summary>
  34971. </member>
  34972. <member name="T:Godot.TranslationServer">
  34973. <summary>
  34974. <para>Server that manages all translations. Translations can be set to it and removed from it.</para>
  34975. </summary>
  34976. </member>
  34977. <member name="M:Godot.TranslationServer.SetLocale(System.String)">
  34978. <summary>
  34979. <para>Sets the locale of the game.</para>
  34980. </summary>
  34981. </member>
  34982. <member name="M:Godot.TranslationServer.GetLocale">
  34983. <summary>
  34984. <para>Returns the current locale of the game.</para>
  34985. </summary>
  34986. </member>
  34987. <member name="M:Godot.TranslationServer.GetLocaleName(System.String)">
  34988. <summary>
  34989. <para>Returns a locale's language and its variant (e.g. <c>"en_US"</c> would return <c>"English (United States)"</c>).</para>
  34990. </summary>
  34991. </member>
  34992. <member name="M:Godot.TranslationServer.Translate(System.String)">
  34993. <summary>
  34994. <para>Returns the current locale's translation for the given message (key).</para>
  34995. </summary>
  34996. </member>
  34997. <member name="M:Godot.TranslationServer.AddTranslation(Godot.Translation)">
  34998. <summary>
  34999. <para>Adds a <see cref="T:Godot.Translation"/> resource.</para>
  35000. </summary>
  35001. </member>
  35002. <member name="M:Godot.TranslationServer.RemoveTranslation(Godot.Translation)">
  35003. <summary>
  35004. <para>Removes the given translation from the server.</para>
  35005. </summary>
  35006. </member>
  35007. <member name="M:Godot.TranslationServer.Clear">
  35008. <summary>
  35009. <para>Clears the server from all translations.</para>
  35010. </summary>
  35011. </member>
  35012. <member name="M:Godot.TranslationServer.GetLoadedLocales">
  35013. <summary>
  35014. <para>Returns an Array of all loaded locales of the game.</para>
  35015. </summary>
  35016. </member>
  35017. <member name="T:Godot.Tree">
  35018. <summary>
  35019. <para>This shows a tree of items that can be selected, expanded and collapsed. The tree can have multiple columns with custom controls like text editing, buttons and popups. It can be useful for structured displays and interactions.</para>
  35020. <para>Trees are built via code, using <see cref="T:Godot.TreeItem"/> objects to create the structure. They have a single root but multiple roots can be simulated if a dummy hidden root is added.</para>
  35021. <para><code>
  35022. func _ready():
  35023. var tree = Tree.new()
  35024. var root = tree.create_item()
  35025. tree.set_hide_root(true)
  35026. var child1 = tree.create_item(root)
  35027. var child2 = tree.create_item(root)
  35028. var subchild1 = tree.create_item(child1)
  35029. subchild1.set_text(0, "Subchild1")
  35030. </code></para>
  35031. <para>To iterate over all the <see cref="T:Godot.TreeItem"/> objects in a <see cref="T:Godot.Tree"/> object, use <see cref="M:Godot.TreeItem.GetNext"/> and <see cref="M:Godot.TreeItem.GetChildren"/> after getting the root through <see cref="M:Godot.Tree.GetRoot"/>. You can use <see cref="M:Godot.Object.Free"/> on a <see cref="T:Godot.TreeItem"/> to remove it from the <see cref="T:Godot.Tree"/>.</para>
  35032. </summary>
  35033. </member>
  35034. <member name="F:Godot.Tree.SelectModeEnum.Single">
  35035. <summary>
  35036. <para>Allows selection of a single cell at a time. From the perspective of items, only a single item is allowed to be selected. And there is only one column selected in the selected item.</para>
  35037. <para>The focus cursor is always hidden in this mode, but it is positioned at the current selection, making the currently selected item the currently focused item.</para>
  35038. </summary>
  35039. </member>
  35040. <member name="F:Godot.Tree.SelectModeEnum.Row">
  35041. <summary>
  35042. <para>Allows selection of a single row at a time. From the perspective of items, only a single items is allowed to be selected. And all the columns are selected in the selected item.</para>
  35043. <para>The focus cursor is always hidden in this mode, but it is positioned at the first column of the current selection, making the currently selected item the currently focused item.</para>
  35044. </summary>
  35045. </member>
  35046. <member name="F:Godot.Tree.SelectModeEnum.Multi">
  35047. <summary>
  35048. <para>Allows selection of multiple cells at the same time. From the perspective of items, multiple items are allowed to be selected. And there can be multiple columns selected in each selected item.</para>
  35049. <para>The focus cursor is visible in this mode, the item or column under the cursor is not necessarily selected.</para>
  35050. </summary>
  35051. </member>
  35052. <member name="F:Godot.Tree.DropModeFlagsEnum.Disabled">
  35053. <summary>
  35054. <para>Disables all drop sections, but still allows to detect the "on item" drop section by <see cref="M:Godot.Tree.GetDropSectionAtPosition(Godot.Vector2)"/>.</para>
  35055. <para>Note: This is the default flag, it has no effect when combined with other flags.</para>
  35056. </summary>
  35057. </member>
  35058. <member name="F:Godot.Tree.DropModeFlagsEnum.OnItem">
  35059. <summary>
  35060. <para>Enables the "on item" drop section. This drop section covers the entire item.</para>
  35061. <para>When combined with , this drop section halves the height and stays centered vertically.</para>
  35062. </summary>
  35063. </member>
  35064. <member name="F:Godot.Tree.DropModeFlagsEnum.Inbetween">
  35065. <summary>
  35066. <para>Enables "above item" and "below item" drop sections. The "above item" drop section covers the top half of the item, and the "below item" drop section covers the bottom half.</para>
  35067. <para>When combined with , these drop sections halves the height and stays on top / bottom accordingly.</para>
  35068. </summary>
  35069. </member>
  35070. <member name="P:Godot.Tree.Columns">
  35071. <summary>
  35072. <para>The number of columns.</para>
  35073. </summary>
  35074. </member>
  35075. <member name="P:Godot.Tree.AllowReselect">
  35076. <summary>
  35077. <para>If <c>true</c>, the currently selected cell may be selected again.</para>
  35078. </summary>
  35079. </member>
  35080. <member name="P:Godot.Tree.AllowRmbSelect">
  35081. <summary>
  35082. <para>If <c>true</c>, a right mouse button click can select items.</para>
  35083. </summary>
  35084. </member>
  35085. <member name="P:Godot.Tree.HideFolding">
  35086. <summary>
  35087. <para>If <c>true</c>, the folding arrow is hidden.</para>
  35088. </summary>
  35089. </member>
  35090. <member name="P:Godot.Tree.HideRoot">
  35091. <summary>
  35092. <para>If <c>true</c>, the tree's root is hidden.</para>
  35093. </summary>
  35094. </member>
  35095. <member name="P:Godot.Tree.DropModeFlags">
  35096. <summary>
  35097. <para>The drop mode as an OR combination of flags. See <see cref="T:Godot.Tree.DropModeFlagsEnum"/> constants. Once dropping is done, reverts to . Setting this during <see cref="M:Godot.Control.CanDropData(Godot.Vector2,System.Object)"/> is recommended.</para>
  35098. <para>This controls the drop sections, i.e. the decision and drawing of possible drop locations based on the mouse position.</para>
  35099. </summary>
  35100. </member>
  35101. <member name="P:Godot.Tree.SelectMode">
  35102. <summary>
  35103. <para>Allows single or multiple selection. See the <see cref="T:Godot.Tree.SelectModeEnum"/> constants.</para>
  35104. </summary>
  35105. </member>
  35106. <member name="M:Godot.Tree.Clear">
  35107. <summary>
  35108. <para>Clears the tree. This removes all items.</para>
  35109. </summary>
  35110. </member>
  35111. <member name="M:Godot.Tree.CreateItem(Godot.Object,System.Int32)">
  35112. <summary>
  35113. <para>Creates an item in the tree and adds it as a child of <c>parent</c>.</para>
  35114. <para>If <c>parent</c> is <c>null</c>, the root item will be the parent, or the new item will be the root itself if the tree is empty.</para>
  35115. <para>The new item will be the <c>idx</c>th child of parent, or it will be the last child if there are not enough siblings.</para>
  35116. </summary>
  35117. </member>
  35118. <member name="M:Godot.Tree.GetRoot">
  35119. <summary>
  35120. <para>Returns the tree's root item, or <c>null</c> if the tree is empty.</para>
  35121. </summary>
  35122. </member>
  35123. <member name="M:Godot.Tree.SetColumnMinWidth(System.Int32,System.Int32)">
  35124. <summary>
  35125. <para>Sets the minimum width of a column. Columns that have the "Expand" flag will use their "min_width" in a similar fashion to <see cref="P:Godot.Control.SizeFlagsStretchRatio"/>.</para>
  35126. </summary>
  35127. </member>
  35128. <member name="M:Godot.Tree.SetColumnExpand(System.Int32,System.Boolean)">
  35129. <summary>
  35130. <para>If <c>true</c>, the column will have the "Expand" flag of <see cref="T:Godot.Control"/>. Columns that have the "Expand" flag will use their "min_width" in a similar fashion to <see cref="P:Godot.Control.SizeFlagsStretchRatio"/>.</para>
  35131. </summary>
  35132. </member>
  35133. <member name="M:Godot.Tree.GetColumnWidth(System.Int32)">
  35134. <summary>
  35135. <para>Returns the column's width in pixels.</para>
  35136. </summary>
  35137. </member>
  35138. <member name="M:Godot.Tree.GetNextSelected(Godot.Object)">
  35139. <summary>
  35140. <para>Returns the next selected item after the given one, or <c>null</c> if the end is reached.</para>
  35141. <para>If <c>from</c> is <c>null</c>, this returns the first selected item.</para>
  35142. </summary>
  35143. </member>
  35144. <member name="M:Godot.Tree.GetSelected">
  35145. <summary>
  35146. <para>Returns the currently focused item, or <c>null</c> if no item is focused.</para>
  35147. <para>In and modes, the focused item is same as the selected item. In mode, the focused item is the item under the focus cursor, not necessarily selected.</para>
  35148. <para>To get the currently selected item(s), use <see cref="M:Godot.Tree.GetNextSelected(Godot.Object)"/>.</para>
  35149. </summary>
  35150. </member>
  35151. <member name="M:Godot.Tree.GetSelectedColumn">
  35152. <summary>
  35153. <para>Returns the currently focused column, or -1 if no column is focused.</para>
  35154. <para>In mode, the focused column is the selected column. In mode, the focused column is always 0 if any item is selected. In mode, the focused column is the column under the focus cursor, and there are not necessarily any column selected.</para>
  35155. <para>To tell whether a column of an item is selected, use <see cref="M:Godot.TreeItem.IsSelected(System.Int32)"/>.</para>
  35156. </summary>
  35157. </member>
  35158. <member name="M:Godot.Tree.GetPressedButton">
  35159. <summary>
  35160. <para>Returns the last pressed button's index.</para>
  35161. </summary>
  35162. </member>
  35163. <member name="M:Godot.Tree.GetEdited">
  35164. <summary>
  35165. <para>Returns the currently edited item. This is only available for custom cell mode.</para>
  35166. </summary>
  35167. </member>
  35168. <member name="M:Godot.Tree.GetEditedColumn">
  35169. <summary>
  35170. <para>Returns the column for the currently edited item. This is only available for custom cell mode.</para>
  35171. </summary>
  35172. </member>
  35173. <member name="M:Godot.Tree.GetCustomPopupRect">
  35174. <summary>
  35175. <para>Returns the rectangle for custom popups. Helper to create custom cell controls that display a popup. See <see cref="M:Godot.TreeItem.SetCellMode(System.Int32,Godot.TreeItem.TreeCellMode)"/>.</para>
  35176. </summary>
  35177. </member>
  35178. <member name="M:Godot.Tree.GetItemAreaRect(Godot.Object,System.Int32)">
  35179. <summary>
  35180. <para>Returns the rectangle area for the specified item. If <c>column</c> is specified, only get the position and size of that column, otherwise get the rectangle containing all columns.</para>
  35181. </summary>
  35182. </member>
  35183. <member name="M:Godot.Tree.GetItemAtPosition(Godot.Vector2)">
  35184. <summary>
  35185. <para>Returns the tree item at the specified position (relative to the tree origin position).</para>
  35186. </summary>
  35187. </member>
  35188. <member name="M:Godot.Tree.GetColumnAtPosition(Godot.Vector2)">
  35189. <summary>
  35190. <para>Returns the column index at <c>position</c>, or -1 if no item is there.</para>
  35191. </summary>
  35192. </member>
  35193. <member name="M:Godot.Tree.GetDropSectionAtPosition(Godot.Vector2)">
  35194. <summary>
  35195. <para>Returns the drop section at <c>position</c>, or -100 if no item is there.</para>
  35196. <para>Values -1, 0, or 1 will be returned for the "above item", "on item", and "below item" drop sections, respectively. See <see cref="T:Godot.Tree.DropModeFlagsEnum"/> for a description of each drop section.</para>
  35197. <para>To get the item which the returned drop section is relative to, use <see cref="M:Godot.Tree.GetItemAtPosition(Godot.Vector2)"/>.</para>
  35198. </summary>
  35199. </member>
  35200. <member name="M:Godot.Tree.EnsureCursorIsVisible">
  35201. <summary>
  35202. <para>Makes the currently focused cell visible.</para>
  35203. <para>This will scroll the tree if necessary. In mode, this will not do horizontal scrolling, as all the cells in the selected row is focused logically.</para>
  35204. <para>Note: Despite the name of this method, the focus cursor itself is only visible in mode.</para>
  35205. </summary>
  35206. </member>
  35207. <member name="M:Godot.Tree.SetColumnTitlesVisible(System.Boolean)">
  35208. <summary>
  35209. <para>If <c>true</c>, column titles are visible.</para>
  35210. </summary>
  35211. </member>
  35212. <member name="M:Godot.Tree.AreColumnTitlesVisible">
  35213. <summary>
  35214. <para>Returns <c>true</c> if the column titles are being shown.</para>
  35215. </summary>
  35216. </member>
  35217. <member name="M:Godot.Tree.SetColumnTitle(System.Int32,System.String)">
  35218. <summary>
  35219. <para>Sets the title of a column.</para>
  35220. </summary>
  35221. </member>
  35222. <member name="M:Godot.Tree.GetColumnTitle(System.Int32)">
  35223. <summary>
  35224. <para>Returns the column's title.</para>
  35225. </summary>
  35226. </member>
  35227. <member name="M:Godot.Tree.GetScroll">
  35228. <summary>
  35229. <para>Returns the current scrolling position.</para>
  35230. </summary>
  35231. </member>
  35232. <member name="T:Godot.TreeItem">
  35233. <summary>
  35234. <para>Control for a single item inside a <see cref="T:Godot.Tree"/>. May have child <see cref="T:Godot.TreeItem"/>s and be styled as well as contain buttons.</para>
  35235. <para>You can remove a <see cref="T:Godot.TreeItem"/> by using <see cref="M:Godot.Object.Free"/>.</para>
  35236. </summary>
  35237. </member>
  35238. <member name="F:Godot.TreeItem.TreeCellMode.String">
  35239. <summary>
  35240. <para>Cell contains a string.</para>
  35241. </summary>
  35242. </member>
  35243. <member name="F:Godot.TreeItem.TreeCellMode.Check">
  35244. <summary>
  35245. <para>Cell can be checked.</para>
  35246. </summary>
  35247. </member>
  35248. <member name="F:Godot.TreeItem.TreeCellMode.Range">
  35249. <summary>
  35250. <para>Cell contains a range.</para>
  35251. </summary>
  35252. </member>
  35253. <member name="F:Godot.TreeItem.TreeCellMode.Icon">
  35254. <summary>
  35255. <para>Cell contains an icon.</para>
  35256. </summary>
  35257. </member>
  35258. <member name="F:Godot.TreeItem.TextAlign.Left">
  35259. <summary>
  35260. <para>Align text to the left. See <c>set_text_align()</c>.</para>
  35261. </summary>
  35262. </member>
  35263. <member name="F:Godot.TreeItem.TextAlign.Center">
  35264. <summary>
  35265. <para>Center text. See <c>set_text_align()</c>.</para>
  35266. </summary>
  35267. </member>
  35268. <member name="F:Godot.TreeItem.TextAlign.Right">
  35269. <summary>
  35270. <para>Align text to the right. See <c>set_text_align()</c>.</para>
  35271. </summary>
  35272. </member>
  35273. <member name="P:Godot.TreeItem.Collapsed">
  35274. <summary>
  35275. <para>If <c>true</c>, the TreeItem is collapsed.</para>
  35276. </summary>
  35277. </member>
  35278. <member name="P:Godot.TreeItem.DisableFolding">
  35279. <summary>
  35280. <para>If <c>true</c>, folding is disabled for this TreeItem.</para>
  35281. </summary>
  35282. </member>
  35283. <member name="P:Godot.TreeItem.CustomMinimumHeight">
  35284. <summary>
  35285. <para>The custom minimum height.</para>
  35286. </summary>
  35287. </member>
  35288. <member name="M:Godot.TreeItem.SetCellMode(System.Int32,Godot.TreeItem.TreeCellMode)">
  35289. <summary>
  35290. <para>Sets the given column's cell mode to <c>mode</c>. See <see cref="T:Godot.TreeItem.TreeCellMode"/> constants.</para>
  35291. </summary>
  35292. </member>
  35293. <member name="M:Godot.TreeItem.GetCellMode(System.Int32)">
  35294. <summary>
  35295. <para>Returns the column's cell mode.</para>
  35296. </summary>
  35297. </member>
  35298. <member name="M:Godot.TreeItem.SetChecked(System.Int32,System.Boolean)">
  35299. <summary>
  35300. <para>If <c>true</c>, the column <c>column</c> is checked.</para>
  35301. </summary>
  35302. </member>
  35303. <member name="M:Godot.TreeItem.IsChecked(System.Int32)">
  35304. <summary>
  35305. <para>Returns <c>true</c> if the given column is checked.</para>
  35306. </summary>
  35307. </member>
  35308. <member name="M:Godot.TreeItem.GetText(System.Int32)">
  35309. <summary>
  35310. <para>Returns the given column's text.</para>
  35311. </summary>
  35312. </member>
  35313. <member name="M:Godot.TreeItem.SetIcon(System.Int32,Godot.Texture)">
  35314. <summary>
  35315. <para>Sets the given column's icon <see cref="T:Godot.Texture"/>.</para>
  35316. </summary>
  35317. </member>
  35318. <member name="M:Godot.TreeItem.GetIcon(System.Int32)">
  35319. <summary>
  35320. <para>Returns the given column's icon <see cref="T:Godot.Texture"/>. Error if no icon is set.</para>
  35321. </summary>
  35322. </member>
  35323. <member name="M:Godot.TreeItem.SetIconRegion(System.Int32,Godot.Rect2)">
  35324. <summary>
  35325. <para>Sets the given column's icon's texture region.</para>
  35326. </summary>
  35327. </member>
  35328. <member name="M:Godot.TreeItem.GetIconRegion(System.Int32)">
  35329. <summary>
  35330. <para>Returns the icon <see cref="T:Godot.Texture"/> region as <see cref="T:Godot.Rect2"/>.</para>
  35331. </summary>
  35332. </member>
  35333. <member name="M:Godot.TreeItem.SetIconMaxWidth(System.Int32,System.Int32)">
  35334. <summary>
  35335. <para>Sets the given column's icon's maximum width.</para>
  35336. </summary>
  35337. </member>
  35338. <member name="M:Godot.TreeItem.GetIconMaxWidth(System.Int32)">
  35339. <summary>
  35340. <para>Returns the column's icon's maximum width.</para>
  35341. </summary>
  35342. </member>
  35343. <member name="M:Godot.TreeItem.SetIconModulate(System.Int32,Godot.Color)">
  35344. <summary>
  35345. <para>Modulates the given column's icon with <c>modulate</c>.</para>
  35346. </summary>
  35347. </member>
  35348. <member name="M:Godot.TreeItem.GetIconModulate(System.Int32)">
  35349. <summary>
  35350. <para>Returns the <see cref="T:Godot.Color"/> modulating the column's icon.</para>
  35351. </summary>
  35352. </member>
  35353. <member name="M:Godot.TreeItem.SetCustomDraw(System.Int32,Godot.Object,System.String)">
  35354. <summary>
  35355. <para>Sets the given column's custom draw callback to <c>callback</c> method on <c>object</c>.</para>
  35356. <para>The <c>callback</c> should accept two arguments: the <see cref="T:Godot.TreeItem"/> that is drawn and its position and size as a <see cref="T:Godot.Rect2"/>.</para>
  35357. </summary>
  35358. </member>
  35359. <member name="M:Godot.TreeItem.GetNext">
  35360. <summary>
  35361. <para>Returns the next TreeItem in the tree.</para>
  35362. </summary>
  35363. </member>
  35364. <member name="M:Godot.TreeItem.GetPrev">
  35365. <summary>
  35366. <para>Returns the previous TreeItem in the tree.</para>
  35367. </summary>
  35368. </member>
  35369. <member name="M:Godot.TreeItem.GetParent">
  35370. <summary>
  35371. <para>Returns the parent TreeItem.</para>
  35372. </summary>
  35373. </member>
  35374. <member name="M:Godot.TreeItem.GetChildren">
  35375. <summary>
  35376. <para>Returns the TreeItem's child items.</para>
  35377. </summary>
  35378. </member>
  35379. <member name="M:Godot.TreeItem.GetNextVisible(System.Boolean)">
  35380. <summary>
  35381. <para>Returns the next visible TreeItem in the tree.</para>
  35382. <para>If <c>wrap</c> is enabled, the method will wrap around to the first visible element in the tree when called on the last visible element, otherwise it returns <c>null</c>.</para>
  35383. </summary>
  35384. </member>
  35385. <member name="M:Godot.TreeItem.GetPrevVisible(System.Boolean)">
  35386. <summary>
  35387. <para>Returns the previous visible TreeItem in the tree.</para>
  35388. <para>If <c>wrap</c> is enabled, the method will wrap around to the last visible element in the tree when called on the first visible element, otherwise it returns <c>null</c>.</para>
  35389. </summary>
  35390. </member>
  35391. <member name="M:Godot.TreeItem.RemoveChild(Godot.Object)">
  35392. <summary>
  35393. <para>Removes the given child <see cref="T:Godot.TreeItem"/> and all its children from the <see cref="T:Godot.Tree"/>. Note that it doesn't free the item from memory, so it can be reused later. To completely remove a <see cref="T:Godot.TreeItem"/> use <see cref="M:Godot.Object.Free"/>.</para>
  35394. </summary>
  35395. </member>
  35396. <member name="M:Godot.TreeItem.SetSelectable(System.Int32,System.Boolean)">
  35397. <summary>
  35398. <para>If <c>true</c>, the given column is selectable.</para>
  35399. </summary>
  35400. </member>
  35401. <member name="M:Godot.TreeItem.IsSelectable(System.Int32)">
  35402. <summary>
  35403. <para>Returns <c>true</c> if column <c>column</c> is selectable.</para>
  35404. </summary>
  35405. </member>
  35406. <member name="M:Godot.TreeItem.IsSelected(System.Int32)">
  35407. <summary>
  35408. <para>Returns <c>true</c> if column <c>column</c> is selected.</para>
  35409. </summary>
  35410. </member>
  35411. <member name="M:Godot.TreeItem.Select(System.Int32)">
  35412. <summary>
  35413. <para>Selects the column <c>column</c>.</para>
  35414. </summary>
  35415. </member>
  35416. <member name="M:Godot.TreeItem.Deselect(System.Int32)">
  35417. <summary>
  35418. <para>Deselects the given column.</para>
  35419. </summary>
  35420. </member>
  35421. <member name="M:Godot.TreeItem.SetEditable(System.Int32,System.Boolean)">
  35422. <summary>
  35423. <para>If <c>true</c>, column <c>column</c> is editable.</para>
  35424. </summary>
  35425. </member>
  35426. <member name="M:Godot.TreeItem.IsEditable(System.Int32)">
  35427. <summary>
  35428. <para>Returns <c>true</c> if column <c>column</c> is editable.</para>
  35429. </summary>
  35430. </member>
  35431. <member name="M:Godot.TreeItem.SetCustomColor(System.Int32,Godot.Color)">
  35432. <summary>
  35433. <para>Sets the given column's custom color.</para>
  35434. </summary>
  35435. </member>
  35436. <member name="M:Godot.TreeItem.ClearCustomColor(System.Int32)">
  35437. <summary>
  35438. <para>Resets the color for the given column to default.</para>
  35439. </summary>
  35440. </member>
  35441. <member name="M:Godot.TreeItem.GetCustomColor(System.Int32)">
  35442. <summary>
  35443. <para>Returns the custom color of column <c>column</c>.</para>
  35444. </summary>
  35445. </member>
  35446. <member name="M:Godot.TreeItem.SetCustomBgColor(System.Int32,Godot.Color,System.Boolean)">
  35447. <summary>
  35448. <para>Sets the given column's custom background color and whether to just use it as an outline.</para>
  35449. </summary>
  35450. </member>
  35451. <member name="M:Godot.TreeItem.ClearCustomBgColor(System.Int32)">
  35452. <summary>
  35453. <para>Resets the background color for the given column to default.</para>
  35454. </summary>
  35455. </member>
  35456. <member name="M:Godot.TreeItem.GetCustomBgColor(System.Int32)">
  35457. <summary>
  35458. <para>Returns the custom background color of column <c>column</c>.</para>
  35459. </summary>
  35460. </member>
  35461. <member name="M:Godot.TreeItem.AddButton(System.Int32,Godot.Texture,System.Int32,System.Boolean,System.String)">
  35462. <summary>
  35463. <para>Adds a button with <see cref="T:Godot.Texture"/> <c>button</c> at column <c>column</c>. The <c>button_idx</c> index is used to identify the button when calling other methods. If not specified, the next available index is used, which may be retrieved by calling <see cref="M:Godot.TreeItem.GetButtonCount(System.Int32)"/> immediately after this method. Optionally, the button can be <c>disabled</c> and have a <c>tooltip</c>.</para>
  35464. </summary>
  35465. </member>
  35466. <member name="M:Godot.TreeItem.GetButtonCount(System.Int32)">
  35467. <summary>
  35468. <para>Returns the number of buttons in column <c>column</c>. May be used to get the most recently added button's index, if no index was specified.</para>
  35469. </summary>
  35470. </member>
  35471. <member name="M:Godot.TreeItem.GetButtonTooltip(System.Int32,System.Int32)">
  35472. <summary>
  35473. <para>Returns the tooltip string for the button at index <c>button_idx</c> in column <c>column</c>.</para>
  35474. </summary>
  35475. </member>
  35476. <member name="M:Godot.TreeItem.GetButton(System.Int32,System.Int32)">
  35477. <summary>
  35478. <para>Returns the <see cref="T:Godot.Texture"/> of the button at index <c>button_idx</c> in column <c>column</c>.</para>
  35479. </summary>
  35480. </member>
  35481. <member name="M:Godot.TreeItem.SetButton(System.Int32,System.Int32,Godot.Texture)">
  35482. <summary>
  35483. <para>Sets the given column's button <see cref="T:Godot.Texture"/> at index <c>button_idx</c> to <c>button</c>.</para>
  35484. </summary>
  35485. </member>
  35486. <member name="M:Godot.TreeItem.EraseButton(System.Int32,System.Int32)">
  35487. <summary>
  35488. <para>Removes the button at index <c>button_idx</c> in column <c>column</c>.</para>
  35489. </summary>
  35490. </member>
  35491. <member name="M:Godot.TreeItem.SetButtonDisabled(System.Int32,System.Int32,System.Boolean)">
  35492. <summary>
  35493. <para>If <c>true</c>, disables the button at index <c>button_idx</c> in column <c>column</c>.</para>
  35494. </summary>
  35495. </member>
  35496. <member name="M:Godot.TreeItem.IsButtonDisabled(System.Int32,System.Int32)">
  35497. <summary>
  35498. <para>Returns <c>true</c> if the button at index <c>button_idx</c> for the given column is disabled.</para>
  35499. </summary>
  35500. </member>
  35501. <member name="M:Godot.TreeItem.SetExpandRight(System.Int32,System.Boolean)">
  35502. <summary>
  35503. <para>If <c>true</c>, column <c>column</c> is expanded to the right.</para>
  35504. </summary>
  35505. </member>
  35506. <member name="M:Godot.TreeItem.GetExpandRight(System.Int32)">
  35507. <summary>
  35508. <para>Returns <c>true</c> if <c>expand_right</c> is set.</para>
  35509. </summary>
  35510. </member>
  35511. <member name="M:Godot.TreeItem.SetTooltip(System.Int32,System.String)">
  35512. <summary>
  35513. <para>Sets the given column's tooltip text.</para>
  35514. </summary>
  35515. </member>
  35516. <member name="M:Godot.TreeItem.GetTooltip(System.Int32)">
  35517. <summary>
  35518. <para>Returns the given column's tooltip.</para>
  35519. </summary>
  35520. </member>
  35521. <member name="M:Godot.TreeItem.SetTextAlign(System.Int32,Godot.TreeItem.TextAlign)">
  35522. <summary>
  35523. <para>Sets the given column's text alignment. See <see cref="T:Godot.TreeItem.TextAlign"/> for possible values.</para>
  35524. </summary>
  35525. </member>
  35526. <member name="M:Godot.TreeItem.GetTextAlign(System.Int32)">
  35527. <summary>
  35528. <para>Returns the given column's text alignment.</para>
  35529. </summary>
  35530. </member>
  35531. <member name="M:Godot.TreeItem.MoveToTop">
  35532. <summary>
  35533. <para>Moves this TreeItem to the top in the <see cref="T:Godot.Tree"/> hierarchy.</para>
  35534. </summary>
  35535. </member>
  35536. <member name="M:Godot.TreeItem.MoveToBottom">
  35537. <summary>
  35538. <para>Moves this TreeItem to the bottom in the <see cref="T:Godot.Tree"/> hierarchy.</para>
  35539. </summary>
  35540. </member>
  35541. <member name="M:Godot.TreeItem.CallRecursive(System.String,System.Object[])">
  35542. <summary>
  35543. <para>Calls the <c>method</c> on the actual TreeItem and its children recursively. Pass parameters as a comma separated list.</para>
  35544. </summary>
  35545. </member>
  35546. <member name="T:Godot.TriangleMesh">
  35547. <summary>
  35548. <para>Mesh type used internally for collision calculations.</para>
  35549. </summary>
  35550. </member>
  35551. <member name="T:Godot.Tween">
  35552. <summary>
  35553. <para>Tweens are useful for animations requiring a numerical property to be interpolated over a range of values. The name tween comes from in-betweening, an animation technique where you specify keyframes and the computer interpolates the frames that appear between them.</para>
  35554. <para><see cref="T:Godot.Tween"/> is more suited than <see cref="T:Godot.AnimationPlayer"/> for animations where you don't know the final values in advance. For example, interpolating a dynamically-chosen camera zoom value is best done with a <see cref="T:Godot.Tween"/> node; it would be difficult to do the same thing with an <see cref="T:Godot.AnimationPlayer"/> node.</para>
  35555. <para>Here is a brief usage example that makes a 2D node move smoothly between two positions:</para>
  35556. <para><code>
  35557. var tween = get_node("Tween")
  35558. tween.interpolate_property($Node2D, "position",
  35559. Vector2(0, 0), Vector2(100, 100), 1,
  35560. Tween.TRANS_LINEAR, Tween.EASE_IN_OUT)
  35561. tween.start()
  35562. </code></para>
  35563. <para>Many methods require a property name, such as <c>"position"</c> above. You can find the correct property name by hovering over the property in the Inspector. You can also provide the components of a property directly by using <c>"property:component"</c> (eg. <c>position:x</c>), where it would only apply to that particular component.</para>
  35564. <para>Many of the methods accept <c>trans_type</c> and <c>ease_type</c>. The first accepts an <see cref="T:Godot.Tween.TransitionType"/> constant, and refers to the way the timing of the animation is handled (see <a href="https://easings.net/">easings.net</a> for some examples). The second accepts an <see cref="T:Godot.Tween.EaseType"/> constant, and controls where the <c>trans_type</c> is applied to the interpolation (in the beginning, the end, or both). If you don't know which transition and easing to pick, you can try different <see cref="T:Godot.Tween.TransitionType"/> constants with , and use the one that looks best.</para>
  35565. <para><a href="https://raw.githubusercontent.com/godotengine/godot-docs/master/img/tween_cheatsheet.png">Tween easing and transition types cheatsheet</a></para>
  35566. </summary>
  35567. </member>
  35568. <member name="F:Godot.Tween.TransitionType.Linear">
  35569. <summary>
  35570. <para>The animation is interpolated linearly.</para>
  35571. </summary>
  35572. </member>
  35573. <member name="F:Godot.Tween.TransitionType.Sine">
  35574. <summary>
  35575. <para>The animation is interpolated using a sine function.</para>
  35576. </summary>
  35577. </member>
  35578. <member name="F:Godot.Tween.TransitionType.Quint">
  35579. <summary>
  35580. <para>The animation is interpolated with a quintic (to the power of 5) function.</para>
  35581. </summary>
  35582. </member>
  35583. <member name="F:Godot.Tween.TransitionType.Quart">
  35584. <summary>
  35585. <para>The animation is interpolated with a quartic (to the power of 4) function.</para>
  35586. </summary>
  35587. </member>
  35588. <member name="F:Godot.Tween.TransitionType.Quad">
  35589. <summary>
  35590. <para>The animation is interpolated with a quadratic (to the power of 2) function.</para>
  35591. </summary>
  35592. </member>
  35593. <member name="F:Godot.Tween.TransitionType.Expo">
  35594. <summary>
  35595. <para>The animation is interpolated with an exponential (to the power of x) function.</para>
  35596. </summary>
  35597. </member>
  35598. <member name="F:Godot.Tween.TransitionType.Elastic">
  35599. <summary>
  35600. <para>The animation is interpolated with elasticity, wiggling around the edges.</para>
  35601. </summary>
  35602. </member>
  35603. <member name="F:Godot.Tween.TransitionType.Cubic">
  35604. <summary>
  35605. <para>The animation is interpolated with a cubic (to the power of 3) function.</para>
  35606. </summary>
  35607. </member>
  35608. <member name="F:Godot.Tween.TransitionType.Circ">
  35609. <summary>
  35610. <para>The animation is interpolated with a function using square roots.</para>
  35611. </summary>
  35612. </member>
  35613. <member name="F:Godot.Tween.TransitionType.Bounce">
  35614. <summary>
  35615. <para>The animation is interpolated by bouncing at the end.</para>
  35616. </summary>
  35617. </member>
  35618. <member name="F:Godot.Tween.TransitionType.Back">
  35619. <summary>
  35620. <para>The animation is interpolated backing out at ends.</para>
  35621. </summary>
  35622. </member>
  35623. <member name="F:Godot.Tween.TweenProcessMode.Physics">
  35624. <summary>
  35625. <para>The tween updates with the <c>_physics_process</c> callback.</para>
  35626. </summary>
  35627. </member>
  35628. <member name="F:Godot.Tween.TweenProcessMode.Idle">
  35629. <summary>
  35630. <para>The tween updates with the <c>_process</c> callback.</para>
  35631. </summary>
  35632. </member>
  35633. <member name="F:Godot.Tween.EaseType.In">
  35634. <summary>
  35635. <para>The interpolation starts slowly and speeds up towards the end.</para>
  35636. </summary>
  35637. </member>
  35638. <member name="F:Godot.Tween.EaseType.Out">
  35639. <summary>
  35640. <para>The interpolation starts quickly and slows down towards the end.</para>
  35641. </summary>
  35642. </member>
  35643. <member name="F:Godot.Tween.EaseType.InOut">
  35644. <summary>
  35645. <para>A combination of and . The interpolation is slowest at both ends.</para>
  35646. </summary>
  35647. </member>
  35648. <member name="F:Godot.Tween.EaseType.OutIn">
  35649. <summary>
  35650. <para>A combination of and . The interpolation is fastest at both ends.</para>
  35651. </summary>
  35652. </member>
  35653. <member name="P:Godot.Tween.Repeat">
  35654. <summary>
  35655. <para>If <c>true</c>, the tween loops.</para>
  35656. </summary>
  35657. </member>
  35658. <member name="P:Godot.Tween.PlaybackProcessMode">
  35659. <summary>
  35660. <para>The tween's animation process thread. See <see cref="T:Godot.Tween.TweenProcessMode"/>.</para>
  35661. </summary>
  35662. </member>
  35663. <member name="P:Godot.Tween.PlaybackSpeed">
  35664. <summary>
  35665. <para>The tween's speed multiplier. For example, set it to <c>1.0</c> for normal speed, <c>2.0</c> for two times normal speed, or <c>0.5</c> for half of the normal speed. A value of <c>0</c> pauses the animation, but see also <see cref="M:Godot.Tween.SetActive(System.Boolean)"/> or <see cref="M:Godot.Tween.StopAll"/> for this.</para>
  35666. </summary>
  35667. </member>
  35668. <member name="M:Godot.Tween.IsActive">
  35669. <summary>
  35670. <para>Returns <c>true</c> if any tweens are currently running.</para>
  35671. <para>Note: This method doesn't consider tweens that have ended.</para>
  35672. </summary>
  35673. </member>
  35674. <member name="M:Godot.Tween.SetActive(System.Boolean)">
  35675. <summary>
  35676. <para>Activates/deactivates the tween. See also <see cref="M:Godot.Tween.StopAll"/> and <see cref="M:Godot.Tween.ResumeAll"/>.</para>
  35677. </summary>
  35678. </member>
  35679. <member name="M:Godot.Tween.Start">
  35680. <summary>
  35681. <para>Starts the tween. You can define animations both before and after this.</para>
  35682. </summary>
  35683. </member>
  35684. <member name="M:Godot.Tween.Reset(Godot.Object,System.String)">
  35685. <summary>
  35686. <para>Resets a tween to its initial value (the one given, not the one before the tween), given its object and property/method pair. By default, all tweens are removed, unless <c>key</c> is specified.</para>
  35687. </summary>
  35688. </member>
  35689. <member name="M:Godot.Tween.ResetAll">
  35690. <summary>
  35691. <para>Resets all tweens to their initial values (the ones given, not those before the tween).</para>
  35692. </summary>
  35693. </member>
  35694. <member name="M:Godot.Tween.Stop(Godot.Object,System.String)">
  35695. <summary>
  35696. <para>Stops a tween, given its object and property/method pair. By default, all tweens are stopped, unless <c>key</c> is specified.</para>
  35697. </summary>
  35698. </member>
  35699. <member name="M:Godot.Tween.StopAll">
  35700. <summary>
  35701. <para>Stops animating all tweens.</para>
  35702. </summary>
  35703. </member>
  35704. <member name="M:Godot.Tween.Resume(Godot.Object,System.String)">
  35705. <summary>
  35706. <para>Continues animating a stopped tween, given its object and property/method pair. By default, all tweens are resumed, unless <c>key</c> is specified.</para>
  35707. </summary>
  35708. </member>
  35709. <member name="M:Godot.Tween.ResumeAll">
  35710. <summary>
  35711. <para>Continues animating all stopped tweens.</para>
  35712. </summary>
  35713. </member>
  35714. <member name="M:Godot.Tween.Remove(Godot.Object,System.String)">
  35715. <summary>
  35716. <para>Stops animation and removes a tween, given its object and property/method pair. By default, all tweens are removed, unless <c>key</c> is specified.</para>
  35717. </summary>
  35718. </member>
  35719. <member name="M:Godot.Tween.RemoveAll">
  35720. <summary>
  35721. <para>Stops animation and removes all tweens.</para>
  35722. </summary>
  35723. </member>
  35724. <member name="M:Godot.Tween.Seek(System.Single)">
  35725. <summary>
  35726. <para>Sets the interpolation to the given <c>time</c> in seconds.</para>
  35727. </summary>
  35728. </member>
  35729. <member name="M:Godot.Tween.Tell">
  35730. <summary>
  35731. <para>Returns the current time of the tween.</para>
  35732. </summary>
  35733. </member>
  35734. <member name="M:Godot.Tween.GetRuntime">
  35735. <summary>
  35736. <para>Returns the total time needed for all tweens to end. If you have two tweens, one lasting 10 seconds and the other 20 seconds, it would return 20 seconds, as by that time all tweens would have finished.</para>
  35737. </summary>
  35738. </member>
  35739. <member name="M:Godot.Tween.InterpolateProperty(Godot.Object,Godot.NodePath,System.Object,System.Object,System.Single,Godot.Tween.TransitionType,Godot.Tween.EaseType,System.Single)">
  35740. <summary>
  35741. <para>Animates <c>property</c> of <c>object</c> from <c>initial_val</c> to <c>final_val</c> for <c>duration</c> seconds, <c>delay</c> seconds later. Setting the initial value to <c>null</c> uses the current value of the property.</para>
  35742. <para>Use <see cref="T:Godot.Tween.TransitionType"/> for <c>trans_type</c> and <see cref="T:Godot.Tween.EaseType"/> for <c>ease_type</c> parameters. These values control the timing and direction of the interpolation. See the class description for more information.</para>
  35743. </summary>
  35744. </member>
  35745. <member name="M:Godot.Tween.InterpolateMethod(Godot.Object,System.String,System.Object,System.Object,System.Single,Godot.Tween.TransitionType,Godot.Tween.EaseType,System.Single)">
  35746. <summary>
  35747. <para>Animates <c>method</c> of <c>object</c> from <c>initial_val</c> to <c>final_val</c> for <c>duration</c> seconds, <c>delay</c> seconds later. Methods are called with consecutive values.</para>
  35748. <para>Use <see cref="T:Godot.Tween.TransitionType"/> for <c>trans_type</c> and <see cref="T:Godot.Tween.EaseType"/> for <c>ease_type</c> parameters. These values control the timing and direction of the interpolation. See the class description for more information.</para>
  35749. </summary>
  35750. </member>
  35751. <member name="M:Godot.Tween.InterpolateCallback(Godot.Object,System.Single,System.String,System.Object,System.Object,System.Object,System.Object,System.Object)">
  35752. <summary>
  35753. <para>Calls <c>callback</c> of <c>object</c> after <c>duration</c>. <c>arg1</c>-<c>arg5</c> are arguments to be passed to the callback.</para>
  35754. </summary>
  35755. </member>
  35756. <member name="M:Godot.Tween.InterpolateDeferredCallback(Godot.Object,System.Single,System.String,System.Object,System.Object,System.Object,System.Object,System.Object)">
  35757. <summary>
  35758. <para>Calls <c>callback</c> of <c>object</c> after <c>duration</c> on the main thread (similar to <see cref="M:Godot.Object.CallDeferred(System.String,System.Object[])"/>). <c>arg1</c>-<c>arg5</c> are arguments to be passed to the callback.</para>
  35759. </summary>
  35760. </member>
  35761. <member name="M:Godot.Tween.FollowProperty(Godot.Object,Godot.NodePath,System.Object,Godot.Object,Godot.NodePath,System.Single,Godot.Tween.TransitionType,Godot.Tween.EaseType,System.Single)">
  35762. <summary>
  35763. <para>Follows <c>property</c> of <c>object</c> and applies it on <c>target_property</c> of <c>target</c>, beginning from <c>initial_val</c> for <c>duration</c> seconds, <c>delay</c> seconds later.</para>
  35764. <para>Use <see cref="T:Godot.Tween.TransitionType"/> for <c>trans_type</c> and <see cref="T:Godot.Tween.EaseType"/> for <c>ease_type</c> parameters. These values control the timing and direction of the interpolation. See the class description for more information.</para>
  35765. </summary>
  35766. </member>
  35767. <member name="M:Godot.Tween.FollowMethod(Godot.Object,System.String,System.Object,Godot.Object,System.String,System.Single,Godot.Tween.TransitionType,Godot.Tween.EaseType,System.Single)">
  35768. <summary>
  35769. <para>Follows <c>method</c> of <c>object</c> and applies the returned value on <c>target_method</c> of <c>target</c>, beginning from <c>initial_val</c> for <c>duration</c> seconds, <c>delay</c> later. Methods are called with consecutive values.</para>
  35770. <para>Use <see cref="T:Godot.Tween.TransitionType"/> for <c>trans_type</c> and <see cref="T:Godot.Tween.EaseType"/> for <c>ease_type</c> parameters. These values control the timing and direction of the interpolation. See the class description for more information.</para>
  35771. </summary>
  35772. </member>
  35773. <member name="M:Godot.Tween.TargetingProperty(Godot.Object,Godot.NodePath,Godot.Object,Godot.NodePath,System.Object,System.Single,Godot.Tween.TransitionType,Godot.Tween.EaseType,System.Single)">
  35774. <summary>
  35775. <para>Animates <c>property</c> of <c>object</c> from the current value of the <c>initial_val</c> property of <c>initial</c> to <c>final_val</c> for <c>duration</c> seconds, <c>delay</c> seconds later.</para>
  35776. <para>Use <see cref="T:Godot.Tween.TransitionType"/> for <c>trans_type</c> and <see cref="T:Godot.Tween.EaseType"/> for <c>ease_type</c> parameters. These values control the timing and direction of the interpolation. See the class description for more information.</para>
  35777. </summary>
  35778. </member>
  35779. <member name="M:Godot.Tween.TargetingMethod(Godot.Object,System.String,Godot.Object,System.String,System.Object,System.Single,Godot.Tween.TransitionType,Godot.Tween.EaseType,System.Single)">
  35780. <summary>
  35781. <para>Animates <c>method</c> of <c>object</c> from the value returned by <c>initial_method</c> to <c>final_val</c> for <c>duration</c> seconds, <c>delay</c> seconds later. Methods are animated by calling them with consecutive values.</para>
  35782. <para>Use <see cref="T:Godot.Tween.TransitionType"/> for <c>trans_type</c> and <see cref="T:Godot.Tween.EaseType"/> for <c>ease_type</c> parameters. These values control the timing and direction of the interpolation. See the class description for more information.</para>
  35783. </summary>
  35784. </member>
  35785. <member name="T:Godot.UDPServer">
  35786. <summary>
  35787. <para>A simple server that opens a UDP socket and returns connected <see cref="T:Godot.PacketPeerUDP"/> upon receiving new packets. See also <see cref="M:Godot.PacketPeerUDP.ConnectToHost(System.String,System.Int32)"/>.</para>
  35788. <para>Below a small example of how it can be used:</para>
  35789. <para><code>
  35790. # server.gd
  35791. extends Node
  35792. var server := UDPServer.new()
  35793. var peers = []
  35794. func _ready():
  35795. server.listen(4242)
  35796. func _process(delta):
  35797. if server.is_connection_available():
  35798. var peer : PacketPeerUDP = server.take_connection()
  35799. var pkt = peer.get_packet()
  35800. print("Accepted peer: %s:%s" % [peer.get_packet_ip(), peer.get_packet_port()])
  35801. print("Received data: %s" % [pkt.get_string_from_utf8()])
  35802. # Reply so it knows we received the message.
  35803. peer.put_packet(pkt)
  35804. # Keep a reference so we can keep contacting the remote peer.
  35805. peers.append(peer)
  35806. for i in range(0, peers.size()):
  35807. pass # Do something with the connected peers.
  35808. </code></para>
  35809. <para><code>
  35810. # client.gd
  35811. extends Node
  35812. var udp := PacketPeerUDP.new()
  35813. var connected = false
  35814. func _ready():
  35815. udp.connect_to_host("127.0.0.1", 4242)
  35816. func _process(delta):
  35817. if !connected:
  35818. # Try to contact server
  35819. udp.put_packet("The answer is... 42!".to_utf8())
  35820. if udp.get_available_packet_count() &gt; 0:
  35821. print("Connected: %s" % udp.get_packet().get_string_from_utf8())
  35822. connected = true
  35823. </code></para>
  35824. </summary>
  35825. </member>
  35826. <member name="M:Godot.UDPServer.Listen(System.UInt16,System.String)">
  35827. <summary>
  35828. <para>Starts the server by opening a UDP socket listening on the given port. You can optionally specify a <c>bind_address</c> to only listen for packets sent to that address. See also <see cref="M:Godot.PacketPeerUDP.Listen(System.Int32,System.String,System.Int32)"/>.</para>
  35829. </summary>
  35830. </member>
  35831. <member name="M:Godot.UDPServer.IsConnectionAvailable">
  35832. <summary>
  35833. <para>Returns <c>true</c> if a packet with a new address/port combination is received on the socket.</para>
  35834. </summary>
  35835. </member>
  35836. <member name="M:Godot.UDPServer.IsListening">
  35837. <summary>
  35838. <para>Returns <c>true</c> if the socket is open and listening on a port.</para>
  35839. </summary>
  35840. </member>
  35841. <member name="M:Godot.UDPServer.TakeConnection">
  35842. <summary>
  35843. <para>Returns a <see cref="T:Godot.PacketPeerUDP"/> connected to the address/port combination of the first packet in queue. Will return <c>null</c> if no packet is in queue. See also <see cref="M:Godot.PacketPeerUDP.ConnectToHost(System.String,System.Int32)"/>.</para>
  35844. </summary>
  35845. </member>
  35846. <member name="M:Godot.UDPServer.Stop">
  35847. <summary>
  35848. <para>Stops the server, closing the UDP socket if open. Will not disconnect any connected <see cref="T:Godot.PacketPeerUDP"/>.</para>
  35849. </summary>
  35850. </member>
  35851. <member name="T:Godot.UPNP">
  35852. <summary>
  35853. <para>Provides UPNP functionality to discover <see cref="T:Godot.UPNPDevice"/>s on the local network and execute commands on them, like managing port mappings (port forwarding) and querying the local and remote network IP address. Note that methods on this class are synchronous and block the calling thread.</para>
  35854. <para>To forward a specific port:</para>
  35855. <para><code>
  35856. const PORT = 7777
  35857. var upnp = UPNP.new()
  35858. upnp.discover(2000, 2, "InternetGatewayDevice")
  35859. upnp.add_port_mapping(port)
  35860. </code></para>
  35861. <para>To close a specific port (e.g. after you have finished using it):</para>
  35862. <para><code>
  35863. upnp.delete_port_mapping(port)
  35864. </code></para>
  35865. </summary>
  35866. </member>
  35867. <member name="F:Godot.UPNP.UPNPResult.Success">
  35868. <summary>
  35869. <para>UPNP command or discovery was successful.</para>
  35870. </summary>
  35871. </member>
  35872. <member name="F:Godot.UPNP.UPNPResult.NotAuthorized">
  35873. <summary>
  35874. <para>Not authorized to use the command on the <see cref="T:Godot.UPNPDevice"/>. May be returned when the user disabled UPNP on their router.</para>
  35875. </summary>
  35876. </member>
  35877. <member name="F:Godot.UPNP.UPNPResult.PortMappingNotFound">
  35878. <summary>
  35879. <para>No port mapping was found for the given port, protocol combination on the given <see cref="T:Godot.UPNPDevice"/>.</para>
  35880. </summary>
  35881. </member>
  35882. <member name="F:Godot.UPNP.UPNPResult.InconsistentParameters">
  35883. <summary>
  35884. <para>Inconsistent parameters.</para>
  35885. </summary>
  35886. </member>
  35887. <member name="F:Godot.UPNP.UPNPResult.NoSuchEntryInArray">
  35888. <summary>
  35889. <para>No such entry in array. May be returned if a given port, protocol combination is not found on an <see cref="T:Godot.UPNPDevice"/>.</para>
  35890. </summary>
  35891. </member>
  35892. <member name="F:Godot.UPNP.UPNPResult.ActionFailed">
  35893. <summary>
  35894. <para>The action failed.</para>
  35895. </summary>
  35896. </member>
  35897. <member name="F:Godot.UPNP.UPNPResult.SrcIpWildcardNotPermitted">
  35898. <summary>
  35899. <para>The <see cref="T:Godot.UPNPDevice"/> does not allow wildcard values for the source IP address.</para>
  35900. </summary>
  35901. </member>
  35902. <member name="F:Godot.UPNP.UPNPResult.ExtPortWildcardNotPermitted">
  35903. <summary>
  35904. <para>The <see cref="T:Godot.UPNPDevice"/> does not allow wildcard values for the external port.</para>
  35905. </summary>
  35906. </member>
  35907. <member name="F:Godot.UPNP.UPNPResult.IntPortWildcardNotPermitted">
  35908. <summary>
  35909. <para>The <see cref="T:Godot.UPNPDevice"/> does not allow wildcard values for the internal port.</para>
  35910. </summary>
  35911. </member>
  35912. <member name="F:Godot.UPNP.UPNPResult.RemoteHostMustBeWildcard">
  35913. <summary>
  35914. <para>The remote host value must be a wildcard.</para>
  35915. </summary>
  35916. </member>
  35917. <member name="F:Godot.UPNP.UPNPResult.ExtPortMustBeWildcard">
  35918. <summary>
  35919. <para>The external port value must be a wildcard.</para>
  35920. </summary>
  35921. </member>
  35922. <member name="F:Godot.UPNP.UPNPResult.NoPortMapsAvailable">
  35923. <summary>
  35924. <para>No port maps are available. May also be returned if port mapping functionality is not available.</para>
  35925. </summary>
  35926. </member>
  35927. <member name="F:Godot.UPNP.UPNPResult.ConflictWithOtherMechanism">
  35928. <summary>
  35929. <para>Conflict with other mechanism. May be returned instead of if a port mapping conflicts with an existing one.</para>
  35930. </summary>
  35931. </member>
  35932. <member name="F:Godot.UPNP.UPNPResult.ConflictWithOtherMapping">
  35933. <summary>
  35934. <para>Conflict with an existing port mapping.</para>
  35935. </summary>
  35936. </member>
  35937. <member name="F:Godot.UPNP.UPNPResult.SamePortValuesRequired">
  35938. <summary>
  35939. <para>External and internal port values must be the same.</para>
  35940. </summary>
  35941. </member>
  35942. <member name="F:Godot.UPNP.UPNPResult.OnlyPermanentLeaseSupported">
  35943. <summary>
  35944. <para>Only permanent leases are supported. Do not use the <c>duration</c> parameter when adding port mappings.</para>
  35945. </summary>
  35946. </member>
  35947. <member name="F:Godot.UPNP.UPNPResult.InvalidGateway">
  35948. <summary>
  35949. <para>Invalid gateway.</para>
  35950. </summary>
  35951. </member>
  35952. <member name="F:Godot.UPNP.UPNPResult.InvalidPort">
  35953. <summary>
  35954. <para>Invalid port.</para>
  35955. </summary>
  35956. </member>
  35957. <member name="F:Godot.UPNP.UPNPResult.InvalidProtocol">
  35958. <summary>
  35959. <para>Invalid protocol.</para>
  35960. </summary>
  35961. </member>
  35962. <member name="F:Godot.UPNP.UPNPResult.InvalidDuration">
  35963. <summary>
  35964. <para>Invalid duration.</para>
  35965. </summary>
  35966. </member>
  35967. <member name="F:Godot.UPNP.UPNPResult.InvalidArgs">
  35968. <summary>
  35969. <para>Invalid arguments.</para>
  35970. </summary>
  35971. </member>
  35972. <member name="F:Godot.UPNP.UPNPResult.InvalidResponse">
  35973. <summary>
  35974. <para>Invalid response.</para>
  35975. </summary>
  35976. </member>
  35977. <member name="F:Godot.UPNP.UPNPResult.InvalidParam">
  35978. <summary>
  35979. <para>Invalid parameter.</para>
  35980. </summary>
  35981. </member>
  35982. <member name="F:Godot.UPNP.UPNPResult.HttpError">
  35983. <summary>
  35984. <para>HTTP error.</para>
  35985. </summary>
  35986. </member>
  35987. <member name="F:Godot.UPNP.UPNPResult.SocketError">
  35988. <summary>
  35989. <para>Socket error.</para>
  35990. </summary>
  35991. </member>
  35992. <member name="F:Godot.UPNP.UPNPResult.MemAllocError">
  35993. <summary>
  35994. <para>Error allocating memory.</para>
  35995. </summary>
  35996. </member>
  35997. <member name="F:Godot.UPNP.UPNPResult.NoGateway">
  35998. <summary>
  35999. <para>No gateway available. You may need to call <see cref="M:Godot.UPNP.Discover(System.Int32,System.Int32,System.String)"/> first, or discovery didn't detect any valid IGDs (InternetGatewayDevices).</para>
  36000. </summary>
  36001. </member>
  36002. <member name="F:Godot.UPNP.UPNPResult.NoDevices">
  36003. <summary>
  36004. <para>No devices available. You may need to call <see cref="M:Godot.UPNP.Discover(System.Int32,System.Int32,System.String)"/> first, or discovery didn't detect any valid <see cref="T:Godot.UPNPDevice"/>s.</para>
  36005. </summary>
  36006. </member>
  36007. <member name="F:Godot.UPNP.UPNPResult.UnknownError">
  36008. <summary>
  36009. <para>Unknown error.</para>
  36010. </summary>
  36011. </member>
  36012. <member name="P:Godot.UPNP.DiscoverMulticastIf">
  36013. <summary>
  36014. <para>Multicast interface to use for discovery. Uses the default multicast interface if empty.</para>
  36015. </summary>
  36016. </member>
  36017. <member name="P:Godot.UPNP.DiscoverLocalPort">
  36018. <summary>
  36019. <para>If <c>0</c>, the local port to use for discovery is chosen automatically by the system. If <c>1</c>, discovery will be done from the source port 1900 (same as destination port). Otherwise, the value will be used as the port.</para>
  36020. </summary>
  36021. </member>
  36022. <member name="P:Godot.UPNP.DiscoverIpv6">
  36023. <summary>
  36024. <para>If <c>true</c>, IPv6 is used for <see cref="T:Godot.UPNPDevice"/> discovery.</para>
  36025. </summary>
  36026. </member>
  36027. <member name="M:Godot.UPNP.GetDeviceCount">
  36028. <summary>
  36029. <para>Returns the number of discovered <see cref="T:Godot.UPNPDevice"/>s.</para>
  36030. </summary>
  36031. </member>
  36032. <member name="M:Godot.UPNP.GetDevice(System.Int32)">
  36033. <summary>
  36034. <para>Returns the <see cref="T:Godot.UPNPDevice"/> at the given <c>index</c>.</para>
  36035. </summary>
  36036. </member>
  36037. <member name="M:Godot.UPNP.AddDevice(Godot.UPNPDevice)">
  36038. <summary>
  36039. <para>Adds the given <see cref="T:Godot.UPNPDevice"/> to the list of discovered devices.</para>
  36040. </summary>
  36041. </member>
  36042. <member name="M:Godot.UPNP.SetDevice(System.Int32,Godot.UPNPDevice)">
  36043. <summary>
  36044. <para>Sets the device at <c>index</c> from the list of discovered devices to <c>device</c>.</para>
  36045. </summary>
  36046. </member>
  36047. <member name="M:Godot.UPNP.RemoveDevice(System.Int32)">
  36048. <summary>
  36049. <para>Removes the device at <c>index</c> from the list of discovered devices.</para>
  36050. </summary>
  36051. </member>
  36052. <member name="M:Godot.UPNP.ClearDevices">
  36053. <summary>
  36054. <para>Clears the list of discovered devices.</para>
  36055. </summary>
  36056. </member>
  36057. <member name="M:Godot.UPNP.GetGateway">
  36058. <summary>
  36059. <para>Returns the default gateway. That is the first discovered <see cref="T:Godot.UPNPDevice"/> that is also a valid IGD (InternetGatewayDevice).</para>
  36060. </summary>
  36061. </member>
  36062. <member name="M:Godot.UPNP.Discover(System.Int32,System.Int32,System.String)">
  36063. <summary>
  36064. <para>Discovers local <see cref="T:Godot.UPNPDevice"/>s. Clears the list of previously discovered devices.</para>
  36065. <para>Filters for IGD (InternetGatewayDevice) type devices by default, as those manage port forwarding. <c>timeout</c> is the time to wait for responses in milliseconds. <c>ttl</c> is the time-to-live; only touch this if you know what you're doing.</para>
  36066. <para>See <see cref="T:Godot.UPNP.UPNPResult"/> for possible return values.</para>
  36067. </summary>
  36068. </member>
  36069. <member name="M:Godot.UPNP.QueryExternalAddress">
  36070. <summary>
  36071. <para>Returns the external <see cref="T:Godot.IP"/> address of the default gateway (see <see cref="M:Godot.UPNP.GetGateway"/>) as string. Returns an empty string on error.</para>
  36072. </summary>
  36073. </member>
  36074. <member name="M:Godot.UPNP.AddPortMapping(System.Int32,System.Int32,System.String,System.String,System.Int32)">
  36075. <summary>
  36076. <para>Adds a mapping to forward the external <c>port</c> (between 1 and 65535) on the default gateway (see <see cref="M:Godot.UPNP.GetGateway"/>) to the <c>internal_port</c> on the local machine for the given protocol <c>proto</c> (either <c>TCP</c> or <c>UDP</c>, with UDP being the default). If a port mapping for the given port and protocol combination already exists on that gateway device, this method tries to overwrite it. If that is not desired, you can retrieve the gateway manually with <see cref="M:Godot.UPNP.GetGateway"/> and call <see cref="M:Godot.UPNP.AddPortMapping(System.Int32,System.Int32,System.String,System.String,System.Int32)"/> on it, if any.</para>
  36077. <para>If <c>internal_port</c> is <c>0</c> (the default), the same port number is used for both the external and the internal port (the <c>port</c> value).</para>
  36078. <para>The description (<c>desc</c>) is shown in some router UIs and can be used to point out which application added the mapping. The mapping's lease duration can be limited by specifying a <c>duration</c> (in seconds). However, some routers are incompatible with one or both of these, so use with caution and add fallback logic in case of errors to retry without them if in doubt.</para>
  36079. <para>See <see cref="T:Godot.UPNP.UPNPResult"/> for possible return values.</para>
  36080. </summary>
  36081. </member>
  36082. <member name="M:Godot.UPNP.DeletePortMapping(System.Int32,System.String)">
  36083. <summary>
  36084. <para>Deletes the port mapping for the given port and protocol combination on the default gateway (see <see cref="M:Godot.UPNP.GetGateway"/>) if one exists. <c>port</c> must be a valid port between 1 and 65535, <c>proto</c> can be either <c>TCP</c> or <c>UDP</c>. See <see cref="T:Godot.UPNP.UPNPResult"/> for possible return values.</para>
  36085. </summary>
  36086. </member>
  36087. <member name="T:Godot.UPNPDevice">
  36088. <summary>
  36089. <para>UPNP device. See <see cref="T:Godot.UPNP"/> for UPNP discovery and utility functions. Provides low-level access to UPNP control commands. Allows to manage port mappings (port forwarding) and to query network information of the device (like local and external IP address and status). Note that methods on this class are synchronous and block the calling thread.</para>
  36090. </summary>
  36091. </member>
  36092. <member name="F:Godot.UPNPDevice.IGDStatus.Ok">
  36093. <summary>
  36094. <para>OK.</para>
  36095. </summary>
  36096. </member>
  36097. <member name="F:Godot.UPNPDevice.IGDStatus.HttpError">
  36098. <summary>
  36099. <para>HTTP error.</para>
  36100. </summary>
  36101. </member>
  36102. <member name="F:Godot.UPNPDevice.IGDStatus.HttpEmpty">
  36103. <summary>
  36104. <para>Empty HTTP response.</para>
  36105. </summary>
  36106. </member>
  36107. <member name="F:Godot.UPNPDevice.IGDStatus.NoUrls">
  36108. <summary>
  36109. <para>Returned response contained no URLs.</para>
  36110. </summary>
  36111. </member>
  36112. <member name="F:Godot.UPNPDevice.IGDStatus.NoIgd">
  36113. <summary>
  36114. <para>Not a valid IGD.</para>
  36115. </summary>
  36116. </member>
  36117. <member name="F:Godot.UPNPDevice.IGDStatus.Disconnected">
  36118. <summary>
  36119. <para>Disconnected.</para>
  36120. </summary>
  36121. </member>
  36122. <member name="F:Godot.UPNPDevice.IGDStatus.UnknownDevice">
  36123. <summary>
  36124. <para>Unknown device.</para>
  36125. </summary>
  36126. </member>
  36127. <member name="F:Godot.UPNPDevice.IGDStatus.InvalidControl">
  36128. <summary>
  36129. <para>Invalid control.</para>
  36130. </summary>
  36131. </member>
  36132. <member name="F:Godot.UPNPDevice.IGDStatus.MallocError">
  36133. <summary>
  36134. <para>Memory allocation error.</para>
  36135. </summary>
  36136. </member>
  36137. <member name="F:Godot.UPNPDevice.IGDStatus.UnknownError">
  36138. <summary>
  36139. <para>Unknown error.</para>
  36140. </summary>
  36141. </member>
  36142. <member name="P:Godot.UPNPDevice.DescriptionUrl">
  36143. <summary>
  36144. <para>URL to the device description.</para>
  36145. </summary>
  36146. </member>
  36147. <member name="P:Godot.UPNPDevice.ServiceType">
  36148. <summary>
  36149. <para>Service type.</para>
  36150. </summary>
  36151. </member>
  36152. <member name="P:Godot.UPNPDevice.IgdControlUrl">
  36153. <summary>
  36154. <para>IDG control URL.</para>
  36155. </summary>
  36156. </member>
  36157. <member name="P:Godot.UPNPDevice.IgdServiceType">
  36158. <summary>
  36159. <para>IGD service type.</para>
  36160. </summary>
  36161. </member>
  36162. <member name="P:Godot.UPNPDevice.IgdOurAddr">
  36163. <summary>
  36164. <para>Address of the local machine in the network connecting it to this <see cref="T:Godot.UPNPDevice"/>.</para>
  36165. </summary>
  36166. </member>
  36167. <member name="P:Godot.UPNPDevice.IgdStatus">
  36168. <summary>
  36169. <para>IGD status. See <see cref="T:Godot.UPNPDevice.IGDStatus"/>.</para>
  36170. </summary>
  36171. </member>
  36172. <member name="M:Godot.UPNPDevice.IsValidGateway">
  36173. <summary>
  36174. <para>Returns <c>true</c> if this is a valid IGD (InternetGatewayDevice) which potentially supports port forwarding.</para>
  36175. </summary>
  36176. </member>
  36177. <member name="M:Godot.UPNPDevice.QueryExternalAddress">
  36178. <summary>
  36179. <para>Returns the external IP address of this <see cref="T:Godot.UPNPDevice"/> or an empty string.</para>
  36180. </summary>
  36181. </member>
  36182. <member name="M:Godot.UPNPDevice.AddPortMapping(System.Int32,System.Int32,System.String,System.String,System.Int32)">
  36183. <summary>
  36184. <para>Adds a port mapping to forward the given external port on this <see cref="T:Godot.UPNPDevice"/> for the given protocol to the local machine. See <see cref="M:Godot.UPNP.AddPortMapping(System.Int32,System.Int32,System.String,System.String,System.Int32)"/>.</para>
  36185. </summary>
  36186. </member>
  36187. <member name="M:Godot.UPNPDevice.DeletePortMapping(System.Int32,System.String)">
  36188. <summary>
  36189. <para>Deletes the port mapping identified by the given port and protocol combination on this device. See <see cref="M:Godot.UPNP.DeletePortMapping(System.Int32,System.String)"/>.</para>
  36190. </summary>
  36191. </member>
  36192. <member name="T:Godot.UndoRedo">
  36193. <summary>
  36194. <para>Helper to manage undo/redo operations in the editor or custom tools. It works by registering methods and property changes inside "actions".</para>
  36195. <para>Common behavior is to create an action, then add do/undo calls to functions or property changes, then committing the action.</para>
  36196. <para>Here's an example on how to add an action to the Godot editor's own <see cref="T:Godot.UndoRedo"/>, from a plugin:</para>
  36197. <para><code>
  36198. var undo_redo = get_undo_redo() # Method of EditorPlugin.
  36199. func do_something():
  36200. pass # Put your code here.
  36201. func undo_something():
  36202. pass # Put here the code that reverts what's done by "do_something()".
  36203. func _on_MyButton_pressed():
  36204. var node = get_node("MyNode2D")
  36205. undo_redo.create_action("Move the node")
  36206. undo_redo.add_do_method(self, "do_something")
  36207. undo_redo.add_undo_method(self, "undo_something")
  36208. undo_redo.add_do_property(node, "position", Vector2(100,100))
  36209. undo_redo.add_undo_property(node, "position", node.position)
  36210. undo_redo.commit_action()
  36211. </code></para>
  36212. <para><see cref="M:Godot.UndoRedo.CreateAction(System.String,Godot.UndoRedo.MergeMode)"/>, <see cref="M:Godot.UndoRedo.AddDoMethod(Godot.Object,System.String,System.Object[])"/>, <see cref="M:Godot.UndoRedo.AddUndoMethod(Godot.Object,System.String,System.Object[])"/>, <see cref="M:Godot.UndoRedo.AddDoProperty(Godot.Object,System.String,System.Object)"/>, <see cref="M:Godot.UndoRedo.AddUndoProperty(Godot.Object,System.String,System.Object)"/>, and <see cref="M:Godot.UndoRedo.CommitAction"/> should be called one after the other, like in the example. Not doing so could lead to crashes.</para>
  36213. <para>If you don't need to register a method, you can leave <see cref="M:Godot.UndoRedo.AddDoMethod(Godot.Object,System.String,System.Object[])"/> and <see cref="M:Godot.UndoRedo.AddUndoMethod(Godot.Object,System.String,System.Object[])"/> out; the same goes for properties. You can also register more than one method/property.</para>
  36214. </summary>
  36215. </member>
  36216. <member name="F:Godot.UndoRedo.MergeMode.Disable">
  36217. <summary>
  36218. <para>Makes "do"/"undo" operations stay in separate actions.</para>
  36219. </summary>
  36220. </member>
  36221. <member name="F:Godot.UndoRedo.MergeMode.Ends">
  36222. <summary>
  36223. <para>Makes so that the action's "do" operation is from the first action created and the "undo" operation is from the last subsequent action with the same name.</para>
  36224. </summary>
  36225. </member>
  36226. <member name="F:Godot.UndoRedo.MergeMode.All">
  36227. <summary>
  36228. <para>Makes subsequent actions with the same name be merged into one.</para>
  36229. </summary>
  36230. </member>
  36231. <member name="M:Godot.UndoRedo.CreateAction(System.String,Godot.UndoRedo.MergeMode)">
  36232. <summary>
  36233. <para>Create a new action. After this is called, do all your calls to <see cref="M:Godot.UndoRedo.AddDoMethod(Godot.Object,System.String,System.Object[])"/>, <see cref="M:Godot.UndoRedo.AddUndoMethod(Godot.Object,System.String,System.Object[])"/>, <see cref="M:Godot.UndoRedo.AddDoProperty(Godot.Object,System.String,System.Object)"/>, and <see cref="M:Godot.UndoRedo.AddUndoProperty(Godot.Object,System.String,System.Object)"/>, then commit the action with <see cref="M:Godot.UndoRedo.CommitAction"/>.</para>
  36234. <para>The way actions are merged is dictated by the <c>merge_mode</c> argument. See <see cref="T:Godot.UndoRedo.MergeMode"/> for details.</para>
  36235. </summary>
  36236. </member>
  36237. <member name="M:Godot.UndoRedo.CommitAction">
  36238. <summary>
  36239. <para>Commit the action. All "do" methods/properties are called/set when this function is called.</para>
  36240. </summary>
  36241. </member>
  36242. <member name="M:Godot.UndoRedo.IsCommitingAction">
  36243. <summary>
  36244. <para>Returns <c>true</c> if the <see cref="T:Godot.UndoRedo"/> is currently committing the action, i.e. running its "do" method or property change (see <see cref="M:Godot.UndoRedo.CommitAction"/>).</para>
  36245. </summary>
  36246. </member>
  36247. <member name="M:Godot.UndoRedo.AddDoMethod(Godot.Object,System.String,System.Object[])">
  36248. <summary>
  36249. <para>Register a method that will be called when the action is committed.</para>
  36250. </summary>
  36251. </member>
  36252. <member name="M:Godot.UndoRedo.AddUndoMethod(Godot.Object,System.String,System.Object[])">
  36253. <summary>
  36254. <para>Register a method that will be called when the action is undone.</para>
  36255. </summary>
  36256. </member>
  36257. <member name="M:Godot.UndoRedo.AddDoProperty(Godot.Object,System.String,System.Object)">
  36258. <summary>
  36259. <para>Register a property value change for "do".</para>
  36260. </summary>
  36261. </member>
  36262. <member name="M:Godot.UndoRedo.AddUndoProperty(Godot.Object,System.String,System.Object)">
  36263. <summary>
  36264. <para>Register a property value change for "undo".</para>
  36265. </summary>
  36266. </member>
  36267. <member name="M:Godot.UndoRedo.AddDoReference(Godot.Object)">
  36268. <summary>
  36269. <para>Register a reference for "do" that will be erased if the "do" history is lost. This is useful mostly for new nodes created for the "do" call. Do not use for resources.</para>
  36270. </summary>
  36271. </member>
  36272. <member name="M:Godot.UndoRedo.AddUndoReference(Godot.Object)">
  36273. <summary>
  36274. <para>Register a reference for "undo" that will be erased if the "undo" history is lost. This is useful mostly for nodes removed with the "do" call (not the "undo" call!).</para>
  36275. </summary>
  36276. </member>
  36277. <member name="M:Godot.UndoRedo.ClearHistory(System.Boolean)">
  36278. <summary>
  36279. <para>Clear the undo/redo history and associated references.</para>
  36280. <para>Passing <c>false</c> to <c>increase_version</c> will prevent the version number to be increased from this.</para>
  36281. </summary>
  36282. </member>
  36283. <member name="M:Godot.UndoRedo.GetCurrentActionName">
  36284. <summary>
  36285. <para>Gets the name of the current action.</para>
  36286. </summary>
  36287. </member>
  36288. <member name="M:Godot.UndoRedo.HasUndo">
  36289. <summary>
  36290. <para>Returns <c>true</c> if an "undo" action is available.</para>
  36291. </summary>
  36292. </member>
  36293. <member name="M:Godot.UndoRedo.HasRedo">
  36294. <summary>
  36295. <para>Returns <c>true</c> if a "redo" action is available.</para>
  36296. </summary>
  36297. </member>
  36298. <member name="M:Godot.UndoRedo.GetVersion">
  36299. <summary>
  36300. <para>Gets the version. Every time a new action is committed, the <see cref="T:Godot.UndoRedo"/>'s version number is increased automatically.</para>
  36301. <para>This is useful mostly to check if something changed from a saved version.</para>
  36302. </summary>
  36303. </member>
  36304. <member name="M:Godot.UndoRedo.Redo">
  36305. <summary>
  36306. <para>Redo the last action.</para>
  36307. </summary>
  36308. </member>
  36309. <member name="M:Godot.UndoRedo.Undo">
  36310. <summary>
  36311. <para>Undo the last action.</para>
  36312. </summary>
  36313. </member>
  36314. <member name="T:Godot.VBoxContainer">
  36315. <summary>
  36316. <para>Vertical box container. See <see cref="T:Godot.BoxContainer"/>.</para>
  36317. </summary>
  36318. </member>
  36319. <member name="T:Godot.VScrollBar">
  36320. <summary>
  36321. <para>Vertical version of <see cref="T:Godot.ScrollBar"/>, which goes from top (min) to bottom (max).</para>
  36322. </summary>
  36323. </member>
  36324. <member name="T:Godot.VSeparator">
  36325. <summary>
  36326. <para>Vertical version of <see cref="T:Godot.Separator"/>. Even though it looks vertical, it is used to separate objects horizontally.</para>
  36327. </summary>
  36328. </member>
  36329. <member name="T:Godot.VSlider">
  36330. <summary>
  36331. <para>Vertical slider. See <see cref="T:Godot.Slider"/>. This one goes from bottom (min) to top (max).</para>
  36332. </summary>
  36333. </member>
  36334. <member name="T:Godot.VSplitContainer">
  36335. <summary>
  36336. <para>Vertical split container. See <see cref="T:Godot.SplitContainer"/>. This goes from top to bottom.</para>
  36337. </summary>
  36338. </member>
  36339. <member name="T:Godot.VehicleBody">
  36340. <summary>
  36341. <para>This node implements all the physics logic needed to simulate a car. It is based on the raycast vehicle system commonly found in physics engines. You will need to add a <see cref="T:Godot.CollisionShape"/> for the main body of your vehicle and add <see cref="T:Godot.VehicleWheel"/> nodes for the wheels. You should also add a <see cref="T:Godot.MeshInstance"/> to this node for the 3D model of your car but this model should not include meshes for the wheels. You should control the vehicle by using the <see cref="P:Godot.VehicleBody.Brake"/>, <see cref="P:Godot.VehicleBody.EngineForce"/>, and <see cref="P:Godot.VehicleBody.Steering"/> properties and not change the position or orientation of this node directly.</para>
  36342. <para>Note: The origin point of your VehicleBody will determine the center of gravity of your vehicle so it is better to keep this low and move the <see cref="T:Godot.CollisionShape"/> and <see cref="T:Godot.MeshInstance"/> upwards.</para>
  36343. </summary>
  36344. </member>
  36345. <member name="P:Godot.VehicleBody.EngineForce">
  36346. <summary>
  36347. <para>Accelerates the vehicle by applying an engine force. The vehicle is only speed up if the wheels that have <see cref="P:Godot.VehicleWheel.UseAsTraction"/> set to <c>true</c> and are in contact with a surface. The <see cref="P:Godot.RigidBody.Mass"/> of the vehicle has an effect on the acceleration of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 50 range for acceleration.</para>
  36348. <para>Note: The simulation does not take the effect of gears into account, you will need to add logic for this if you wish to simulate gears.</para>
  36349. <para>A negative value will result in the vehicle reversing.</para>
  36350. </summary>
  36351. </member>
  36352. <member name="P:Godot.VehicleBody.Brake">
  36353. <summary>
  36354. <para>Slows down the vehicle by applying a braking force. The vehicle is only slowed down if the wheels are in contact with a surface. The force you need to apply to adequately slow down your vehicle depends on the <see cref="P:Godot.RigidBody.Mass"/> of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 30 range for hard braking.</para>
  36355. </summary>
  36356. </member>
  36357. <member name="P:Godot.VehicleBody.Steering">
  36358. <summary>
  36359. <para>The steering angle for the vehicle. Setting this to a non-zero value will result in the vehicle turning when it's moving. Wheels that have <see cref="P:Godot.VehicleWheel.UseAsSteering"/> set to <c>true</c> will automatically be rotated.</para>
  36360. </summary>
  36361. </member>
  36362. <member name="T:Godot.VehicleWheel">
  36363. <summary>
  36364. <para>This node needs to be used as a child node of <see cref="T:Godot.VehicleBody"/> and simulates the behavior of one of its wheels. This node also acts as a collider to detect if the wheel is touching a surface.</para>
  36365. </summary>
  36366. </member>
  36367. <member name="P:Godot.VehicleWheel.EngineForce">
  36368. <summary>
  36369. <para>Accelerates the wheel by applying an engine force. The wheel is only speed up if it is in contact with a surface. The <see cref="P:Godot.RigidBody.Mass"/> of the vehicle has an effect on the acceleration of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 50 range for acceleration.</para>
  36370. <para>Note: The simulation does not take the effect of gears into account, you will need to add logic for this if you wish to simulate gears.</para>
  36371. <para>A negative value will result in the wheel reversing.</para>
  36372. </summary>
  36373. </member>
  36374. <member name="P:Godot.VehicleWheel.Brake">
  36375. <summary>
  36376. <para>Slows down the wheel by applying a braking force. The wheel is only slowed down if it is in contact with a surface. The force you need to apply to adequately slow down your vehicle depends on the <see cref="P:Godot.RigidBody.Mass"/> of the vehicle. For a vehicle with a mass set to 1000, try a value in the 25 - 30 range for hard braking.</para>
  36377. </summary>
  36378. </member>
  36379. <member name="P:Godot.VehicleWheel.Steering">
  36380. <summary>
  36381. <para>The steering angle for the wheel. Setting this to a non-zero value will result in the vehicle turning when it's moving.</para>
  36382. </summary>
  36383. </member>
  36384. <member name="P:Godot.VehicleWheel.UseAsTraction">
  36385. <summary>
  36386. <para>If <c>true</c>, this wheel transfers engine force to the ground to propel the vehicle forward. This value is used in conjunction with <see cref="P:Godot.VehicleBody.EngineForce"/> and ignored if you are using the per-wheel <see cref="P:Godot.VehicleWheel.EngineForce"/> value instead.</para>
  36387. </summary>
  36388. </member>
  36389. <member name="P:Godot.VehicleWheel.UseAsSteering">
  36390. <summary>
  36391. <para>If <c>true</c>, this wheel will be turned when the car steers. This value is used in conjunction with <see cref="P:Godot.VehicleBody.Steering"/> and ignored if you are using the per-wheel <see cref="P:Godot.VehicleWheel.Steering"/> value instead.</para>
  36392. </summary>
  36393. </member>
  36394. <member name="P:Godot.VehicleWheel.WheelRollInfluence">
  36395. <summary>
  36396. <para>This value affects the roll of your vehicle. If set to 1.0 for all wheels, your vehicle will be prone to rolling over, while a value of 0.0 will resist body roll.</para>
  36397. </summary>
  36398. </member>
  36399. <member name="P:Godot.VehicleWheel.WheelRadius">
  36400. <summary>
  36401. <para>The radius of the wheel in meters.</para>
  36402. </summary>
  36403. </member>
  36404. <member name="P:Godot.VehicleWheel.WheelRestLength">
  36405. <summary>
  36406. <para>This is the distance in meters the wheel is lowered from its origin point. Don't set this to 0.0 and move the wheel into position, instead move the origin point of your wheel (the gizmo in Godot) to the position the wheel will take when bottoming out, then use the rest length to move the wheel down to the position it should be in when the car is in rest.</para>
  36407. </summary>
  36408. </member>
  36409. <member name="P:Godot.VehicleWheel.WheelFrictionSlip">
  36410. <summary>
  36411. <para>This determines how much grip this wheel has. It is combined with the friction setting of the surface the wheel is in contact with. 0.0 means no grip, 1.0 is normal grip. For a drift car setup, try setting the grip of the rear wheels slightly lower than the front wheels, or use a lower value to simulate tire wear.</para>
  36412. <para>It's best to set this to 1.0 when starting out.</para>
  36413. </summary>
  36414. </member>
  36415. <member name="P:Godot.VehicleWheel.SuspensionTravel">
  36416. <summary>
  36417. <para>This is the distance the suspension can travel. As Godot units are equivalent to meters, keep this setting relatively low. Try a value between 0.1 and 0.3 depending on the type of car.</para>
  36418. </summary>
  36419. </member>
  36420. <member name="P:Godot.VehicleWheel.SuspensionStiffness">
  36421. <summary>
  36422. <para>This value defines the stiffness of the suspension. Use a value lower than 50 for an off-road car, a value between 50 and 100 for a race car and try something around 200 for something like a Formula 1 car.</para>
  36423. </summary>
  36424. </member>
  36425. <member name="P:Godot.VehicleWheel.SuspensionMaxForce">
  36426. <summary>
  36427. <para>The maximum force the spring can resist. This value should be higher than a quarter of the <see cref="P:Godot.RigidBody.Mass"/> of the <see cref="T:Godot.VehicleBody"/> or the spring will not carry the weight of the vehicle. Good results are often obtained by a value that is about 3× to 4× this number.</para>
  36428. </summary>
  36429. </member>
  36430. <member name="P:Godot.VehicleWheel.DampingCompression">
  36431. <summary>
  36432. <para>The damping applied to the spring when the spring is being compressed. This value should be between 0.0 (no damping) and 1.0. A value of 0.0 means the car will keep bouncing as the spring keeps its energy. A good value for this is around 0.3 for a normal car, 0.5 for a race car.</para>
  36433. </summary>
  36434. </member>
  36435. <member name="P:Godot.VehicleWheel.DampingRelaxation">
  36436. <summary>
  36437. <para>The damping applied to the spring when relaxing. This value should be between 0.0 (no damping) and 1.0. This value should always be slightly higher than the <see cref="P:Godot.VehicleWheel.DampingCompression"/> property. For a <see cref="P:Godot.VehicleWheel.DampingCompression"/> value of 0.3, try a relaxation value of 0.5.</para>
  36438. </summary>
  36439. </member>
  36440. <member name="M:Godot.VehicleWheel.IsInContact">
  36441. <summary>
  36442. <para>Returns <c>true</c> if this wheel is in contact with a surface.</para>
  36443. </summary>
  36444. </member>
  36445. <member name="M:Godot.VehicleWheel.GetSkidinfo">
  36446. <summary>
  36447. <para>Returns a value between 0.0 and 1.0 that indicates whether this wheel is skidding. 0.0 is skidding (the wheel has lost grip, e.g. icy terrain), 1.0 means not skidding (the wheel has full grip, e.g. dry asphalt road).</para>
  36448. </summary>
  36449. </member>
  36450. <member name="M:Godot.VehicleWheel.GetRpm">
  36451. <summary>
  36452. <para>Returns the rotational speed of the wheel in revolutions per minute.</para>
  36453. </summary>
  36454. </member>
  36455. <member name="T:Godot.VideoPlayer">
  36456. <summary>
  36457. <para>Control node for playing video streams using <see cref="T:Godot.VideoStream"/> resources.</para>
  36458. <para>Supported video formats are <a href="https://www.webmproject.org/">WebM</a> (<see cref="T:Godot.VideoStreamWebm"/>), <a href="https://www.theora.org/">Ogg Theora</a> (<see cref="T:Godot.VideoStreamTheora"/>), and any format exposed via a GDNative plugin using <see cref="T:Godot.VideoStreamGDNative"/>.</para>
  36459. </summary>
  36460. </member>
  36461. <member name="P:Godot.VideoPlayer.AudioTrack">
  36462. <summary>
  36463. <para>The embedded audio track to play.</para>
  36464. </summary>
  36465. </member>
  36466. <member name="P:Godot.VideoPlayer.Stream">
  36467. <summary>
  36468. <para>The assigned video stream. See description for supported formats.</para>
  36469. </summary>
  36470. </member>
  36471. <member name="P:Godot.VideoPlayer.VolumeDb">
  36472. <summary>
  36473. <para>Audio volume in dB.</para>
  36474. </summary>
  36475. </member>
  36476. <member name="P:Godot.VideoPlayer.Volume">
  36477. <summary>
  36478. <para>Audio volume as a linear value.</para>
  36479. </summary>
  36480. </member>
  36481. <member name="P:Godot.VideoPlayer.Autoplay">
  36482. <summary>
  36483. <para>If <c>true</c>, playback starts when the scene loads.</para>
  36484. </summary>
  36485. </member>
  36486. <member name="P:Godot.VideoPlayer.Paused">
  36487. <summary>
  36488. <para>If <c>true</c>, the video is paused.</para>
  36489. </summary>
  36490. </member>
  36491. <member name="P:Godot.VideoPlayer.Expand">
  36492. <summary>
  36493. <para>If <c>true</c>, the video scales to the control size. Otherwise, the control minimum size will be automatically adjusted to match the video stream's dimensions.</para>
  36494. </summary>
  36495. </member>
  36496. <member name="P:Godot.VideoPlayer.BufferingMsec">
  36497. <summary>
  36498. <para>Amount of time in milliseconds to store in buffer while playing.</para>
  36499. </summary>
  36500. </member>
  36501. <member name="P:Godot.VideoPlayer.StreamPosition">
  36502. <summary>
  36503. <para>The current position of the stream, in seconds.</para>
  36504. </summary>
  36505. </member>
  36506. <member name="P:Godot.VideoPlayer.Bus">
  36507. <summary>
  36508. <para>Audio bus to use for sound playback.</para>
  36509. </summary>
  36510. </member>
  36511. <member name="M:Godot.VideoPlayer.Play">
  36512. <summary>
  36513. <para>Starts the video playback from the beginning. If the video is paused, this will not unpause the video.</para>
  36514. </summary>
  36515. </member>
  36516. <member name="M:Godot.VideoPlayer.Stop">
  36517. <summary>
  36518. <para>Stops the video playback and sets the stream position to 0.</para>
  36519. <para>Note: Although the stream position will be set to 0, the first frame of the video stream won't become the current frame.</para>
  36520. </summary>
  36521. </member>
  36522. <member name="M:Godot.VideoPlayer.IsPlaying">
  36523. <summary>
  36524. <para>Returns <c>true</c> if the video is playing.</para>
  36525. <para>Note: The video is still considered playing if paused during playback.</para>
  36526. </summary>
  36527. </member>
  36528. <member name="M:Godot.VideoPlayer.GetStreamName">
  36529. <summary>
  36530. <para>Returns the video stream's name, or <c>"&lt;No Stream&gt;"</c> if no video stream is assigned.</para>
  36531. </summary>
  36532. </member>
  36533. <member name="M:Godot.VideoPlayer.GetVideoTexture">
  36534. <summary>
  36535. <para>Returns the current frame as a <see cref="T:Godot.Texture"/>.</para>
  36536. </summary>
  36537. </member>
  36538. <member name="T:Godot.VideoStream">
  36539. <summary>
  36540. <para>Base resource type for all video streams. Classes that derive from <see cref="T:Godot.VideoStream"/> can all be used as resource types to play back videos in <see cref="T:Godot.VideoPlayer"/>.</para>
  36541. </summary>
  36542. </member>
  36543. <member name="T:Godot.VideoStreamGDNative">
  36544. <summary>
  36545. <para><see cref="T:Godot.VideoStream"/> resource for for video formats implemented via GDNative.</para>
  36546. <para>It can be used via <a href="https://github.com/KidRigger/godot-videodecoder">godot-videodecoder</a> which uses the <a href="https://ffmpeg.org">FFmpeg</a> library.</para>
  36547. </summary>
  36548. </member>
  36549. <member name="M:Godot.VideoStreamGDNative.SetFile(System.String)">
  36550. <summary>
  36551. <para>Sets the video file that this <see cref="T:Godot.VideoStreamGDNative"/> resource handles. The supported extensions depend on the GDNative plugins used to expose video formats.</para>
  36552. </summary>
  36553. </member>
  36554. <member name="M:Godot.VideoStreamGDNative.GetFile">
  36555. <summary>
  36556. <para>Returns the video file handled by this <see cref="T:Godot.VideoStreamGDNative"/>.</para>
  36557. </summary>
  36558. </member>
  36559. <member name="T:Godot.VideoStreamTheora">
  36560. <summary>
  36561. <para><see cref="T:Godot.VideoStream"/> resource handling the <a href="https://www.theora.org/">Ogg Theora</a> video format with <c>.ogv</c> extension.</para>
  36562. </summary>
  36563. </member>
  36564. <member name="M:Godot.VideoStreamTheora.SetFile(System.String)">
  36565. <summary>
  36566. <para>Sets the Ogg Theora video file that this <see cref="T:Godot.VideoStreamTheora"/> resource handles. The <c>file</c> name should have the <c>.o</c> extension.</para>
  36567. </summary>
  36568. </member>
  36569. <member name="M:Godot.VideoStreamTheora.GetFile">
  36570. <summary>
  36571. <para>Returns the Ogg Theora video file handled by this <see cref="T:Godot.VideoStreamTheora"/>.</para>
  36572. </summary>
  36573. </member>
  36574. <member name="T:Godot.VideoStreamWebm">
  36575. <summary>
  36576. <para><see cref="T:Godot.VideoStream"/> resource handling the <a href="https://www.webmproject.org/">WebM</a> video format with <c>.webm</c> extension.</para>
  36577. </summary>
  36578. </member>
  36579. <member name="M:Godot.VideoStreamWebm.SetFile(System.String)">
  36580. <summary>
  36581. <para>Sets the WebM video file that this <see cref="T:Godot.VideoStreamWebm"/> resource handles. The <c>file</c> name should have the <c>.webm</c> extension.</para>
  36582. </summary>
  36583. </member>
  36584. <member name="M:Godot.VideoStreamWebm.GetFile">
  36585. <summary>
  36586. <para>Returns the WebM video file handled by this <see cref="T:Godot.VideoStreamWebm"/>.</para>
  36587. </summary>
  36588. </member>
  36589. <member name="T:Godot.Viewport">
  36590. <summary>
  36591. <para>A Viewport creates a different view into the screen, or a sub-view inside another viewport. Children 2D Nodes will display on it, and children Camera 3D nodes will render on it too.</para>
  36592. <para>Optionally, a viewport can have its own 2D or 3D world, so they don't share what they draw with other viewports.</para>
  36593. <para>If a viewport is a child of a <see cref="T:Godot.ViewportContainer"/>, it will automatically take up its size, otherwise it must be set manually.</para>
  36594. <para>Viewports can also choose to be audio listeners, so they generate positional audio depending on a 2D or 3D camera child of it.</para>
  36595. <para>Also, viewports can be assigned to different screens in case the devices have multiple screens.</para>
  36596. <para>Finally, viewports can also behave as render targets, in which case they will not be visible unless the associated texture is used to draw.</para>
  36597. </summary>
  36598. </member>
  36599. <member name="F:Godot.Viewport.ClearMode.Always">
  36600. <summary>
  36601. <para>Always clear the render target before drawing.</para>
  36602. </summary>
  36603. </member>
  36604. <member name="F:Godot.Viewport.ClearMode.Never">
  36605. <summary>
  36606. <para>Never clear the render target.</para>
  36607. </summary>
  36608. </member>
  36609. <member name="F:Godot.Viewport.ClearMode.OnlyNextFrame">
  36610. <summary>
  36611. <para>Clear the render target next frame, then switch to .</para>
  36612. </summary>
  36613. </member>
  36614. <member name="F:Godot.Viewport.RenderInfo.ObjectsInFrame">
  36615. <summary>
  36616. <para>Amount of objects in frame.</para>
  36617. </summary>
  36618. </member>
  36619. <member name="F:Godot.Viewport.RenderInfo.VerticesInFrame">
  36620. <summary>
  36621. <para>Amount of vertices in frame.</para>
  36622. </summary>
  36623. </member>
  36624. <member name="F:Godot.Viewport.RenderInfo.MaterialChangesInFrame">
  36625. <summary>
  36626. <para>Amount of material changes in frame.</para>
  36627. </summary>
  36628. </member>
  36629. <member name="F:Godot.Viewport.RenderInfo.ShaderChangesInFrame">
  36630. <summary>
  36631. <para>Amount of shader changes in frame.</para>
  36632. </summary>
  36633. </member>
  36634. <member name="F:Godot.Viewport.RenderInfo.SurfaceChangesInFrame">
  36635. <summary>
  36636. <para>Amount of surface changes in frame.</para>
  36637. </summary>
  36638. </member>
  36639. <member name="F:Godot.Viewport.RenderInfo.DrawCallsInFrame">
  36640. <summary>
  36641. <para>Amount of draw calls in frame.</para>
  36642. </summary>
  36643. </member>
  36644. <member name="F:Godot.Viewport.RenderInfo.Info2dItemsInFrame">
  36645. <summary>
  36646. <para>Amount of items or joined items in frame.</para>
  36647. </summary>
  36648. </member>
  36649. <member name="F:Godot.Viewport.RenderInfo.Info2dDrawCallsInFrame">
  36650. <summary>
  36651. <para>Amount of draw calls in frame.</para>
  36652. </summary>
  36653. </member>
  36654. <member name="F:Godot.Viewport.RenderInfo.Max">
  36655. <summary>
  36656. <para>Represents the size of the <see cref="T:Godot.Viewport.RenderInfo"/> enum.</para>
  36657. </summary>
  36658. </member>
  36659. <member name="F:Godot.Viewport.UsageEnum.Usage2d">
  36660. <summary>
  36661. <para>Allocates all buffers needed for drawing 2D scenes. This takes less VRAM than the 3D usage modes.</para>
  36662. </summary>
  36663. </member>
  36664. <member name="F:Godot.Viewport.UsageEnum.Usage2dNoSampling">
  36665. <summary>
  36666. <para>Allocates buffers needed for 2D scenes without allocating a buffer for screen copy. Accordingly, you cannot read from the screen. Of the <see cref="T:Godot.Viewport.UsageEnum"/> types, this requires the least VRAM.</para>
  36667. </summary>
  36668. </member>
  36669. <member name="F:Godot.Viewport.UsageEnum.Usage3d">
  36670. <summary>
  36671. <para>Allocates full buffers for drawing 3D scenes and all 3D effects including buffers needed for 2D scenes and effects.</para>
  36672. </summary>
  36673. </member>
  36674. <member name="F:Godot.Viewport.UsageEnum.Usage3dNoEffects">
  36675. <summary>
  36676. <para>Allocates buffers needed for drawing 3D scenes. But does not allocate buffers needed for reading from the screen and post-processing effects. Saves some VRAM.</para>
  36677. </summary>
  36678. </member>
  36679. <member name="F:Godot.Viewport.DebugDrawEnum.Disabled">
  36680. <summary>
  36681. <para>Objects are displayed normally.</para>
  36682. </summary>
  36683. </member>
  36684. <member name="F:Godot.Viewport.DebugDrawEnum.Unshaded">
  36685. <summary>
  36686. <para>Objects are displayed without light information.</para>
  36687. </summary>
  36688. </member>
  36689. <member name="F:Godot.Viewport.DebugDrawEnum.Overdraw">
  36690. <summary>
  36691. <para>Objected are displayed semi-transparent with additive blending so you can see where they intersect.</para>
  36692. </summary>
  36693. </member>
  36694. <member name="F:Godot.Viewport.DebugDrawEnum.Wireframe">
  36695. <summary>
  36696. <para>Objects are displayed in wireframe style.</para>
  36697. </summary>
  36698. </member>
  36699. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Disabled">
  36700. <summary>
  36701. <para>This quadrant will not be used.</para>
  36702. </summary>
  36703. </member>
  36704. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Subdiv1">
  36705. <summary>
  36706. <para>This quadrant will only be used by one shadow map.</para>
  36707. </summary>
  36708. </member>
  36709. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Subdiv4">
  36710. <summary>
  36711. <para>This quadrant will be split in 4 and used by up to 4 shadow maps.</para>
  36712. </summary>
  36713. </member>
  36714. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Subdiv16">
  36715. <summary>
  36716. <para>This quadrant will be split 16 ways and used by up to 16 shadow maps.</para>
  36717. </summary>
  36718. </member>
  36719. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Subdiv64">
  36720. <summary>
  36721. <para>This quadrant will be split 64 ways and used by up to 64 shadow maps.</para>
  36722. </summary>
  36723. </member>
  36724. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Subdiv256">
  36725. <summary>
  36726. <para>This quadrant will be split 256 ways and used by up to 256 shadow maps. Unless the <see cref="P:Godot.Viewport.ShadowAtlasSize"/> is very high, the shadows in this quadrant will be very low resolution.</para>
  36727. </summary>
  36728. </member>
  36729. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Subdiv1024">
  36730. <summary>
  36731. <para>This quadrant will be split 1024 ways and used by up to 1024 shadow maps. Unless the <see cref="P:Godot.Viewport.ShadowAtlasSize"/> is very high, the shadows in this quadrant will be very low resolution.</para>
  36732. </summary>
  36733. </member>
  36734. <member name="F:Godot.Viewport.ShadowAtlasQuadrantSubdiv.Max">
  36735. <summary>
  36736. <para>Represents the size of the <see cref="T:Godot.Viewport.ShadowAtlasQuadrantSubdiv"/> enum.</para>
  36737. </summary>
  36738. </member>
  36739. <member name="F:Godot.Viewport.UpdateMode.Disabled">
  36740. <summary>
  36741. <para>Do not update the render target.</para>
  36742. </summary>
  36743. </member>
  36744. <member name="F:Godot.Viewport.UpdateMode.Once">
  36745. <summary>
  36746. <para>Update the render target once, then switch to .</para>
  36747. </summary>
  36748. </member>
  36749. <member name="F:Godot.Viewport.UpdateMode.WhenVisible">
  36750. <summary>
  36751. <para>Update the render target only when it is visible. This is the default value.</para>
  36752. </summary>
  36753. </member>
  36754. <member name="F:Godot.Viewport.UpdateMode.Always">
  36755. <summary>
  36756. <para>Always update the render target.</para>
  36757. </summary>
  36758. </member>
  36759. <member name="F:Godot.Viewport.MSAA.Disabled">
  36760. <summary>
  36761. <para>Multisample anti-aliasing mode disabled. This is the default value.</para>
  36762. </summary>
  36763. </member>
  36764. <member name="F:Godot.Viewport.MSAA.Msaa2x">
  36765. <summary>
  36766. <para>Use 2x Multisample Antialiasing.</para>
  36767. </summary>
  36768. </member>
  36769. <member name="F:Godot.Viewport.MSAA.Msaa4x">
  36770. <summary>
  36771. <para>Use 4x Multisample Antialiasing.</para>
  36772. </summary>
  36773. </member>
  36774. <member name="F:Godot.Viewport.MSAA.Msaa8x">
  36775. <summary>
  36776. <para>Use 8x Multisample Antialiasing. Likely unsupported on low-end and older hardware.</para>
  36777. </summary>
  36778. </member>
  36779. <member name="F:Godot.Viewport.MSAA.Msaa16x">
  36780. <summary>
  36781. <para>Use 16x Multisample Antialiasing. Likely unsupported on medium and low-end hardware.</para>
  36782. </summary>
  36783. </member>
  36784. <member name="P:Godot.Viewport.Arvr">
  36785. <summary>
  36786. <para>If <c>true</c>, the viewport will be used in AR/VR process.</para>
  36787. </summary>
  36788. </member>
  36789. <member name="P:Godot.Viewport.Size">
  36790. <summary>
  36791. <para>The width and height of viewport.</para>
  36792. </summary>
  36793. </member>
  36794. <member name="P:Godot.Viewport.SizeOverrideStretch">
  36795. <summary>
  36796. <para>If <c>true</c>, the size override affects stretch as well.</para>
  36797. </summary>
  36798. </member>
  36799. <member name="P:Godot.Viewport.OwnWorld">
  36800. <summary>
  36801. <para>If <c>true</c>, the viewport will use <see cref="T:Godot.World"/> defined in <c>world</c> property.</para>
  36802. </summary>
  36803. </member>
  36804. <member name="P:Godot.Viewport.World">
  36805. <summary>
  36806. <para>The custom <see cref="T:Godot.World"/> which can be used as 3D environment source.</para>
  36807. </summary>
  36808. </member>
  36809. <member name="P:Godot.Viewport.World2d">
  36810. <summary>
  36811. <para>The custom <see cref="T:Godot.World2D"/> which can be used as 2D environment source.</para>
  36812. </summary>
  36813. </member>
  36814. <member name="P:Godot.Viewport.TransparentBg">
  36815. <summary>
  36816. <para>If <c>true</c>, the viewport should render its background as transparent.</para>
  36817. </summary>
  36818. </member>
  36819. <member name="P:Godot.Viewport.Msaa">
  36820. <summary>
  36821. <para>The multisample anti-aliasing mode. A higher number results in smoother edges at the cost of significantly worse performance. A value of 4 is best unless targeting very high-end systems.</para>
  36822. </summary>
  36823. </member>
  36824. <member name="P:Godot.Viewport.Hdr">
  36825. <summary>
  36826. <para>If <c>true</c>, the viewport rendering will receive benefits from High Dynamic Range algorithm. High Dynamic Range allows the viewport to receive values that are outside the 0-1 range. In Godot HDR uses 16 bits, meaning it does not store the full range of a floating point number.</para>
  36827. <para>Note: Requires <see cref="P:Godot.Viewport.Usage"/> to be set to or , since HDR is not supported for 2D.</para>
  36828. </summary>
  36829. </member>
  36830. <member name="P:Godot.Viewport.Disable3d">
  36831. <summary>
  36832. <para>If <c>true</c>, the viewport will disable 3D rendering. For actual disabling use <c>usage</c>.</para>
  36833. </summary>
  36834. </member>
  36835. <member name="P:Godot.Viewport.Keep3dLinear">
  36836. <summary>
  36837. <para>If <c>true</c>, the result after 3D rendering will not have a linear to sRGB color conversion applied. This is important when the viewport is used as a render target where the result is used as a texture on a 3D object rendered in another viewport. It is also important if the viewport is used to create data that is not color based (noise, heightmaps, pickmaps, etc.). Do not enable this when the viewport is used as a texture on a 2D object or if the viewport is your final output.</para>
  36838. </summary>
  36839. </member>
  36840. <member name="P:Godot.Viewport.Usage">
  36841. <summary>
  36842. <para>The rendering mode of viewport.</para>
  36843. </summary>
  36844. </member>
  36845. <member name="P:Godot.Viewport.RenderDirectToScreen">
  36846. <summary>
  36847. <para>If <c>true</c>, renders the Viewport directly to the screen instead of to the root viewport. Only available in GLES2. This is a low-level optimization and should not be used in most cases. If used, reading from the Viewport or from <c>SCREEN_TEXTURE</c> becomes unavailable. For more information see <see cref="M:Godot.VisualServer.ViewportSetRenderDirectToScreen(Godot.RID,System.Boolean)"/>.</para>
  36848. </summary>
  36849. </member>
  36850. <member name="P:Godot.Viewport.DebugDraw">
  36851. <summary>
  36852. <para>The overlay mode for test rendered geometry in debug purposes.</para>
  36853. </summary>
  36854. </member>
  36855. <member name="P:Godot.Viewport.RenderTargetVFlip">
  36856. <summary>
  36857. <para>If <c>true</c>, the result of rendering will be flipped vertically.</para>
  36858. </summary>
  36859. </member>
  36860. <member name="P:Godot.Viewport.RenderTargetClearMode">
  36861. <summary>
  36862. <para>The clear mode when viewport used as a render target.</para>
  36863. </summary>
  36864. </member>
  36865. <member name="P:Godot.Viewport.RenderTargetUpdateMode">
  36866. <summary>
  36867. <para>The update mode when viewport used as a render target.</para>
  36868. </summary>
  36869. </member>
  36870. <member name="P:Godot.Viewport.AudioListenerEnable2d">
  36871. <summary>
  36872. <para>If <c>true</c>, the viewport will process 2D audio streams.</para>
  36873. </summary>
  36874. </member>
  36875. <member name="P:Godot.Viewport.AudioListenerEnable3d">
  36876. <summary>
  36877. <para>If <c>true</c>, the viewport will process 3D audio streams.</para>
  36878. </summary>
  36879. </member>
  36880. <member name="P:Godot.Viewport.PhysicsObjectPicking">
  36881. <summary>
  36882. <para>If <c>true</c>, the objects rendered by viewport become subjects of mouse picking process.</para>
  36883. </summary>
  36884. </member>
  36885. <member name="P:Godot.Viewport.GuiDisableInput">
  36886. <summary>
  36887. <para>If <c>true</c>, the viewport will not receive input event.</para>
  36888. </summary>
  36889. </member>
  36890. <member name="P:Godot.Viewport.GuiSnapControlsToPixels">
  36891. <summary>
  36892. <para>If <c>true</c>, the GUI controls on the viewport will lay pixel perfectly.</para>
  36893. </summary>
  36894. </member>
  36895. <member name="P:Godot.Viewport.ShadowAtlasSize">
  36896. <summary>
  36897. <para>The shadow atlas' resolution (used for omni and spot lights). The value will be rounded up to the nearest power of 2.</para>
  36898. <para>Note: If this is set to 0, shadows won't be visible. Since user-created viewports default to a value of 0, this value must be set above 0 manually.</para>
  36899. </summary>
  36900. </member>
  36901. <member name="P:Godot.Viewport.ShadowAtlasQuad0">
  36902. <summary>
  36903. <para>The subdivision amount of the first quadrant on the shadow atlas.</para>
  36904. </summary>
  36905. </member>
  36906. <member name="P:Godot.Viewport.ShadowAtlasQuad1">
  36907. <summary>
  36908. <para>The subdivision amount of the second quadrant on the shadow atlas.</para>
  36909. </summary>
  36910. </member>
  36911. <member name="P:Godot.Viewport.ShadowAtlasQuad2">
  36912. <summary>
  36913. <para>The subdivision amount of the third quadrant on the shadow atlas.</para>
  36914. </summary>
  36915. </member>
  36916. <member name="P:Godot.Viewport.ShadowAtlasQuad3">
  36917. <summary>
  36918. <para>The subdivision amount of the fourth quadrant on the shadow atlas.</para>
  36919. </summary>
  36920. </member>
  36921. <member name="P:Godot.Viewport.CanvasTransform">
  36922. <summary>
  36923. <para>The canvas transform of the viewport, useful for changing the on-screen positions of all child <see cref="T:Godot.CanvasItem"/>s. This is relative to the global canvas transform of the viewport.</para>
  36924. </summary>
  36925. </member>
  36926. <member name="P:Godot.Viewport.GlobalCanvasTransform">
  36927. <summary>
  36928. <para>The global canvas transform of the viewport. The canvas transform is relative to this.</para>
  36929. </summary>
  36930. </member>
  36931. <member name="M:Godot.Viewport.FindWorld2d">
  36932. <summary>
  36933. <para>Returns the 2D world of the viewport.</para>
  36934. </summary>
  36935. </member>
  36936. <member name="M:Godot.Viewport.FindWorld">
  36937. <summary>
  36938. <para>Returns the 3D world of the viewport, or if none the world of the parent viewport.</para>
  36939. </summary>
  36940. </member>
  36941. <member name="M:Godot.Viewport.GetFinalTransform">
  36942. <summary>
  36943. <para>Returns the total transform of the viewport.</para>
  36944. </summary>
  36945. </member>
  36946. <member name="M:Godot.Viewport.GetVisibleRect">
  36947. <summary>
  36948. <para>Returns the visible rectangle in global screen coordinates.</para>
  36949. </summary>
  36950. </member>
  36951. <member name="M:Godot.Viewport.SetSizeOverride(System.Boolean,System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2})">
  36952. <summary>
  36953. <para>Sets the size override of the viewport. If the <c>enable</c> parameter is <c>true</c> the override is used, otherwise it uses the default size. If the size parameter is <c>(-1, -1)</c>, it won't update the size.</para>
  36954. </summary>
  36955. <param name="size">If the parameter is null, then the default value is new Vector2(-1, -1)</param>
  36956. <param name="margin">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  36957. </member>
  36958. <member name="M:Godot.Viewport.GetSizeOverride">
  36959. <summary>
  36960. <para>Returns the size override set with <see cref="M:Godot.Viewport.SetSizeOverride(System.Boolean,System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2})"/>.</para>
  36961. </summary>
  36962. </member>
  36963. <member name="M:Godot.Viewport.IsSizeOverrideEnabled">
  36964. <summary>
  36965. <para>Returns <c>true</c> if the size override is enabled. See <see cref="M:Godot.Viewport.SetSizeOverride(System.Boolean,System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2})"/>.</para>
  36966. </summary>
  36967. </member>
  36968. <member name="M:Godot.Viewport.GetRenderInfo(Godot.Viewport.RenderInfo)">
  36969. <summary>
  36970. <para>Returns information about the viewport from the rendering pipeline.</para>
  36971. </summary>
  36972. </member>
  36973. <member name="M:Godot.Viewport.GetTexture">
  36974. <summary>
  36975. <para>Returns the viewport's texture.</para>
  36976. <para>Note: Due to the way OpenGL works, the resulting <see cref="T:Godot.ViewportTexture"/> is flipped vertically. You can use <see cref="M:Godot.Image.FlipY"/> on the result of <see cref="M:Godot.Texture.GetData"/> to flip it back, for example:</para>
  36977. <para><code>
  36978. var img = get_viewport().get_texture().get_data()
  36979. img.flip_y()
  36980. </code></para>
  36981. </summary>
  36982. </member>
  36983. <member name="M:Godot.Viewport.GetViewportRid">
  36984. <summary>
  36985. <para>Returns the viewport's RID from the <see cref="T:Godot.VisualServer"/>.</para>
  36986. </summary>
  36987. </member>
  36988. <member name="M:Godot.Viewport.UpdateWorlds">
  36989. <summary>
  36990. <para>Forces update of the 2D and 3D worlds.</para>
  36991. </summary>
  36992. </member>
  36993. <member name="M:Godot.Viewport.GetCamera">
  36994. <summary>
  36995. <para>Returns the active 3D camera.</para>
  36996. </summary>
  36997. </member>
  36998. <member name="M:Godot.Viewport.SetAttachToScreenRect(Godot.Rect2)">
  36999. <summary>
  37000. <para>Attaches this <see cref="T:Godot.Viewport"/> to the root <see cref="T:Godot.Viewport"/> with the specified rectangle. This bypasses the need for another node to display this <see cref="T:Godot.Viewport"/> but makes you responsible for updating the position of this <see cref="T:Godot.Viewport"/> manually.</para>
  37001. </summary>
  37002. </member>
  37003. <member name="M:Godot.Viewport.GetMousePosition">
  37004. <summary>
  37005. <para>Returns the mouse position relative to the viewport.</para>
  37006. </summary>
  37007. </member>
  37008. <member name="M:Godot.Viewport.WarpMouse(Godot.Vector2)">
  37009. <summary>
  37010. <para>Warps the mouse to a position relative to the viewport.</para>
  37011. </summary>
  37012. </member>
  37013. <member name="M:Godot.Viewport.GuiHasModalStack">
  37014. <summary>
  37015. <para>Returns <c>true</c> if there are visible modals on-screen.</para>
  37016. </summary>
  37017. </member>
  37018. <member name="M:Godot.Viewport.GuiGetDragData">
  37019. <summary>
  37020. <para>Returns the drag data from the GUI, that was previously returned by <see cref="M:Godot.Control.GetDragData(Godot.Vector2)"/>.</para>
  37021. </summary>
  37022. </member>
  37023. <member name="M:Godot.Viewport.GuiIsDragging">
  37024. <summary>
  37025. <para>Returns <c>true</c> if the viewport is currently performing a drag operation.</para>
  37026. </summary>
  37027. </member>
  37028. <member name="M:Godot.Viewport.GetModalStackTop">
  37029. <summary>
  37030. <para>Returns the topmost modal in the stack.</para>
  37031. </summary>
  37032. </member>
  37033. <member name="M:Godot.Viewport.SetShadowAtlasQuadrantSubdiv(System.Int32,Godot.Viewport.ShadowAtlasQuadrantSubdiv)">
  37034. <summary>
  37035. <para>Sets the number of subdivisions to use in the specified quadrant. A higher number of subdivisions allows you to have more shadows in the scene at once, but reduces the quality of the shadows. A good practice is to have quadrants with a varying number of subdivisions and to have as few subdivisions as possible.</para>
  37036. </summary>
  37037. </member>
  37038. <member name="M:Godot.Viewport.GetShadowAtlasQuadrantSubdiv(System.Int32)">
  37039. <summary>
  37040. <para>Returns the <see cref="T:Godot.Viewport.ShadowAtlasQuadrantSubdiv"/> of the specified quadrant.</para>
  37041. </summary>
  37042. </member>
  37043. <member name="M:Godot.Viewport.SetInputAsHandled">
  37044. <summary>
  37045. <para>Stops the input from propagating further down the <see cref="T:Godot.SceneTree"/>.</para>
  37046. </summary>
  37047. </member>
  37048. <member name="T:Godot.ViewportContainer">
  37049. <summary>
  37050. <para>A <see cref="T:Godot.Container"/> node that holds a <see cref="T:Godot.Viewport"/>, automatically setting its size.</para>
  37051. <para>Note: Changing a ViewportContainer's <see cref="P:Godot.Control.RectScale"/> will cause its contents to appear distorted. To change its visual size without causing distortion, adjust the node's margins instead (if it's not already in a container).</para>
  37052. </summary>
  37053. </member>
  37054. <member name="P:Godot.ViewportContainer.Stretch">
  37055. <summary>
  37056. <para>If <c>true</c>, the viewport will be scaled to the control's size.</para>
  37057. </summary>
  37058. </member>
  37059. <member name="P:Godot.ViewportContainer.StretchShrink">
  37060. <summary>
  37061. <para>Divides the viewport's effective resolution by this value while preserving its scale. This can be used to speed up rendering.</para>
  37062. <para>For example, a 1280×720 viewport with <see cref="P:Godot.ViewportContainer.StretchShrink"/> set to <c>2</c> will be rendered at 640×360 while occupying the same size in the container.</para>
  37063. <para>Note: <see cref="P:Godot.ViewportContainer.Stretch"/> must be <c>true</c> for this property to work.</para>
  37064. </summary>
  37065. </member>
  37066. <member name="T:Godot.ViewportTexture">
  37067. <summary>
  37068. <para>Displays the content of a <see cref="T:Godot.Viewport"/> node as a dynamic <see cref="T:Godot.Texture"/>. This can be used to mix controls, 2D, and 3D elements in the same scene.</para>
  37069. <para>To create a ViewportTexture in code, use the <see cref="M:Godot.Viewport.GetTexture"/> method on the target viewport.</para>
  37070. </summary>
  37071. </member>
  37072. <member name="P:Godot.ViewportTexture.ViewportPath">
  37073. <summary>
  37074. <para>The path to the <see cref="T:Godot.Viewport"/> node to display. This is relative to the scene root, not to the node which uses the texture.</para>
  37075. </summary>
  37076. </member>
  37077. <member name="T:Godot.VisibilityEnabler">
  37078. <summary>
  37079. <para>The VisibilityEnabler will disable <see cref="T:Godot.RigidBody"/> and <see cref="T:Godot.AnimationPlayer"/> nodes when they are not visible. It will only affect other nodes within the same scene as the VisibilityEnabler itself.</para>
  37080. <para>Note: VisibilityEnabler uses an approximate heuristic for performance reasons. It doesn't take walls and other occlusion into account. If you need exact visibility checking, use another method such as adding an <see cref="T:Godot.Area"/> node as a child of a <see cref="T:Godot.Camera"/> node.</para>
  37081. <para>Note: VisibilityEnabler will not affect nodes added after scene initialization.</para>
  37082. </summary>
  37083. </member>
  37084. <member name="F:Godot.VisibilityEnabler.Enabler.PauseAnimations">
  37085. <summary>
  37086. <para>This enabler will pause <see cref="T:Godot.AnimationPlayer"/> nodes.</para>
  37087. </summary>
  37088. </member>
  37089. <member name="F:Godot.VisibilityEnabler.Enabler.FreezeBodies">
  37090. <summary>
  37091. <para>This enabler will freeze <see cref="T:Godot.RigidBody"/> nodes.</para>
  37092. </summary>
  37093. </member>
  37094. <member name="F:Godot.VisibilityEnabler.Enabler.Max">
  37095. <summary>
  37096. <para>Represents the size of the <see cref="T:Godot.VisibilityEnabler.Enabler"/> enum.</para>
  37097. </summary>
  37098. </member>
  37099. <member name="P:Godot.VisibilityEnabler.PauseAnimations">
  37100. <summary>
  37101. <para>If <c>true</c>, <see cref="T:Godot.AnimationPlayer"/> nodes will be paused.</para>
  37102. </summary>
  37103. </member>
  37104. <member name="P:Godot.VisibilityEnabler.FreezeBodies">
  37105. <summary>
  37106. <para>If <c>true</c>, <see cref="T:Godot.RigidBody"/> nodes will be paused.</para>
  37107. </summary>
  37108. </member>
  37109. <member name="M:Godot.VisibilityEnabler.SetEnabler(Godot.VisibilityEnabler.Enabler,System.Boolean)">
  37110. <summary>
  37111. <para>Sets active state of the enabler identified by given <see cref="T:Godot.VisibilityEnabler.Enabler"/> constant.</para>
  37112. </summary>
  37113. </member>
  37114. <member name="M:Godot.VisibilityEnabler.IsEnablerEnabled(Godot.VisibilityEnabler.Enabler)">
  37115. <summary>
  37116. <para>Returns whether the enabler identified by given <see cref="T:Godot.VisibilityEnabler.Enabler"/> constant is active.</para>
  37117. </summary>
  37118. </member>
  37119. <member name="T:Godot.VisibilityEnabler2D">
  37120. <summary>
  37121. <para>The VisibilityEnabler2D will disable <see cref="T:Godot.RigidBody2D"/>, <see cref="T:Godot.AnimationPlayer"/>, and other nodes when they are not visible. It will only affect nodes with the same root node as the VisibilityEnabler2D, and the root node itself.</para>
  37122. <para>Note: For performance reasons, VisibilityEnabler2D uses an approximate heuristic with precision determined by . If you need exact visibility checking, use another method such as adding an <see cref="T:Godot.Area2D"/> node as a child of a <see cref="T:Godot.Camera2D"/> node.</para>
  37123. <para>Note: VisibilityEnabler2D will not affect nodes added after scene initialization.</para>
  37124. </summary>
  37125. </member>
  37126. <member name="F:Godot.VisibilityEnabler2D.Enabler.PauseAnimations">
  37127. <summary>
  37128. <para>This enabler will pause <see cref="T:Godot.AnimationPlayer"/> nodes.</para>
  37129. </summary>
  37130. </member>
  37131. <member name="F:Godot.VisibilityEnabler2D.Enabler.FreezeBodies">
  37132. <summary>
  37133. <para>This enabler will freeze <see cref="T:Godot.RigidBody2D"/> nodes.</para>
  37134. </summary>
  37135. </member>
  37136. <member name="F:Godot.VisibilityEnabler2D.Enabler.PauseParticles">
  37137. <summary>
  37138. <para>This enabler will stop <see cref="T:Godot.Particles2D"/> nodes.</para>
  37139. </summary>
  37140. </member>
  37141. <member name="F:Godot.VisibilityEnabler2D.Enabler.ParentProcess">
  37142. <summary>
  37143. <para>This enabler will stop the parent's _process function.</para>
  37144. </summary>
  37145. </member>
  37146. <member name="F:Godot.VisibilityEnabler2D.Enabler.ParentPhysicsProcess">
  37147. <summary>
  37148. <para>This enabler will stop the parent's _physics_process function.</para>
  37149. </summary>
  37150. </member>
  37151. <member name="F:Godot.VisibilityEnabler2D.Enabler.PauseAnimatedSprites">
  37152. <summary>
  37153. <para>This enabler will stop <see cref="T:Godot.AnimatedSprite"/> nodes animations.</para>
  37154. </summary>
  37155. </member>
  37156. <member name="F:Godot.VisibilityEnabler2D.Enabler.Max">
  37157. <summary>
  37158. <para>Represents the size of the <see cref="T:Godot.VisibilityEnabler2D.Enabler"/> enum.</para>
  37159. </summary>
  37160. </member>
  37161. <member name="P:Godot.VisibilityEnabler2D.PauseAnimations">
  37162. <summary>
  37163. <para>If <c>true</c>, <see cref="T:Godot.AnimationPlayer"/> nodes will be paused.</para>
  37164. </summary>
  37165. </member>
  37166. <member name="P:Godot.VisibilityEnabler2D.FreezeBodies">
  37167. <summary>
  37168. <para>If <c>true</c>, <see cref="T:Godot.RigidBody2D"/> nodes will be paused.</para>
  37169. </summary>
  37170. </member>
  37171. <member name="P:Godot.VisibilityEnabler2D.PauseParticles">
  37172. <summary>
  37173. <para>If <c>true</c>, <see cref="T:Godot.Particles2D"/> nodes will be paused.</para>
  37174. </summary>
  37175. </member>
  37176. <member name="P:Godot.VisibilityEnabler2D.PauseAnimatedSprites">
  37177. <summary>
  37178. <para>If <c>true</c>, <see cref="T:Godot.AnimatedSprite"/> nodes will be paused.</para>
  37179. </summary>
  37180. </member>
  37181. <member name="P:Godot.VisibilityEnabler2D.ProcessParent">
  37182. <summary>
  37183. <para>If <c>true</c>, the parent's <see cref="M:Godot.Node._Process(System.Single)"/> will be stopped.</para>
  37184. </summary>
  37185. </member>
  37186. <member name="P:Godot.VisibilityEnabler2D.PhysicsProcessParent">
  37187. <summary>
  37188. <para>If <c>true</c>, the parent's <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> will be stopped.</para>
  37189. </summary>
  37190. </member>
  37191. <member name="M:Godot.VisibilityEnabler2D.SetEnabler(Godot.VisibilityEnabler2D.Enabler,System.Boolean)">
  37192. <summary>
  37193. <para>Sets active state of the enabler identified by given <see cref="T:Godot.VisibilityEnabler2D.Enabler"/> constant.</para>
  37194. </summary>
  37195. </member>
  37196. <member name="M:Godot.VisibilityEnabler2D.IsEnablerEnabled(Godot.VisibilityEnabler2D.Enabler)">
  37197. <summary>
  37198. <para>Returns whether the enabler identified by given <see cref="T:Godot.VisibilityEnabler2D.Enabler"/> constant is active.</para>
  37199. </summary>
  37200. </member>
  37201. <member name="T:Godot.VisibilityNotifier">
  37202. <summary>
  37203. <para>The VisibilityNotifier detects when it is visible on the screen. It also notifies when its bounding rectangle enters or exits the screen or a <see cref="T:Godot.Camera"/>'s view.</para>
  37204. <para>Note: VisibilityNotifier uses an approximate heuristic for performance reasons. It doesn't take walls and other occlusion into account. If you need exact visibility checking, use another method such as adding an <see cref="T:Godot.Area"/> node as a child of a <see cref="T:Godot.Camera"/> node.</para>
  37205. </summary>
  37206. </member>
  37207. <member name="P:Godot.VisibilityNotifier.Aabb">
  37208. <summary>
  37209. <para>The VisibilityNotifier's bounding box.</para>
  37210. </summary>
  37211. </member>
  37212. <member name="M:Godot.VisibilityNotifier.IsOnScreen">
  37213. <summary>
  37214. <para>If <c>true</c>, the bounding box is on the screen.</para>
  37215. <para>Note: It takes one frame for the node's visibility to be assessed once added to the scene tree, so this method will return <c>false</c> right after it is instantiated, even if it will be on screen in the draw pass.</para>
  37216. </summary>
  37217. </member>
  37218. <member name="T:Godot.VisibilityNotifier2D">
  37219. <summary>
  37220. <para>The VisibilityNotifier2D detects when it is visible on the screen. It also notifies when its bounding rectangle enters or exits the screen or a viewport.</para>
  37221. <para>Note: For performance reasons, VisibilityNotifier2D uses an approximate heuristic with precision determined by . If you need exact visibility checking, use another method such as adding an <see cref="T:Godot.Area2D"/> node as a child of a <see cref="T:Godot.Camera2D"/> node.</para>
  37222. </summary>
  37223. </member>
  37224. <member name="P:Godot.VisibilityNotifier2D.Rect">
  37225. <summary>
  37226. <para>The VisibilityNotifier2D's bounding rectangle.</para>
  37227. </summary>
  37228. </member>
  37229. <member name="M:Godot.VisibilityNotifier2D.IsOnScreen">
  37230. <summary>
  37231. <para>If <c>true</c>, the bounding rectangle is on the screen.</para>
  37232. <para>Note: It takes one frame for the node's visibility to be assessed once added to the scene tree, so this method will return <c>false</c> right after it is instantiated, even if it will be on screen in the draw pass.</para>
  37233. </summary>
  37234. </member>
  37235. <member name="T:Godot.VisualInstance">
  37236. <summary>
  37237. <para>The <see cref="T:Godot.VisualInstance"/> is used to connect a resource to a visual representation. All visual 3D nodes inherit from the <see cref="T:Godot.VisualInstance"/>. In general, you should not access the <see cref="T:Godot.VisualInstance"/> properties directly as they are accessed and managed by the nodes that inherit from <see cref="T:Godot.VisualInstance"/>. <see cref="T:Godot.VisualInstance"/> is the node representation of the <see cref="T:Godot.VisualServer"/> instance.</para>
  37238. </summary>
  37239. </member>
  37240. <member name="P:Godot.VisualInstance.Layers">
  37241. <summary>
  37242. <para>The render layer(s) this <see cref="T:Godot.VisualInstance"/> is drawn on.</para>
  37243. <para>This object will only be visible for <see cref="T:Godot.Camera"/>s whose cull mask includes the render object this <see cref="T:Godot.VisualInstance"/> is set to.</para>
  37244. </summary>
  37245. </member>
  37246. <member name="M:Godot.VisualInstance.SetBase(Godot.RID)">
  37247. <summary>
  37248. <para>Sets the resource that is instantiated by this <see cref="T:Godot.VisualInstance"/>, which changes how the engine handles the <see cref="T:Godot.VisualInstance"/> under the hood. Equivalent to <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/>.</para>
  37249. </summary>
  37250. </member>
  37251. <member name="M:Godot.VisualInstance.GetBase">
  37252. <summary>
  37253. <para>Returns the RID of the resource associated with this <see cref="T:Godot.VisualInstance"/>. For example, if the Node is a <see cref="T:Godot.MeshInstance"/>, this will return the RID of the associated <see cref="T:Godot.Mesh"/>.</para>
  37254. </summary>
  37255. </member>
  37256. <member name="M:Godot.VisualInstance.GetInstance">
  37257. <summary>
  37258. <para>Returns the RID of this instance. This RID is the same as the RID returned by <see cref="M:Godot.VisualServer.InstanceCreate"/>. This RID is needed if you want to call <see cref="T:Godot.VisualServer"/> functions directly on this <see cref="T:Godot.VisualInstance"/>.</para>
  37259. </summary>
  37260. </member>
  37261. <member name="M:Godot.VisualInstance.SetLayerMaskBit(System.Int32,System.Boolean)">
  37262. <summary>
  37263. <para>Enables a particular layer in <see cref="P:Godot.VisualInstance.Layers"/>.</para>
  37264. </summary>
  37265. </member>
  37266. <member name="M:Godot.VisualInstance.GetLayerMaskBit(System.Int32)">
  37267. <summary>
  37268. <para>Returns <c>true</c> when the specified layer is enabled in <see cref="P:Godot.VisualInstance.Layers"/> and <c>false</c> otherwise.</para>
  37269. </summary>
  37270. </member>
  37271. <member name="M:Godot.VisualInstance.GetTransformedAabb">
  37272. <summary>
  37273. <para>Returns the transformed <see cref="T:Godot.AABB"/> (also known as the bounding box) for this <see cref="T:Godot.VisualInstance"/>.</para>
  37274. <para>Transformed in this case means the <see cref="T:Godot.AABB"/> plus the position, rotation, and scale of the <see cref="T:Godot.Spatial"/>'s <see cref="T:Godot.Transform"/>.</para>
  37275. </summary>
  37276. </member>
  37277. <member name="M:Godot.VisualInstance.GetAabb">
  37278. <summary>
  37279. <para>Returns the <see cref="T:Godot.AABB"/> (also known as the bounding box) for this <see cref="T:Godot.VisualInstance"/>.</para>
  37280. </summary>
  37281. </member>
  37282. <member name="T:Godot.VisualScript">
  37283. <summary>
  37284. <para>A script implemented in the Visual Script programming environment. The script extends the functionality of all objects that instance it.</para>
  37285. <para><see cref="M:Godot.Object.SetScript(Godot.Reference)"/> extends an existing object, if that object's class matches one of the script's base classes.</para>
  37286. <para>You are most likely to use this class via the Visual Script editor or when writing plugins for it.</para>
  37287. </summary>
  37288. </member>
  37289. <member name="M:Godot.VisualScript.AddFunction(System.String)">
  37290. <summary>
  37291. <para>Add a function with the specified name to the VisualScript.</para>
  37292. </summary>
  37293. </member>
  37294. <member name="M:Godot.VisualScript.HasFunction(System.String)">
  37295. <summary>
  37296. <para>Returns whether a function exists with the specified name.</para>
  37297. </summary>
  37298. </member>
  37299. <member name="M:Godot.VisualScript.RemoveFunction(System.String)">
  37300. <summary>
  37301. <para>Remove a specific function and its nodes from the script.</para>
  37302. </summary>
  37303. </member>
  37304. <member name="M:Godot.VisualScript.RenameFunction(System.String,System.String)">
  37305. <summary>
  37306. <para>Change the name of a function.</para>
  37307. </summary>
  37308. </member>
  37309. <member name="M:Godot.VisualScript.SetFunctionScroll(System.String,Godot.Vector2)">
  37310. <summary>
  37311. <para>Position the center of the screen for a function.</para>
  37312. </summary>
  37313. </member>
  37314. <member name="M:Godot.VisualScript.GetFunctionScroll(System.String)">
  37315. <summary>
  37316. <para>Returns the position of the center of the screen for a given function.</para>
  37317. </summary>
  37318. </member>
  37319. <member name="M:Godot.VisualScript.AddNode(System.String,System.Int32,Godot.VisualScriptNode,System.Nullable{Godot.Vector2})">
  37320. <summary>
  37321. <para>Add a node to a function of the VisualScript.</para>
  37322. </summary>
  37323. <param name="position">If the parameter is null, then the default value is new Vector2(0, 0)</param>
  37324. </member>
  37325. <member name="M:Godot.VisualScript.RemoveNode(System.String,System.Int32)">
  37326. <summary>
  37327. <para>Remove a specific node.</para>
  37328. </summary>
  37329. </member>
  37330. <member name="M:Godot.VisualScript.GetFunctionNodeId(System.String)">
  37331. <summary>
  37332. <para>Returns the id of a function's entry point node.</para>
  37333. </summary>
  37334. </member>
  37335. <member name="M:Godot.VisualScript.GetNode(System.String,System.Int32)">
  37336. <summary>
  37337. <para>Returns a node given its id and its function.</para>
  37338. </summary>
  37339. </member>
  37340. <member name="M:Godot.VisualScript.HasNode(System.String,System.Int32)">
  37341. <summary>
  37342. <para>Returns whether a node exists with the given id.</para>
  37343. </summary>
  37344. </member>
  37345. <member name="M:Godot.VisualScript.SetNodePosition(System.String,System.Int32,Godot.Vector2)">
  37346. <summary>
  37347. <para>Position a node on the screen.</para>
  37348. </summary>
  37349. </member>
  37350. <member name="M:Godot.VisualScript.GetNodePosition(System.String,System.Int32)">
  37351. <summary>
  37352. <para>Returns a node's position in pixels.</para>
  37353. </summary>
  37354. </member>
  37355. <member name="M:Godot.VisualScript.SequenceConnect(System.String,System.Int32,System.Int32,System.Int32)">
  37356. <summary>
  37357. <para>Connect two sequence ports. The execution will flow from of <c>from_node</c>'s <c>from_output</c> into <c>to_node</c>.</para>
  37358. <para>Unlike <see cref="M:Godot.VisualScript.DataConnect(System.String,System.Int32,System.Int32,System.Int32,System.Int32)"/>, there isn't a <c>to_port</c>, since the target node can have only one sequence port.</para>
  37359. </summary>
  37360. </member>
  37361. <member name="M:Godot.VisualScript.SequenceDisconnect(System.String,System.Int32,System.Int32,System.Int32)">
  37362. <summary>
  37363. <para>Disconnect two sequence ports previously connected with <see cref="M:Godot.VisualScript.SequenceConnect(System.String,System.Int32,System.Int32,System.Int32)"/>.</para>
  37364. </summary>
  37365. </member>
  37366. <member name="M:Godot.VisualScript.HasSequenceConnection(System.String,System.Int32,System.Int32,System.Int32)">
  37367. <summary>
  37368. <para>Returns whether the specified sequence ports are connected.</para>
  37369. </summary>
  37370. </member>
  37371. <member name="M:Godot.VisualScript.DataConnect(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
  37372. <summary>
  37373. <para>Connect two data ports. The value of <c>from_node</c>'s <c>from_port</c> would be fed into <c>to_node</c>'s <c>to_port</c>.</para>
  37374. </summary>
  37375. </member>
  37376. <member name="M:Godot.VisualScript.DataDisconnect(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
  37377. <summary>
  37378. <para>Disconnect two data ports previously connected with <see cref="M:Godot.VisualScript.DataConnect(System.String,System.Int32,System.Int32,System.Int32,System.Int32)"/>.</para>
  37379. </summary>
  37380. </member>
  37381. <member name="M:Godot.VisualScript.HasDataConnection(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
  37382. <summary>
  37383. <para>Returns whether the specified data ports are connected.</para>
  37384. </summary>
  37385. </member>
  37386. <member name="M:Godot.VisualScript.AddVariable(System.String,System.Object,System.Boolean)">
  37387. <summary>
  37388. <para>Add a variable to the VisualScript, optionally giving it a default value or marking it as exported.</para>
  37389. </summary>
  37390. </member>
  37391. <member name="M:Godot.VisualScript.HasVariable(System.String)">
  37392. <summary>
  37393. <para>Returns whether a variable exists with the specified name.</para>
  37394. </summary>
  37395. </member>
  37396. <member name="M:Godot.VisualScript.RemoveVariable(System.String)">
  37397. <summary>
  37398. <para>Remove a variable with the given name.</para>
  37399. </summary>
  37400. </member>
  37401. <member name="M:Godot.VisualScript.SetVariableDefaultValue(System.String,System.Object)">
  37402. <summary>
  37403. <para>Change the default (initial) value of a variable.</para>
  37404. </summary>
  37405. </member>
  37406. <member name="M:Godot.VisualScript.GetVariableDefaultValue(System.String)">
  37407. <summary>
  37408. <para>Returns the default (initial) value of a variable.</para>
  37409. </summary>
  37410. </member>
  37411. <member name="M:Godot.VisualScript.SetVariableInfo(System.String,Godot.Collections.Dictionary)">
  37412. <summary>
  37413. <para>Set a variable's info, using the same format as <see cref="M:Godot.VisualScript.GetVariableInfo(System.String)"/>.</para>
  37414. </summary>
  37415. </member>
  37416. <member name="M:Godot.VisualScript.GetVariableInfo(System.String)">
  37417. <summary>
  37418. <para>Returns the information for a given variable as a dictionary. The information includes its name, type, hint and usage.</para>
  37419. </summary>
  37420. </member>
  37421. <member name="M:Godot.VisualScript.SetVariableExport(System.String,System.Boolean)">
  37422. <summary>
  37423. <para>Change whether a variable is exported.</para>
  37424. </summary>
  37425. </member>
  37426. <member name="M:Godot.VisualScript.GetVariableExport(System.String)">
  37427. <summary>
  37428. <para>Returns whether a variable is exported.</para>
  37429. </summary>
  37430. </member>
  37431. <member name="M:Godot.VisualScript.RenameVariable(System.String,System.String)">
  37432. <summary>
  37433. <para>Change the name of a variable.</para>
  37434. </summary>
  37435. </member>
  37436. <member name="M:Godot.VisualScript.AddCustomSignal(System.String)">
  37437. <summary>
  37438. <para>Add a custom signal with the specified name to the VisualScript.</para>
  37439. </summary>
  37440. </member>
  37441. <member name="M:Godot.VisualScript.HasCustomSignal(System.String)">
  37442. <summary>
  37443. <para>Returns whether a signal exists with the specified name.</para>
  37444. </summary>
  37445. </member>
  37446. <member name="M:Godot.VisualScript.CustomSignalAddArgument(System.String,Godot.Variant.Type,System.String,System.Int32)">
  37447. <summary>
  37448. <para>Add an argument to a custom signal added with <see cref="M:Godot.VisualScript.AddCustomSignal(System.String)"/>.</para>
  37449. </summary>
  37450. </member>
  37451. <member name="M:Godot.VisualScript.CustomSignalSetArgumentType(System.String,System.Int32,Godot.Variant.Type)">
  37452. <summary>
  37453. <para>Change the type of a custom signal's argument.</para>
  37454. </summary>
  37455. </member>
  37456. <member name="M:Godot.VisualScript.CustomSignalGetArgumentType(System.String,System.Int32)">
  37457. <summary>
  37458. <para>Get the type of a custom signal's argument.</para>
  37459. </summary>
  37460. </member>
  37461. <member name="M:Godot.VisualScript.CustomSignalSetArgumentName(System.String,System.Int32,System.String)">
  37462. <summary>
  37463. <para>Rename a custom signal's argument.</para>
  37464. </summary>
  37465. </member>
  37466. <member name="M:Godot.VisualScript.CustomSignalGetArgumentName(System.String,System.Int32)">
  37467. <summary>
  37468. <para>Get the name of a custom signal's argument.</para>
  37469. </summary>
  37470. </member>
  37471. <member name="M:Godot.VisualScript.CustomSignalRemoveArgument(System.String,System.Int32)">
  37472. <summary>
  37473. <para>Remove a specific custom signal's argument.</para>
  37474. </summary>
  37475. </member>
  37476. <member name="M:Godot.VisualScript.CustomSignalGetArgumentCount(System.String)">
  37477. <summary>
  37478. <para>Get the count of a custom signal's arguments.</para>
  37479. </summary>
  37480. </member>
  37481. <member name="M:Godot.VisualScript.CustomSignalSwapArgument(System.String,System.Int32,System.Int32)">
  37482. <summary>
  37483. <para>Swap two of the arguments of a custom signal.</para>
  37484. </summary>
  37485. </member>
  37486. <member name="M:Godot.VisualScript.RemoveCustomSignal(System.String)">
  37487. <summary>
  37488. <para>Remove a custom signal with the given name.</para>
  37489. </summary>
  37490. </member>
  37491. <member name="M:Godot.VisualScript.RenameCustomSignal(System.String,System.String)">
  37492. <summary>
  37493. <para>Change the name of a custom signal.</para>
  37494. </summary>
  37495. </member>
  37496. <member name="M:Godot.VisualScript.SetInstanceBaseType(System.String)">
  37497. <summary>
  37498. <para>Set the base type of the script.</para>
  37499. </summary>
  37500. </member>
  37501. <member name="T:Godot.VisualScriptBasicTypeConstant">
  37502. <summary>
  37503. <para>A Visual Script node representing a constant from base types, such as .</para>
  37504. </summary>
  37505. </member>
  37506. <member name="P:Godot.VisualScriptBasicTypeConstant.BasicType">
  37507. <summary>
  37508. <para>The type to get the constant from.</para>
  37509. </summary>
  37510. </member>
  37511. <member name="P:Godot.VisualScriptBasicTypeConstant.Constant">
  37512. <summary>
  37513. <para>The name of the constant to return.</para>
  37514. </summary>
  37515. </member>
  37516. <member name="T:Godot.VisualScriptBuiltinFunc">
  37517. <summary>
  37518. <para>A built-in function used inside a <see cref="T:Godot.VisualScript"/>. It is usually a math function or an utility function.</para>
  37519. <para>See also <c>@GDScript</c>, for the same functions in the GDScript language.</para>
  37520. </summary>
  37521. </member>
  37522. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathSin">
  37523. <summary>
  37524. <para>Return the sine of the input.</para>
  37525. </summary>
  37526. </member>
  37527. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathCos">
  37528. <summary>
  37529. <para>Return the cosine of the input.</para>
  37530. </summary>
  37531. </member>
  37532. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathTan">
  37533. <summary>
  37534. <para>Return the tangent of the input.</para>
  37535. </summary>
  37536. </member>
  37537. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathSinh">
  37538. <summary>
  37539. <para>Return the hyperbolic sine of the input.</para>
  37540. </summary>
  37541. </member>
  37542. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathCosh">
  37543. <summary>
  37544. <para>Return the hyperbolic cosine of the input.</para>
  37545. </summary>
  37546. </member>
  37547. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathTanh">
  37548. <summary>
  37549. <para>Return the hyperbolic tangent of the input.</para>
  37550. </summary>
  37551. </member>
  37552. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathAsin">
  37553. <summary>
  37554. <para>Return the arc sine of the input.</para>
  37555. </summary>
  37556. </member>
  37557. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathAcos">
  37558. <summary>
  37559. <para>Return the arc cosine of the input.</para>
  37560. </summary>
  37561. </member>
  37562. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathAtan">
  37563. <summary>
  37564. <para>Return the arc tangent of the input.</para>
  37565. </summary>
  37566. </member>
  37567. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathAtan2">
  37568. <summary>
  37569. <para>Return the arc tangent of the input, using the signs of both parameters to determine the exact angle.</para>
  37570. </summary>
  37571. </member>
  37572. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathSqrt">
  37573. <summary>
  37574. <para>Return the square root of the input.</para>
  37575. </summary>
  37576. </member>
  37577. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathFmod">
  37578. <summary>
  37579. <para>Return the remainder of one input divided by the other, using floating-point numbers.</para>
  37580. </summary>
  37581. </member>
  37582. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathFposmod">
  37583. <summary>
  37584. <para>Return the positive remainder of one input divided by the other, using floating-point numbers.</para>
  37585. </summary>
  37586. </member>
  37587. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathFloor">
  37588. <summary>
  37589. <para>Return the input rounded down.</para>
  37590. </summary>
  37591. </member>
  37592. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathCeil">
  37593. <summary>
  37594. <para>Return the input rounded up.</para>
  37595. </summary>
  37596. </member>
  37597. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathRound">
  37598. <summary>
  37599. <para>Return the input rounded to the nearest integer.</para>
  37600. </summary>
  37601. </member>
  37602. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathAbs">
  37603. <summary>
  37604. <para>Return the absolute value of the input.</para>
  37605. </summary>
  37606. </member>
  37607. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathSign">
  37608. <summary>
  37609. <para>Return the sign of the input, turning it into 1, -1, or 0. Useful to determine if the input is positive or negative.</para>
  37610. </summary>
  37611. </member>
  37612. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathPow">
  37613. <summary>
  37614. <para>Return the input raised to a given power.</para>
  37615. </summary>
  37616. </member>
  37617. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathLog">
  37618. <summary>
  37619. <para>Return the natural logarithm of the input. Note that this is not the typical base-10 logarithm function calculators use.</para>
  37620. </summary>
  37621. </member>
  37622. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathExp">
  37623. <summary>
  37624. <para>Return the mathematical constant e raised to the specified power of the input. e has an approximate value of 2.71828.</para>
  37625. </summary>
  37626. </member>
  37627. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathIsnan">
  37628. <summary>
  37629. <para>Return whether the input is NaN (Not a Number) or not. NaN is usually produced by dividing 0 by 0, though other ways exist.</para>
  37630. </summary>
  37631. </member>
  37632. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathIsinf">
  37633. <summary>
  37634. <para>Return whether the input is an infinite floating-point number or not. Infinity is usually produced by dividing a number by 0, though other ways exist.</para>
  37635. </summary>
  37636. </member>
  37637. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathEase">
  37638. <summary>
  37639. <para>Easing function, based on exponent. 0 is constant, 1 is linear, 0 to 1 is ease-in, 1+ is ease out. Negative values are in-out/out in.</para>
  37640. </summary>
  37641. </member>
  37642. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathDecimals">
  37643. <summary>
  37644. <para>Return the number of digit places after the decimal that the first non-zero digit occurs.</para>
  37645. </summary>
  37646. </member>
  37647. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathStepify">
  37648. <summary>
  37649. <para>Return the input snapped to a given step.</para>
  37650. </summary>
  37651. </member>
  37652. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathLerp">
  37653. <summary>
  37654. <para>Return a number linearly interpolated between the first two inputs, based on the third input. Uses the formula <c>a + (a - b) * t</c>.</para>
  37655. </summary>
  37656. </member>
  37657. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathMoveToward">
  37658. <summary>
  37659. <para>Moves the number toward a value, based on the third input.</para>
  37660. </summary>
  37661. </member>
  37662. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathDectime">
  37663. <summary>
  37664. <para>Return the result of <c>value</c> decreased by <c>step</c> * <c>amount</c>.</para>
  37665. </summary>
  37666. </member>
  37667. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathRandomize">
  37668. <summary>
  37669. <para>Randomize the seed (or the internal state) of the random number generator. Current implementation reseeds using a number based on time.</para>
  37670. </summary>
  37671. </member>
  37672. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathRand">
  37673. <summary>
  37674. <para>Return a random 32 bits integer value. To obtain a random value between 0 to N (where N is smaller than 2^32 - 1), you can use it with the remainder function.</para>
  37675. </summary>
  37676. </member>
  37677. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathRandf">
  37678. <summary>
  37679. <para>Return a random floating-point value between 0 and 1. To obtain a random value between 0 to N, you can use it with multiplication.</para>
  37680. </summary>
  37681. </member>
  37682. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathRandom">
  37683. <summary>
  37684. <para>Return a random floating-point value between the two inputs.</para>
  37685. </summary>
  37686. </member>
  37687. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathSeed">
  37688. <summary>
  37689. <para>Set the seed for the random number generator.</para>
  37690. </summary>
  37691. </member>
  37692. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathRandseed">
  37693. <summary>
  37694. <para>Return a random value from the given seed, along with the new seed.</para>
  37695. </summary>
  37696. </member>
  37697. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathDeg2rad">
  37698. <summary>
  37699. <para>Convert the input from degrees to radians.</para>
  37700. </summary>
  37701. </member>
  37702. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathRad2deg">
  37703. <summary>
  37704. <para>Convert the input from radians to degrees.</para>
  37705. </summary>
  37706. </member>
  37707. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathLinear2db">
  37708. <summary>
  37709. <para>Convert the input from linear volume to decibel volume.</para>
  37710. </summary>
  37711. </member>
  37712. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathDb2linear">
  37713. <summary>
  37714. <para>Convert the input from decibel volume to linear volume.</para>
  37715. </summary>
  37716. </member>
  37717. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathPolar2cartesian">
  37718. <summary>
  37719. <para>Converts a 2D point expressed in the polar coordinate system (a distance from the origin <c>r</c> and an angle <c>th</c>) to the cartesian coordinate system (X and Y axis).</para>
  37720. </summary>
  37721. </member>
  37722. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathCartesian2polar">
  37723. <summary>
  37724. <para>Converts a 2D point expressed in the cartesian coordinate system (X and Y axis) to the polar coordinate system (a distance from the origin and an angle).</para>
  37725. </summary>
  37726. </member>
  37727. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.LogicMax">
  37728. <summary>
  37729. <para>Return the greater of the two numbers, also known as their maximum.</para>
  37730. </summary>
  37731. </member>
  37732. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.LogicMin">
  37733. <summary>
  37734. <para>Return the lesser of the two numbers, also known as their minimum.</para>
  37735. </summary>
  37736. </member>
  37737. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.LogicClamp">
  37738. <summary>
  37739. <para>Return the input clamped inside the given range, ensuring the result is never outside it. Equivalent to <c>min(max(input, range_low), range_high)</c>.</para>
  37740. </summary>
  37741. </member>
  37742. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.LogicNearestPo2">
  37743. <summary>
  37744. <para>Return the nearest power of 2 to the input.</para>
  37745. </summary>
  37746. </member>
  37747. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.ObjWeakref">
  37748. <summary>
  37749. <para>Create a <see cref="T:Godot.WeakRef"/> from the input.</para>
  37750. </summary>
  37751. </member>
  37752. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.FuncFuncref">
  37753. <summary>
  37754. <para>Create a <see cref="T:Godot.FuncRef"/> from the input.</para>
  37755. </summary>
  37756. </member>
  37757. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TypeConvert">
  37758. <summary>
  37759. <para>Convert between types.</para>
  37760. </summary>
  37761. </member>
  37762. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TypeOf">
  37763. <summary>
  37764. <para>Return the type of the input as an integer. Check <see cref="T:Godot.Variant.Type"/> for the integers that might be returned.</para>
  37765. </summary>
  37766. </member>
  37767. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TypeExists">
  37768. <summary>
  37769. <para>Checks if a type is registered in the <see cref="T:Godot.ClassDB"/>.</para>
  37770. </summary>
  37771. </member>
  37772. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TextChar">
  37773. <summary>
  37774. <para>Return a character with the given ascii value.</para>
  37775. </summary>
  37776. </member>
  37777. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TextStr">
  37778. <summary>
  37779. <para>Convert the input to a string.</para>
  37780. </summary>
  37781. </member>
  37782. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TextPrint">
  37783. <summary>
  37784. <para>Print the given string to the output window.</para>
  37785. </summary>
  37786. </member>
  37787. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TextPrinterr">
  37788. <summary>
  37789. <para>Print the given string to the standard error output.</para>
  37790. </summary>
  37791. </member>
  37792. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.TextPrintraw">
  37793. <summary>
  37794. <para>Print the given string to the standard output, without adding a newline.</para>
  37795. </summary>
  37796. </member>
  37797. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.VarToStr">
  37798. <summary>
  37799. <para>Serialize a <c>Variant</c> to a string.</para>
  37800. </summary>
  37801. </member>
  37802. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.StrToVar">
  37803. <summary>
  37804. <para>Deserialize a <c>Variant</c> from a string serialized using .</para>
  37805. </summary>
  37806. </member>
  37807. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.VarToBytes">
  37808. <summary>
  37809. <para>Serialize a <c>Variant</c> to a <see cref="T:System.Byte"/>.</para>
  37810. </summary>
  37811. </member>
  37812. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.BytesToVar">
  37813. <summary>
  37814. <para>Deserialize a <c>Variant</c> from a <see cref="T:System.Byte"/> serialized using .</para>
  37815. </summary>
  37816. </member>
  37817. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.Colorn">
  37818. <summary>
  37819. <para>Return the <see cref="T:Godot.Color"/> with the given name and alpha ranging from 0 to 1.</para>
  37820. <para>Note: Names are defined in <c>color_names.inc</c>.</para>
  37821. </summary>
  37822. </member>
  37823. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.MathSmoothstep">
  37824. <summary>
  37825. <para>Return a number smoothly interpolated between the first two inputs, based on the third input. Similar to , but interpolates faster at the beginning and slower at the end. Using Hermite interpolation formula:</para>
  37826. <para><code>
  37827. var t = clamp((weight - from) / (to - from), 0.0, 1.0)
  37828. return t * t * (3.0 - 2.0 * t)
  37829. </code></para>
  37830. </summary>
  37831. </member>
  37832. <member name="F:Godot.VisualScriptBuiltinFunc.BuiltinFunc.FuncMax">
  37833. <summary>
  37834. <para>Represents the size of the <see cref="T:Godot.VisualScriptBuiltinFunc.BuiltinFunc"/> enum.</para>
  37835. </summary>
  37836. </member>
  37837. <member name="P:Godot.VisualScriptBuiltinFunc.Function">
  37838. <summary>
  37839. <para>The function to be executed.</para>
  37840. </summary>
  37841. </member>
  37842. <member name="T:Godot.VisualScriptClassConstant">
  37843. <summary>
  37844. <para>This node returns a constant from a given class, such as . See the given class' documentation for available constants.</para>
  37845. <para>Input Ports:</para>
  37846. <para>none</para>
  37847. <para>Output Ports:</para>
  37848. <para>- Data (variant): <c>value</c></para>
  37849. </summary>
  37850. </member>
  37851. <member name="P:Godot.VisualScriptClassConstant.BaseType">
  37852. <summary>
  37853. <para>The constant's parent class.</para>
  37854. </summary>
  37855. </member>
  37856. <member name="P:Godot.VisualScriptClassConstant.Constant">
  37857. <summary>
  37858. <para>The constant to return. See the given class for its available constants.</para>
  37859. </summary>
  37860. </member>
  37861. <member name="T:Godot.VisualScriptComment">
  37862. <summary>
  37863. <para>A Visual Script node used to display annotations in the script, so that code may be documented.</para>
  37864. <para>Comment nodes can be resized so they encompass a group of nodes.</para>
  37865. </summary>
  37866. </member>
  37867. <member name="P:Godot.VisualScriptComment.Title">
  37868. <summary>
  37869. <para>The comment node's title.</para>
  37870. </summary>
  37871. </member>
  37872. <member name="P:Godot.VisualScriptComment.Description">
  37873. <summary>
  37874. <para>The text inside the comment node.</para>
  37875. </summary>
  37876. </member>
  37877. <member name="P:Godot.VisualScriptComment.Size">
  37878. <summary>
  37879. <para>The comment node's size (in pixels).</para>
  37880. </summary>
  37881. </member>
  37882. <member name="T:Godot.VisualScriptComposeArray">
  37883. <summary>
  37884. <para>A Visual Script Node used to compose array from the list of elements provided with custom in-graph UI hard coded in the VisualScript Editor.</para>
  37885. </summary>
  37886. </member>
  37887. <member name="T:Godot.VisualScriptCondition">
  37888. <summary>
  37889. <para>A Visual Script node that checks a <see cref="T:System.Boolean"/> input port. If <c>true</c>, it will exit via the "true" sequence port. If <c>false</c>, it will exit via the "false" sequence port. After exiting either, it exits via the "done" port. Sequence ports may be left disconnected.</para>
  37890. <para>Input Ports:</para>
  37891. <para>- Sequence: <c>if (cond) is</c></para>
  37892. <para>- Data (boolean): <c>cond</c></para>
  37893. <para>Output Ports:</para>
  37894. <para>- Sequence: <c>true</c></para>
  37895. <para>- Sequence: <c>false</c></para>
  37896. <para>- Sequence: <c>done</c></para>
  37897. </summary>
  37898. </member>
  37899. <member name="T:Godot.VisualScriptConstant">
  37900. <summary>
  37901. <para>This node returns a constant's value.</para>
  37902. <para>Input Ports:</para>
  37903. <para>none</para>
  37904. <para>Output Ports:</para>
  37905. <para>- Data (variant): <c>get</c></para>
  37906. </summary>
  37907. </member>
  37908. <member name="P:Godot.VisualScriptConstant.Type">
  37909. <summary>
  37910. <para>The constant's type.</para>
  37911. </summary>
  37912. </member>
  37913. <member name="P:Godot.VisualScriptConstant.Value">
  37914. <summary>
  37915. <para>The constant's value.</para>
  37916. </summary>
  37917. </member>
  37918. <member name="T:Godot.VisualScriptConstructor">
  37919. <summary>
  37920. <para>A Visual Script node which calls a base type constructor. It can be used for type conversion as well.</para>
  37921. </summary>
  37922. </member>
  37923. <member name="T:Godot.VisualScriptCustomNode">
  37924. <summary>
  37925. <para>A custom Visual Script node which can be scripted in powerful ways.</para>
  37926. </summary>
  37927. </member>
  37928. <member name="F:Godot.VisualScriptCustomNode.StepPushStackBit">
  37929. <summary>
  37930. <para>Hint used by <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> to tell that control should return to it when there is no other node left to execute.</para>
  37931. <para>This is used by <see cref="T:Godot.VisualScriptCondition"/> to redirect the sequence to the "Done" port after the <c>true</c>/<c>false</c> branch has finished execution.</para>
  37932. </summary>
  37933. </member>
  37934. <member name="F:Godot.VisualScriptCustomNode.StepGoBackBit">
  37935. <summary>
  37936. <para>Hint used by <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> to tell that control should return back, either hitting a previous or exiting the function.</para>
  37937. </summary>
  37938. </member>
  37939. <member name="F:Godot.VisualScriptCustomNode.StepExitFunctionBit">
  37940. <summary>
  37941. <para>Hint used by <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> to tell that control should stop and exit the function.</para>
  37942. </summary>
  37943. </member>
  37944. <member name="F:Godot.VisualScriptCustomNode.StepYieldBit">
  37945. <summary>
  37946. <para>Hint used by <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> to tell that the function should be yielded.</para>
  37947. <para>Using this requires you to have at least one working memory slot, which is used for the <see cref="T:Godot.VisualScriptFunctionState"/>.</para>
  37948. </summary>
  37949. </member>
  37950. <member name="F:Godot.VisualScriptCustomNode.StartMode.BeginSequence">
  37951. <summary>
  37952. <para>The start mode used the first time when <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> is called.</para>
  37953. </summary>
  37954. </member>
  37955. <member name="F:Godot.VisualScriptCustomNode.StartMode.ContinueSequence">
  37956. <summary>
  37957. <para>The start mode used when <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> is called after coming back from a .</para>
  37958. </summary>
  37959. </member>
  37960. <member name="F:Godot.VisualScriptCustomNode.StartMode.ResumeYield">
  37961. <summary>
  37962. <para>The start mode used when <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> is called after resuming from .</para>
  37963. </summary>
  37964. </member>
  37965. <member name="M:Godot.VisualScriptCustomNode._GetCaption">
  37966. <summary>
  37967. <para>Return the node's title.</para>
  37968. </summary>
  37969. </member>
  37970. <member name="M:Godot.VisualScriptCustomNode._GetCategory">
  37971. <summary>
  37972. <para>Return the node's category.</para>
  37973. </summary>
  37974. </member>
  37975. <member name="M:Godot.VisualScriptCustomNode._GetInputValuePortCount">
  37976. <summary>
  37977. <para>Return the count of input value ports.</para>
  37978. </summary>
  37979. </member>
  37980. <member name="M:Godot.VisualScriptCustomNode._GetInputValuePortName(System.Int32)">
  37981. <summary>
  37982. <para>Return the specified input port's name.</para>
  37983. </summary>
  37984. </member>
  37985. <member name="M:Godot.VisualScriptCustomNode._GetInputValuePortType(System.Int32)">
  37986. <summary>
  37987. <para>Return the specified input port's type. See the <see cref="T:Godot.Variant.Type"/> values.</para>
  37988. </summary>
  37989. </member>
  37990. <member name="M:Godot.VisualScriptCustomNode._GetOutputSequencePortCount">
  37991. <summary>
  37992. <para>Return the amount of output sequence ports.</para>
  37993. </summary>
  37994. </member>
  37995. <member name="M:Godot.VisualScriptCustomNode._GetOutputSequencePortText(System.Int32)">
  37996. <summary>
  37997. <para>Return the specified sequence output's name.</para>
  37998. </summary>
  37999. </member>
  38000. <member name="M:Godot.VisualScriptCustomNode._GetOutputValuePortCount">
  38001. <summary>
  38002. <para>Return the amount of output value ports.</para>
  38003. </summary>
  38004. </member>
  38005. <member name="M:Godot.VisualScriptCustomNode._GetOutputValuePortName(System.Int32)">
  38006. <summary>
  38007. <para>Return the specified output's name.</para>
  38008. </summary>
  38009. </member>
  38010. <member name="M:Godot.VisualScriptCustomNode._GetOutputValuePortType(System.Int32)">
  38011. <summary>
  38012. <para>Return the specified output's type. See the <see cref="T:Godot.Variant.Type"/> values.</para>
  38013. </summary>
  38014. </member>
  38015. <member name="M:Godot.VisualScriptCustomNode._GetText">
  38016. <summary>
  38017. <para>Return the custom node's text, which is shown right next to the input sequence port (if there is none, on the place that is usually taken by it).</para>
  38018. </summary>
  38019. </member>
  38020. <member name="M:Godot.VisualScriptCustomNode._GetWorkingMemorySize">
  38021. <summary>
  38022. <para>Return the size of the custom node's working memory. See <see cref="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)"/> for more details.</para>
  38023. </summary>
  38024. </member>
  38025. <member name="M:Godot.VisualScriptCustomNode._HasInputSequencePort">
  38026. <summary>
  38027. <para>Return whether the custom node has an input sequence port.</para>
  38028. </summary>
  38029. </member>
  38030. <member name="M:Godot.VisualScriptCustomNode._Step(Godot.Collections.Array,Godot.Collections.Array,System.Int32,Godot.Collections.Array)">
  38031. <summary>
  38032. <para>Execute the custom node's logic, returning the index of the output sequence port to use or a <see cref="T:System.String"/> when there is an error.</para>
  38033. <para>The <c>inputs</c> array contains the values of the input ports.</para>
  38034. <para><c>outputs</c> is an array whose indices should be set to the respective outputs.</para>
  38035. <para>The <c>start_mode</c> is usually , unless you have used the <c>STEP_*</c> constants.</para>
  38036. <para><c>working_mem</c> is an array which can be used to persist information between runs of the custom node.</para>
  38037. <para>When returning, you can mask the returned value with one of the <c>STEP_*</c> constants.</para>
  38038. </summary>
  38039. </member>
  38040. <member name="T:Godot.VisualScriptDeconstruct">
  38041. <summary>
  38042. <para>A Visual Script node which deconstructs a base type instance into its parts.</para>
  38043. </summary>
  38044. </member>
  38045. <member name="P:Godot.VisualScriptDeconstruct.Type">
  38046. <summary>
  38047. <para>The type to deconstruct.</para>
  38048. </summary>
  38049. </member>
  38050. <member name="T:Godot.VisualScriptEmitSignal">
  38051. <summary>
  38052. <para>Emits a specified signal when it is executed.</para>
  38053. <para>Input Ports:</para>
  38054. <para>- Sequence: <c>emit</c></para>
  38055. <para>Output Ports:</para>
  38056. <para>- Sequence</para>
  38057. </summary>
  38058. </member>
  38059. <member name="P:Godot.VisualScriptEmitSignal.Signal">
  38060. <summary>
  38061. <para>The signal to emit.</para>
  38062. </summary>
  38063. </member>
  38064. <member name="T:Godot.VisualScriptEngineSingleton">
  38065. <summary>
  38066. <para>A Visual Script node returning a singleton from <c>@GlobalScope</c>.</para>
  38067. </summary>
  38068. </member>
  38069. <member name="P:Godot.VisualScriptEngineSingleton.Constant">
  38070. <summary>
  38071. <para>The singleton's name.</para>
  38072. </summary>
  38073. </member>
  38074. <member name="T:Godot.VisualScriptIterator">
  38075. <summary>
  38076. <para>This node steps through each item in a given input. Input can be any sequence data type, such as an <see cref="T:Godot.Collections.Array"/> or <see cref="T:System.String"/>. When each item has been processed, execution passed out the <c>exit</c> Sequence port.</para>
  38077. <para>Input Ports:</para>
  38078. <para>- Sequence: <c>for (elem) in (input)</c></para>
  38079. <para>- Data (variant): <c>input</c></para>
  38080. <para>Output Ports:</para>
  38081. <para>- Sequence: <c>each</c></para>
  38082. <para>- Sequence: <c>exit</c></para>
  38083. <para>- Data (variant): <c>elem</c></para>
  38084. </summary>
  38085. </member>
  38086. <member name="T:Godot.VisualScriptLists">
  38087. <summary>
  38088. <para>A Visual Script virtual class that defines the shape and the default behaviour of the nodes that have to be in-graph editable nodes.</para>
  38089. </summary>
  38090. </member>
  38091. <member name="T:Godot.VisualScriptLocalVar">
  38092. <summary>
  38093. <para>Returns a local variable's value. "Var Name" must be supplied, with an optional type.</para>
  38094. <para>Input Ports:</para>
  38095. <para>none</para>
  38096. <para>Output Ports:</para>
  38097. <para>- Data (variant): <c>get</c></para>
  38098. </summary>
  38099. </member>
  38100. <member name="P:Godot.VisualScriptLocalVar.VarName">
  38101. <summary>
  38102. <para>The local variable's name.</para>
  38103. </summary>
  38104. </member>
  38105. <member name="P:Godot.VisualScriptLocalVar.Type">
  38106. <summary>
  38107. <para>The local variable's type.</para>
  38108. </summary>
  38109. </member>
  38110. <member name="T:Godot.VisualScriptLocalVarSet">
  38111. <summary>
  38112. <para>Changes a local variable's value to the given input. The new value is also provided on an output Data port.</para>
  38113. <para>Input Ports:</para>
  38114. <para>- Sequence</para>
  38115. <para>- Data (variant): <c>set</c></para>
  38116. <para>Output Ports:</para>
  38117. <para>- Sequence</para>
  38118. <para>- Data (variant): <c>get</c></para>
  38119. </summary>
  38120. </member>
  38121. <member name="P:Godot.VisualScriptLocalVarSet.VarName">
  38122. <summary>
  38123. <para>The local variable's name.</para>
  38124. </summary>
  38125. </member>
  38126. <member name="P:Godot.VisualScriptLocalVarSet.Type">
  38127. <summary>
  38128. <para>The local variable's type.</para>
  38129. </summary>
  38130. </member>
  38131. <member name="T:Godot.VisualScriptMathConstant">
  38132. <summary>
  38133. <para>Provides common math constants, such as Pi, on an output Data port.</para>
  38134. <para>Input Ports:</para>
  38135. <para>none</para>
  38136. <para>Output Ports:</para>
  38137. <para>- Data (variant): <c>get</c></para>
  38138. </summary>
  38139. </member>
  38140. <member name="F:Godot.VisualScriptMathConstant.MathConstant.One">
  38141. <summary>
  38142. <para>Unity: <c>1</c>.</para>
  38143. </summary>
  38144. </member>
  38145. <member name="F:Godot.VisualScriptMathConstant.MathConstant.Pi">
  38146. <summary>
  38147. <para>Pi: <c>3.141593</c>.</para>
  38148. </summary>
  38149. </member>
  38150. <member name="F:Godot.VisualScriptMathConstant.MathConstant.HalfPi">
  38151. <summary>
  38152. <para>Pi divided by two: <c>1.570796</c>.</para>
  38153. </summary>
  38154. </member>
  38155. <member name="F:Godot.VisualScriptMathConstant.MathConstant.Tau">
  38156. <summary>
  38157. <para>Tau: <c>6.283185</c>.</para>
  38158. </summary>
  38159. </member>
  38160. <member name="F:Godot.VisualScriptMathConstant.MathConstant.E">
  38161. <summary>
  38162. <para>Mathematical constant <c>e</c>, the natural log base: <c>2.718282</c>.</para>
  38163. </summary>
  38164. </member>
  38165. <member name="F:Godot.VisualScriptMathConstant.MathConstant.Sqrt2">
  38166. <summary>
  38167. <para>Square root of two: <c>1.414214</c>.</para>
  38168. </summary>
  38169. </member>
  38170. <member name="F:Godot.VisualScriptMathConstant.MathConstant.Inf">
  38171. <summary>
  38172. <para>Infinity: <c>inf</c>.</para>
  38173. </summary>
  38174. </member>
  38175. <member name="F:Godot.VisualScriptMathConstant.MathConstant.Nan">
  38176. <summary>
  38177. <para>Not a number: <c>nan</c>.</para>
  38178. </summary>
  38179. </member>
  38180. <member name="F:Godot.VisualScriptMathConstant.MathConstant.Max">
  38181. <summary>
  38182. <para>Represents the size of the <see cref="T:Godot.VisualScriptMathConstant.MathConstant"/> enum.</para>
  38183. </summary>
  38184. </member>
  38185. <member name="P:Godot.VisualScriptMathConstant.Constant">
  38186. <summary>
  38187. <para>The math constant.</para>
  38188. </summary>
  38189. </member>
  38190. <member name="T:Godot.VisualScriptNode">
  38191. <summary>
  38192. <para>A node which is part of a <see cref="T:Godot.VisualScript"/>. Not to be confused with <see cref="T:Godot.Node"/>, which is a part of a <see cref="T:Godot.SceneTree"/>.</para>
  38193. </summary>
  38194. </member>
  38195. <member name="M:Godot.VisualScriptNode.GetVisualScript">
  38196. <summary>
  38197. <para>Returns the <see cref="T:Godot.VisualScript"/> instance the node is bound to.</para>
  38198. </summary>
  38199. </member>
  38200. <member name="M:Godot.VisualScriptNode.SetDefaultInputValue(System.Int32,System.Object)">
  38201. <summary>
  38202. <para>Change the default value of a given port.</para>
  38203. </summary>
  38204. </member>
  38205. <member name="M:Godot.VisualScriptNode.GetDefaultInputValue(System.Int32)">
  38206. <summary>
  38207. <para>Returns the default value of a given port. The default value is used when nothing is connected to the port.</para>
  38208. </summary>
  38209. </member>
  38210. <member name="M:Godot.VisualScriptNode.PortsChangedNotify">
  38211. <summary>
  38212. <para>Notify that the node's ports have changed. Usually used in conjunction with <see cref="T:Godot.VisualScriptCustomNode"/> .</para>
  38213. </summary>
  38214. </member>
  38215. <member name="T:Godot.VisualScriptOperator">
  38216. <summary>
  38217. <para>Input Ports:</para>
  38218. <para>- Data (variant): <c>A</c></para>
  38219. <para>- Data (variant): <c>B</c></para>
  38220. <para>Output Ports:</para>
  38221. <para>- Data (variant): <c>result</c></para>
  38222. </summary>
  38223. </member>
  38224. <member name="T:Godot.VisualScriptPreload">
  38225. <summary>
  38226. <para>Creates a new <see cref="T:Godot.Resource"/> or loads one from the filesystem.</para>
  38227. <para>Input Ports:</para>
  38228. <para>none</para>
  38229. <para>Output Ports:</para>
  38230. <para>- Data (object): <c>res</c></para>
  38231. </summary>
  38232. </member>
  38233. <member name="P:Godot.VisualScriptPreload.Resource">
  38234. <summary>
  38235. <para>The <see cref="T:Godot.Resource"/> to load.</para>
  38236. </summary>
  38237. </member>
  38238. <member name="T:Godot.VisualScriptReturn">
  38239. <summary>
  38240. <para>Ends the execution of a function and returns control to the calling function. Optionally, it can return a <c>Variant</c> value.</para>
  38241. <para>Input Ports:</para>
  38242. <para>- Sequence</para>
  38243. <para>- Data (variant): <c>result</c> (optional)</para>
  38244. <para>Output Ports:</para>
  38245. <para>none</para>
  38246. </summary>
  38247. </member>
  38248. <member name="P:Godot.VisualScriptReturn.ReturnEnabled">
  38249. <summary>
  38250. <para>If <c>true</c>, the <c>return</c> input port is available.</para>
  38251. </summary>
  38252. </member>
  38253. <member name="P:Godot.VisualScriptReturn.ReturnType">
  38254. <summary>
  38255. <para>The return value's data type.</para>
  38256. </summary>
  38257. </member>
  38258. <member name="T:Godot.VisualScriptSceneNode">
  38259. <summary>
  38260. <para>A direct reference to a node.</para>
  38261. <para>Input Ports:</para>
  38262. <para>none</para>
  38263. <para>Output Ports:</para>
  38264. <para>- Data: <c>node</c> (obj)</para>
  38265. </summary>
  38266. </member>
  38267. <member name="P:Godot.VisualScriptSceneNode.NodePath">
  38268. <summary>
  38269. <para>The node's path in the scene tree.</para>
  38270. </summary>
  38271. </member>
  38272. <member name="T:Godot.VisualScriptSelect">
  38273. <summary>
  38274. <para>Chooses between two input values based on a Boolean condition.</para>
  38275. <para>Input Ports:</para>
  38276. <para>- Data (boolean): <c>cond</c></para>
  38277. <para>- Data (variant): <c>a</c></para>
  38278. <para>- Data (variant): <c>b</c></para>
  38279. <para>Output Ports:</para>
  38280. <para>- Data (variant): <c>out</c></para>
  38281. </summary>
  38282. </member>
  38283. <member name="P:Godot.VisualScriptSelect.Type">
  38284. <summary>
  38285. <para>The input variables' type.</para>
  38286. </summary>
  38287. </member>
  38288. <member name="T:Godot.VisualScriptSelf">
  38289. <summary>
  38290. <para>Provides a reference to the node running the visual script.</para>
  38291. <para>Input Ports:</para>
  38292. <para>none</para>
  38293. <para>Output Ports:</para>
  38294. <para>- Data (object): <c>instance</c></para>
  38295. </summary>
  38296. </member>
  38297. <member name="T:Godot.VisualScriptSequence">
  38298. <summary>
  38299. <para>Steps through a series of one or more output Sequence ports. The <c>current</c> data port outputs the currently executing item.</para>
  38300. <para>Input Ports:</para>
  38301. <para>- Sequence: <c>in order</c></para>
  38302. <para>Output Ports:</para>
  38303. <para>- Sequence: <c>1</c></para>
  38304. <para>- Sequence: <c>2 - n</c> (optional)</para>
  38305. <para>- Data (int): <c>current</c></para>
  38306. </summary>
  38307. </member>
  38308. <member name="P:Godot.VisualScriptSequence.Steps">
  38309. <summary>
  38310. <para>The number of steps in the sequence.</para>
  38311. </summary>
  38312. </member>
  38313. <member name="T:Godot.VisualScriptSwitch">
  38314. <summary>
  38315. <para>Branches the flow based on an input's value. Use Case Count in the Inspector to set the number of branches and each comparison's optional type.</para>
  38316. <para>Input Ports:</para>
  38317. <para>- Sequence: <c>'input' is</c></para>
  38318. <para>- Data (variant): <c>=</c></para>
  38319. <para>- Data (variant): <c>=</c> (optional)</para>
  38320. <para>- Data (variant): <c>input</c></para>
  38321. <para>Output Ports:</para>
  38322. <para>- Sequence</para>
  38323. <para>- Sequence (optional)</para>
  38324. <para>- Sequence: <c>done</c></para>
  38325. </summary>
  38326. </member>
  38327. <member name="T:Godot.VisualScriptVariableGet">
  38328. <summary>
  38329. <para>Returns a variable's value. "Var Name" must be supplied, with an optional type.</para>
  38330. <para>Input Ports:</para>
  38331. <para>none</para>
  38332. <para>Output Ports:</para>
  38333. <para>- Data (variant): <c>value</c></para>
  38334. </summary>
  38335. </member>
  38336. <member name="P:Godot.VisualScriptVariableGet.VarName">
  38337. <summary>
  38338. <para>The variable's name.</para>
  38339. </summary>
  38340. </member>
  38341. <member name="T:Godot.VisualScriptVariableSet">
  38342. <summary>
  38343. <para>Changes a variable's value to the given input.</para>
  38344. <para>Input Ports:</para>
  38345. <para>- Sequence</para>
  38346. <para>- Data (variant): <c>set</c></para>
  38347. <para>Output Ports:</para>
  38348. <para>- Sequence</para>
  38349. </summary>
  38350. </member>
  38351. <member name="P:Godot.VisualScriptVariableSet.VarName">
  38352. <summary>
  38353. <para>The variable's name.</para>
  38354. </summary>
  38355. </member>
  38356. <member name="T:Godot.VisualScriptWhile">
  38357. <summary>
  38358. <para>Loops while a condition is <c>true</c>. Execution continues out the <c>exit</c> Sequence port when the loop terminates.</para>
  38359. <para>Input Ports:</para>
  38360. <para>- Sequence: <c>while(cond)</c></para>
  38361. <para>- Data (bool): <c>cond</c></para>
  38362. <para>Output Ports:</para>
  38363. <para>- Sequence: <c>repeat</c></para>
  38364. <para>- Sequence: <c>exit</c></para>
  38365. </summary>
  38366. </member>
  38367. <member name="T:Godot.VisualServer">
  38368. <summary>
  38369. <para>Server for anything visible. The visual server is the API backend for everything visible. The whole scene system mounts on it to display.</para>
  38370. <para>The visual server is completely opaque, the internals are entirely implementation specific and cannot be accessed.</para>
  38371. <para>The visual server can be used to bypass the scene system entirely.</para>
  38372. <para>Resources are created using the <c>*_create</c> functions.</para>
  38373. <para>All objects are drawn to a viewport. You can use the <see cref="T:Godot.Viewport"/> attached to the <see cref="T:Godot.SceneTree"/> or you can create one yourself with <see cref="M:Godot.VisualServer.ViewportCreate"/>. When using a custom scenario or canvas, the scenario or canvas needs to be attached to the viewport using <see cref="M:Godot.VisualServer.ViewportSetScenario(Godot.RID,Godot.RID)"/> or <see cref="M:Godot.VisualServer.ViewportAttachCanvas(Godot.RID,Godot.RID)"/>.</para>
  38374. <para>In 3D, all visual objects must be associated with a scenario. The scenario is a visual representation of the world. If accessing the visual server from a running game, the scenario can be accessed from the scene tree from any <see cref="T:Godot.Spatial"/> node with <see cref="M:Godot.Spatial.GetWorld"/>. Otherwise, a scenario can be created with <see cref="M:Godot.VisualServer.ScenarioCreate"/>.</para>
  38375. <para>Similarly in 2D, a canvas is needed to draw all canvas items.</para>
  38376. <para>In 3D, all visible objects are comprised of a resource and an instance. A resource can be a mesh, a particle system, a light, or any other 3D object. In order to be visible resources must be attached to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/>. The instance must also be attached to the scenario using <see cref="M:Godot.VisualServer.InstanceSetScenario(Godot.RID,Godot.RID)"/> in order to be visible.</para>
  38377. <para>In 2D, all visible objects are some form of canvas item. In order to be visible, a canvas item needs to be the child of a canvas attached to a viewport, or it needs to be the child of another canvas item that is eventually attached to the canvas.</para>
  38378. </summary>
  38379. </member>
  38380. <member name="F:Godot.VisualServer.NoIndexArray">
  38381. <summary>
  38382. <para>Marks an error that shows that the index array is empty.</para>
  38383. </summary>
  38384. </member>
  38385. <member name="F:Godot.VisualServer.ArrayWeightsSize">
  38386. <summary>
  38387. <para>Number of weights/bones per vertex.</para>
  38388. </summary>
  38389. </member>
  38390. <member name="F:Godot.VisualServer.CanvasItemZMin">
  38391. <summary>
  38392. <para>The minimum Z-layer for canvas items.</para>
  38393. </summary>
  38394. </member>
  38395. <member name="F:Godot.VisualServer.CanvasItemZMax">
  38396. <summary>
  38397. <para>The maximum Z-layer for canvas items.</para>
  38398. </summary>
  38399. </member>
  38400. <member name="F:Godot.VisualServer.MaxGlowLevels">
  38401. <summary>
  38402. <para>Max number of glow levels that can be used with glow post-process effect.</para>
  38403. </summary>
  38404. </member>
  38405. <member name="F:Godot.VisualServer.MaxCursors">
  38406. <summary>
  38407. <para>Unused enum in Godot 3.x.</para>
  38408. </summary>
  38409. </member>
  38410. <member name="F:Godot.VisualServer.MaterialRenderPriorityMin">
  38411. <summary>
  38412. <para>The minimum renderpriority of all materials.</para>
  38413. </summary>
  38414. </member>
  38415. <member name="F:Godot.VisualServer.MaterialRenderPriorityMax">
  38416. <summary>
  38417. <para>The maximum renderpriority of all materials.</para>
  38418. </summary>
  38419. </member>
  38420. <member name="F:Godot.VisualServer.ReflectionProbeUpdateMode.Once">
  38421. <summary>
  38422. <para>Reflection probe will update reflections once and then stop.</para>
  38423. </summary>
  38424. </member>
  38425. <member name="F:Godot.VisualServer.ReflectionProbeUpdateMode.Always">
  38426. <summary>
  38427. <para>Reflection probe will update each frame. This mode is necessary to capture moving objects.</para>
  38428. </summary>
  38429. </member>
  38430. <member name="F:Godot.VisualServer.LightDirectionalShadowDepthRangeMode.Stable">
  38431. <summary>
  38432. <para>Keeps shadows stable as camera moves but has lower effective resolution.</para>
  38433. </summary>
  38434. </member>
  38435. <member name="F:Godot.VisualServer.LightDirectionalShadowDepthRangeMode.Optimized">
  38436. <summary>
  38437. <para>Optimize use of shadow maps, increasing the effective resolution. But may result in shadows moving or flickering slightly.</para>
  38438. </summary>
  38439. </member>
  38440. <member name="F:Godot.VisualServer.BlendShapeMode.Normalized">
  38441. <summary>
  38442. <para>Blend shapes are normalized.</para>
  38443. </summary>
  38444. </member>
  38445. <member name="F:Godot.VisualServer.BlendShapeMode.Relative">
  38446. <summary>
  38447. <para>Blend shapes are relative to base weight.</para>
  38448. </summary>
  38449. </member>
  38450. <member name="F:Godot.VisualServer.PrimitiveType.Points">
  38451. <summary>
  38452. <para>Primitive to draw consists of points.</para>
  38453. </summary>
  38454. </member>
  38455. <member name="F:Godot.VisualServer.PrimitiveType.Lines">
  38456. <summary>
  38457. <para>Primitive to draw consists of lines.</para>
  38458. </summary>
  38459. </member>
  38460. <member name="F:Godot.VisualServer.PrimitiveType.LineStrip">
  38461. <summary>
  38462. <para>Primitive to draw consists of a line strip from start to end.</para>
  38463. </summary>
  38464. </member>
  38465. <member name="F:Godot.VisualServer.PrimitiveType.LineLoop">
  38466. <summary>
  38467. <para>Primitive to draw consists of a line loop (a line strip with a line between the last and the first vertex).</para>
  38468. </summary>
  38469. </member>
  38470. <member name="F:Godot.VisualServer.PrimitiveType.Triangles">
  38471. <summary>
  38472. <para>Primitive to draw consists of triangles.</para>
  38473. </summary>
  38474. </member>
  38475. <member name="F:Godot.VisualServer.PrimitiveType.TriangleStrip">
  38476. <summary>
  38477. <para>Primitive to draw consists of a triangle strip (the last 3 vertices are always combined to make a triangle).</para>
  38478. </summary>
  38479. </member>
  38480. <member name="F:Godot.VisualServer.PrimitiveType.TriangleFan">
  38481. <summary>
  38482. <para>Primitive to draw consists of a triangle strip (the last 2 vertices are always combined with the first to make a triangle).</para>
  38483. </summary>
  38484. </member>
  38485. <member name="F:Godot.VisualServer.PrimitiveType.Max">
  38486. <summary>
  38487. <para>Represents the size of the <see cref="T:Godot.VisualServer.PrimitiveType"/> enum.</para>
  38488. </summary>
  38489. </member>
  38490. <member name="F:Godot.VisualServer.TextureType.Type2d">
  38491. <summary>
  38492. <para>Normal texture with 2 dimensions, width and height.</para>
  38493. </summary>
  38494. </member>
  38495. <member name="F:Godot.VisualServer.TextureType.Cubemap">
  38496. <summary>
  38497. <para>Texture made up of six faces, can be looked up with a <c>vec3</c> in shader.</para>
  38498. </summary>
  38499. </member>
  38500. <member name="F:Godot.VisualServer.TextureType.Type2dArray">
  38501. <summary>
  38502. <para>An array of 2-dimensional textures.</para>
  38503. </summary>
  38504. </member>
  38505. <member name="F:Godot.VisualServer.TextureType.Type3d">
  38506. <summary>
  38507. <para>A 3-dimensional texture with width, height, and depth.</para>
  38508. </summary>
  38509. </member>
  38510. <member name="F:Godot.VisualServer.EnvironmentSSAOQuality.Low">
  38511. <summary>
  38512. <para>Lowest quality of screen space ambient occlusion.</para>
  38513. </summary>
  38514. </member>
  38515. <member name="F:Godot.VisualServer.EnvironmentSSAOQuality.Medium">
  38516. <summary>
  38517. <para>Medium quality screen space ambient occlusion.</para>
  38518. </summary>
  38519. </member>
  38520. <member name="F:Godot.VisualServer.EnvironmentSSAOQuality.High">
  38521. <summary>
  38522. <para>Highest quality screen space ambient occlusion.</para>
  38523. </summary>
  38524. </member>
  38525. <member name="F:Godot.VisualServer.EnvironmentDOFBlurQuality.Low">
  38526. <summary>
  38527. <para>Use lowest blur quality. Fastest, but may look bad.</para>
  38528. </summary>
  38529. </member>
  38530. <member name="F:Godot.VisualServer.EnvironmentDOFBlurQuality.Medium">
  38531. <summary>
  38532. <para>Use medium blur quality.</para>
  38533. </summary>
  38534. </member>
  38535. <member name="F:Godot.VisualServer.EnvironmentDOFBlurQuality.High">
  38536. <summary>
  38537. <para>Used highest blur quality. Looks the best, but is the slowest.</para>
  38538. </summary>
  38539. </member>
  38540. <member name="F:Godot.VisualServer.RenderInfo.ObjectsInFrame">
  38541. <summary>
  38542. <para>The amount of objects in the frame.</para>
  38543. </summary>
  38544. </member>
  38545. <member name="F:Godot.VisualServer.RenderInfo.VerticesInFrame">
  38546. <summary>
  38547. <para>The amount of vertices in the frame.</para>
  38548. </summary>
  38549. </member>
  38550. <member name="F:Godot.VisualServer.RenderInfo.MaterialChangesInFrame">
  38551. <summary>
  38552. <para>The amount of modified materials in the frame.</para>
  38553. </summary>
  38554. </member>
  38555. <member name="F:Godot.VisualServer.RenderInfo.ShaderChangesInFrame">
  38556. <summary>
  38557. <para>The amount of shader rebinds in the frame.</para>
  38558. </summary>
  38559. </member>
  38560. <member name="F:Godot.VisualServer.RenderInfo.SurfaceChangesInFrame">
  38561. <summary>
  38562. <para>The amount of surface changes in the frame.</para>
  38563. </summary>
  38564. </member>
  38565. <member name="F:Godot.VisualServer.RenderInfo.DrawCallsInFrame">
  38566. <summary>
  38567. <para>The amount of draw calls in frame.</para>
  38568. </summary>
  38569. </member>
  38570. <member name="F:Godot.VisualServer.RenderInfo.Info2dItemsInFrame">
  38571. <summary>
  38572. <para>The amount of 2d items in the frame.</para>
  38573. </summary>
  38574. </member>
  38575. <member name="F:Godot.VisualServer.RenderInfo.Info2dDrawCallsInFrame">
  38576. <summary>
  38577. <para>The amount of 2d draw calls in frame.</para>
  38578. </summary>
  38579. </member>
  38580. <member name="F:Godot.VisualServer.RenderInfo.UsageVideoMemTotal">
  38581. <summary>
  38582. <para>Unimplemented in the GLES2 and GLES3 rendering backends, always returns 0.</para>
  38583. </summary>
  38584. </member>
  38585. <member name="F:Godot.VisualServer.RenderInfo.VideoMemUsed">
  38586. <summary>
  38587. <para>The amount of video memory used, i.e. texture and vertex memory combined.</para>
  38588. </summary>
  38589. </member>
  38590. <member name="F:Godot.VisualServer.RenderInfo.TextureMemUsed">
  38591. <summary>
  38592. <para>The amount of texture memory used.</para>
  38593. </summary>
  38594. </member>
  38595. <member name="F:Godot.VisualServer.RenderInfo.VertexMemUsed">
  38596. <summary>
  38597. <para>The amount of vertex memory used.</para>
  38598. </summary>
  38599. </member>
  38600. <member name="F:Godot.VisualServer.NinePatchAxisMode.Stretch">
  38601. <summary>
  38602. <para>The nine patch gets stretched where needed.</para>
  38603. </summary>
  38604. </member>
  38605. <member name="F:Godot.VisualServer.NinePatchAxisMode.Tile">
  38606. <summary>
  38607. <para>The nine patch gets filled with tiles where needed.</para>
  38608. </summary>
  38609. </member>
  38610. <member name="F:Godot.VisualServer.NinePatchAxisMode.TileFit">
  38611. <summary>
  38612. <para>The nine patch gets filled with tiles where needed and stretches them a bit if needed.</para>
  38613. </summary>
  38614. </member>
  38615. <member name="F:Godot.VisualServer.ViewportRenderInfo.ObjectsInFrame">
  38616. <summary>
  38617. <para>Number of objects drawn in a single frame.</para>
  38618. </summary>
  38619. </member>
  38620. <member name="F:Godot.VisualServer.ViewportRenderInfo.VerticesInFrame">
  38621. <summary>
  38622. <para>Number of vertices drawn in a single frame.</para>
  38623. </summary>
  38624. </member>
  38625. <member name="F:Godot.VisualServer.ViewportRenderInfo.MaterialChangesInFrame">
  38626. <summary>
  38627. <para>Number of material changes during this frame.</para>
  38628. </summary>
  38629. </member>
  38630. <member name="F:Godot.VisualServer.ViewportRenderInfo.ShaderChangesInFrame">
  38631. <summary>
  38632. <para>Number of shader changes during this frame.</para>
  38633. </summary>
  38634. </member>
  38635. <member name="F:Godot.VisualServer.ViewportRenderInfo.SurfaceChangesInFrame">
  38636. <summary>
  38637. <para>Number of surface changes during this frame.</para>
  38638. </summary>
  38639. </member>
  38640. <member name="F:Godot.VisualServer.ViewportRenderInfo.DrawCallsInFrame">
  38641. <summary>
  38642. <para>Number of draw calls during this frame.</para>
  38643. </summary>
  38644. </member>
  38645. <member name="F:Godot.VisualServer.ViewportRenderInfo.Info2dItemsInFrame">
  38646. <summary>
  38647. <para>Number of 2d items drawn this frame.</para>
  38648. </summary>
  38649. </member>
  38650. <member name="F:Godot.VisualServer.ViewportRenderInfo.Info2dDrawCallsInFrame">
  38651. <summary>
  38652. <para>Number of 2d draw calls during this frame.</para>
  38653. </summary>
  38654. </member>
  38655. <member name="F:Godot.VisualServer.ViewportRenderInfo.Max">
  38656. <summary>
  38657. <para>Represents the size of the <see cref="T:Godot.VisualServer.ViewportRenderInfo"/> enum.</para>
  38658. </summary>
  38659. </member>
  38660. <member name="F:Godot.VisualServer.ViewportClearMode.Always">
  38661. <summary>
  38662. <para>The viewport is always cleared before drawing.</para>
  38663. </summary>
  38664. </member>
  38665. <member name="F:Godot.VisualServer.ViewportClearMode.Never">
  38666. <summary>
  38667. <para>The viewport is never cleared before drawing.</para>
  38668. </summary>
  38669. </member>
  38670. <member name="F:Godot.VisualServer.ViewportClearMode.OnlyNextFrame">
  38671. <summary>
  38672. <para>The viewport is cleared once, then the clear mode is set to .</para>
  38673. </summary>
  38674. </member>
  38675. <member name="F:Godot.VisualServer.LightOmniShadowDetail.Vertical">
  38676. <summary>
  38677. <para>Use more detail vertically when computing shadow map.</para>
  38678. </summary>
  38679. </member>
  38680. <member name="F:Godot.VisualServer.LightOmniShadowDetail.Horizontal">
  38681. <summary>
  38682. <para>Use more detail horizontally when computing shadow map.</para>
  38683. </summary>
  38684. </member>
  38685. <member name="F:Godot.VisualServer.ShaderMode.Spatial">
  38686. <summary>
  38687. <para>Shader is a 3D shader.</para>
  38688. </summary>
  38689. </member>
  38690. <member name="F:Godot.VisualServer.ShaderMode.CanvasItem">
  38691. <summary>
  38692. <para>Shader is a 2D shader.</para>
  38693. </summary>
  38694. </member>
  38695. <member name="F:Godot.VisualServer.ShaderMode.Particles">
  38696. <summary>
  38697. <para>Shader is a particle shader.</para>
  38698. </summary>
  38699. </member>
  38700. <member name="F:Godot.VisualServer.ShaderMode.Max">
  38701. <summary>
  38702. <para>Represents the size of the <see cref="T:Godot.VisualServer.ShaderMode"/> enum.</para>
  38703. </summary>
  38704. </member>
  38705. <member name="F:Godot.VisualServer.MultimeshTransformFormat.Transform2d">
  38706. <summary>
  38707. <para>Use <see cref="T:Godot.Transform2D"/> to store MultiMesh transform.</para>
  38708. </summary>
  38709. </member>
  38710. <member name="F:Godot.VisualServer.MultimeshTransformFormat.Transform3d">
  38711. <summary>
  38712. <para>Use <see cref="T:Godot.Transform"/> to store MultiMesh transform.</para>
  38713. </summary>
  38714. </member>
  38715. <member name="F:Godot.VisualServer.ShadowCastingSetting.Off">
  38716. <summary>
  38717. <para>Disable shadows from this instance.</para>
  38718. </summary>
  38719. </member>
  38720. <member name="F:Godot.VisualServer.ShadowCastingSetting.On">
  38721. <summary>
  38722. <para>Cast shadows from this instance.</para>
  38723. </summary>
  38724. </member>
  38725. <member name="F:Godot.VisualServer.ShadowCastingSetting.DoubleSided">
  38726. <summary>
  38727. <para>Disable backface culling when rendering the shadow of the object. This is slightly slower but may result in more correct shadows.</para>
  38728. </summary>
  38729. </member>
  38730. <member name="F:Godot.VisualServer.ShadowCastingSetting.ShadowsOnly">
  38731. <summary>
  38732. <para>Only render the shadows from the object. The object itself will not be drawn.</para>
  38733. </summary>
  38734. </member>
  38735. <member name="F:Godot.VisualServer.ViewportDebugDraw.Disabled">
  38736. <summary>
  38737. <para>Debug draw is disabled. Default setting.</para>
  38738. </summary>
  38739. </member>
  38740. <member name="F:Godot.VisualServer.ViewportDebugDraw.Unshaded">
  38741. <summary>
  38742. <para>Debug draw sets objects to unshaded.</para>
  38743. </summary>
  38744. </member>
  38745. <member name="F:Godot.VisualServer.ViewportDebugDraw.Overdraw">
  38746. <summary>
  38747. <para>Overwrites clear color to <c>(0,0,0,0)</c>.</para>
  38748. </summary>
  38749. </member>
  38750. <member name="F:Godot.VisualServer.ViewportDebugDraw.Wireframe">
  38751. <summary>
  38752. <para>Debug draw draws objects in wireframe.</para>
  38753. </summary>
  38754. </member>
  38755. <member name="F:Godot.VisualServer.ViewportUsage.Usage2d">
  38756. <summary>
  38757. <para>The Viewport does not render 3D but samples.</para>
  38758. </summary>
  38759. </member>
  38760. <member name="F:Godot.VisualServer.ViewportUsage.Usage2dNoSampling">
  38761. <summary>
  38762. <para>The Viewport does not render 3D and does not sample.</para>
  38763. </summary>
  38764. </member>
  38765. <member name="F:Godot.VisualServer.ViewportUsage.Usage3d">
  38766. <summary>
  38767. <para>The Viewport renders 3D with effects.</para>
  38768. </summary>
  38769. </member>
  38770. <member name="F:Godot.VisualServer.ViewportUsage.Usage3dNoEffects">
  38771. <summary>
  38772. <para>The Viewport renders 3D but without effects.</para>
  38773. </summary>
  38774. </member>
  38775. <member name="F:Godot.VisualServer.EnvironmentBG.ClearColor">
  38776. <summary>
  38777. <para>Use the clear color as background.</para>
  38778. </summary>
  38779. </member>
  38780. <member name="F:Godot.VisualServer.EnvironmentBG.Color">
  38781. <summary>
  38782. <para>Use a specified color as the background.</para>
  38783. </summary>
  38784. </member>
  38785. <member name="F:Godot.VisualServer.EnvironmentBG.Sky">
  38786. <summary>
  38787. <para>Use a sky resource for the background.</para>
  38788. </summary>
  38789. </member>
  38790. <member name="F:Godot.VisualServer.EnvironmentBG.ColorSky">
  38791. <summary>
  38792. <para>Use a custom color for background, but use a sky for shading and reflections.</para>
  38793. </summary>
  38794. </member>
  38795. <member name="F:Godot.VisualServer.EnvironmentBG.Canvas">
  38796. <summary>
  38797. <para>Use a specified canvas layer as the background. This can be useful for instantiating a 2D scene in a 3D world.</para>
  38798. </summary>
  38799. </member>
  38800. <member name="F:Godot.VisualServer.EnvironmentBG.Keep">
  38801. <summary>
  38802. <para>Do not clear the background, use whatever was rendered last frame as the background.</para>
  38803. </summary>
  38804. </member>
  38805. <member name="F:Godot.VisualServer.EnvironmentBG.Max">
  38806. <summary>
  38807. <para>Represents the size of the <see cref="T:Godot.VisualServer.EnvironmentBG"/> enum.</para>
  38808. </summary>
  38809. </member>
  38810. <member name="F:Godot.VisualServer.MultimeshCustomDataFormat.None">
  38811. <summary>
  38812. <para>MultiMesh does not use custom data.</para>
  38813. </summary>
  38814. </member>
  38815. <member name="F:Godot.VisualServer.MultimeshCustomDataFormat.Data8bit">
  38816. <summary>
  38817. <para>MultiMesh custom data uses 8 bits per component. This packs the 4-component custom data into a single float.</para>
  38818. </summary>
  38819. </member>
  38820. <member name="F:Godot.VisualServer.MultimeshCustomDataFormat.Float">
  38821. <summary>
  38822. <para>MultiMesh custom data uses a float per component.</para>
  38823. </summary>
  38824. </member>
  38825. <member name="F:Godot.VisualServer.LightOmniShadowMode.DualParaboloid">
  38826. <summary>
  38827. <para>Use a dual paraboloid shadow map for omni lights.</para>
  38828. </summary>
  38829. </member>
  38830. <member name="F:Godot.VisualServer.LightOmniShadowMode.Cube">
  38831. <summary>
  38832. <para>Use a cubemap shadow map for omni lights. Slower but better quality than dual paraboloid.</para>
  38833. </summary>
  38834. </member>
  38835. <member name="F:Godot.VisualServer.TextureFlags.Mipmaps">
  38836. <summary>
  38837. <para>Generates mipmaps, which are smaller versions of the same texture to use when zoomed out, keeping the aspect ratio.</para>
  38838. </summary>
  38839. </member>
  38840. <member name="F:Godot.VisualServer.TextureFlags.Repeat">
  38841. <summary>
  38842. <para>Repeats the texture (instead of clamp to edge).</para>
  38843. </summary>
  38844. </member>
  38845. <member name="F:Godot.VisualServer.TextureFlags.Filter">
  38846. <summary>
  38847. <para>Uses a magnifying filter, to enable smooth zooming in of the texture.</para>
  38848. </summary>
  38849. </member>
  38850. <member name="F:Godot.VisualServer.TextureFlags.AnisotropicFilter">
  38851. <summary>
  38852. <para>Uses anisotropic mipmap filtering. Generates smaller versions of the same texture with different aspect ratios.</para>
  38853. <para>This results in better-looking textures when viewed from oblique angles.</para>
  38854. </summary>
  38855. </member>
  38856. <member name="F:Godot.VisualServer.TextureFlags.ConvertToLinear">
  38857. <summary>
  38858. <para>Converts the texture to the sRGB color space.</para>
  38859. </summary>
  38860. </member>
  38861. <member name="F:Godot.VisualServer.TextureFlags.MirroredRepeat">
  38862. <summary>
  38863. <para>Repeats the texture with alternate sections mirrored.</para>
  38864. </summary>
  38865. </member>
  38866. <member name="F:Godot.VisualServer.TextureFlags.UsedForStreaming">
  38867. <summary>
  38868. <para>Texture is a video surface.</para>
  38869. </summary>
  38870. </member>
  38871. <member name="F:Godot.VisualServer.TextureFlags.Default">
  38872. <summary>
  38873. <para>Default flags. , and are enabled.</para>
  38874. </summary>
  38875. </member>
  38876. <member name="F:Godot.VisualServer.Features.Shaders">
  38877. <summary>
  38878. <para>Hardware supports shaders. This enum is currently unused in Godot 3.x.</para>
  38879. </summary>
  38880. </member>
  38881. <member name="F:Godot.VisualServer.Features.Multithreaded">
  38882. <summary>
  38883. <para>Hardware supports multithreading. This enum is currently unused in Godot 3.x.</para>
  38884. </summary>
  38885. </member>
  38886. <member name="F:Godot.VisualServer.InstanceType.None">
  38887. <summary>
  38888. <para>The instance does not have a type.</para>
  38889. </summary>
  38890. </member>
  38891. <member name="F:Godot.VisualServer.InstanceType.Mesh">
  38892. <summary>
  38893. <para>The instance is a mesh.</para>
  38894. </summary>
  38895. </member>
  38896. <member name="F:Godot.VisualServer.InstanceType.Multimesh">
  38897. <summary>
  38898. <para>The instance is a multimesh.</para>
  38899. </summary>
  38900. </member>
  38901. <member name="F:Godot.VisualServer.InstanceType.Immediate">
  38902. <summary>
  38903. <para>The instance is an immediate geometry.</para>
  38904. </summary>
  38905. </member>
  38906. <member name="F:Godot.VisualServer.InstanceType.Particles">
  38907. <summary>
  38908. <para>The instance is a particle emitter.</para>
  38909. </summary>
  38910. </member>
  38911. <member name="F:Godot.VisualServer.InstanceType.Light">
  38912. <summary>
  38913. <para>The instance is a light.</para>
  38914. </summary>
  38915. </member>
  38916. <member name="F:Godot.VisualServer.InstanceType.ReflectionProbe">
  38917. <summary>
  38918. <para>The instance is a reflection probe.</para>
  38919. </summary>
  38920. </member>
  38921. <member name="F:Godot.VisualServer.InstanceType.GiProbe">
  38922. <summary>
  38923. <para>The instance is a GI probe.</para>
  38924. </summary>
  38925. </member>
  38926. <member name="F:Godot.VisualServer.InstanceType.LightmapCapture">
  38927. <summary>
  38928. <para>The instance is a lightmap capture.</para>
  38929. </summary>
  38930. </member>
  38931. <member name="F:Godot.VisualServer.InstanceType.Max">
  38932. <summary>
  38933. <para>Represents the size of the <see cref="T:Godot.VisualServer.InstanceType"/> enum.</para>
  38934. </summary>
  38935. </member>
  38936. <member name="F:Godot.VisualServer.InstanceType.GeometryMask">
  38937. <summary>
  38938. <para>A combination of the flags of geometry instances (mesh, multimesh, immediate and particles).</para>
  38939. </summary>
  38940. </member>
  38941. <member name="F:Godot.VisualServer.EnvironmentSSAOBlur.Disabled">
  38942. <summary>
  38943. <para>Disables the blur set for SSAO. Will make SSAO look noisier.</para>
  38944. </summary>
  38945. </member>
  38946. <member name="F:Godot.VisualServer.EnvironmentSSAOBlur.Blur1x1">
  38947. <summary>
  38948. <para>Perform a 1x1 blur on the SSAO output.</para>
  38949. </summary>
  38950. </member>
  38951. <member name="F:Godot.VisualServer.EnvironmentSSAOBlur.Blur2x2">
  38952. <summary>
  38953. <para>Performs a 2x2 blur on the SSAO output.</para>
  38954. </summary>
  38955. </member>
  38956. <member name="F:Godot.VisualServer.EnvironmentSSAOBlur.Blur3x3">
  38957. <summary>
  38958. <para>Performs a 3x3 blur on the SSAO output. Use this for smoothest SSAO.</para>
  38959. </summary>
  38960. </member>
  38961. <member name="F:Godot.VisualServer.EnvironmentToneMapper.Linear">
  38962. <summary>
  38963. <para>Output color as they came in.</para>
  38964. </summary>
  38965. </member>
  38966. <member name="F:Godot.VisualServer.EnvironmentToneMapper.Reinhard">
  38967. <summary>
  38968. <para>Use the Reinhard tonemapper.</para>
  38969. </summary>
  38970. </member>
  38971. <member name="F:Godot.VisualServer.EnvironmentToneMapper.Filmic">
  38972. <summary>
  38973. <para>Use the filmic tonemapper.</para>
  38974. </summary>
  38975. </member>
  38976. <member name="F:Godot.VisualServer.EnvironmentToneMapper.Aces">
  38977. <summary>
  38978. <para>Use the ACES tonemapper.</para>
  38979. </summary>
  38980. </member>
  38981. <member name="F:Godot.VisualServer.EnvironmentGlowBlendMode.Additive">
  38982. <summary>
  38983. <para>Add the effect of the glow on top of the scene.</para>
  38984. </summary>
  38985. </member>
  38986. <member name="F:Godot.VisualServer.EnvironmentGlowBlendMode.Screen">
  38987. <summary>
  38988. <para>Blends the glow effect with the screen. Does not get as bright as additive.</para>
  38989. </summary>
  38990. </member>
  38991. <member name="F:Godot.VisualServer.EnvironmentGlowBlendMode.Softlight">
  38992. <summary>
  38993. <para>Produces a subtle color disturbance around objects.</para>
  38994. </summary>
  38995. </member>
  38996. <member name="F:Godot.VisualServer.EnvironmentGlowBlendMode.Replace">
  38997. <summary>
  38998. <para>Shows the glow effect by itself without the underlying scene.</para>
  38999. </summary>
  39000. </member>
  39001. <member name="F:Godot.VisualServer.MultimeshColorFormat.None">
  39002. <summary>
  39003. <para>MultiMesh does not use per-instance color.</para>
  39004. </summary>
  39005. </member>
  39006. <member name="F:Godot.VisualServer.MultimeshColorFormat.Color8bit">
  39007. <summary>
  39008. <para>MultiMesh color uses 8 bits per component. This packs the color into a single float.</para>
  39009. </summary>
  39010. </member>
  39011. <member name="F:Godot.VisualServer.MultimeshColorFormat.Float">
  39012. <summary>
  39013. <para>MultiMesh color uses a float per channel.</para>
  39014. </summary>
  39015. </member>
  39016. <member name="F:Godot.VisualServer.CanvasLightShadowFilter.None">
  39017. <summary>
  39018. <para>Do not apply a filter to canvas light shadows.</para>
  39019. </summary>
  39020. </member>
  39021. <member name="F:Godot.VisualServer.CanvasLightShadowFilter.Pcf3">
  39022. <summary>
  39023. <para>Use PCF3 filtering to filter canvas light shadows.</para>
  39024. </summary>
  39025. </member>
  39026. <member name="F:Godot.VisualServer.CanvasLightShadowFilter.Pcf5">
  39027. <summary>
  39028. <para>Use PCF5 filtering to filter canvas light shadows.</para>
  39029. </summary>
  39030. </member>
  39031. <member name="F:Godot.VisualServer.CanvasLightShadowFilter.Pcf7">
  39032. <summary>
  39033. <para>Use PCF7 filtering to filter canvas light shadows.</para>
  39034. </summary>
  39035. </member>
  39036. <member name="F:Godot.VisualServer.CanvasLightShadowFilter.Pcf9">
  39037. <summary>
  39038. <para>Use PCF9 filtering to filter canvas light shadows.</para>
  39039. </summary>
  39040. </member>
  39041. <member name="F:Godot.VisualServer.CanvasLightShadowFilter.Pcf13">
  39042. <summary>
  39043. <para>Use PCF13 filtering to filter canvas light shadows.</para>
  39044. </summary>
  39045. </member>
  39046. <member name="F:Godot.VisualServer.ScenarioDebugMode.Disabled">
  39047. <summary>
  39048. <para>Do not use a debug mode.</para>
  39049. </summary>
  39050. </member>
  39051. <member name="F:Godot.VisualServer.ScenarioDebugMode.Wireframe">
  39052. <summary>
  39053. <para>Draw all objects as wireframe models.</para>
  39054. </summary>
  39055. </member>
  39056. <member name="F:Godot.VisualServer.ScenarioDebugMode.Overdraw">
  39057. <summary>
  39058. <para>Draw all objects in a way that displays how much overdraw is occurring. Overdraw occurs when a section of pixels is drawn and shaded and then another object covers it up. To optimize a scene, you should reduce overdraw.</para>
  39059. </summary>
  39060. </member>
  39061. <member name="F:Godot.VisualServer.ScenarioDebugMode.Shadeless">
  39062. <summary>
  39063. <para>Draw all objects without shading. Equivalent to setting all objects shaders to <c>unshaded</c>.</para>
  39064. </summary>
  39065. </member>
  39066. <member name="F:Godot.VisualServer.ViewportUpdateMode.Disabled">
  39067. <summary>
  39068. <para>Do not update the viewport.</para>
  39069. </summary>
  39070. </member>
  39071. <member name="F:Godot.VisualServer.ViewportUpdateMode.Once">
  39072. <summary>
  39073. <para>Update the viewport once then set to disabled.</para>
  39074. </summary>
  39075. </member>
  39076. <member name="F:Godot.VisualServer.ViewportUpdateMode.WhenVisible">
  39077. <summary>
  39078. <para>Update the viewport whenever it is visible.</para>
  39079. </summary>
  39080. </member>
  39081. <member name="F:Godot.VisualServer.ViewportUpdateMode.Always">
  39082. <summary>
  39083. <para>Always update the viewport.</para>
  39084. </summary>
  39085. </member>
  39086. <member name="F:Godot.VisualServer.ArrayFormat.FormatVertex">
  39087. <summary>
  39088. <para>Flag used to mark a vertex array.</para>
  39089. </summary>
  39090. </member>
  39091. <member name="F:Godot.VisualServer.ArrayFormat.FormatNormal">
  39092. <summary>
  39093. <para>Flag used to mark a normal array.</para>
  39094. </summary>
  39095. </member>
  39096. <member name="F:Godot.VisualServer.ArrayFormat.FormatTangent">
  39097. <summary>
  39098. <para>Flag used to mark a tangent array.</para>
  39099. </summary>
  39100. </member>
  39101. <member name="F:Godot.VisualServer.ArrayFormat.FormatColor">
  39102. <summary>
  39103. <para>Flag used to mark a color array.</para>
  39104. </summary>
  39105. </member>
  39106. <member name="F:Godot.VisualServer.ArrayFormat.FormatTexUv">
  39107. <summary>
  39108. <para>Flag used to mark an UV coordinates array.</para>
  39109. </summary>
  39110. </member>
  39111. <member name="F:Godot.VisualServer.ArrayFormat.FormatTexUv2">
  39112. <summary>
  39113. <para>Flag used to mark an UV coordinates array for the second UV coordinates.</para>
  39114. </summary>
  39115. </member>
  39116. <member name="F:Godot.VisualServer.ArrayFormat.FormatBones">
  39117. <summary>
  39118. <para>Flag used to mark a bone information array.</para>
  39119. </summary>
  39120. </member>
  39121. <member name="F:Godot.VisualServer.ArrayFormat.FormatWeights">
  39122. <summary>
  39123. <para>Flag used to mark a weights array.</para>
  39124. </summary>
  39125. </member>
  39126. <member name="F:Godot.VisualServer.ArrayFormat.FormatIndex">
  39127. <summary>
  39128. <para>Flag used to mark an index array.</para>
  39129. </summary>
  39130. </member>
  39131. <member name="F:Godot.VisualServer.ArrayFormat.CompressVertex">
  39132. <summary>
  39133. <para>Flag used to mark a compressed (half float) vertex array.</para>
  39134. </summary>
  39135. </member>
  39136. <member name="F:Godot.VisualServer.ArrayFormat.CompressNormal">
  39137. <summary>
  39138. <para>Flag used to mark a compressed (half float) normal array.</para>
  39139. </summary>
  39140. </member>
  39141. <member name="F:Godot.VisualServer.ArrayFormat.CompressTangent">
  39142. <summary>
  39143. <para>Flag used to mark a compressed (half float) tangent array.</para>
  39144. </summary>
  39145. </member>
  39146. <member name="F:Godot.VisualServer.ArrayFormat.CompressColor">
  39147. <summary>
  39148. <para>Flag used to mark a compressed (half float) color array.</para>
  39149. </summary>
  39150. </member>
  39151. <member name="F:Godot.VisualServer.ArrayFormat.CompressTexUv">
  39152. <summary>
  39153. <para>Flag used to mark a compressed (half float) UV coordinates array.</para>
  39154. </summary>
  39155. </member>
  39156. <member name="F:Godot.VisualServer.ArrayFormat.CompressTexUv2">
  39157. <summary>
  39158. <para>Flag used to mark a compressed (half float) UV coordinates array for the second UV coordinates.</para>
  39159. </summary>
  39160. </member>
  39161. <member name="F:Godot.VisualServer.ArrayFormat.CompressBones">
  39162. <summary>
  39163. <para>Flag used to mark a compressed bone array.</para>
  39164. </summary>
  39165. </member>
  39166. <member name="F:Godot.VisualServer.ArrayFormat.CompressWeights">
  39167. <summary>
  39168. <para>Flag used to mark a compressed (half float) weight array.</para>
  39169. </summary>
  39170. </member>
  39171. <member name="F:Godot.VisualServer.ArrayFormat.CompressIndex">
  39172. <summary>
  39173. <para>Flag used to mark a compressed index array.</para>
  39174. </summary>
  39175. </member>
  39176. <member name="F:Godot.VisualServer.ArrayFormat.FlagUse2dVertices">
  39177. <summary>
  39178. <para>Flag used to mark that the array contains 2D vertices.</para>
  39179. </summary>
  39180. </member>
  39181. <member name="F:Godot.VisualServer.ArrayFormat.FlagUse16BitBones">
  39182. <summary>
  39183. <para>Flag used to mark that the array uses 16-bit bones instead of 8-bit.</para>
  39184. </summary>
  39185. </member>
  39186. <member name="F:Godot.VisualServer.ArrayFormat.CompressDefault">
  39187. <summary>
  39188. <para>Used to set flags , , , , , and quickly.</para>
  39189. </summary>
  39190. </member>
  39191. <member name="F:Godot.VisualServer.ParticlesDrawOrder.Index">
  39192. <summary>
  39193. <para>Draw particles in the order that they appear in the particles array.</para>
  39194. </summary>
  39195. </member>
  39196. <member name="F:Godot.VisualServer.ParticlesDrawOrder.Lifetime">
  39197. <summary>
  39198. <para>Sort particles based on their lifetime.</para>
  39199. </summary>
  39200. </member>
  39201. <member name="F:Godot.VisualServer.ParticlesDrawOrder.ViewDepth">
  39202. <summary>
  39203. <para>Sort particles based on their distance to the camera.</para>
  39204. </summary>
  39205. </member>
  39206. <member name="F:Godot.VisualServer.CanvasLightMode.Add">
  39207. <summary>
  39208. <para>Adds light color additive to the canvas.</para>
  39209. </summary>
  39210. </member>
  39211. <member name="F:Godot.VisualServer.CanvasLightMode.Sub">
  39212. <summary>
  39213. <para>Adds light color subtractive to the canvas.</para>
  39214. </summary>
  39215. </member>
  39216. <member name="F:Godot.VisualServer.CanvasLightMode.Mix">
  39217. <summary>
  39218. <para>The light adds color depending on transparency.</para>
  39219. </summary>
  39220. </member>
  39221. <member name="F:Godot.VisualServer.CanvasLightMode.Mask">
  39222. <summary>
  39223. <para>The light adds color depending on mask.</para>
  39224. </summary>
  39225. </member>
  39226. <member name="F:Godot.VisualServer.LightDirectionalShadowMode.Orthogonal">
  39227. <summary>
  39228. <para>Use orthogonal shadow projection for directional light.</para>
  39229. </summary>
  39230. </member>
  39231. <member name="F:Godot.VisualServer.LightDirectionalShadowMode.Parallel2Splits">
  39232. <summary>
  39233. <para>Use 2 splits for shadow projection when using directional light.</para>
  39234. </summary>
  39235. </member>
  39236. <member name="F:Godot.VisualServer.LightDirectionalShadowMode.Parallel4Splits">
  39237. <summary>
  39238. <para>Use 4 splits for shadow projection when using directional light.</para>
  39239. </summary>
  39240. </member>
  39241. <member name="F:Godot.VisualServer.LightParam.Energy">
  39242. <summary>
  39243. <para>The light's energy.</para>
  39244. </summary>
  39245. </member>
  39246. <member name="F:Godot.VisualServer.LightParam.Specular">
  39247. <summary>
  39248. <para>The light's influence on specularity.</para>
  39249. </summary>
  39250. </member>
  39251. <member name="F:Godot.VisualServer.LightParam.Range">
  39252. <summary>
  39253. <para>The light's range.</para>
  39254. </summary>
  39255. </member>
  39256. <member name="F:Godot.VisualServer.LightParam.Attenuation">
  39257. <summary>
  39258. <para>The light's attenuation.</para>
  39259. </summary>
  39260. </member>
  39261. <member name="F:Godot.VisualServer.LightParam.SpotAngle">
  39262. <summary>
  39263. <para>The spotlight's angle.</para>
  39264. </summary>
  39265. </member>
  39266. <member name="F:Godot.VisualServer.LightParam.SpotAttenuation">
  39267. <summary>
  39268. <para>The spotlight's attenuation.</para>
  39269. </summary>
  39270. </member>
  39271. <member name="F:Godot.VisualServer.LightParam.ContactShadowSize">
  39272. <summary>
  39273. <para>Scales the shadow color.</para>
  39274. </summary>
  39275. </member>
  39276. <member name="F:Godot.VisualServer.LightParam.ShadowMaxDistance">
  39277. <summary>
  39278. <para>Max distance that shadows will be rendered.</para>
  39279. </summary>
  39280. </member>
  39281. <member name="F:Godot.VisualServer.LightParam.ShadowSplit1Offset">
  39282. <summary>
  39283. <para>Proportion of shadow atlas occupied by the first split.</para>
  39284. </summary>
  39285. </member>
  39286. <member name="F:Godot.VisualServer.LightParam.ShadowSplit2Offset">
  39287. <summary>
  39288. <para>Proportion of shadow atlas occupied by the second split.</para>
  39289. </summary>
  39290. </member>
  39291. <member name="F:Godot.VisualServer.LightParam.ShadowSplit3Offset">
  39292. <summary>
  39293. <para>Proportion of shadow atlas occupied by the third split. The fourth split occupies the rest.</para>
  39294. </summary>
  39295. </member>
  39296. <member name="F:Godot.VisualServer.LightParam.ShadowNormalBias">
  39297. <summary>
  39298. <para>Normal bias used to offset shadow lookup by object normal. Can be used to fix self-shadowing artifacts.</para>
  39299. </summary>
  39300. </member>
  39301. <member name="F:Godot.VisualServer.LightParam.ShadowBias">
  39302. <summary>
  39303. <para>Bias the shadow lookup to fix self-shadowing artifacts.</para>
  39304. </summary>
  39305. </member>
  39306. <member name="F:Godot.VisualServer.LightParam.ShadowBiasSplitScale">
  39307. <summary>
  39308. <para>Increases bias on further splits to fix self-shadowing that only occurs far away from the camera.</para>
  39309. </summary>
  39310. </member>
  39311. <member name="F:Godot.VisualServer.LightParam.Max">
  39312. <summary>
  39313. <para>Represents the size of the <see cref="T:Godot.VisualServer.LightParam"/> enum.</para>
  39314. </summary>
  39315. </member>
  39316. <member name="F:Godot.VisualServer.ArrayType.Vertex">
  39317. <summary>
  39318. <para>Array is a vertex array.</para>
  39319. </summary>
  39320. </member>
  39321. <member name="F:Godot.VisualServer.ArrayType.Normal">
  39322. <summary>
  39323. <para>Array is a normal array.</para>
  39324. </summary>
  39325. </member>
  39326. <member name="F:Godot.VisualServer.ArrayType.Tangent">
  39327. <summary>
  39328. <para>Array is a tangent array.</para>
  39329. </summary>
  39330. </member>
  39331. <member name="F:Godot.VisualServer.ArrayType.Color">
  39332. <summary>
  39333. <para>Array is a color array.</para>
  39334. </summary>
  39335. </member>
  39336. <member name="F:Godot.VisualServer.ArrayType.TexUv">
  39337. <summary>
  39338. <para>Array is an UV coordinates array.</para>
  39339. </summary>
  39340. </member>
  39341. <member name="F:Godot.VisualServer.ArrayType.TexUv2">
  39342. <summary>
  39343. <para>Array is an UV coordinates array for the second UV coordinates.</para>
  39344. </summary>
  39345. </member>
  39346. <member name="F:Godot.VisualServer.ArrayType.Bones">
  39347. <summary>
  39348. <para>Array contains bone information.</para>
  39349. </summary>
  39350. </member>
  39351. <member name="F:Godot.VisualServer.ArrayType.Weights">
  39352. <summary>
  39353. <para>Array is weight information.</para>
  39354. </summary>
  39355. </member>
  39356. <member name="F:Godot.VisualServer.ArrayType.Index">
  39357. <summary>
  39358. <para>Array is index array.</para>
  39359. </summary>
  39360. </member>
  39361. <member name="F:Godot.VisualServer.ArrayType.Max">
  39362. <summary>
  39363. <para>Represents the size of the <see cref="T:Godot.VisualServer.ArrayType"/> enum.</para>
  39364. </summary>
  39365. </member>
  39366. <member name="F:Godot.VisualServer.CanvasOccluderPolygonCullMode.Disabled">
  39367. <summary>
  39368. <para>Culling of the canvas occluder is disabled.</para>
  39369. </summary>
  39370. </member>
  39371. <member name="F:Godot.VisualServer.CanvasOccluderPolygonCullMode.Clockwise">
  39372. <summary>
  39373. <para>Culling of the canvas occluder is clockwise.</para>
  39374. </summary>
  39375. </member>
  39376. <member name="F:Godot.VisualServer.CanvasOccluderPolygonCullMode.CounterClockwise">
  39377. <summary>
  39378. <para>Culling of the canvas occluder is counterclockwise.</para>
  39379. </summary>
  39380. </member>
  39381. <member name="F:Godot.VisualServer.InstanceFlags.UseBakedLight">
  39382. <summary>
  39383. <para>Allows the instance to be used in baked lighting.</para>
  39384. </summary>
  39385. </member>
  39386. <member name="F:Godot.VisualServer.InstanceFlags.DrawNextFrameIfVisible">
  39387. <summary>
  39388. <para>When set, manually requests to draw geometry on next frame.</para>
  39389. </summary>
  39390. </member>
  39391. <member name="F:Godot.VisualServer.InstanceFlags.Max">
  39392. <summary>
  39393. <para>Represents the size of the <see cref="T:Godot.VisualServer.InstanceFlags"/> enum.</para>
  39394. </summary>
  39395. </member>
  39396. <member name="F:Godot.VisualServer.ViewportMSAA.Disabled">
  39397. <summary>
  39398. <para>Multisample antialiasing is disabled.</para>
  39399. </summary>
  39400. </member>
  39401. <member name="F:Godot.VisualServer.ViewportMSAA.Msaa2x">
  39402. <summary>
  39403. <para>Multisample antialiasing is set to 2×.</para>
  39404. </summary>
  39405. </member>
  39406. <member name="F:Godot.VisualServer.ViewportMSAA.Msaa4x">
  39407. <summary>
  39408. <para>Multisample antialiasing is set to 4×.</para>
  39409. </summary>
  39410. </member>
  39411. <member name="F:Godot.VisualServer.ViewportMSAA.Msaa8x">
  39412. <summary>
  39413. <para>Multisample antialiasing is set to 8×.</para>
  39414. </summary>
  39415. </member>
  39416. <member name="F:Godot.VisualServer.ViewportMSAA.Msaa16x">
  39417. <summary>
  39418. <para>Multisample antialiasing is set to 16×.</para>
  39419. </summary>
  39420. </member>
  39421. <member name="F:Godot.VisualServer.ViewportMSAA.Ext2x">
  39422. <summary>
  39423. <para>Multisample antialiasing is set to 2× on external texture. Special mode for GLES2 Android VR (Oculus Quest and Go).</para>
  39424. </summary>
  39425. </member>
  39426. <member name="F:Godot.VisualServer.ViewportMSAA.Ext4x">
  39427. <summary>
  39428. <para>Multisample antialiasing is set to 4× on external texture. Special mode for GLES2 Android VR (Oculus Quest and Go).</para>
  39429. </summary>
  39430. </member>
  39431. <member name="F:Godot.VisualServer.LightType.Directional">
  39432. <summary>
  39433. <para>Is a directional (sun) light.</para>
  39434. </summary>
  39435. </member>
  39436. <member name="F:Godot.VisualServer.LightType.Omni">
  39437. <summary>
  39438. <para>Is an omni light.</para>
  39439. </summary>
  39440. </member>
  39441. <member name="F:Godot.VisualServer.LightType.Spot">
  39442. <summary>
  39443. <para>Is a spot light.</para>
  39444. </summary>
  39445. </member>
  39446. <member name="F:Godot.VisualServer.CubeMapSide.Left">
  39447. <summary>
  39448. <para>Marks the left side of a cubemap.</para>
  39449. </summary>
  39450. </member>
  39451. <member name="F:Godot.VisualServer.CubeMapSide.Right">
  39452. <summary>
  39453. <para>Marks the right side of a cubemap.</para>
  39454. </summary>
  39455. </member>
  39456. <member name="F:Godot.VisualServer.CubeMapSide.Bottom">
  39457. <summary>
  39458. <para>Marks the bottom side of a cubemap.</para>
  39459. </summary>
  39460. </member>
  39461. <member name="F:Godot.VisualServer.CubeMapSide.Top">
  39462. <summary>
  39463. <para>Marks the top side of a cubemap.</para>
  39464. </summary>
  39465. </member>
  39466. <member name="F:Godot.VisualServer.CubeMapSide.Front">
  39467. <summary>
  39468. <para>Marks the front side of a cubemap.</para>
  39469. </summary>
  39470. </member>
  39471. <member name="F:Godot.VisualServer.CubeMapSide.Back">
  39472. <summary>
  39473. <para>Marks the back side of a cubemap.</para>
  39474. </summary>
  39475. </member>
  39476. <member name="P:Godot.VisualServer.RenderLoopEnabled">
  39477. <summary>
  39478. <para>If <c>false</c>, disables rendering completely, but the engine logic is still being processed. You can call <see cref="M:Godot.VisualServer.ForceDraw(System.Boolean,System.Double)"/> to draw a frame even with rendering disabled.</para>
  39479. </summary>
  39480. </member>
  39481. <member name="M:Godot.VisualServer.ForceSync">
  39482. <summary>
  39483. <para>Synchronizes threads.</para>
  39484. </summary>
  39485. </member>
  39486. <member name="M:Godot.VisualServer.ForceDraw(System.Boolean,System.Double)">
  39487. <summary>
  39488. <para>Forces a frame to be drawn when the function is called. Drawing a frame updates all <see cref="T:Godot.Viewport"/>s that are set to update. Use with extreme caution.</para>
  39489. </summary>
  39490. </member>
  39491. <member name="M:Godot.VisualServer.Sync">
  39492. <summary>
  39493. <para>Not implemented in Godot 3.x.</para>
  39494. </summary>
  39495. </member>
  39496. <member name="M:Godot.VisualServer.Draw(System.Boolean,System.Double)">
  39497. <summary>
  39498. <para>Draws a frame. This method is deprecated, please use <see cref="M:Godot.VisualServer.ForceDraw(System.Boolean,System.Double)"/> instead.</para>
  39499. </summary>
  39500. </member>
  39501. <member name="M:Godot.VisualServer.TextureCreate">
  39502. <summary>
  39503. <para>Creates an empty texture and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>texture_*</c> VisualServer functions.</para>
  39504. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39505. </summary>
  39506. </member>
  39507. <member name="M:Godot.VisualServer.TextureCreateFromImage(Godot.Image,System.UInt32)">
  39508. <summary>
  39509. <para>Creates a texture, allocates the space for an image, and fills in the image.</para>
  39510. </summary>
  39511. </member>
  39512. <member name="M:Godot.VisualServer.TextureAllocate(Godot.RID,System.Int32,System.Int32,System.Int32,Godot.Image.Format,Godot.VisualServer.TextureType,System.UInt32)">
  39513. <summary>
  39514. <para>Allocates the GPU memory for the texture.</para>
  39515. </summary>
  39516. </member>
  39517. <member name="M:Godot.VisualServer.TextureSetData(Godot.RID,Godot.Image,System.Int32)">
  39518. <summary>
  39519. <para>Sets the texture's image data. If it's a CubeMap, it sets the image data at a cube side.</para>
  39520. </summary>
  39521. </member>
  39522. <member name="M:Godot.VisualServer.TextureSetDataPartial(Godot.RID,Godot.Image,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  39523. <summary>
  39524. <para>Sets a part of the data for a texture. Warning: this function calls the underlying graphics API directly and may corrupt your texture if used improperly.</para>
  39525. </summary>
  39526. </member>
  39527. <member name="M:Godot.VisualServer.TextureGetData(Godot.RID,System.Int32)">
  39528. <summary>
  39529. <para>Returns a copy of a texture's image unless it's a CubeMap, in which case it returns the <see cref="T:Godot.RID"/> of the image at one of the cubes sides.</para>
  39530. </summary>
  39531. </member>
  39532. <member name="M:Godot.VisualServer.TextureSetFlags(Godot.RID,System.UInt32)">
  39533. <summary>
  39534. <para>Sets the texture's flags. See <see cref="T:Godot.VisualServer.TextureFlags"/> for options.</para>
  39535. </summary>
  39536. </member>
  39537. <member name="M:Godot.VisualServer.TextureGetFlags(Godot.RID)">
  39538. <summary>
  39539. <para>Returns the flags of a texture.</para>
  39540. </summary>
  39541. </member>
  39542. <member name="M:Godot.VisualServer.TextureGetFormat(Godot.RID)">
  39543. <summary>
  39544. <para>Returns the format of the texture's image.</para>
  39545. </summary>
  39546. </member>
  39547. <member name="M:Godot.VisualServer.TextureGetType(Godot.RID)">
  39548. <summary>
  39549. <para>Returns the type of the texture, can be any of the <see cref="T:Godot.VisualServer.TextureType"/>.</para>
  39550. </summary>
  39551. </member>
  39552. <member name="M:Godot.VisualServer.TextureGetTexid(Godot.RID)">
  39553. <summary>
  39554. <para>Returns the opengl id of the texture's image.</para>
  39555. </summary>
  39556. </member>
  39557. <member name="M:Godot.VisualServer.TextureGetWidth(Godot.RID)">
  39558. <summary>
  39559. <para>Returns the texture's width.</para>
  39560. </summary>
  39561. </member>
  39562. <member name="M:Godot.VisualServer.TextureGetHeight(Godot.RID)">
  39563. <summary>
  39564. <para>Returns the texture's height.</para>
  39565. </summary>
  39566. </member>
  39567. <member name="M:Godot.VisualServer.TextureGetDepth(Godot.RID)">
  39568. <summary>
  39569. <para>Returns the depth of the texture.</para>
  39570. </summary>
  39571. </member>
  39572. <member name="M:Godot.VisualServer.TextureSetSizeOverride(Godot.RID,System.Int32,System.Int32,System.Int32)">
  39573. <summary>
  39574. <para>Resizes the texture to the specified dimensions.</para>
  39575. </summary>
  39576. </member>
  39577. <member name="M:Godot.VisualServer.TextureSetPath(Godot.RID,System.String)">
  39578. <summary>
  39579. <para>Sets the texture's path.</para>
  39580. </summary>
  39581. </member>
  39582. <member name="M:Godot.VisualServer.TextureGetPath(Godot.RID)">
  39583. <summary>
  39584. <para>Returns the texture's path.</para>
  39585. </summary>
  39586. </member>
  39587. <member name="M:Godot.VisualServer.TextureSetShrinkAllX2OnSetData(System.Boolean)">
  39588. <summary>
  39589. <para>If <c>true</c>, sets internal processes to shrink all image data to half the size.</para>
  39590. </summary>
  39591. </member>
  39592. <member name="M:Godot.VisualServer.TextureBind(Godot.RID,System.UInt32)">
  39593. <summary>
  39594. <para>Binds the texture to a texture slot.</para>
  39595. </summary>
  39596. </member>
  39597. <member name="M:Godot.VisualServer.TextureDebugUsage">
  39598. <summary>
  39599. <para>Returns a list of all the textures and their information.</para>
  39600. </summary>
  39601. </member>
  39602. <member name="M:Godot.VisualServer.TexturesKeepOriginal(System.Boolean)">
  39603. <summary>
  39604. <para>If <c>true</c>, the image will be stored in the texture's images array if overwritten.</para>
  39605. </summary>
  39606. </member>
  39607. <member name="M:Godot.VisualServer.SkyCreate">
  39608. <summary>
  39609. <para>Creates an empty sky and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>sky_*</c> VisualServer functions.</para>
  39610. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39611. </summary>
  39612. </member>
  39613. <member name="M:Godot.VisualServer.SkySetTexture(Godot.RID,Godot.RID,System.Int32)">
  39614. <summary>
  39615. <para>Sets a sky's texture.</para>
  39616. </summary>
  39617. </member>
  39618. <member name="M:Godot.VisualServer.ShaderCreate">
  39619. <summary>
  39620. <para>Creates an empty shader and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>shader_*</c> VisualServer functions.</para>
  39621. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39622. </summary>
  39623. </member>
  39624. <member name="M:Godot.VisualServer.ShaderSetCode(Godot.RID,System.String)">
  39625. <summary>
  39626. <para>Sets a shader's code.</para>
  39627. </summary>
  39628. </member>
  39629. <member name="M:Godot.VisualServer.ShaderGetCode(Godot.RID)">
  39630. <summary>
  39631. <para>Returns a shader's code.</para>
  39632. </summary>
  39633. </member>
  39634. <member name="M:Godot.VisualServer.ShaderGetParamList(Godot.RID)">
  39635. <summary>
  39636. <para>Returns the parameters of a shader.</para>
  39637. </summary>
  39638. </member>
  39639. <member name="M:Godot.VisualServer.ShaderSetDefaultTextureParam(Godot.RID,System.String,Godot.RID)">
  39640. <summary>
  39641. <para>Sets a shader's default texture. Overwrites the texture given by name.</para>
  39642. </summary>
  39643. </member>
  39644. <member name="M:Godot.VisualServer.ShaderGetDefaultTextureParam(Godot.RID,System.String)">
  39645. <summary>
  39646. <para>Returns a default texture from a shader searched by name.</para>
  39647. </summary>
  39648. </member>
  39649. <member name="M:Godot.VisualServer.MaterialCreate">
  39650. <summary>
  39651. <para>Creates an empty material and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>material_*</c> VisualServer functions.</para>
  39652. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39653. </summary>
  39654. </member>
  39655. <member name="M:Godot.VisualServer.MaterialSetShader(Godot.RID,Godot.RID)">
  39656. <summary>
  39657. <para>Sets a shader material's shader.</para>
  39658. </summary>
  39659. </member>
  39660. <member name="M:Godot.VisualServer.MaterialGetShader(Godot.RID)">
  39661. <summary>
  39662. <para>Returns the shader of a certain material's shader. Returns an empty RID if the material doesn't have a shader.</para>
  39663. </summary>
  39664. </member>
  39665. <member name="M:Godot.VisualServer.MaterialSetParam(Godot.RID,System.String,System.Object)">
  39666. <summary>
  39667. <para>Sets a material's parameter.</para>
  39668. </summary>
  39669. </member>
  39670. <member name="M:Godot.VisualServer.MaterialGetParam(Godot.RID,System.String)">
  39671. <summary>
  39672. <para>Returns the value of a certain material's parameter.</para>
  39673. </summary>
  39674. </member>
  39675. <member name="M:Godot.VisualServer.MaterialGetParamDefault(Godot.RID,System.String)">
  39676. <summary>
  39677. <para>Returns the default value for the param if available. Otherwise returns an empty <c>Variant</c>.</para>
  39678. </summary>
  39679. </member>
  39680. <member name="M:Godot.VisualServer.MaterialSetRenderPriority(Godot.RID,System.Int32)">
  39681. <summary>
  39682. <para>Sets a material's render priority.</para>
  39683. </summary>
  39684. </member>
  39685. <member name="M:Godot.VisualServer.MaterialSetLineWidth(Godot.RID,System.Single)">
  39686. <summary>
  39687. <para>Sets a material's line width.</para>
  39688. </summary>
  39689. </member>
  39690. <member name="M:Godot.VisualServer.MaterialSetNextPass(Godot.RID,Godot.RID)">
  39691. <summary>
  39692. <para>Sets an object's next material.</para>
  39693. </summary>
  39694. </member>
  39695. <member name="M:Godot.VisualServer.MeshCreate">
  39696. <summary>
  39697. <para>Creates a new mesh and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>mesh_*</c> VisualServer functions.</para>
  39698. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39699. <para>To place in a scene, attach this mesh to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  39700. </summary>
  39701. </member>
  39702. <member name="M:Godot.VisualServer.MeshSurfaceGetFormatOffset(System.UInt32,System.Int32,System.Int32,System.Int32)">
  39703. <summary>
  39704. <para>Function is unused in Godot 3.x.</para>
  39705. </summary>
  39706. </member>
  39707. <member name="M:Godot.VisualServer.MeshSurfaceGetFormatStride(System.UInt32,System.Int32,System.Int32)">
  39708. <summary>
  39709. <para>Function is unused in Godot 3.x.</para>
  39710. </summary>
  39711. </member>
  39712. <member name="M:Godot.VisualServer.MeshAddSurfaceFromArrays(Godot.RID,Godot.VisualServer.PrimitiveType,Godot.Collections.Array,Godot.Collections.Array,System.UInt32)">
  39713. <summary>
  39714. <para>Adds a surface generated from the Arrays to a mesh. See <see cref="T:Godot.VisualServer.PrimitiveType"/> constants for types.</para>
  39715. </summary>
  39716. <param name="blendShapes">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  39717. </member>
  39718. <member name="M:Godot.VisualServer.MeshSetBlendShapeCount(Godot.RID,System.Int32)">
  39719. <summary>
  39720. <para>Sets a mesh's blend shape count.</para>
  39721. </summary>
  39722. </member>
  39723. <member name="M:Godot.VisualServer.MeshGetBlendShapeCount(Godot.RID)">
  39724. <summary>
  39725. <para>Returns a mesh's blend shape count.</para>
  39726. </summary>
  39727. </member>
  39728. <member name="M:Godot.VisualServer.MeshSetBlendShapeMode(Godot.RID,Godot.VisualServer.BlendShapeMode)">
  39729. <summary>
  39730. <para>Sets a mesh's blend shape mode.</para>
  39731. </summary>
  39732. </member>
  39733. <member name="M:Godot.VisualServer.MeshGetBlendShapeMode(Godot.RID)">
  39734. <summary>
  39735. <para>Returns a mesh's blend shape mode.</para>
  39736. </summary>
  39737. </member>
  39738. <member name="M:Godot.VisualServer.MeshSurfaceUpdateRegion(Godot.RID,System.Int32,System.Int32,System.Byte[])">
  39739. <summary>
  39740. <para>Updates a specific region of a vertex buffer for the specified surface. Warning: this function alters the vertex buffer directly with no safety mechanisms, you can easily corrupt your mesh.</para>
  39741. </summary>
  39742. </member>
  39743. <member name="M:Godot.VisualServer.MeshSurfaceSetMaterial(Godot.RID,System.Int32,Godot.RID)">
  39744. <summary>
  39745. <para>Sets a mesh's surface's material.</para>
  39746. </summary>
  39747. </member>
  39748. <member name="M:Godot.VisualServer.MeshSurfaceGetMaterial(Godot.RID,System.Int32)">
  39749. <summary>
  39750. <para>Returns a mesh's surface's material.</para>
  39751. </summary>
  39752. </member>
  39753. <member name="M:Godot.VisualServer.MeshSurfaceGetArrayLen(Godot.RID,System.Int32)">
  39754. <summary>
  39755. <para>Returns a mesh's surface's amount of vertices.</para>
  39756. </summary>
  39757. </member>
  39758. <member name="M:Godot.VisualServer.MeshSurfaceGetArrayIndexLen(Godot.RID,System.Int32)">
  39759. <summary>
  39760. <para>Returns a mesh's surface's amount of indices.</para>
  39761. </summary>
  39762. </member>
  39763. <member name="M:Godot.VisualServer.MeshSurfaceGetArray(Godot.RID,System.Int32)">
  39764. <summary>
  39765. <para>Returns a mesh's surface's vertex buffer.</para>
  39766. </summary>
  39767. </member>
  39768. <member name="M:Godot.VisualServer.MeshSurfaceGetIndexArray(Godot.RID,System.Int32)">
  39769. <summary>
  39770. <para>Returns a mesh's surface's index buffer.</para>
  39771. </summary>
  39772. </member>
  39773. <member name="M:Godot.VisualServer.MeshSurfaceGetArrays(Godot.RID,System.Int32)">
  39774. <summary>
  39775. <para>Returns a mesh's surface's buffer arrays.</para>
  39776. </summary>
  39777. </member>
  39778. <member name="M:Godot.VisualServer.MeshSurfaceGetBlendShapeArrays(Godot.RID,System.Int32)">
  39779. <summary>
  39780. <para>Returns a mesh's surface's arrays for blend shapes.</para>
  39781. </summary>
  39782. </member>
  39783. <member name="M:Godot.VisualServer.MeshSurfaceGetFormat(Godot.RID,System.Int32)">
  39784. <summary>
  39785. <para>Returns the format of a mesh's surface.</para>
  39786. </summary>
  39787. </member>
  39788. <member name="M:Godot.VisualServer.MeshSurfaceGetPrimitiveType(Godot.RID,System.Int32)">
  39789. <summary>
  39790. <para>Returns the primitive type of a mesh's surface.</para>
  39791. </summary>
  39792. </member>
  39793. <member name="M:Godot.VisualServer.MeshSurfaceGetAabb(Godot.RID,System.Int32)">
  39794. <summary>
  39795. <para>Returns a mesh's surface's aabb.</para>
  39796. </summary>
  39797. </member>
  39798. <member name="M:Godot.VisualServer.MeshSurfaceGetSkeletonAabb(Godot.RID,System.Int32)">
  39799. <summary>
  39800. <para>Returns the aabb of a mesh's surface's skeleton.</para>
  39801. </summary>
  39802. </member>
  39803. <member name="M:Godot.VisualServer.MeshRemoveSurface(Godot.RID,System.Int32)">
  39804. <summary>
  39805. <para>Removes a mesh's surface.</para>
  39806. </summary>
  39807. </member>
  39808. <member name="M:Godot.VisualServer.MeshGetSurfaceCount(Godot.RID)">
  39809. <summary>
  39810. <para>Returns a mesh's number of surfaces.</para>
  39811. </summary>
  39812. </member>
  39813. <member name="M:Godot.VisualServer.MeshSetCustomAabb(Godot.RID,Godot.AABB)">
  39814. <summary>
  39815. <para>Sets a mesh's custom aabb.</para>
  39816. </summary>
  39817. </member>
  39818. <member name="M:Godot.VisualServer.MeshGetCustomAabb(Godot.RID)">
  39819. <summary>
  39820. <para>Returns a mesh's custom aabb.</para>
  39821. </summary>
  39822. </member>
  39823. <member name="M:Godot.VisualServer.MeshClear(Godot.RID)">
  39824. <summary>
  39825. <para>Removes all surfaces from a mesh.</para>
  39826. </summary>
  39827. </member>
  39828. <member name="M:Godot.VisualServer.MultimeshCreate">
  39829. <summary>
  39830. <para>Creates a new multimesh on the VisualServer and returns an <see cref="T:Godot.RID"/> handle. This RID will be used in all <c>multimesh_*</c> VisualServer functions.</para>
  39831. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39832. <para>To place in a scene, attach this multimesh to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  39833. </summary>
  39834. </member>
  39835. <member name="M:Godot.VisualServer.MultimeshAllocate(Godot.RID,System.Int32,Godot.VisualServer.MultimeshTransformFormat,Godot.VisualServer.MultimeshColorFormat,Godot.VisualServer.MultimeshCustomDataFormat)">
  39836. <summary>
  39837. <para>Allocates space for the multimesh data. Format parameters determine how the data will be stored by OpenGL. See <see cref="T:Godot.VisualServer.MultimeshTransformFormat"/>, <see cref="T:Godot.VisualServer.MultimeshColorFormat"/>, and <see cref="T:Godot.VisualServer.MultimeshCustomDataFormat"/> for usage. Equivalent to <see cref="P:Godot.MultiMesh.InstanceCount"/>.</para>
  39838. </summary>
  39839. </member>
  39840. <member name="M:Godot.VisualServer.MultimeshGetInstanceCount(Godot.RID)">
  39841. <summary>
  39842. <para>Returns the number of instances allocated for this multimesh.</para>
  39843. </summary>
  39844. </member>
  39845. <member name="M:Godot.VisualServer.MultimeshSetMesh(Godot.RID,Godot.RID)">
  39846. <summary>
  39847. <para>Sets the mesh to be drawn by the multimesh. Equivalent to <see cref="P:Godot.MultiMesh.Mesh"/>.</para>
  39848. </summary>
  39849. </member>
  39850. <member name="M:Godot.VisualServer.MultimeshInstanceSetTransform(Godot.RID,System.Int32,Godot.Transform)">
  39851. <summary>
  39852. <para>Sets the <see cref="T:Godot.Transform"/> for this instance. Equivalent to <see cref="M:Godot.MultiMesh.SetInstanceTransform(System.Int32,Godot.Transform)"/>.</para>
  39853. </summary>
  39854. </member>
  39855. <member name="M:Godot.VisualServer.MultimeshInstanceSetTransform2d(Godot.RID,System.Int32,Godot.Transform2D)">
  39856. <summary>
  39857. <para>Sets the <see cref="T:Godot.Transform2D"/> for this instance. For use when multimesh is used in 2D. Equivalent to <see cref="M:Godot.MultiMesh.SetInstanceTransform2d(System.Int32,Godot.Transform2D)"/>.</para>
  39858. </summary>
  39859. </member>
  39860. <member name="M:Godot.VisualServer.MultimeshInstanceSetColor(Godot.RID,System.Int32,Godot.Color)">
  39861. <summary>
  39862. <para>Sets the color by which this instance will be modulated. Equivalent to <see cref="M:Godot.MultiMesh.SetInstanceColor(System.Int32,Godot.Color)"/>.</para>
  39863. </summary>
  39864. </member>
  39865. <member name="M:Godot.VisualServer.MultimeshInstanceSetCustomData(Godot.RID,System.Int32,Godot.Color)">
  39866. <summary>
  39867. <para>Sets the custom data for this instance. Custom data is passed as a <see cref="T:Godot.Color"/>, but is interpreted as a <c>vec4</c> in the shader. Equivalent to <see cref="M:Godot.MultiMesh.SetInstanceCustomData(System.Int32,Godot.Color)"/>.</para>
  39868. </summary>
  39869. </member>
  39870. <member name="M:Godot.VisualServer.MultimeshGetMesh(Godot.RID)">
  39871. <summary>
  39872. <para>Returns the RID of the mesh that will be used in drawing this multimesh.</para>
  39873. </summary>
  39874. </member>
  39875. <member name="M:Godot.VisualServer.MultimeshGetAabb(Godot.RID)">
  39876. <summary>
  39877. <para>Calculates and returns the axis-aligned bounding box that encloses all instances within the multimesh.</para>
  39878. </summary>
  39879. </member>
  39880. <member name="M:Godot.VisualServer.MultimeshInstanceGetTransform(Godot.RID,System.Int32)">
  39881. <summary>
  39882. <para>Returns the <see cref="T:Godot.Transform"/> of the specified instance.</para>
  39883. </summary>
  39884. </member>
  39885. <member name="M:Godot.VisualServer.MultimeshInstanceGetTransform2d(Godot.RID,System.Int32)">
  39886. <summary>
  39887. <para>Returns the <see cref="T:Godot.Transform2D"/> of the specified instance. For use when the multimesh is set to use 2D transforms.</para>
  39888. </summary>
  39889. </member>
  39890. <member name="M:Godot.VisualServer.MultimeshInstanceGetColor(Godot.RID,System.Int32)">
  39891. <summary>
  39892. <para>Returns the color by which the specified instance will be modulated.</para>
  39893. </summary>
  39894. </member>
  39895. <member name="M:Godot.VisualServer.MultimeshInstanceGetCustomData(Godot.RID,System.Int32)">
  39896. <summary>
  39897. <para>Returns the custom data associated with the specified instance.</para>
  39898. </summary>
  39899. </member>
  39900. <member name="M:Godot.VisualServer.MultimeshSetVisibleInstances(Godot.RID,System.Int32)">
  39901. <summary>
  39902. <para>Sets the number of instances visible at a given time. If -1, all instances that have been allocated are drawn. Equivalent to <see cref="P:Godot.MultiMesh.VisibleInstanceCount"/>.</para>
  39903. </summary>
  39904. </member>
  39905. <member name="M:Godot.VisualServer.MultimeshGetVisibleInstances(Godot.RID)">
  39906. <summary>
  39907. <para>Returns the number of visible instances for this multimesh.</para>
  39908. </summary>
  39909. </member>
  39910. <member name="M:Godot.VisualServer.MultimeshSetAsBulkArray(Godot.RID,System.Single[])">
  39911. <summary>
  39912. <para>Sets all data related to the instances in one go. This is especially useful when loading the data from disk or preparing the data from GDNative.</para>
  39913. <para></para>
  39914. <para>All data is packed in one large float array. An array may look like this: Transform for instance 1, color data for instance 1, custom data for instance 1, transform for instance 2, color data for instance 2, etc.</para>
  39915. <para></para>
  39916. <para><see cref="T:Godot.Transform"/> is stored as 12 floats, <see cref="T:Godot.Transform2D"/> is stored as 8 floats, <c>COLOR_8BIT</c> / <c>CUSTOM_DATA_8BIT</c> is stored as 1 float (4 bytes as is) and <c>COLOR_FLOAT</c> / <c>CUSTOM_DATA_FLOAT</c> is stored as 4 floats.</para>
  39917. </summary>
  39918. </member>
  39919. <member name="M:Godot.VisualServer.ImmediateCreate">
  39920. <summary>
  39921. <para>Creates an immediate geometry and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>immediate_*</c> VisualServer functions.</para>
  39922. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39923. <para>To place in a scene, attach this immediate geometry to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  39924. </summary>
  39925. </member>
  39926. <member name="M:Godot.VisualServer.ImmediateBegin(Godot.RID,Godot.VisualServer.PrimitiveType,Godot.RID)">
  39927. <summary>
  39928. <para>Sets up <see cref="T:Godot.ImmediateGeometry"/> internals to prepare for drawing. Equivalent to <see cref="M:Godot.ImmediateGeometry.Begin(Godot.Mesh.PrimitiveType,Godot.Texture)"/>.</para>
  39929. </summary>
  39930. </member>
  39931. <member name="M:Godot.VisualServer.ImmediateVertex(Godot.RID,Godot.Vector3)">
  39932. <summary>
  39933. <para>Adds the next vertex using the information provided in advance. Equivalent to <see cref="M:Godot.ImmediateGeometry.AddVertex(Godot.Vector3)"/>.</para>
  39934. </summary>
  39935. </member>
  39936. <member name="M:Godot.VisualServer.ImmediateVertex2d(Godot.RID,Godot.Vector2)">
  39937. <summary>
  39938. <para>Adds the next vertex using the information provided in advance. This is a helper class that calls <see cref="M:Godot.VisualServer.ImmediateVertex(Godot.RID,Godot.Vector3)"/> under the hood. Equivalent to <see cref="M:Godot.ImmediateGeometry.AddVertex(Godot.Vector3)"/>.</para>
  39939. </summary>
  39940. </member>
  39941. <member name="M:Godot.VisualServer.ImmediateNormal(Godot.RID,Godot.Vector3)">
  39942. <summary>
  39943. <para>Sets the normal to be used with next vertex. Equivalent to <see cref="M:Godot.ImmediateGeometry.SetNormal(Godot.Vector3)"/>.</para>
  39944. </summary>
  39945. </member>
  39946. <member name="M:Godot.VisualServer.ImmediateTangent(Godot.RID,Godot.Plane)">
  39947. <summary>
  39948. <para>Sets the tangent to be used with next vertex. Equivalent to <see cref="M:Godot.ImmediateGeometry.SetTangent(Godot.Plane)"/>.</para>
  39949. </summary>
  39950. </member>
  39951. <member name="M:Godot.VisualServer.ImmediateColor(Godot.RID,Godot.Color)">
  39952. <summary>
  39953. <para>Sets the color to be used with next vertex. Equivalent to <see cref="M:Godot.ImmediateGeometry.SetColor(Godot.Color)"/>.</para>
  39954. </summary>
  39955. </member>
  39956. <member name="M:Godot.VisualServer.ImmediateUv(Godot.RID,Godot.Vector2)">
  39957. <summary>
  39958. <para>Sets the UV to be used with next vertex. Equivalent to <see cref="M:Godot.ImmediateGeometry.SetUv(Godot.Vector2)"/>.</para>
  39959. </summary>
  39960. </member>
  39961. <member name="M:Godot.VisualServer.ImmediateUv2(Godot.RID,Godot.Vector2)">
  39962. <summary>
  39963. <para>Sets the UV2 to be used with next vertex. Equivalent to <see cref="M:Godot.ImmediateGeometry.SetUv2(Godot.Vector2)"/>.</para>
  39964. </summary>
  39965. </member>
  39966. <member name="M:Godot.VisualServer.ImmediateEnd(Godot.RID)">
  39967. <summary>
  39968. <para>Ends drawing the <see cref="T:Godot.ImmediateGeometry"/> and displays it. Equivalent to <see cref="M:Godot.ImmediateGeometry.End"/>.</para>
  39969. </summary>
  39970. </member>
  39971. <member name="M:Godot.VisualServer.ImmediateClear(Godot.RID)">
  39972. <summary>
  39973. <para>Clears everything that was set up between <see cref="M:Godot.VisualServer.ImmediateBegin(Godot.RID,Godot.VisualServer.PrimitiveType,Godot.RID)"/> and <see cref="M:Godot.VisualServer.ImmediateEnd(Godot.RID)"/>. Equivalent to <see cref="M:Godot.ImmediateGeometry.Clear"/>.</para>
  39974. </summary>
  39975. </member>
  39976. <member name="M:Godot.VisualServer.ImmediateSetMaterial(Godot.RID,Godot.RID)">
  39977. <summary>
  39978. <para>Sets the material to be used to draw the <see cref="T:Godot.ImmediateGeometry"/>.</para>
  39979. </summary>
  39980. </member>
  39981. <member name="M:Godot.VisualServer.ImmediateGetMaterial(Godot.RID)">
  39982. <summary>
  39983. <para>Returns the material assigned to the <see cref="T:Godot.ImmediateGeometry"/>.</para>
  39984. </summary>
  39985. </member>
  39986. <member name="M:Godot.VisualServer.SkeletonCreate">
  39987. <summary>
  39988. <para>Creates a skeleton and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>skeleton_*</c> VisualServer functions.</para>
  39989. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  39990. </summary>
  39991. </member>
  39992. <member name="M:Godot.VisualServer.SkeletonAllocate(Godot.RID,System.Int32,System.Boolean)">
  39993. <summary>
  39994. <para>Allocates the GPU buffers for this skeleton.</para>
  39995. </summary>
  39996. </member>
  39997. <member name="M:Godot.VisualServer.SkeletonGetBoneCount(Godot.RID)">
  39998. <summary>
  39999. <para>Returns the number of bones allocated for this skeleton.</para>
  40000. </summary>
  40001. </member>
  40002. <member name="M:Godot.VisualServer.SkeletonBoneSetTransform(Godot.RID,System.Int32,Godot.Transform)">
  40003. <summary>
  40004. <para>Sets the <see cref="T:Godot.Transform"/> for a specific bone of this skeleton.</para>
  40005. </summary>
  40006. </member>
  40007. <member name="M:Godot.VisualServer.SkeletonBoneGetTransform(Godot.RID,System.Int32)">
  40008. <summary>
  40009. <para>Returns the <see cref="T:Godot.Transform"/> set for a specific bone of this skeleton.</para>
  40010. </summary>
  40011. </member>
  40012. <member name="M:Godot.VisualServer.SkeletonBoneSetTransform2d(Godot.RID,System.Int32,Godot.Transform2D)">
  40013. <summary>
  40014. <para>Sets the <see cref="T:Godot.Transform2D"/> for a specific bone of this skeleton.</para>
  40015. </summary>
  40016. </member>
  40017. <member name="M:Godot.VisualServer.SkeletonBoneGetTransform2d(Godot.RID,System.Int32)">
  40018. <summary>
  40019. <para>Returns the <see cref="T:Godot.Transform2D"/> set for a specific bone of this skeleton.</para>
  40020. </summary>
  40021. </member>
  40022. <member name="M:Godot.VisualServer.DirectionalLightCreate">
  40023. <summary>
  40024. <para>Creates a directional light and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID can be used in most <c>light_*</c> VisualServer functions.</para>
  40025. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40026. <para>To place in a scene, attach this directional light to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  40027. </summary>
  40028. </member>
  40029. <member name="M:Godot.VisualServer.OmniLightCreate">
  40030. <summary>
  40031. <para>Creates a new omni light and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID can be used in most <c>light_*</c> VisualServer functions.</para>
  40032. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40033. <para>To place in a scene, attach this omni light to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  40034. </summary>
  40035. </member>
  40036. <member name="M:Godot.VisualServer.SpotLightCreate">
  40037. <summary>
  40038. <para>Creates a spot light and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID can be used in most <c>light_*</c> VisualServer functions.</para>
  40039. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40040. <para>To place in a scene, attach this spot light to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  40041. </summary>
  40042. </member>
  40043. <member name="M:Godot.VisualServer.LightSetColor(Godot.RID,Godot.Color)">
  40044. <summary>
  40045. <para>Sets the color of the light. Equivalent to <see cref="P:Godot.Light.LightColor"/>.</para>
  40046. </summary>
  40047. </member>
  40048. <member name="M:Godot.VisualServer.LightSetParam(Godot.RID,Godot.VisualServer.LightParam,System.Single)">
  40049. <summary>
  40050. <para>Sets the specified light parameter. See <see cref="T:Godot.VisualServer.LightParam"/> for options. Equivalent to <see cref="M:Godot.Light.SetParam(Godot.Light.Param,System.Single)"/>.</para>
  40051. </summary>
  40052. </member>
  40053. <member name="M:Godot.VisualServer.LightSetShadow(Godot.RID,System.Boolean)">
  40054. <summary>
  40055. <para>If <c>true</c>, light will cast shadows. Equivalent to <see cref="P:Godot.Light.ShadowEnabled"/>.</para>
  40056. </summary>
  40057. </member>
  40058. <member name="M:Godot.VisualServer.LightSetShadowColor(Godot.RID,Godot.Color)">
  40059. <summary>
  40060. <para>Sets the color of the shadow cast by the light. Equivalent to <see cref="P:Godot.Light.ShadowColor"/>.</para>
  40061. </summary>
  40062. </member>
  40063. <member name="M:Godot.VisualServer.LightSetProjector(Godot.RID,Godot.RID)">
  40064. <summary>
  40065. <para>Not implemented in Godot 3.x.</para>
  40066. </summary>
  40067. </member>
  40068. <member name="M:Godot.VisualServer.LightSetNegative(Godot.RID,System.Boolean)">
  40069. <summary>
  40070. <para>If <c>true</c>, light will subtract light instead of adding light. Equivalent to <see cref="P:Godot.Light.LightNegative"/>.</para>
  40071. </summary>
  40072. </member>
  40073. <member name="M:Godot.VisualServer.LightSetCullMask(Godot.RID,System.UInt32)">
  40074. <summary>
  40075. <para>Sets the cull mask for this Light. Lights only affect objects in the selected layers. Equivalent to <see cref="P:Godot.Light.LightCullMask"/>.</para>
  40076. </summary>
  40077. </member>
  40078. <member name="M:Godot.VisualServer.LightSetReverseCullFaceMode(Godot.RID,System.Boolean)">
  40079. <summary>
  40080. <para>If <c>true</c>, reverses the backface culling of the mesh. This can be useful when you have a flat mesh that has a light behind it. If you need to cast a shadow on both sides of the mesh, set the mesh to use double sided shadows with <see cref="M:Godot.VisualServer.InstanceGeometrySetCastShadowsSetting(Godot.RID,Godot.VisualServer.ShadowCastingSetting)"/>. Equivalent to <see cref="P:Godot.Light.ShadowReverseCullFace"/>.</para>
  40081. </summary>
  40082. </member>
  40083. <member name="M:Godot.VisualServer.LightSetUseGi(Godot.RID,System.Boolean)">
  40084. <summary>
  40085. <para>Sets whether GI probes capture light information from this light.</para>
  40086. </summary>
  40087. </member>
  40088. <member name="M:Godot.VisualServer.LightOmniSetShadowMode(Godot.RID,Godot.VisualServer.LightOmniShadowMode)">
  40089. <summary>
  40090. <para>Sets whether to use a dual paraboloid or a cubemap for the shadow map. Dual paraboloid is faster but may suffer from artifacts. Equivalent to <see cref="P:Godot.OmniLight.OmniShadowMode"/>.</para>
  40091. </summary>
  40092. </member>
  40093. <member name="M:Godot.VisualServer.LightOmniSetShadowDetail(Godot.RID,Godot.VisualServer.LightOmniShadowDetail)">
  40094. <summary>
  40095. <para>Sets whether to use vertical or horizontal detail for this omni light. This can be used to alleviate artifacts in the shadow map. Equivalent to <see cref="P:Godot.OmniLight.OmniShadowDetail"/>.</para>
  40096. </summary>
  40097. </member>
  40098. <member name="M:Godot.VisualServer.LightDirectionalSetShadowMode(Godot.RID,Godot.VisualServer.LightDirectionalShadowMode)">
  40099. <summary>
  40100. <para>Sets the shadow mode for this directional light. Equivalent to <see cref="P:Godot.DirectionalLight.DirectionalShadowMode"/>. See <see cref="T:Godot.VisualServer.LightDirectionalShadowMode"/> for options.</para>
  40101. </summary>
  40102. </member>
  40103. <member name="M:Godot.VisualServer.LightDirectionalSetBlendSplits(Godot.RID,System.Boolean)">
  40104. <summary>
  40105. <para>If <c>true</c>, this directional light will blend between shadow map splits resulting in a smoother transition between them. Equivalent to <see cref="P:Godot.DirectionalLight.DirectionalShadowBlendSplits"/>.</para>
  40106. </summary>
  40107. </member>
  40108. <member name="M:Godot.VisualServer.LightDirectionalSetShadowDepthRangeMode(Godot.RID,Godot.VisualServer.LightDirectionalShadowDepthRangeMode)">
  40109. <summary>
  40110. <para>Sets the shadow depth range mode for this directional light. Equivalent to <see cref="P:Godot.DirectionalLight.DirectionalShadowDepthRange"/>. See <see cref="T:Godot.VisualServer.LightDirectionalShadowDepthRangeMode"/> for options.</para>
  40111. </summary>
  40112. </member>
  40113. <member name="M:Godot.VisualServer.ReflectionProbeCreate">
  40114. <summary>
  40115. <para>Creates a reflection probe and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>reflection_probe_*</c> VisualServer functions.</para>
  40116. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40117. <para>To place in a scene, attach this reflection probe to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  40118. </summary>
  40119. </member>
  40120. <member name="M:Godot.VisualServer.ReflectionProbeSetUpdateMode(Godot.RID,Godot.VisualServer.ReflectionProbeUpdateMode)">
  40121. <summary>
  40122. <para>Sets how often the reflection probe updates. Can either be once or every frame. See <see cref="T:Godot.VisualServer.ReflectionProbeUpdateMode"/> for options.</para>
  40123. </summary>
  40124. </member>
  40125. <member name="M:Godot.VisualServer.ReflectionProbeSetIntensity(Godot.RID,System.Single)">
  40126. <summary>
  40127. <para>Sets the intensity of the reflection probe. Intensity modulates the strength of the reflection. Equivalent to <see cref="P:Godot.ReflectionProbe.Intensity"/>.</para>
  40128. </summary>
  40129. </member>
  40130. <member name="M:Godot.VisualServer.ReflectionProbeSetInteriorAmbient(Godot.RID,Godot.Color)">
  40131. <summary>
  40132. <para>Sets the ambient light color for this reflection probe when set to interior mode. Equivalent to <see cref="P:Godot.ReflectionProbe.InteriorAmbientColor"/>.</para>
  40133. </summary>
  40134. </member>
  40135. <member name="M:Godot.VisualServer.ReflectionProbeSetInteriorAmbientEnergy(Godot.RID,System.Single)">
  40136. <summary>
  40137. <para>Sets the energy multiplier for this reflection probes ambient light contribution when set to interior mode. Equivalent to <see cref="P:Godot.ReflectionProbe.InteriorAmbientEnergy"/>.</para>
  40138. </summary>
  40139. </member>
  40140. <member name="M:Godot.VisualServer.ReflectionProbeSetInteriorAmbientProbeContribution(Godot.RID,System.Single)">
  40141. <summary>
  40142. <para>Sets the contribution value for how much the reflection affects the ambient light for this reflection probe when set to interior mode. Useful so that ambient light matches the color of the room. Equivalent to <see cref="P:Godot.ReflectionProbe.InteriorAmbientContrib"/>.</para>
  40143. </summary>
  40144. </member>
  40145. <member name="M:Godot.VisualServer.ReflectionProbeSetMaxDistance(Godot.RID,System.Single)">
  40146. <summary>
  40147. <para>Sets the max distance away from the probe an object can be before it is culled. Equivalent to <see cref="P:Godot.ReflectionProbe.MaxDistance"/>.</para>
  40148. </summary>
  40149. </member>
  40150. <member name="M:Godot.VisualServer.ReflectionProbeSetExtents(Godot.RID,Godot.Vector3)">
  40151. <summary>
  40152. <para>Sets the size of the area that the reflection probe will capture. Equivalent to <see cref="P:Godot.ReflectionProbe.Extents"/>.</para>
  40153. </summary>
  40154. </member>
  40155. <member name="M:Godot.VisualServer.ReflectionProbeSetOriginOffset(Godot.RID,Godot.Vector3)">
  40156. <summary>
  40157. <para>Sets the origin offset to be used when this reflection probe is in box project mode. Equivalent to <see cref="P:Godot.ReflectionProbe.OriginOffset"/>.</para>
  40158. </summary>
  40159. </member>
  40160. <member name="M:Godot.VisualServer.ReflectionProbeSetAsInterior(Godot.RID,System.Boolean)">
  40161. <summary>
  40162. <para>If <c>true</c>, reflections will ignore sky contribution. Equivalent to <see cref="P:Godot.ReflectionProbe.InteriorEnable"/>.</para>
  40163. </summary>
  40164. </member>
  40165. <member name="M:Godot.VisualServer.ReflectionProbeSetEnableBoxProjection(Godot.RID,System.Boolean)">
  40166. <summary>
  40167. <para>If <c>true</c>, uses box projection. This can make reflections look more correct in certain situations. Equivalent to <see cref="P:Godot.ReflectionProbe.BoxProjection"/>.</para>
  40168. </summary>
  40169. </member>
  40170. <member name="M:Godot.VisualServer.ReflectionProbeSetEnableShadows(Godot.RID,System.Boolean)">
  40171. <summary>
  40172. <para>If <c>true</c>, computes shadows in the reflection probe. This makes the reflection much slower to compute. Equivalent to <see cref="P:Godot.ReflectionProbe.EnableShadows"/>.</para>
  40173. </summary>
  40174. </member>
  40175. <member name="M:Godot.VisualServer.ReflectionProbeSetCullMask(Godot.RID,System.UInt32)">
  40176. <summary>
  40177. <para>Sets the render cull mask for this reflection probe. Only instances with a matching cull mask will be rendered by this probe. Equivalent to <see cref="P:Godot.ReflectionProbe.CullMask"/>.</para>
  40178. </summary>
  40179. </member>
  40180. <member name="M:Godot.VisualServer.GiProbeCreate">
  40181. <summary>
  40182. <para>Creates a GI probe and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>gi_probe_*</c> VisualServer functions.</para>
  40183. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40184. <para>To place in a scene, attach this GI probe to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  40185. </summary>
  40186. </member>
  40187. <member name="M:Godot.VisualServer.GiProbeSetBounds(Godot.RID,Godot.AABB)">
  40188. <summary>
  40189. <para>Sets the axis-aligned bounding box that covers the extent of the GI probe.</para>
  40190. </summary>
  40191. </member>
  40192. <member name="M:Godot.VisualServer.GiProbeGetBounds(Godot.RID)">
  40193. <summary>
  40194. <para>Returns the axis-aligned bounding box that covers the full extent of the GI probe.</para>
  40195. </summary>
  40196. </member>
  40197. <member name="M:Godot.VisualServer.GiProbeSetCellSize(Godot.RID,System.Single)">
  40198. <summary>
  40199. <para>Sets the size of individual cells within the GI probe.</para>
  40200. </summary>
  40201. </member>
  40202. <member name="M:Godot.VisualServer.GiProbeGetCellSize(Godot.RID)">
  40203. <summary>
  40204. <para>Returns the cell size set by <see cref="M:Godot.VisualServer.GiProbeSetCellSize(Godot.RID,System.Single)"/>.</para>
  40205. </summary>
  40206. </member>
  40207. <member name="M:Godot.VisualServer.GiProbeSetToCellXform(Godot.RID,Godot.Transform)">
  40208. <summary>
  40209. <para>Sets the to cell <see cref="T:Godot.Transform"/> for this GI probe.</para>
  40210. </summary>
  40211. </member>
  40212. <member name="M:Godot.VisualServer.GiProbeGetToCellXform(Godot.RID)">
  40213. <summary>
  40214. <para>Returns the Transform set by <see cref="M:Godot.VisualServer.GiProbeSetToCellXform(Godot.RID,Godot.Transform)"/>.</para>
  40215. </summary>
  40216. </member>
  40217. <member name="M:Godot.VisualServer.GiProbeSetDynamicData(Godot.RID,System.Int32[])">
  40218. <summary>
  40219. <para>Sets the data to be used in the GI probe for lighting calculations. Normally this is created and called internally within the <see cref="T:Godot.GIProbe"/> node. You should not try to set this yourself.</para>
  40220. </summary>
  40221. </member>
  40222. <member name="M:Godot.VisualServer.GiProbeGetDynamicData(Godot.RID)">
  40223. <summary>
  40224. <para>Returns the data used by the GI probe.</para>
  40225. </summary>
  40226. </member>
  40227. <member name="M:Godot.VisualServer.GiProbeSetDynamicRange(Godot.RID,System.Int32)">
  40228. <summary>
  40229. <para>Sets the dynamic range of the GI probe. Dynamic range sets the limit for how bright lights can be. A smaller range captures greater detail but limits how bright lights can be. Equivalent to <see cref="P:Godot.GIProbe.DynamicRange"/>.</para>
  40230. </summary>
  40231. </member>
  40232. <member name="M:Godot.VisualServer.GiProbeGetDynamicRange(Godot.RID)">
  40233. <summary>
  40234. <para>Returns the dynamic range set for this GI probe. Equivalent to <see cref="P:Godot.GIProbe.DynamicRange"/>.</para>
  40235. </summary>
  40236. </member>
  40237. <member name="M:Godot.VisualServer.GiProbeSetEnergy(Godot.RID,System.Single)">
  40238. <summary>
  40239. <para>Sets the energy multiplier for this GI probe. A higher energy makes the indirect light from the GI probe brighter. Equivalent to <see cref="P:Godot.GIProbe.Energy"/>.</para>
  40240. </summary>
  40241. </member>
  40242. <member name="M:Godot.VisualServer.GiProbeGetEnergy(Godot.RID)">
  40243. <summary>
  40244. <para>Returns the energy multiplier for this GI probe. Equivalent to <see cref="P:Godot.GIProbe.Energy"/>.</para>
  40245. </summary>
  40246. </member>
  40247. <member name="M:Godot.VisualServer.GiProbeSetBias(Godot.RID,System.Single)">
  40248. <summary>
  40249. <para>Sets the bias value to avoid self-occlusion. Equivalent to <see cref="P:Godot.GIProbe.Bias"/>.</para>
  40250. </summary>
  40251. </member>
  40252. <member name="M:Godot.VisualServer.GiProbeGetBias(Godot.RID)">
  40253. <summary>
  40254. <para>Returns the bias value for the GI probe. Bias is used to avoid self occlusion. Equivalent to <see cref="P:Godot.GIProbeData.Bias"/>.</para>
  40255. </summary>
  40256. </member>
  40257. <member name="M:Godot.VisualServer.GiProbeSetNormalBias(Godot.RID,System.Single)">
  40258. <summary>
  40259. <para>Sets the normal bias for this GI probe. Normal bias behaves similar to the other form of bias and may help reduce self-occlusion. Equivalent to <see cref="P:Godot.GIProbe.NormalBias"/>.</para>
  40260. </summary>
  40261. </member>
  40262. <member name="M:Godot.VisualServer.GiProbeGetNormalBias(Godot.RID)">
  40263. <summary>
  40264. <para>Returns the normal bias for this GI probe. Equivalent to <see cref="P:Godot.GIProbe.NormalBias"/>.</para>
  40265. </summary>
  40266. </member>
  40267. <member name="M:Godot.VisualServer.GiProbeSetPropagation(Godot.RID,System.Single)">
  40268. <summary>
  40269. <para>Sets the propagation of light within this GI probe. Equivalent to <see cref="P:Godot.GIProbe.Propagation"/>.</para>
  40270. </summary>
  40271. </member>
  40272. <member name="M:Godot.VisualServer.GiProbeGetPropagation(Godot.RID)">
  40273. <summary>
  40274. <para>Returns the propagation value for this GI probe. Equivalent to <see cref="P:Godot.GIProbe.Propagation"/>.</para>
  40275. </summary>
  40276. </member>
  40277. <member name="M:Godot.VisualServer.GiProbeSetInterior(Godot.RID,System.Boolean)">
  40278. <summary>
  40279. <para>Sets the interior value of this GI probe. A GI probe set to interior does not include the sky when calculating lighting. Equivalent to <see cref="P:Godot.GIProbe.Interior"/>.</para>
  40280. </summary>
  40281. </member>
  40282. <member name="M:Godot.VisualServer.GiProbeIsInterior(Godot.RID)">
  40283. <summary>
  40284. <para>Returns <c>true</c> if the GI probe is set to interior, meaning it does not account for sky light. Equivalent to <see cref="P:Godot.GIProbe.Interior"/>.</para>
  40285. </summary>
  40286. </member>
  40287. <member name="M:Godot.VisualServer.GiProbeSetCompress(Godot.RID,System.Boolean)">
  40288. <summary>
  40289. <para>Sets the compression setting for the GI probe data. Compressed data will take up less space but may look worse. Equivalent to <see cref="P:Godot.GIProbe.Compress"/>.</para>
  40290. </summary>
  40291. </member>
  40292. <member name="M:Godot.VisualServer.GiProbeIsCompressed(Godot.RID)">
  40293. <summary>
  40294. <para>Returns <c>true</c> if the GI probe data associated with this GI probe is compressed. Equivalent to <see cref="P:Godot.GIProbe.Compress"/>.</para>
  40295. </summary>
  40296. </member>
  40297. <member name="M:Godot.VisualServer.LightmapCaptureCreate">
  40298. <summary>
  40299. <para>Creates a lightmap capture and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>lightmap_capture_*</c> VisualServer functions.</para>
  40300. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40301. <para>To place in a scene, attach this lightmap capture to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  40302. </summary>
  40303. </member>
  40304. <member name="M:Godot.VisualServer.LightmapCaptureSetBounds(Godot.RID,Godot.AABB)">
  40305. <summary>
  40306. <para>Sets the size of the area covered by the lightmap capture. Equivalent to <see cref="P:Godot.BakedLightmapData.Bounds"/>.</para>
  40307. </summary>
  40308. </member>
  40309. <member name="M:Godot.VisualServer.LightmapCaptureGetBounds(Godot.RID)">
  40310. <summary>
  40311. <para>Returns the size of the lightmap capture area.</para>
  40312. </summary>
  40313. </member>
  40314. <member name="M:Godot.VisualServer.LightmapCaptureSetOctree(Godot.RID,System.Byte[])">
  40315. <summary>
  40316. <para>Sets the octree to be used by this lightmap capture. This function is normally used by the <see cref="T:Godot.BakedLightmap"/> node. Equivalent to <see cref="P:Godot.BakedLightmapData.Octree"/>.</para>
  40317. </summary>
  40318. </member>
  40319. <member name="M:Godot.VisualServer.LightmapCaptureSetOctreeCellTransform(Godot.RID,Godot.Transform)">
  40320. <summary>
  40321. <para>Sets the octree cell transform for this lightmap capture's octree. Equivalent to <see cref="P:Godot.BakedLightmapData.CellSpaceTransform"/>.</para>
  40322. </summary>
  40323. </member>
  40324. <member name="M:Godot.VisualServer.LightmapCaptureGetOctreeCellTransform(Godot.RID)">
  40325. <summary>
  40326. <para>Returns the cell transform for this lightmap capture's octree.</para>
  40327. </summary>
  40328. </member>
  40329. <member name="M:Godot.VisualServer.LightmapCaptureSetOctreeCellSubdiv(Godot.RID,System.Int32)">
  40330. <summary>
  40331. <para>Sets the subdivision level of this lightmap capture's octree. Equivalent to <see cref="P:Godot.BakedLightmapData.CellSubdiv"/>.</para>
  40332. </summary>
  40333. </member>
  40334. <member name="M:Godot.VisualServer.LightmapCaptureGetOctreeCellSubdiv(Godot.RID)">
  40335. <summary>
  40336. <para>Returns the cell subdivision amount used by this lightmap capture's octree.</para>
  40337. </summary>
  40338. </member>
  40339. <member name="M:Godot.VisualServer.LightmapCaptureGetOctree(Godot.RID)">
  40340. <summary>
  40341. <para>Returns the octree used by the lightmap capture.</para>
  40342. </summary>
  40343. </member>
  40344. <member name="M:Godot.VisualServer.LightmapCaptureSetEnergy(Godot.RID,System.Single)">
  40345. <summary>
  40346. <para>Sets the energy multiplier for this lightmap capture. Equivalent to <see cref="P:Godot.BakedLightmapData.Energy"/>.</para>
  40347. </summary>
  40348. </member>
  40349. <member name="M:Godot.VisualServer.LightmapCaptureGetEnergy(Godot.RID)">
  40350. <summary>
  40351. <para>Returns the energy multiplier used by the lightmap capture.</para>
  40352. </summary>
  40353. </member>
  40354. <member name="M:Godot.VisualServer.ParticlesCreate">
  40355. <summary>
  40356. <para>Creates a particle system and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>particles_*</c> VisualServer functions.</para>
  40357. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40358. <para>To place in a scene, attach these particles to an instance using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/> using the returned RID.</para>
  40359. </summary>
  40360. </member>
  40361. <member name="M:Godot.VisualServer.ParticlesSetEmitting(Godot.RID,System.Boolean)">
  40362. <summary>
  40363. <para>If <c>true</c>, particles will emit over time. Setting to false does not reset the particles, but only stops their emission. Equivalent to <see cref="P:Godot.Particles.Emitting"/>.</para>
  40364. </summary>
  40365. </member>
  40366. <member name="M:Godot.VisualServer.ParticlesGetEmitting(Godot.RID)">
  40367. <summary>
  40368. <para>Returns <c>true</c> if particles are currently set to emitting.</para>
  40369. </summary>
  40370. </member>
  40371. <member name="M:Godot.VisualServer.ParticlesSetAmount(Godot.RID,System.Int32)">
  40372. <summary>
  40373. <para>Sets the number of particles to be drawn and allocates the memory for them. Equivalent to <see cref="P:Godot.Particles.Amount"/>.</para>
  40374. </summary>
  40375. </member>
  40376. <member name="M:Godot.VisualServer.ParticlesSetLifetime(Godot.RID,System.Single)">
  40377. <summary>
  40378. <para>Sets the lifetime of each particle in the system. Equivalent to <see cref="P:Godot.Particles.Lifetime"/>.</para>
  40379. </summary>
  40380. </member>
  40381. <member name="M:Godot.VisualServer.ParticlesSetOneShot(Godot.RID,System.Boolean)">
  40382. <summary>
  40383. <para>If <c>true</c>, particles will emit once and then stop. Equivalent to <see cref="P:Godot.Particles.OneShot"/>.</para>
  40384. </summary>
  40385. </member>
  40386. <member name="M:Godot.VisualServer.ParticlesSetPreProcessTime(Godot.RID,System.Single)">
  40387. <summary>
  40388. <para>Sets the preprocess time for the particles animation. This lets you delay starting an animation until after the particles have begun emitting. Equivalent to <see cref="P:Godot.Particles.Preprocess"/>.</para>
  40389. </summary>
  40390. </member>
  40391. <member name="M:Godot.VisualServer.ParticlesSetExplosivenessRatio(Godot.RID,System.Single)">
  40392. <summary>
  40393. <para>Sets the explosiveness ratio. Equivalent to <see cref="P:Godot.Particles.Explosiveness"/>.</para>
  40394. </summary>
  40395. </member>
  40396. <member name="M:Godot.VisualServer.ParticlesSetRandomnessRatio(Godot.RID,System.Single)">
  40397. <summary>
  40398. <para>Sets the emission randomness ratio. This randomizes the emission of particles within their phase. Equivalent to <see cref="P:Godot.Particles.Randomness"/>.</para>
  40399. </summary>
  40400. </member>
  40401. <member name="M:Godot.VisualServer.ParticlesSetCustomAabb(Godot.RID,Godot.AABB)">
  40402. <summary>
  40403. <para>Sets a custom axis-aligned bounding box for the particle system. Equivalent to <see cref="P:Godot.Particles.VisibilityAabb"/>.</para>
  40404. </summary>
  40405. </member>
  40406. <member name="M:Godot.VisualServer.ParticlesSetSpeedScale(Godot.RID,System.Single)">
  40407. <summary>
  40408. <para>Sets the speed scale of the particle system. Equivalent to <see cref="P:Godot.Particles.SpeedScale"/>.</para>
  40409. </summary>
  40410. </member>
  40411. <member name="M:Godot.VisualServer.ParticlesSetUseLocalCoordinates(Godot.RID,System.Boolean)">
  40412. <summary>
  40413. <para>If <c>true</c>, particles use local coordinates. If <c>false</c> they use global coordinates. Equivalent to <see cref="P:Godot.Particles.LocalCoords"/>.</para>
  40414. </summary>
  40415. </member>
  40416. <member name="M:Godot.VisualServer.ParticlesSetProcessMaterial(Godot.RID,Godot.RID)">
  40417. <summary>
  40418. <para>Sets the material for processing the particles. Note: this is not the material used to draw the materials. Equivalent to <see cref="P:Godot.Particles.ProcessMaterial"/>.</para>
  40419. </summary>
  40420. </member>
  40421. <member name="M:Godot.VisualServer.ParticlesSetFixedFps(Godot.RID,System.Int32)">
  40422. <summary>
  40423. <para>Sets the frame rate that the particle system rendering will be fixed to. Equivalent to <see cref="P:Godot.Particles.FixedFps"/>.</para>
  40424. </summary>
  40425. </member>
  40426. <member name="M:Godot.VisualServer.ParticlesSetFractionalDelta(Godot.RID,System.Boolean)">
  40427. <summary>
  40428. <para>If <c>true</c>, uses fractional delta which smooths the movement of the particles. Equivalent to <see cref="P:Godot.Particles.FractDelta"/>.</para>
  40429. </summary>
  40430. </member>
  40431. <member name="M:Godot.VisualServer.ParticlesIsInactive(Godot.RID)">
  40432. <summary>
  40433. <para>Returns <c>true</c> if particles are not emitting and particles are set to inactive.</para>
  40434. </summary>
  40435. </member>
  40436. <member name="M:Godot.VisualServer.ParticlesRequestProcess(Godot.RID)">
  40437. <summary>
  40438. <para>Add particle system to list of particle systems that need to be updated. Update will take place on the next frame, or on the next call to <see cref="M:Godot.VisualServer.InstancesCullAabb(Godot.AABB,Godot.RID)"/>, <see cref="M:Godot.VisualServer.InstancesCullConvex(Godot.Collections.Array,Godot.RID)"/>, or <see cref="M:Godot.VisualServer.InstancesCullRay(Godot.Vector3,Godot.Vector3,Godot.RID)"/>.</para>
  40439. </summary>
  40440. </member>
  40441. <member name="M:Godot.VisualServer.ParticlesRestart(Godot.RID)">
  40442. <summary>
  40443. <para>Reset the particles on the next update. Equivalent to <see cref="M:Godot.Particles.Restart"/>.</para>
  40444. </summary>
  40445. </member>
  40446. <member name="M:Godot.VisualServer.ParticlesSetDrawOrder(Godot.RID,Godot.VisualServer.ParticlesDrawOrder)">
  40447. <summary>
  40448. <para>Sets the draw order of the particles to one of the named enums from <see cref="T:Godot.VisualServer.ParticlesDrawOrder"/>. See <see cref="T:Godot.VisualServer.ParticlesDrawOrder"/> for options. Equivalent to <see cref="P:Godot.Particles.DrawOrder"/>.</para>
  40449. </summary>
  40450. </member>
  40451. <member name="M:Godot.VisualServer.ParticlesSetDrawPasses(Godot.RID,System.Int32)">
  40452. <summary>
  40453. <para>Sets the number of draw passes to use. Equivalent to <see cref="P:Godot.Particles.DrawPasses"/>.</para>
  40454. </summary>
  40455. </member>
  40456. <member name="M:Godot.VisualServer.ParticlesSetDrawPassMesh(Godot.RID,System.Int32,Godot.RID)">
  40457. <summary>
  40458. <para>Sets the mesh to be used for the specified draw pass. Equivalent to <see cref="P:Godot.Particles.DrawPass1"/>, <see cref="P:Godot.Particles.DrawPass2"/>, <see cref="P:Godot.Particles.DrawPass3"/>, and <see cref="P:Godot.Particles.DrawPass4"/>.</para>
  40459. </summary>
  40460. </member>
  40461. <member name="M:Godot.VisualServer.ParticlesGetCurrentAabb(Godot.RID)">
  40462. <summary>
  40463. <para>Calculates and returns the axis-aligned bounding box that contains all the particles. Equivalent to <see cref="M:Godot.Particles.CaptureAabb"/>.</para>
  40464. </summary>
  40465. </member>
  40466. <member name="M:Godot.VisualServer.ParticlesSetEmissionTransform(Godot.RID,Godot.Transform)">
  40467. <summary>
  40468. <para>Sets the <see cref="T:Godot.Transform"/> that will be used by the particles when they first emit.</para>
  40469. </summary>
  40470. </member>
  40471. <member name="M:Godot.VisualServer.CameraCreate">
  40472. <summary>
  40473. <para>Creates a camera and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>camera_*</c> VisualServer functions.</para>
  40474. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40475. </summary>
  40476. </member>
  40477. <member name="M:Godot.VisualServer.CameraSetPerspective(Godot.RID,System.Single,System.Single,System.Single)">
  40478. <summary>
  40479. <para>Sets camera to use perspective projection. Objects on the screen becomes smaller when they are far away.</para>
  40480. </summary>
  40481. </member>
  40482. <member name="M:Godot.VisualServer.CameraSetOrthogonal(Godot.RID,System.Single,System.Single,System.Single)">
  40483. <summary>
  40484. <para>Sets camera to use orthogonal projection, also known as orthographic projection. Objects remain the same size on the screen no matter how far away they are.</para>
  40485. </summary>
  40486. </member>
  40487. <member name="M:Godot.VisualServer.CameraSetFrustum(Godot.RID,System.Single,Godot.Vector2,System.Single,System.Single)">
  40488. <summary>
  40489. <para>Sets camera to use frustum projection. This mode allows adjusting the <c>offset</c> argument to create "tilted frustum" effects.</para>
  40490. </summary>
  40491. </member>
  40492. <member name="M:Godot.VisualServer.CameraSetTransform(Godot.RID,Godot.Transform)">
  40493. <summary>
  40494. <para>Sets <see cref="T:Godot.Transform"/> of camera.</para>
  40495. </summary>
  40496. </member>
  40497. <member name="M:Godot.VisualServer.CameraSetCullMask(Godot.RID,System.UInt32)">
  40498. <summary>
  40499. <para>Sets the cull mask associated with this camera. The cull mask describes which 3D layers are rendered by this camera. Equivalent to <see cref="P:Godot.Camera.CullMask"/>.</para>
  40500. </summary>
  40501. </member>
  40502. <member name="M:Godot.VisualServer.CameraSetEnvironment(Godot.RID,Godot.RID)">
  40503. <summary>
  40504. <para>Sets the environment used by this camera. Equivalent to <see cref="P:Godot.Camera.Environment"/>.</para>
  40505. </summary>
  40506. </member>
  40507. <member name="M:Godot.VisualServer.CameraSetUseVerticalAspect(Godot.RID,System.Boolean)">
  40508. <summary>
  40509. <para>If <c>true</c>, preserves the horizontal aspect ratio which is equivalent to . If <c>false</c>, preserves the vertical aspect ratio which is equivalent to .</para>
  40510. </summary>
  40511. </member>
  40512. <member name="M:Godot.VisualServer.ViewportCreate">
  40513. <summary>
  40514. <para>Creates an empty viewport and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>viewport_*</c> VisualServer functions.</para>
  40515. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40516. </summary>
  40517. </member>
  40518. <member name="M:Godot.VisualServer.ViewportSetUseArvr(Godot.RID,System.Boolean)">
  40519. <summary>
  40520. <para>If <c>true</c>, the viewport uses augmented or virtual reality technologies. See <see cref="T:Godot.ARVRInterface"/>.</para>
  40521. </summary>
  40522. </member>
  40523. <member name="M:Godot.VisualServer.ViewportSetSize(Godot.RID,System.Int32,System.Int32)">
  40524. <summary>
  40525. <para>Sets the viewport's width and height.</para>
  40526. </summary>
  40527. </member>
  40528. <member name="M:Godot.VisualServer.ViewportSetActive(Godot.RID,System.Boolean)">
  40529. <summary>
  40530. <para>If <c>true</c>, sets the viewport active, else sets it inactive.</para>
  40531. </summary>
  40532. </member>
  40533. <member name="M:Godot.VisualServer.ViewportSetParentViewport(Godot.RID,Godot.RID)">
  40534. <summary>
  40535. <para>Sets the viewport's parent to another viewport.</para>
  40536. </summary>
  40537. </member>
  40538. <member name="M:Godot.VisualServer.ViewportAttachToScreen(Godot.RID,System.Nullable{Godot.Rect2},System.Int32)">
  40539. <summary>
  40540. <para>Copies viewport to a region of the screen specified by <c>rect</c>. If <see cref="P:Godot.Viewport.RenderDirectToScreen"/> is <c>true</c>, then viewport does not use a framebuffer and the contents of the viewport are rendered directly to screen. However, note that the root viewport is drawn last, therefore it will draw over the screen. Accordingly, you must set the root viewport to an area that does not cover the area that you have attached this viewport to.</para>
  40541. <para>For example, you can set the root viewport to not render at all with the following code:</para>
  40542. <para><code>
  40543. func _ready():
  40544. get_viewport().set_attach_to_screen_rect(Rect2())
  40545. $Viewport.set_attach_to_screen_rect(Rect2(0, 0, 600, 600))
  40546. </code></para>
  40547. <para>Using this can result in significant optimization, especially on lower-end devices. However, it comes at the cost of having to manage your viewports manually. For a further optimization see, <see cref="M:Godot.VisualServer.ViewportSetRenderDirectToScreen(Godot.RID,System.Boolean)"/>.</para>
  40548. </summary>
  40549. <param name="rect">If the parameter is null, then the default value is new Rect2(0, 0, 0, 0)</param>
  40550. </member>
  40551. <member name="M:Godot.VisualServer.ViewportSetRenderDirectToScreen(Godot.RID,System.Boolean)">
  40552. <summary>
  40553. <para>If <c>true</c>, render the contents of the viewport directly to screen. This allows a low-level optimization where you can skip drawing a viewport to the root viewport. While this optimization can result in a significant increase in speed (especially on older devices), it comes at a cost of usability. When this is enabled, you cannot read from the viewport or from the <c>SCREEN_TEXTURE</c>. You also lose the benefit of certain window settings, such as the various stretch modes. Another consequence to be aware of is that in 2D the rendering happens in window coordinates, so if you have a viewport that is double the size of the window, and you set this, then only the portion that fits within the window will be drawn, no automatic scaling is possible, even if your game scene is significantly larger than the window size.</para>
  40554. </summary>
  40555. </member>
  40556. <member name="M:Godot.VisualServer.ViewportDetach(Godot.RID)">
  40557. <summary>
  40558. <para>Detaches the viewport from the screen.</para>
  40559. </summary>
  40560. </member>
  40561. <member name="M:Godot.VisualServer.ViewportSetUpdateMode(Godot.RID,Godot.VisualServer.ViewportUpdateMode)">
  40562. <summary>
  40563. <para>Sets when the viewport should be updated. See <see cref="T:Godot.VisualServer.ViewportUpdateMode"/> constants for options.</para>
  40564. </summary>
  40565. </member>
  40566. <member name="M:Godot.VisualServer.ViewportSetVflip(Godot.RID,System.Boolean)">
  40567. <summary>
  40568. <para>If <c>true</c>, the viewport's rendering is flipped vertically.</para>
  40569. </summary>
  40570. </member>
  40571. <member name="M:Godot.VisualServer.ViewportSetClearMode(Godot.RID,Godot.VisualServer.ViewportClearMode)">
  40572. <summary>
  40573. <para>Sets the clear mode of a viewport. See <see cref="T:Godot.VisualServer.ViewportClearMode"/> for options.</para>
  40574. </summary>
  40575. </member>
  40576. <member name="M:Godot.VisualServer.ViewportGetTexture(Godot.RID)">
  40577. <summary>
  40578. <para>Returns the viewport's last rendered frame.</para>
  40579. </summary>
  40580. </member>
  40581. <member name="M:Godot.VisualServer.ViewportSetHideScenario(Godot.RID,System.Boolean)">
  40582. <summary>
  40583. <para>Currently unimplemented in Godot 3.x.</para>
  40584. </summary>
  40585. </member>
  40586. <member name="M:Godot.VisualServer.ViewportSetHideCanvas(Godot.RID,System.Boolean)">
  40587. <summary>
  40588. <para>If <c>true</c>, the viewport's canvas is not rendered.</para>
  40589. </summary>
  40590. </member>
  40591. <member name="M:Godot.VisualServer.ViewportSetDisableEnvironment(Godot.RID,System.Boolean)">
  40592. <summary>
  40593. <para>If <c>true</c>, rendering of a viewport's environment is disabled.</para>
  40594. </summary>
  40595. </member>
  40596. <member name="M:Godot.VisualServer.ViewportSetDisable3d(Godot.RID,System.Boolean)">
  40597. <summary>
  40598. <para>If <c>true</c>, a viewport's 3D rendering is disabled.</para>
  40599. </summary>
  40600. </member>
  40601. <member name="M:Godot.VisualServer.ViewportAttachCamera(Godot.RID,Godot.RID)">
  40602. <summary>
  40603. <para>Sets a viewport's camera.</para>
  40604. </summary>
  40605. </member>
  40606. <member name="M:Godot.VisualServer.ViewportSetScenario(Godot.RID,Godot.RID)">
  40607. <summary>
  40608. <para>Sets a viewport's scenario.</para>
  40609. <para>The scenario contains information about the <see cref="T:Godot.VisualServer.ScenarioDebugMode"/>, environment information, reflection atlas etc.</para>
  40610. </summary>
  40611. </member>
  40612. <member name="M:Godot.VisualServer.ViewportAttachCanvas(Godot.RID,Godot.RID)">
  40613. <summary>
  40614. <para>Sets a viewport's canvas.</para>
  40615. </summary>
  40616. </member>
  40617. <member name="M:Godot.VisualServer.ViewportRemoveCanvas(Godot.RID,Godot.RID)">
  40618. <summary>
  40619. <para>Detaches a viewport from a canvas and vice versa.</para>
  40620. </summary>
  40621. </member>
  40622. <member name="M:Godot.VisualServer.ViewportSetCanvasTransform(Godot.RID,Godot.RID,Godot.Transform2D)">
  40623. <summary>
  40624. <para>Sets the transformation of a viewport's canvas.</para>
  40625. </summary>
  40626. </member>
  40627. <member name="M:Godot.VisualServer.ViewportSetTransparentBackground(Godot.RID,System.Boolean)">
  40628. <summary>
  40629. <para>If <c>true</c>, the viewport renders its background as transparent.</para>
  40630. </summary>
  40631. </member>
  40632. <member name="M:Godot.VisualServer.ViewportSetGlobalCanvasTransform(Godot.RID,Godot.Transform2D)">
  40633. <summary>
  40634. <para>Sets the viewport's global transformation matrix.</para>
  40635. </summary>
  40636. </member>
  40637. <member name="M:Godot.VisualServer.ViewportSetCanvasStacking(Godot.RID,Godot.RID,System.Int32,System.Int32)">
  40638. <summary>
  40639. <para>Sets the stacking order for a viewport's canvas.</para>
  40640. <para><c>layer</c> is the actual canvas layer, while <c>sublayer</c> specifies the stacking order of the canvas among those in the same layer.</para>
  40641. </summary>
  40642. </member>
  40643. <member name="M:Godot.VisualServer.ViewportSetShadowAtlasSize(Godot.RID,System.Int32)">
  40644. <summary>
  40645. <para>Sets the size of the shadow atlas's images (used for omni and spot lights). The value will be rounded up to the nearest power of 2.</para>
  40646. </summary>
  40647. </member>
  40648. <member name="M:Godot.VisualServer.ViewportSetShadowAtlasQuadrantSubdivision(Godot.RID,System.Int32,System.Int32)">
  40649. <summary>
  40650. <para>Sets the shadow atlas quadrant's subdivision.</para>
  40651. </summary>
  40652. </member>
  40653. <member name="M:Godot.VisualServer.ViewportSetMsaa(Godot.RID,Godot.VisualServer.ViewportMSAA)">
  40654. <summary>
  40655. <para>Sets the anti-aliasing mode. See <see cref="T:Godot.VisualServer.ViewportMSAA"/> for options.</para>
  40656. </summary>
  40657. </member>
  40658. <member name="M:Godot.VisualServer.ViewportSetHdr(Godot.RID,System.Boolean)">
  40659. <summary>
  40660. <para>If <c>true</c>, the viewport renders to hdr.</para>
  40661. </summary>
  40662. </member>
  40663. <member name="M:Godot.VisualServer.ViewportSetUsage(Godot.RID,Godot.VisualServer.ViewportUsage)">
  40664. <summary>
  40665. <para>Sets the viewport's 2D/3D mode. See <see cref="T:Godot.VisualServer.ViewportUsage"/> constants for options.</para>
  40666. </summary>
  40667. </member>
  40668. <member name="M:Godot.VisualServer.ViewportGetRenderInfo(Godot.RID,Godot.VisualServer.ViewportRenderInfo)">
  40669. <summary>
  40670. <para>Returns a viewport's render information. For options, see the <see cref="T:Godot.VisualServer.ViewportRenderInfo"/> constants.</para>
  40671. </summary>
  40672. </member>
  40673. <member name="M:Godot.VisualServer.ViewportSetDebugDraw(Godot.RID,Godot.VisualServer.ViewportDebugDraw)">
  40674. <summary>
  40675. <para>Sets the debug draw mode of a viewport. See <see cref="T:Godot.VisualServer.ViewportDebugDraw"/> for options.</para>
  40676. </summary>
  40677. </member>
  40678. <member name="M:Godot.VisualServer.EnvironmentCreate">
  40679. <summary>
  40680. <para>Creates an environment and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>environment_*</c> VisualServer functions.</para>
  40681. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40682. </summary>
  40683. </member>
  40684. <member name="M:Godot.VisualServer.EnvironmentSetBackground(Godot.RID,Godot.VisualServer.EnvironmentBG)">
  40685. <summary>
  40686. <para>Sets the BGMode of the environment. Equivalent to <see cref="P:Godot.Environment.BackgroundMode"/>.</para>
  40687. </summary>
  40688. </member>
  40689. <member name="M:Godot.VisualServer.EnvironmentSetSky(Godot.RID,Godot.RID)">
  40690. <summary>
  40691. <para>Sets the <see cref="T:Godot.Sky"/> to be used as the environment's background when using BGMode sky. Equivalent to <see cref="P:Godot.Environment.BackgroundSky"/>.</para>
  40692. </summary>
  40693. </member>
  40694. <member name="M:Godot.VisualServer.EnvironmentSetSkyCustomFov(Godot.RID,System.Single)">
  40695. <summary>
  40696. <para>Sets a custom field of view for the background <see cref="T:Godot.Sky"/>. Equivalent to <see cref="P:Godot.Environment.BackgroundSkyCustomFov"/>.</para>
  40697. </summary>
  40698. </member>
  40699. <member name="M:Godot.VisualServer.EnvironmentSetSkyOrientation(Godot.RID,Godot.Basis)">
  40700. <summary>
  40701. <para>Sets the rotation of the background <see cref="T:Godot.Sky"/> expressed as a <see cref="T:Godot.Basis"/>. Equivalent to <see cref="P:Godot.Environment.BackgroundSkyOrientation"/>.</para>
  40702. </summary>
  40703. </member>
  40704. <member name="M:Godot.VisualServer.EnvironmentSetBgColor(Godot.RID,Godot.Color)">
  40705. <summary>
  40706. <para>Color displayed for clear areas of the scene (if using Custom color or Color+Sky background modes).</para>
  40707. </summary>
  40708. </member>
  40709. <member name="M:Godot.VisualServer.EnvironmentSetBgEnergy(Godot.RID,System.Single)">
  40710. <summary>
  40711. <para>Sets the intensity of the background color.</para>
  40712. </summary>
  40713. </member>
  40714. <member name="M:Godot.VisualServer.EnvironmentSetCanvasMaxLayer(Godot.RID,System.Int32)">
  40715. <summary>
  40716. <para>Sets the maximum layer to use if using Canvas background mode.</para>
  40717. </summary>
  40718. </member>
  40719. <member name="M:Godot.VisualServer.EnvironmentSetAmbientLight(Godot.RID,Godot.Color,System.Single,System.Single)">
  40720. <summary>
  40721. <para>Sets the ambient light parameters. See <see cref="T:Godot.Environment"/> for more details.</para>
  40722. </summary>
  40723. </member>
  40724. <member name="M:Godot.VisualServer.EnvironmentSetDofBlurNear(Godot.RID,System.Boolean,System.Single,System.Single,System.Single,Godot.VisualServer.EnvironmentDOFBlurQuality)">
  40725. <summary>
  40726. <para>Sets the values to be used with the "DoF Near Blur" post-process effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40727. </summary>
  40728. </member>
  40729. <member name="M:Godot.VisualServer.EnvironmentSetDofBlurFar(Godot.RID,System.Boolean,System.Single,System.Single,System.Single,Godot.VisualServer.EnvironmentDOFBlurQuality)">
  40730. <summary>
  40731. <para>Sets the values to be used with the "DoF Far Blur" post-process effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40732. </summary>
  40733. </member>
  40734. <member name="M:Godot.VisualServer.EnvironmentSetGlow(Godot.RID,System.Boolean,System.Int32,System.Single,System.Single,System.Single,Godot.VisualServer.EnvironmentGlowBlendMode,System.Single,System.Single,System.Single,System.Boolean)">
  40735. <summary>
  40736. <para>Sets the variables to be used with the "glow" post-process effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40737. </summary>
  40738. </member>
  40739. <member name="M:Godot.VisualServer.EnvironmentSetTonemap(Godot.RID,Godot.VisualServer.EnvironmentToneMapper,System.Single,System.Single,System.Boolean,System.Single,System.Single,System.Single,System.Single)">
  40740. <summary>
  40741. <para>Sets the variables to be used with the "tonemap" post-process effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40742. </summary>
  40743. </member>
  40744. <member name="M:Godot.VisualServer.EnvironmentSetAdjustment(Godot.RID,System.Boolean,System.Single,System.Single,System.Single,Godot.RID)">
  40745. <summary>
  40746. <para>Sets the values to be used with the "Adjustment" post-process effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40747. </summary>
  40748. </member>
  40749. <member name="M:Godot.VisualServer.EnvironmentSetSsr(Godot.RID,System.Boolean,System.Int32,System.Single,System.Single,System.Single,System.Boolean)">
  40750. <summary>
  40751. <para>Sets the variables to be used with the "screen space reflections" post-process effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40752. </summary>
  40753. </member>
  40754. <member name="M:Godot.VisualServer.EnvironmentSetSsao(Godot.RID,System.Boolean,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,Godot.Color,Godot.VisualServer.EnvironmentSSAOQuality,Godot.VisualServer.EnvironmentSSAOBlur,System.Single)">
  40755. <summary>
  40756. <para>Sets the variables to be used with the "Screen Space Ambient Occlusion (SSAO)" post-process effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40757. </summary>
  40758. </member>
  40759. <member name="M:Godot.VisualServer.EnvironmentSetFog(Godot.RID,System.Boolean,Godot.Color,Godot.Color,System.Single)">
  40760. <summary>
  40761. <para>Sets the variables to be used with the scene fog. See <see cref="T:Godot.Environment"/> for more details.</para>
  40762. </summary>
  40763. </member>
  40764. <member name="M:Godot.VisualServer.EnvironmentSetFogDepth(Godot.RID,System.Boolean,System.Single,System.Single,System.Single,System.Boolean,System.Single)">
  40765. <summary>
  40766. <para>Sets the variables to be used with the fog depth effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40767. </summary>
  40768. </member>
  40769. <member name="M:Godot.VisualServer.EnvironmentSetFogHeight(Godot.RID,System.Boolean,System.Single,System.Single,System.Single)">
  40770. <summary>
  40771. <para>Sets the variables to be used with the fog height effect. See <see cref="T:Godot.Environment"/> for more details.</para>
  40772. </summary>
  40773. </member>
  40774. <member name="M:Godot.VisualServer.ScenarioCreate">
  40775. <summary>
  40776. <para>Creates a scenario and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>scenario_*</c> VisualServer functions.</para>
  40777. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40778. <para>The scenario is the 3D world that all the visual instances exist in.</para>
  40779. </summary>
  40780. </member>
  40781. <member name="M:Godot.VisualServer.ScenarioSetDebug(Godot.RID,Godot.VisualServer.ScenarioDebugMode)">
  40782. <summary>
  40783. <para>Sets the <see cref="T:Godot.VisualServer.ScenarioDebugMode"/> for this scenario. See <see cref="T:Godot.VisualServer.ScenarioDebugMode"/> for options.</para>
  40784. </summary>
  40785. </member>
  40786. <member name="M:Godot.VisualServer.ScenarioSetEnvironment(Godot.RID,Godot.RID)">
  40787. <summary>
  40788. <para>Sets the environment that will be used with this scenario.</para>
  40789. </summary>
  40790. </member>
  40791. <member name="M:Godot.VisualServer.ScenarioSetReflectionAtlasSize(Godot.RID,System.Int32,System.Int32)">
  40792. <summary>
  40793. <para>Sets the size of the reflection atlas shared by all reflection probes in this scenario.</para>
  40794. </summary>
  40795. </member>
  40796. <member name="M:Godot.VisualServer.ScenarioSetFallbackEnvironment(Godot.RID,Godot.RID)">
  40797. <summary>
  40798. <para>Sets the fallback environment to be used by this scenario. The fallback environment is used if no environment is set. Internally, this is used by the editor to provide a default environment.</para>
  40799. </summary>
  40800. </member>
  40801. <member name="M:Godot.VisualServer.InstanceCreate2(Godot.RID,Godot.RID)">
  40802. <summary>
  40803. <para>Creates a visual instance, adds it to the VisualServer, and sets both base and scenario. It can be accessed with the RID that is returned. This RID will be used in all <c>instance_*</c> VisualServer functions.</para>
  40804. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40805. </summary>
  40806. </member>
  40807. <member name="M:Godot.VisualServer.InstanceCreate">
  40808. <summary>
  40809. <para>Creates a visual instance and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>instance_*</c> VisualServer functions.</para>
  40810. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40811. <para>An instance is a way of placing a 3D object in the scenario. Objects like particles, meshes, and reflection probes need to be associated with an instance to be visible in the scenario using <see cref="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)"/>.</para>
  40812. </summary>
  40813. </member>
  40814. <member name="M:Godot.VisualServer.InstanceSetBase(Godot.RID,Godot.RID)">
  40815. <summary>
  40816. <para>Sets the base of the instance. A base can be any of the 3D objects that are created in the VisualServer that can be displayed. For example, any of the light types, mesh, multimesh, immediate geometry, particle system, reflection probe, lightmap capture, and the GI probe are all types that can be set as the base of an instance in order to be displayed in the scenario.</para>
  40817. </summary>
  40818. </member>
  40819. <member name="M:Godot.VisualServer.InstanceSetScenario(Godot.RID,Godot.RID)">
  40820. <summary>
  40821. <para>Sets the scenario that the instance is in. The scenario is the 3D world that the objects will be displayed in.</para>
  40822. </summary>
  40823. </member>
  40824. <member name="M:Godot.VisualServer.InstanceSetLayerMask(Godot.RID,System.UInt32)">
  40825. <summary>
  40826. <para>Sets the render layers that this instance will be drawn to. Equivalent to <see cref="P:Godot.VisualInstance.Layers"/>.</para>
  40827. </summary>
  40828. </member>
  40829. <member name="M:Godot.VisualServer.InstanceSetTransform(Godot.RID,Godot.Transform)">
  40830. <summary>
  40831. <para>Sets the world space transform of the instance. Equivalent to <see cref="P:Godot.Spatial.Transform"/>.</para>
  40832. </summary>
  40833. </member>
  40834. <member name="M:Godot.VisualServer.InstanceAttachObjectInstanceId(Godot.RID,System.UInt64)">
  40835. <summary>
  40836. <para>Attaches a unique Object ID to instance. Object ID must be attached to instance for proper culling with <see cref="M:Godot.VisualServer.InstancesCullAabb(Godot.AABB,Godot.RID)"/>, <see cref="M:Godot.VisualServer.InstancesCullConvex(Godot.Collections.Array,Godot.RID)"/>, and <see cref="M:Godot.VisualServer.InstancesCullRay(Godot.Vector3,Godot.Vector3,Godot.RID)"/>.</para>
  40837. </summary>
  40838. </member>
  40839. <member name="M:Godot.VisualServer.InstanceSetBlendShapeWeight(Godot.RID,System.Int32,System.Single)">
  40840. <summary>
  40841. <para>Sets the weight for a given blend shape associated with this instance.</para>
  40842. </summary>
  40843. </member>
  40844. <member name="M:Godot.VisualServer.InstanceSetSurfaceMaterial(Godot.RID,System.Int32,Godot.RID)">
  40845. <summary>
  40846. <para>Sets the material of a specific surface. Equivalent to <see cref="M:Godot.MeshInstance.SetSurfaceMaterial(System.Int32,Godot.Material)"/>.</para>
  40847. </summary>
  40848. </member>
  40849. <member name="M:Godot.VisualServer.InstanceSetVisible(Godot.RID,System.Boolean)">
  40850. <summary>
  40851. <para>Sets whether an instance is drawn or not. Equivalent to <see cref="P:Godot.Spatial.Visible"/>.</para>
  40852. </summary>
  40853. </member>
  40854. <member name="M:Godot.VisualServer.InstanceSetUseLightmap(Godot.RID,Godot.RID,Godot.RID)">
  40855. <summary>
  40856. <para>Sets the lightmap to use with this instance.</para>
  40857. </summary>
  40858. </member>
  40859. <member name="M:Godot.VisualServer.InstanceSetCustomAabb(Godot.RID,Godot.AABB)">
  40860. <summary>
  40861. <para>Sets a custom AABB to use when culling objects from the view frustum. Equivalent to <see cref="M:Godot.GeometryInstance.SetCustomAabb(Godot.AABB)"/>.</para>
  40862. </summary>
  40863. </member>
  40864. <member name="M:Godot.VisualServer.InstanceAttachSkeleton(Godot.RID,Godot.RID)">
  40865. <summary>
  40866. <para>Attaches a skeleton to an instance. Removes the previous skeleton from the instance.</para>
  40867. </summary>
  40868. </member>
  40869. <member name="M:Godot.VisualServer.InstanceSetExterior(Godot.RID,System.Boolean)">
  40870. <summary>
  40871. <para>Function not implemented in Godot 3.x.</para>
  40872. </summary>
  40873. </member>
  40874. <member name="M:Godot.VisualServer.InstanceSetExtraVisibilityMargin(Godot.RID,System.Single)">
  40875. <summary>
  40876. <para>Sets a margin to increase the size of the AABB when culling objects from the view frustum. This allows you avoid culling objects that fall outside the view frustum. Equivalent to <see cref="P:Godot.GeometryInstance.ExtraCullMargin"/>.</para>
  40877. </summary>
  40878. </member>
  40879. <member name="M:Godot.VisualServer.InstanceGeometrySetFlag(Godot.RID,Godot.VisualServer.InstanceFlags,System.Boolean)">
  40880. <summary>
  40881. <para>Sets the flag for a given <see cref="T:Godot.VisualServer.InstanceFlags"/>. See <see cref="T:Godot.VisualServer.InstanceFlags"/> for more details.</para>
  40882. </summary>
  40883. </member>
  40884. <member name="M:Godot.VisualServer.InstanceGeometrySetCastShadowsSetting(Godot.RID,Godot.VisualServer.ShadowCastingSetting)">
  40885. <summary>
  40886. <para>Sets the shadow casting setting to one of <see cref="T:Godot.VisualServer.ShadowCastingSetting"/>. Equivalent to <see cref="P:Godot.GeometryInstance.CastShadow"/>.</para>
  40887. </summary>
  40888. </member>
  40889. <member name="M:Godot.VisualServer.InstanceGeometrySetMaterialOverride(Godot.RID,Godot.RID)">
  40890. <summary>
  40891. <para>Sets a material that will override the material for all surfaces on the mesh associated with this instance. Equivalent to <see cref="P:Godot.GeometryInstance.MaterialOverride"/>.</para>
  40892. </summary>
  40893. </member>
  40894. <member name="M:Godot.VisualServer.InstanceGeometrySetDrawRange(Godot.RID,System.Single,System.Single,System.Single,System.Single)">
  40895. <summary>
  40896. <para>Not implemented in Godot 3.x.</para>
  40897. </summary>
  40898. </member>
  40899. <member name="M:Godot.VisualServer.InstanceGeometrySetAsInstanceLod(Godot.RID,Godot.RID)">
  40900. <summary>
  40901. <para>Not implemented in Godot 3.x.</para>
  40902. </summary>
  40903. </member>
  40904. <member name="M:Godot.VisualServer.InstancesCullAabb(Godot.AABB,Godot.RID)">
  40905. <summary>
  40906. <para>Returns an array of object IDs intersecting with the provided AABB. Only visual 3D nodes are considered, such as <see cref="T:Godot.MeshInstance"/> or <see cref="T:Godot.DirectionalLight"/>. Use <c>@GDScript.instance_from_id</c> to obtain the actual nodes. A scenario RID must be provided, which is available in the <see cref="T:Godot.World"/> you want to query. This forces an update for all resources queued to update.</para>
  40907. <para>Warning: This function is primarily intended for editor usage. For in-game use cases, prefer physics collision.</para>
  40908. </summary>
  40909. </member>
  40910. <member name="M:Godot.VisualServer.InstancesCullRay(Godot.Vector3,Godot.Vector3,Godot.RID)">
  40911. <summary>
  40912. <para>Returns an array of object IDs intersecting with the provided 3D ray. Only visual 3D nodes are considered, such as <see cref="T:Godot.MeshInstance"/> or <see cref="T:Godot.DirectionalLight"/>. Use <c>@GDScript.instance_from_id</c> to obtain the actual nodes. A scenario RID must be provided, which is available in the <see cref="T:Godot.World"/> you want to query. This forces an update for all resources queued to update.</para>
  40913. <para>Warning: This function is primarily intended for editor usage. For in-game use cases, prefer physics collision.</para>
  40914. </summary>
  40915. </member>
  40916. <member name="M:Godot.VisualServer.InstancesCullConvex(Godot.Collections.Array,Godot.RID)">
  40917. <summary>
  40918. <para>Returns an array of object IDs intersecting with the provided convex shape. Only visual 3D nodes are considered, such as <see cref="T:Godot.MeshInstance"/> or <see cref="T:Godot.DirectionalLight"/>. Use <c>@GDScript.instance_from_id</c> to obtain the actual nodes. A scenario RID must be provided, which is available in the <see cref="T:Godot.World"/> you want to query. This forces an update for all resources queued to update.</para>
  40919. <para>Warning: This function is primarily intended for editor usage. For in-game use cases, prefer physics collision.</para>
  40920. </summary>
  40921. </member>
  40922. <member name="M:Godot.VisualServer.CanvasCreate">
  40923. <summary>
  40924. <para>Creates a canvas and returns the assigned <see cref="T:Godot.RID"/>. It can be accessed with the RID that is returned. This RID will be used in all <c>canvas_*</c> VisualServer functions.</para>
  40925. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40926. </summary>
  40927. </member>
  40928. <member name="M:Godot.VisualServer.CanvasSetItemMirroring(Godot.RID,Godot.RID,Godot.Vector2)">
  40929. <summary>
  40930. <para>A copy of the canvas item will be drawn with a local offset of the mirroring <see cref="T:Godot.Vector2"/>.</para>
  40931. </summary>
  40932. </member>
  40933. <member name="M:Godot.VisualServer.CanvasSetModulate(Godot.RID,Godot.Color)">
  40934. <summary>
  40935. <para>Modulates all colors in the given canvas.</para>
  40936. </summary>
  40937. </member>
  40938. <member name="M:Godot.VisualServer.CanvasItemCreate">
  40939. <summary>
  40940. <para>Creates a new <see cref="T:Godot.CanvasItem"/> and returns its <see cref="T:Godot.RID"/>. It can be accessed with the RID that is returned. This RID will be used in all <c>canvas_item_*</c> VisualServer functions.</para>
  40941. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  40942. </summary>
  40943. </member>
  40944. <member name="M:Godot.VisualServer.CanvasItemSetParent(Godot.RID,Godot.RID)">
  40945. <summary>
  40946. <para>Sets the parent for the <see cref="T:Godot.CanvasItem"/>. The parent can be another canvas item, or it can be the root canvas that is attached to the viewport.</para>
  40947. </summary>
  40948. </member>
  40949. <member name="M:Godot.VisualServer.CanvasItemSetVisible(Godot.RID,System.Boolean)">
  40950. <summary>
  40951. <para>Sets if the canvas item (including its children) is visible.</para>
  40952. </summary>
  40953. </member>
  40954. <member name="M:Godot.VisualServer.CanvasItemSetLightMask(Godot.RID,System.Int32)">
  40955. <summary>
  40956. <para>The light mask. See <see cref="T:Godot.LightOccluder2D"/> for more information on light masks.</para>
  40957. </summary>
  40958. </member>
  40959. <member name="M:Godot.VisualServer.CanvasItemSetTransform(Godot.RID,Godot.Transform2D)">
  40960. <summary>
  40961. <para>Sets the <see cref="T:Godot.CanvasItem"/>'s <see cref="T:Godot.Transform2D"/>.</para>
  40962. </summary>
  40963. </member>
  40964. <member name="M:Godot.VisualServer.CanvasItemSetClip(Godot.RID,System.Boolean)">
  40965. <summary>
  40966. <para>Sets clipping for the <see cref="T:Godot.CanvasItem"/>.</para>
  40967. </summary>
  40968. </member>
  40969. <member name="M:Godot.VisualServer.CanvasItemSetDistanceFieldMode(Godot.RID,System.Boolean)">
  40970. <summary>
  40971. <para>Enables the use of distance fields for GUI elements that are rendering distance field based fonts.</para>
  40972. </summary>
  40973. </member>
  40974. <member name="M:Godot.VisualServer.CanvasItemSetCustomRect(Godot.RID,System.Boolean,System.Nullable{Godot.Rect2})">
  40975. <summary>
  40976. <para>Defines a custom drawing rectangle for the <see cref="T:Godot.CanvasItem"/>.</para>
  40977. </summary>
  40978. <param name="rect">If the parameter is null, then the default value is new Rect2(0, 0, 0, 0)</param>
  40979. </member>
  40980. <member name="M:Godot.VisualServer.CanvasItemSetModulate(Godot.RID,Godot.Color)">
  40981. <summary>
  40982. <para>Sets the color that modulates the <see cref="T:Godot.CanvasItem"/> and its children.</para>
  40983. </summary>
  40984. </member>
  40985. <member name="M:Godot.VisualServer.CanvasItemSetSelfModulate(Godot.RID,Godot.Color)">
  40986. <summary>
  40987. <para>Sets the color that modulates the <see cref="T:Godot.CanvasItem"/> without children.</para>
  40988. </summary>
  40989. </member>
  40990. <member name="M:Godot.VisualServer.CanvasItemSetDrawBehindParent(Godot.RID,System.Boolean)">
  40991. <summary>
  40992. <para>Sets <see cref="T:Godot.CanvasItem"/> to be drawn behind its parent.</para>
  40993. </summary>
  40994. </member>
  40995. <member name="M:Godot.VisualServer.CanvasItemAddLine(Godot.RID,Godot.Vector2,Godot.Vector2,Godot.Color,System.Single,System.Boolean)">
  40996. <summary>
  40997. <para>Adds a line command to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  40998. </summary>
  40999. </member>
  41000. <member name="M:Godot.VisualServer.CanvasItemAddPolyline(Godot.RID,Godot.Vector2[],Godot.Color[],System.Single,System.Boolean)">
  41001. <summary>
  41002. <para>Adds a polyline, which is a line from multiple points with a width, to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41003. </summary>
  41004. </member>
  41005. <member name="M:Godot.VisualServer.CanvasItemAddRect(Godot.RID,Godot.Rect2,Godot.Color)">
  41006. <summary>
  41007. <para>Adds a rectangle to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41008. </summary>
  41009. </member>
  41010. <member name="M:Godot.VisualServer.CanvasItemAddCircle(Godot.RID,Godot.Vector2,System.Single,Godot.Color)">
  41011. <summary>
  41012. <para>Adds a circle command to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41013. </summary>
  41014. </member>
  41015. <member name="M:Godot.VisualServer.CanvasItemAddTextureRect(Godot.RID,Godot.Rect2,Godot.RID,System.Boolean,System.Nullable{Godot.Color},System.Boolean,Godot.RID)">
  41016. <summary>
  41017. <para>Adds a textured rect to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41018. </summary>
  41019. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  41020. </member>
  41021. <member name="M:Godot.VisualServer.CanvasItemAddTextureRectRegion(Godot.RID,Godot.Rect2,Godot.RID,Godot.Rect2,System.Nullable{Godot.Color},System.Boolean,Godot.RID,System.Boolean)">
  41022. <summary>
  41023. <para>Adds a texture rect with region setting to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41024. </summary>
  41025. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  41026. </member>
  41027. <member name="M:Godot.VisualServer.CanvasItemAddNinePatch(Godot.RID,Godot.Rect2,Godot.Rect2,Godot.RID,Godot.Vector2,Godot.Vector2,Godot.VisualServer.NinePatchAxisMode,Godot.VisualServer.NinePatchAxisMode,System.Boolean,System.Nullable{Godot.Color},Godot.RID)">
  41028. <summary>
  41029. <para>Adds a nine patch image to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41030. <para>See <see cref="T:Godot.NinePatchRect"/> for more explanation.</para>
  41031. </summary>
  41032. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  41033. </member>
  41034. <member name="M:Godot.VisualServer.CanvasItemAddPrimitive(Godot.RID,Godot.Vector2[],Godot.Color[],Godot.Vector2[],Godot.RID,System.Single,Godot.RID)">
  41035. <summary>
  41036. <para>Adds a primitive to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41037. </summary>
  41038. </member>
  41039. <member name="M:Godot.VisualServer.CanvasItemAddPolygon(Godot.RID,Godot.Vector2[],Godot.Color[],Godot.Vector2[],Godot.RID,Godot.RID,System.Boolean)">
  41040. <summary>
  41041. <para>Adds a polygon to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41042. </summary>
  41043. <param name="uvs">If the parameter is null, then the default value is new Vector2[] {}</param>
  41044. </member>
  41045. <member name="M:Godot.VisualServer.CanvasItemAddTriangleArray(Godot.RID,System.Int32[],Godot.Vector2[],Godot.Color[],Godot.Vector2[],System.Int32[],System.Single[],Godot.RID,System.Int32,Godot.RID,System.Boolean,System.Boolean)">
  41046. <summary>
  41047. <para>Adds a triangle array to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41048. </summary>
  41049. <param name="uvs">If the parameter is null, then the default value is new Vector2[] {}</param>
  41050. <param name="bones">If the parameter is null, then the default value is new int[] {}</param>
  41051. <param name="weights">If the parameter is null, then the default value is new float[] {}</param>
  41052. </member>
  41053. <member name="M:Godot.VisualServer.CanvasItemAddMesh(Godot.RID,Godot.RID,System.Nullable{Godot.Transform2D},System.Nullable{Godot.Color},Godot.RID,Godot.RID)">
  41054. <summary>
  41055. <para>Adds a mesh command to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41056. </summary>
  41057. <param name="transform">If the parameter is null, then the default value is Transform2D.Identity</param>
  41058. <param name="modulate">If the parameter is null, then the default value is new Color(1, 1, 1, 1)</param>
  41059. </member>
  41060. <member name="M:Godot.VisualServer.CanvasItemAddMultimesh(Godot.RID,Godot.RID,Godot.RID,Godot.RID)">
  41061. <summary>
  41062. <para>Adds a <see cref="T:Godot.MultiMesh"/> to the <see cref="T:Godot.CanvasItem"/>'s draw commands. Only affects its aabb at the moment.</para>
  41063. </summary>
  41064. </member>
  41065. <member name="M:Godot.VisualServer.CanvasItemAddParticles(Godot.RID,Godot.RID,Godot.RID,Godot.RID)">
  41066. <summary>
  41067. <para>Adds a particle system to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41068. </summary>
  41069. </member>
  41070. <member name="M:Godot.VisualServer.CanvasItemAddSetTransform(Godot.RID,Godot.Transform2D)">
  41071. <summary>
  41072. <para>Adds a <see cref="T:Godot.Transform2D"/> command to the <see cref="T:Godot.CanvasItem"/>'s draw commands.</para>
  41073. <para>This sets the extra_matrix uniform when executed. This affects the later commands of the canvas item.</para>
  41074. </summary>
  41075. </member>
  41076. <member name="M:Godot.VisualServer.CanvasItemAddClipIgnore(Godot.RID,System.Boolean)">
  41077. <summary>
  41078. <para>If ignore is <c>true</c>, the VisualServer does not perform clipping.</para>
  41079. </summary>
  41080. </member>
  41081. <member name="M:Godot.VisualServer.CanvasItemSetSortChildrenByY(Godot.RID,System.Boolean)">
  41082. <summary>
  41083. <para>Sets if <see cref="T:Godot.CanvasItem"/>'s children should be sorted by y-position.</para>
  41084. </summary>
  41085. </member>
  41086. <member name="M:Godot.VisualServer.CanvasItemSetZIndex(Godot.RID,System.Int32)">
  41087. <summary>
  41088. <para>Sets the <see cref="T:Godot.CanvasItem"/>'s Z index, i.e. its draw order (lower indexes are drawn first).</para>
  41089. </summary>
  41090. </member>
  41091. <member name="M:Godot.VisualServer.CanvasItemSetZAsRelativeToParent(Godot.RID,System.Boolean)">
  41092. <summary>
  41093. <para>If this is enabled, the Z index of the parent will be added to the children's Z index.</para>
  41094. </summary>
  41095. </member>
  41096. <member name="M:Godot.VisualServer.CanvasItemSetCopyToBackbuffer(Godot.RID,System.Boolean,Godot.Rect2)">
  41097. <summary>
  41098. <para>Sets the <see cref="T:Godot.CanvasItem"/> to copy a rect to the backbuffer.</para>
  41099. </summary>
  41100. </member>
  41101. <member name="M:Godot.VisualServer.CanvasItemClear(Godot.RID)">
  41102. <summary>
  41103. <para>Clears the <see cref="T:Godot.CanvasItem"/> and removes all commands in it.</para>
  41104. </summary>
  41105. </member>
  41106. <member name="M:Godot.VisualServer.CanvasItemSetDrawIndex(Godot.RID,System.Int32)">
  41107. <summary>
  41108. <para>Sets the index for the <see cref="T:Godot.CanvasItem"/>.</para>
  41109. </summary>
  41110. </member>
  41111. <member name="M:Godot.VisualServer.CanvasItemSetMaterial(Godot.RID,Godot.RID)">
  41112. <summary>
  41113. <para>Sets a new material to the <see cref="T:Godot.CanvasItem"/>.</para>
  41114. </summary>
  41115. </member>
  41116. <member name="M:Godot.VisualServer.CanvasItemSetUseParentMaterial(Godot.RID,System.Boolean)">
  41117. <summary>
  41118. <para>Sets if the <see cref="T:Godot.CanvasItem"/> uses its parent's material.</para>
  41119. </summary>
  41120. </member>
  41121. <member name="M:Godot.VisualServer.CanvasLightCreate">
  41122. <summary>
  41123. <para>Creates a canvas light and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>canvas_light_*</c> VisualServer functions.</para>
  41124. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  41125. </summary>
  41126. </member>
  41127. <member name="M:Godot.VisualServer.CanvasLightAttachToCanvas(Godot.RID,Godot.RID)">
  41128. <summary>
  41129. <para>Attaches the canvas light to the canvas. Removes it from its previous canvas.</para>
  41130. </summary>
  41131. </member>
  41132. <member name="M:Godot.VisualServer.CanvasLightSetEnabled(Godot.RID,System.Boolean)">
  41133. <summary>
  41134. <para>Enables or disables a canvas light.</para>
  41135. </summary>
  41136. </member>
  41137. <member name="M:Godot.VisualServer.CanvasLightSetScale(Godot.RID,System.Single)">
  41138. <summary>
  41139. <para>Sets the texture's scale factor of the light. Equivalent to <see cref="P:Godot.Light2D.TextureScale"/>.</para>
  41140. </summary>
  41141. </member>
  41142. <member name="M:Godot.VisualServer.CanvasLightSetTransform(Godot.RID,Godot.Transform2D)">
  41143. <summary>
  41144. <para>Sets the canvas light's <see cref="T:Godot.Transform2D"/>.</para>
  41145. </summary>
  41146. </member>
  41147. <member name="M:Godot.VisualServer.CanvasLightSetTexture(Godot.RID,Godot.RID)">
  41148. <summary>
  41149. <para>Sets texture to be used by light. Equivalent to <see cref="P:Godot.Light2D.Texture"/>.</para>
  41150. </summary>
  41151. </member>
  41152. <member name="M:Godot.VisualServer.CanvasLightSetTextureOffset(Godot.RID,Godot.Vector2)">
  41153. <summary>
  41154. <para>Sets the offset of the light's texture. Equivalent to <see cref="P:Godot.Light2D.Offset"/>.</para>
  41155. </summary>
  41156. </member>
  41157. <member name="M:Godot.VisualServer.CanvasLightSetColor(Godot.RID,Godot.Color)">
  41158. <summary>
  41159. <para>Sets the color for a light.</para>
  41160. </summary>
  41161. </member>
  41162. <member name="M:Godot.VisualServer.CanvasLightSetHeight(Godot.RID,System.Single)">
  41163. <summary>
  41164. <para>Sets a canvas light's height.</para>
  41165. </summary>
  41166. </member>
  41167. <member name="M:Godot.VisualServer.CanvasLightSetEnergy(Godot.RID,System.Single)">
  41168. <summary>
  41169. <para>Sets a canvas light's energy.</para>
  41170. </summary>
  41171. </member>
  41172. <member name="M:Godot.VisualServer.CanvasLightSetZRange(Godot.RID,System.Int32,System.Int32)">
  41173. <summary>
  41174. <para>Sets the Z range of objects that will be affected by this light. Equivalent to <see cref="P:Godot.Light2D.RangeZMin"/> and <see cref="P:Godot.Light2D.RangeZMax"/>.</para>
  41175. </summary>
  41176. </member>
  41177. <member name="M:Godot.VisualServer.CanvasLightSetLayerRange(Godot.RID,System.Int32,System.Int32)">
  41178. <summary>
  41179. <para>The layer range that gets rendered with this light.</para>
  41180. </summary>
  41181. </member>
  41182. <member name="M:Godot.VisualServer.CanvasLightSetItemCullMask(Godot.RID,System.Int32)">
  41183. <summary>
  41184. <para>The light mask. See <see cref="T:Godot.LightOccluder2D"/> for more information on light masks.</para>
  41185. </summary>
  41186. </member>
  41187. <member name="M:Godot.VisualServer.CanvasLightSetItemShadowCullMask(Godot.RID,System.Int32)">
  41188. <summary>
  41189. <para>The binary mask used to determine which layers this canvas light's shadows affects. See <see cref="T:Godot.LightOccluder2D"/> for more information on light masks.</para>
  41190. </summary>
  41191. </member>
  41192. <member name="M:Godot.VisualServer.CanvasLightSetMode(Godot.RID,Godot.VisualServer.CanvasLightMode)">
  41193. <summary>
  41194. <para>The mode of the light, see <see cref="T:Godot.VisualServer.CanvasLightMode"/> constants.</para>
  41195. </summary>
  41196. </member>
  41197. <member name="M:Godot.VisualServer.CanvasLightSetShadowEnabled(Godot.RID,System.Boolean)">
  41198. <summary>
  41199. <para>Enables or disables the canvas light's shadow.</para>
  41200. </summary>
  41201. </member>
  41202. <member name="M:Godot.VisualServer.CanvasLightSetShadowBufferSize(Godot.RID,System.Int32)">
  41203. <summary>
  41204. <para>Sets the width of the shadow buffer, size gets scaled to the next power of two for this.</para>
  41205. </summary>
  41206. </member>
  41207. <member name="M:Godot.VisualServer.CanvasLightSetShadowGradientLength(Godot.RID,System.Single)">
  41208. <summary>
  41209. <para>Sets the length of the shadow's gradient.</para>
  41210. </summary>
  41211. </member>
  41212. <member name="M:Godot.VisualServer.CanvasLightSetShadowFilter(Godot.RID,Godot.VisualServer.CanvasLightShadowFilter)">
  41213. <summary>
  41214. <para>Sets the canvas light's shadow's filter, see <see cref="T:Godot.VisualServer.CanvasLightShadowFilter"/> constants.</para>
  41215. </summary>
  41216. </member>
  41217. <member name="M:Godot.VisualServer.CanvasLightSetShadowColor(Godot.RID,Godot.Color)">
  41218. <summary>
  41219. <para>Sets the color of the canvas light's shadow.</para>
  41220. </summary>
  41221. </member>
  41222. <member name="M:Godot.VisualServer.CanvasLightSetShadowSmooth(Godot.RID,System.Single)">
  41223. <summary>
  41224. <para>Smoothens the shadow. The lower, the smoother.</para>
  41225. </summary>
  41226. </member>
  41227. <member name="M:Godot.VisualServer.CanvasLightOccluderCreate">
  41228. <summary>
  41229. <para>Creates a light occluder and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>canvas_light_ocluder_*</c> VisualServer functions.</para>
  41230. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  41231. </summary>
  41232. </member>
  41233. <member name="M:Godot.VisualServer.CanvasLightOccluderAttachToCanvas(Godot.RID,Godot.RID)">
  41234. <summary>
  41235. <para>Attaches a light occluder to the canvas. Removes it from its previous canvas.</para>
  41236. </summary>
  41237. </member>
  41238. <member name="M:Godot.VisualServer.CanvasLightOccluderSetEnabled(Godot.RID,System.Boolean)">
  41239. <summary>
  41240. <para>Enables or disables light occluder.</para>
  41241. </summary>
  41242. </member>
  41243. <member name="M:Godot.VisualServer.CanvasLightOccluderSetPolygon(Godot.RID,Godot.RID)">
  41244. <summary>
  41245. <para>Sets a light occluder's polygon.</para>
  41246. </summary>
  41247. </member>
  41248. <member name="M:Godot.VisualServer.CanvasLightOccluderSetTransform(Godot.RID,Godot.Transform2D)">
  41249. <summary>
  41250. <para>Sets a light occluder's <see cref="T:Godot.Transform2D"/>.</para>
  41251. </summary>
  41252. </member>
  41253. <member name="M:Godot.VisualServer.CanvasLightOccluderSetLightMask(Godot.RID,System.Int32)">
  41254. <summary>
  41255. <para>The light mask. See <see cref="T:Godot.LightOccluder2D"/> for more information on light masks.</para>
  41256. </summary>
  41257. </member>
  41258. <member name="M:Godot.VisualServer.CanvasOccluderPolygonCreate">
  41259. <summary>
  41260. <para>Creates a new light occluder polygon and adds it to the VisualServer. It can be accessed with the RID that is returned. This RID will be used in all <c>canvas_occluder_polygon_*</c> VisualServer functions.</para>
  41261. <para>Once finished with your RID, you will want to free the RID using the VisualServer's <see cref="M:Godot.VisualServer.FreeRid(Godot.RID)"/> static method.</para>
  41262. </summary>
  41263. </member>
  41264. <member name="M:Godot.VisualServer.CanvasOccluderPolygonSetShape(Godot.RID,Godot.Vector2[],System.Boolean)">
  41265. <summary>
  41266. <para>Sets the shape of the occluder polygon.</para>
  41267. </summary>
  41268. </member>
  41269. <member name="M:Godot.VisualServer.CanvasOccluderPolygonSetShapeAsLines(Godot.RID,Godot.Vector2[])">
  41270. <summary>
  41271. <para>Sets the shape of the occluder polygon as lines.</para>
  41272. </summary>
  41273. </member>
  41274. <member name="M:Godot.VisualServer.CanvasOccluderPolygonSetCullMode(Godot.RID,Godot.VisualServer.CanvasOccluderPolygonCullMode)">
  41275. <summary>
  41276. <para>Sets an occluder polygons cull mode. See <see cref="T:Godot.VisualServer.CanvasOccluderPolygonCullMode"/> constants.</para>
  41277. </summary>
  41278. </member>
  41279. <member name="M:Godot.VisualServer.BlackBarsSetMargins(System.Int32,System.Int32,System.Int32,System.Int32)">
  41280. <summary>
  41281. <para>Sets margin size, where black bars (or images, if <see cref="M:Godot.VisualServer.BlackBarsSetImages(Godot.RID,Godot.RID,Godot.RID,Godot.RID)"/> was used) are rendered.</para>
  41282. </summary>
  41283. </member>
  41284. <member name="M:Godot.VisualServer.BlackBarsSetImages(Godot.RID,Godot.RID,Godot.RID,Godot.RID)">
  41285. <summary>
  41286. <para>Sets images to be rendered in the window margin.</para>
  41287. </summary>
  41288. </member>
  41289. <member name="M:Godot.VisualServer.FreeRid(Godot.RID)">
  41290. <summary>
  41291. <para>Tries to free an object in the VisualServer.</para>
  41292. </summary>
  41293. </member>
  41294. <member name="M:Godot.VisualServer.RequestFrameDrawnCallback(Godot.Object,System.String,System.Object)">
  41295. <summary>
  41296. <para>Schedules a callback to the corresponding named <c>method</c> on <c>where</c> after a frame has been drawn.</para>
  41297. <para>The callback method must use only 1 argument which will be called with <c>userdata</c>.</para>
  41298. </summary>
  41299. </member>
  41300. <member name="M:Godot.VisualServer.HasChanged">
  41301. <summary>
  41302. <para>Returns <c>true</c> if changes have been made to the VisualServer's data. <see cref="M:Godot.VisualServer.Draw(System.Boolean,System.Double)"/> is usually called if this happens.</para>
  41303. </summary>
  41304. </member>
  41305. <member name="M:Godot.VisualServer.Init">
  41306. <summary>
  41307. <para>Initializes the visual server. This function is called internally by platform-dependent code during engine initialization. If called from a running game, it will not do anything.</para>
  41308. </summary>
  41309. </member>
  41310. <member name="M:Godot.VisualServer.Finish">
  41311. <summary>
  41312. <para>Removes buffers and clears testcubes.</para>
  41313. </summary>
  41314. </member>
  41315. <member name="M:Godot.VisualServer.GetRenderInfo(Godot.VisualServer.RenderInfo)">
  41316. <summary>
  41317. <para>Returns a certain information, see <see cref="T:Godot.VisualServer.RenderInfo"/> for options.</para>
  41318. </summary>
  41319. </member>
  41320. <member name="M:Godot.VisualServer.GetVideoAdapterName">
  41321. <summary>
  41322. <para>Returns the name of the video adapter (e.g. "GeForce GTX 1080/PCIe/SSE2").</para>
  41323. <para>Note: When running a headless or server binary, this function returns an empty string.</para>
  41324. </summary>
  41325. </member>
  41326. <member name="M:Godot.VisualServer.GetVideoAdapterVendor">
  41327. <summary>
  41328. <para>Returns the vendor of the video adapter (e.g. "NVIDIA Corporation").</para>
  41329. <para>Note: When running a headless or server binary, this function returns an empty string.</para>
  41330. </summary>
  41331. </member>
  41332. <member name="M:Godot.VisualServer.MakeSphereMesh(System.Int32,System.Int32,System.Single)">
  41333. <summary>
  41334. <para>Returns a mesh of a sphere with the given amount of horizontal and vertical subdivisions.</para>
  41335. </summary>
  41336. </member>
  41337. <member name="M:Godot.VisualServer.GetTestCube">
  41338. <summary>
  41339. <para>Returns the id of the test cube. Creates one if none exists.</para>
  41340. </summary>
  41341. </member>
  41342. <member name="M:Godot.VisualServer.GetTestTexture">
  41343. <summary>
  41344. <para>Returns the id of the test texture. Creates one if none exists.</para>
  41345. </summary>
  41346. </member>
  41347. <member name="M:Godot.VisualServer.GetWhiteTexture">
  41348. <summary>
  41349. <para>Returns the id of a white texture. Creates one if none exists.</para>
  41350. </summary>
  41351. </member>
  41352. <member name="M:Godot.VisualServer.SetBootImage(Godot.Image,Godot.Color,System.Boolean,System.Boolean)">
  41353. <summary>
  41354. <para>Sets a boot image. The color defines the background color. If <c>scale</c> is <c>true</c>, the image will be scaled to fit the screen size. If <c>use_filter</c> is <c>true</c>, the image will be scaled with linear interpolation. If <c>use_filter</c> is <c>false</c>, the image will be scaled with nearest-neighbor interpolation.</para>
  41355. </summary>
  41356. </member>
  41357. <member name="M:Godot.VisualServer.SetDefaultClearColor(Godot.Color)">
  41358. <summary>
  41359. <para>Sets the default clear color which is used when a specific clear color has not been selected.</para>
  41360. </summary>
  41361. </member>
  41362. <member name="M:Godot.VisualServer.SetShaderTimeScale(System.Single)">
  41363. <summary>
  41364. <para>Sets the scale to apply to the passage of time for the shaders' <c>TIME</c> builtin.</para>
  41365. <para>The default value is <c>1.0</c>, which means <c>TIME</c> will count the real time as it goes by, without narrowing or stretching it.</para>
  41366. </summary>
  41367. </member>
  41368. <member name="M:Godot.VisualServer.HasFeature(Godot.VisualServer.Features)">
  41369. <summary>
  41370. <para>Not yet implemented. Always returns <c>false</c>.</para>
  41371. </summary>
  41372. </member>
  41373. <member name="M:Godot.VisualServer.HasOsFeature(System.String)">
  41374. <summary>
  41375. <para>Returns <c>true</c> if the OS supports a certain feature. Features might be <c>s3tc</c>, <c>etc</c>, <c>etc2</c> and <c>pvrtc</c>.</para>
  41376. </summary>
  41377. </member>
  41378. <member name="M:Godot.VisualServer.SetDebugGenerateWireframes(System.Boolean)">
  41379. <summary>
  41380. <para>If <c>true</c>, the engine will generate wireframes for use with the wireframe debug mode.</para>
  41381. </summary>
  41382. </member>
  41383. <member name="T:Godot.VisualShader">
  41384. <summary>
  41385. <para>This class allows you to define a custom shader program that can be used for various materials to render objects.</para>
  41386. <para>The visual shader editor creates the shader.</para>
  41387. </summary>
  41388. </member>
  41389. <member name="F:Godot.VisualShader.Type.Vertex">
  41390. <summary>
  41391. <para>A vertex shader, operating on vertices.</para>
  41392. </summary>
  41393. </member>
  41394. <member name="F:Godot.VisualShader.Type.Fragment">
  41395. <summary>
  41396. <para>A fragment shader, operating on fragments (pixels).</para>
  41397. </summary>
  41398. </member>
  41399. <member name="F:Godot.VisualShader.Type.Light">
  41400. <summary>
  41401. <para>A shader for light calculations.</para>
  41402. </summary>
  41403. </member>
  41404. <member name="F:Godot.VisualShader.Type.Max">
  41405. <summary>
  41406. <para>Represents the size of the <see cref="T:Godot.VisualShader.Type"/> enum.</para>
  41407. </summary>
  41408. </member>
  41409. <member name="P:Godot.VisualShader.GraphOffset">
  41410. <summary>
  41411. <para>The offset vector of the whole graph.</para>
  41412. </summary>
  41413. </member>
  41414. <member name="M:Godot.VisualShader.SetMode(Godot.Shader.Mode)">
  41415. <summary>
  41416. <para>Sets the mode of this shader.</para>
  41417. </summary>
  41418. </member>
  41419. <member name="M:Godot.VisualShader.AddNode(Godot.VisualShader.Type,Godot.VisualShaderNode,Godot.Vector2,System.Int32)">
  41420. <summary>
  41421. <para>Adds the specified node to the shader.</para>
  41422. </summary>
  41423. </member>
  41424. <member name="M:Godot.VisualShader.GetNode(Godot.VisualShader.Type,System.Int32)">
  41425. <summary>
  41426. <para>Returns the shader node instance with specified <c>type</c> and <c>id</c>.</para>
  41427. </summary>
  41428. </member>
  41429. <member name="M:Godot.VisualShader.SetNodePosition(Godot.VisualShader.Type,System.Int32,Godot.Vector2)">
  41430. <summary>
  41431. <para>Sets the position of the specified node.</para>
  41432. </summary>
  41433. </member>
  41434. <member name="M:Godot.VisualShader.GetNodePosition(Godot.VisualShader.Type,System.Int32)">
  41435. <summary>
  41436. <para>Returns the position of the specified node within the shader graph.</para>
  41437. </summary>
  41438. </member>
  41439. <member name="M:Godot.VisualShader.GetNodeList(Godot.VisualShader.Type)">
  41440. <summary>
  41441. <para>Returns the list of all nodes in the shader with the specified type.</para>
  41442. </summary>
  41443. </member>
  41444. <member name="M:Godot.VisualShader.RemoveNode(Godot.VisualShader.Type,System.Int32)">
  41445. <summary>
  41446. <para>Removes the specified node from the shader.</para>
  41447. </summary>
  41448. </member>
  41449. <member name="M:Godot.VisualShader.IsNodeConnection(Godot.VisualShader.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
  41450. <summary>
  41451. <para>Returns <c>true</c> if the specified node and port connection exist.</para>
  41452. </summary>
  41453. </member>
  41454. <member name="M:Godot.VisualShader.CanConnectNodes(Godot.VisualShader.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
  41455. <summary>
  41456. <para>Returns <c>true</c> if the specified nodes and ports can be connected together.</para>
  41457. </summary>
  41458. </member>
  41459. <member name="M:Godot.VisualShader.ConnectNodes(Godot.VisualShader.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
  41460. <summary>
  41461. <para>Connects the specified nodes and ports.</para>
  41462. </summary>
  41463. </member>
  41464. <member name="M:Godot.VisualShader.DisconnectNodes(Godot.VisualShader.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
  41465. <summary>
  41466. <para>Connects the specified nodes and ports.</para>
  41467. </summary>
  41468. </member>
  41469. <member name="M:Godot.VisualShader.ConnectNodesForced(Godot.VisualShader.Type,System.Int32,System.Int32,System.Int32,System.Int32)">
  41470. <summary>
  41471. <para>Connects the specified nodes and ports, even if they can't be connected. Such connection is invalid and will not function properly.</para>
  41472. </summary>
  41473. </member>
  41474. <member name="M:Godot.VisualShader.GetNodeConnections(Godot.VisualShader.Type)">
  41475. <summary>
  41476. <para>Returns the list of connected nodes with the specified type.</para>
  41477. </summary>
  41478. </member>
  41479. <member name="F:Godot.VisualShaderNode.PortType.Scalar">
  41480. <summary>
  41481. <para>Floating-point scalar. Translated to <c>float</c> type in shader code.</para>
  41482. </summary>
  41483. </member>
  41484. <member name="F:Godot.VisualShaderNode.PortType.Vector">
  41485. <summary>
  41486. <para>3D vector of floating-point values. Translated to <c>vec3</c> type in shader code.</para>
  41487. </summary>
  41488. </member>
  41489. <member name="F:Godot.VisualShaderNode.PortType.Boolean">
  41490. <summary>
  41491. <para>Boolean type. Translated to <c>bool</c> type in shader code.</para>
  41492. </summary>
  41493. </member>
  41494. <member name="F:Godot.VisualShaderNode.PortType.Transform">
  41495. <summary>
  41496. <para>Transform type. Translated to <c>mat4</c> type in shader code.</para>
  41497. </summary>
  41498. </member>
  41499. <member name="F:Godot.VisualShaderNode.PortType.Sampler">
  41500. <summary>
  41501. <para>Sampler type. Translated to reference of sampler uniform in shader code. Can only be used for input ports in non-uniform nodes.</para>
  41502. </summary>
  41503. </member>
  41504. <member name="F:Godot.VisualShaderNode.PortType.Max">
  41505. <summary>
  41506. <para>Represents the size of the <see cref="T:Godot.VisualShaderNode.PortType"/> enum.</para>
  41507. </summary>
  41508. </member>
  41509. <member name="P:Godot.VisualShaderNode.OutputPortForPreview">
  41510. <summary>
  41511. <para>Sets the output port index which will be showed for preview. If set to <c>-1</c> no port will be open for preview.</para>
  41512. </summary>
  41513. </member>
  41514. <member name="M:Godot.VisualShaderNode.SetInputPortDefaultValue(System.Int32,System.Object)">
  41515. <summary>
  41516. <para>Sets the default value for the selected input <c>port</c>.</para>
  41517. </summary>
  41518. </member>
  41519. <member name="M:Godot.VisualShaderNode.GetInputPortDefaultValue(System.Int32)">
  41520. <summary>
  41521. <para>Returns the default value of the input <c>port</c>.</para>
  41522. </summary>
  41523. </member>
  41524. <member name="M:Godot.VisualShaderNode.SetDefaultInputValues(Godot.Collections.Array)">
  41525. <summary>
  41526. <para>Sets the default input ports values using an <see cref="T:Godot.Collections.Array"/> of the form <c>[index0, value0, index1, value1, ...]</c>. For example: <c>[0, Vector3(0, 0, 0), 1, Vector3(0, 0, 0)]</c>.</para>
  41527. </summary>
  41528. </member>
  41529. <member name="M:Godot.VisualShaderNode.GetDefaultInputValues">
  41530. <summary>
  41531. <para>Returns an <see cref="T:Godot.Collections.Array"/> containing default values for all of the input ports of the node in the form <c>[index0, value0, index1, value1, ...]</c>.</para>
  41532. </summary>
  41533. </member>
  41534. <member name="T:Godot.VisualShaderNodeBooleanConstant">
  41535. <summary>
  41536. <para>Has only one output port and no inputs.</para>
  41537. <para>Translated to <c>bool</c> in the shader language.</para>
  41538. </summary>
  41539. </member>
  41540. <member name="P:Godot.VisualShaderNodeBooleanConstant.Constant">
  41541. <summary>
  41542. <para>A boolean constant which represents a state of this node.</para>
  41543. </summary>
  41544. </member>
  41545. <member name="T:Godot.VisualShaderNodeBooleanUniform">
  41546. <summary>
  41547. <para>Translated to <c>uniform bool</c> in the shader language.</para>
  41548. </summary>
  41549. </member>
  41550. <member name="T:Godot.VisualShaderNodeColorConstant">
  41551. <summary>
  41552. <para>Has two output ports representing RGB and alpha channels of <see cref="T:Godot.Color"/>.</para>
  41553. <para>Translated to <c>vec3 rgb</c> and <c>float alpha</c> in the shader language.</para>
  41554. </summary>
  41555. </member>
  41556. <member name="P:Godot.VisualShaderNodeColorConstant.Constant">
  41557. <summary>
  41558. <para>A <see cref="T:Godot.Color"/> constant which represents a state of this node.</para>
  41559. </summary>
  41560. </member>
  41561. <member name="T:Godot.VisualShaderNodeColorFunc">
  41562. <summary>
  41563. <para>Accept a <see cref="T:Godot.Color"/> to the input port and transform it according to <see cref="P:Godot.VisualShaderNodeColorFunc.Function"/>.</para>
  41564. </summary>
  41565. </member>
  41566. <member name="F:Godot.VisualShaderNodeColorFunc.FunctionEnum.Grayscale">
  41567. <summary>
  41568. <para>Converts the color to grayscale using the following formula:</para>
  41569. <para><code>
  41570. vec3 c = input;
  41571. float max1 = max(c.r, c.g);
  41572. float max2 = max(max1, c.b);
  41573. float max3 = max(max1, max2);
  41574. return vec3(max3, max3, max3);
  41575. </code></para>
  41576. </summary>
  41577. </member>
  41578. <member name="F:Godot.VisualShaderNodeColorFunc.FunctionEnum.Sepia">
  41579. <summary>
  41580. <para>Applies sepia tone effect using the following formula:</para>
  41581. <para><code>
  41582. vec3 c = input;
  41583. float r = (c.r * 0.393) + (c.g * 0.769) + (c.b * 0.189);
  41584. float g = (c.r * 0.349) + (c.g * 0.686) + (c.b * 0.168);
  41585. float b = (c.r * 0.272) + (c.g * 0.534) + (c.b * 0.131);
  41586. return vec3(r, g, b);
  41587. </code></para>
  41588. </summary>
  41589. </member>
  41590. <member name="P:Godot.VisualShaderNodeColorFunc.Function">
  41591. <summary>
  41592. <para>A function to be applied to the input color. See <see cref="T:Godot.VisualShaderNodeColorFunc.FunctionEnum"/> for options.</para>
  41593. </summary>
  41594. </member>
  41595. <member name="T:Godot.VisualShaderNodeColorOp">
  41596. <summary>
  41597. <para>Applies <see cref="P:Godot.VisualShaderNodeColorOp.Operator"/> to two color inputs.</para>
  41598. </summary>
  41599. </member>
  41600. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.Screen">
  41601. <summary>
  41602. <para>Produce a screen effect with the following formula:</para>
  41603. <para><code>
  41604. result = vec3(1.0) - (vec3(1.0) - a) * (vec3(1.0) - b);
  41605. </code></para>
  41606. </summary>
  41607. </member>
  41608. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.Difference">
  41609. <summary>
  41610. <para>Produce a difference effect with the following formula:</para>
  41611. <para><code>
  41612. result = abs(a - b);
  41613. </code></para>
  41614. </summary>
  41615. </member>
  41616. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.Darken">
  41617. <summary>
  41618. <para>Produce a darken effect with the following formula:</para>
  41619. <para><code>
  41620. result = min(a, b);
  41621. </code></para>
  41622. </summary>
  41623. </member>
  41624. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.Lighten">
  41625. <summary>
  41626. <para>Produce a lighten effect with the following formula:</para>
  41627. <para><code>
  41628. result = max(a, b);
  41629. </code></para>
  41630. </summary>
  41631. </member>
  41632. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.Overlay">
  41633. <summary>
  41634. <para>Produce an overlay effect with the following formula:</para>
  41635. <para><code>
  41636. for (int i = 0; i &lt; 3; i++) {
  41637. float base = a[i];
  41638. float blend = b[i];
  41639. if (base &lt; 0.5) {
  41640. result[i] = 2.0 * base * blend;
  41641. } else {
  41642. result[i] = 1.0 - 2.0 * (1.0 - blend) * (1.0 - base);
  41643. }
  41644. }
  41645. </code></para>
  41646. </summary>
  41647. </member>
  41648. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.Dodge">
  41649. <summary>
  41650. <para>Produce a dodge effect with the following formula:</para>
  41651. <para><code>
  41652. result = a / (vec3(1.0) - b);
  41653. </code></para>
  41654. </summary>
  41655. </member>
  41656. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.Burn">
  41657. <summary>
  41658. <para>Produce a burn effect with the following formula:</para>
  41659. <para><code>
  41660. result = vec3(1.0) - (vec3(1.0) - a) / b;
  41661. </code></para>
  41662. </summary>
  41663. </member>
  41664. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.SoftLight">
  41665. <summary>
  41666. <para>Produce a soft light effect with the following formula:</para>
  41667. <para><code>
  41668. for (int i = 0; i &lt; 3; i++) {
  41669. float base = a[i];
  41670. float blend = b[i];
  41671. if (base &lt; 0.5) {
  41672. result[i] = base * (blend + 0.5);
  41673. } else {
  41674. result[i] = 1.0 - (1.0 - base) * (1.0 - (blend - 0.5));
  41675. }
  41676. }
  41677. </code></para>
  41678. </summary>
  41679. </member>
  41680. <member name="F:Godot.VisualShaderNodeColorOp.OperatorEnum.HardLight">
  41681. <summary>
  41682. <para>Produce a hard light effect with the following formula:</para>
  41683. <para><code>
  41684. for (int i = 0; i &lt; 3; i++) {
  41685. float base = a[i];
  41686. float blend = b[i];
  41687. if (base &lt; 0.5) {
  41688. result[i] = base * (2.0 * blend);
  41689. } else {
  41690. result[i] = 1.0 - (1.0 - base) * (1.0 - 2.0 * (blend - 0.5));
  41691. }
  41692. }
  41693. </code></para>
  41694. </summary>
  41695. </member>
  41696. <member name="P:Godot.VisualShaderNodeColorOp.Operator">
  41697. <summary>
  41698. <para>An operator to be applied to the inputs. See <see cref="T:Godot.VisualShaderNodeColorOp.OperatorEnum"/> for options.</para>
  41699. </summary>
  41700. </member>
  41701. <member name="T:Godot.VisualShaderNodeColorUniform">
  41702. <summary>
  41703. <para>Translated to <c>uniform vec4</c> in the shader language.</para>
  41704. </summary>
  41705. </member>
  41706. <member name="T:Godot.VisualShaderNodeCompare">
  41707. <summary>
  41708. <para>Compares <c>a</c> and <c>b</c> of <see cref="P:Godot.VisualShaderNodeCompare.Type"/> by <see cref="P:Godot.VisualShaderNodeCompare.Function"/>. Returns a boolean scalar. Translates to <c>if</c> instruction in shader code.</para>
  41709. </summary>
  41710. </member>
  41711. <member name="F:Godot.VisualShaderNodeCompare.ComparisonType.Scalar">
  41712. <summary>
  41713. <para>A floating-point scalar.</para>
  41714. </summary>
  41715. </member>
  41716. <member name="F:Godot.VisualShaderNodeCompare.ComparisonType.Vector">
  41717. <summary>
  41718. <para>A 3D vector type.</para>
  41719. </summary>
  41720. </member>
  41721. <member name="F:Godot.VisualShaderNodeCompare.ComparisonType.Boolean">
  41722. <summary>
  41723. <para>A boolean type.</para>
  41724. </summary>
  41725. </member>
  41726. <member name="F:Godot.VisualShaderNodeCompare.ComparisonType.Transform">
  41727. <summary>
  41728. <para>A transform (<c>mat4</c>) type.</para>
  41729. </summary>
  41730. </member>
  41731. <member name="F:Godot.VisualShaderNodeCompare.FunctionEnum.Equal">
  41732. <summary>
  41733. <para>Comparison for equality (<c>a == b</c>).</para>
  41734. </summary>
  41735. </member>
  41736. <member name="F:Godot.VisualShaderNodeCompare.FunctionEnum.NotEqual">
  41737. <summary>
  41738. <para>Comparison for inequality (<c>a != b</c>).</para>
  41739. </summary>
  41740. </member>
  41741. <member name="F:Godot.VisualShaderNodeCompare.FunctionEnum.GreaterThan">
  41742. <summary>
  41743. <para>Comparison for greater than (<c>a &gt; b</c>). Cannot be used if <see cref="P:Godot.VisualShaderNodeCompare.Type"/> set to or .</para>
  41744. </summary>
  41745. </member>
  41746. <member name="F:Godot.VisualShaderNodeCompare.FunctionEnum.GreaterThanEqual">
  41747. <summary>
  41748. <para>Comparison for greater than or equal (<c>a &gt;= b</c>). Cannot be used if <see cref="P:Godot.VisualShaderNodeCompare.Type"/> set to or .</para>
  41749. </summary>
  41750. </member>
  41751. <member name="F:Godot.VisualShaderNodeCompare.FunctionEnum.LessThan">
  41752. <summary>
  41753. <para>Comparison for less than (<c>a &lt; b</c>). Cannot be used if <see cref="P:Godot.VisualShaderNodeCompare.Type"/> set to or .</para>
  41754. </summary>
  41755. </member>
  41756. <member name="F:Godot.VisualShaderNodeCompare.FunctionEnum.LessThanEqual">
  41757. <summary>
  41758. <para>Comparison for less than or equal (<c>a &lt; b</c>). Cannot be used if <see cref="P:Godot.VisualShaderNodeCompare.Type"/> set to or .</para>
  41759. </summary>
  41760. </member>
  41761. <member name="F:Godot.VisualShaderNodeCompare.ConditionEnum.All">
  41762. <summary>
  41763. <para>The result will be true if all of component in vector satisfy the comparison condition.</para>
  41764. </summary>
  41765. </member>
  41766. <member name="F:Godot.VisualShaderNodeCompare.ConditionEnum.Any">
  41767. <summary>
  41768. <para>The result will be true if any of component in vector satisfy the comparison condition.</para>
  41769. </summary>
  41770. </member>
  41771. <member name="P:Godot.VisualShaderNodeCompare.Type">
  41772. <summary>
  41773. <para>The type to be used in the comparison. See <see cref="T:Godot.VisualShaderNodeCompare.ComparisonType"/> for options.</para>
  41774. </summary>
  41775. </member>
  41776. <member name="P:Godot.VisualShaderNodeCompare.Function">
  41777. <summary>
  41778. <para>A comparison function. See <see cref="T:Godot.VisualShaderNodeCompare.FunctionEnum"/> for options.</para>
  41779. </summary>
  41780. </member>
  41781. <member name="P:Godot.VisualShaderNodeCompare.Condition">
  41782. <summary>
  41783. <para>Extra condition which is applied if <see cref="P:Godot.VisualShaderNodeCompare.Type"/> is set to .</para>
  41784. </summary>
  41785. </member>
  41786. <member name="T:Godot.VisualShaderNodeCubeMap">
  41787. <summary>
  41788. <para>Translated to <c>texture(cubemap, vec3)</c> in the shader language. Returns a color vector and alpha channel as scalar.</para>
  41789. </summary>
  41790. </member>
  41791. <member name="F:Godot.VisualShaderNodeCubeMap.TextureTypeEnum.Data">
  41792. <summary>
  41793. <para>No hints are added to the uniform declaration.</para>
  41794. </summary>
  41795. </member>
  41796. <member name="F:Godot.VisualShaderNodeCubeMap.TextureTypeEnum.Color">
  41797. <summary>
  41798. <para>Adds <c>hint_albedo</c> as hint to the uniform declaration for proper sRGB to linear conversion.</para>
  41799. </summary>
  41800. </member>
  41801. <member name="F:Godot.VisualShaderNodeCubeMap.TextureTypeEnum.Normalmap">
  41802. <summary>
  41803. <para>Adds <c>hint_normal</c> as hint to the uniform declaration, which internally converts the texture for proper usage as normal map.</para>
  41804. </summary>
  41805. </member>
  41806. <member name="F:Godot.VisualShaderNodeCubeMap.SourceEnum.Texture">
  41807. <summary>
  41808. <para>Use the <see cref="T:Godot.CubeMap"/> set via <see cref="P:Godot.VisualShaderNodeCubeMap.CubeMap"/>. If this is set to <see cref="P:Godot.VisualShaderNodeCubeMap.Source"/>, the <c>samplerCube</c> port is ignored.</para>
  41809. </summary>
  41810. </member>
  41811. <member name="F:Godot.VisualShaderNodeCubeMap.SourceEnum.Port">
  41812. <summary>
  41813. <para>Use the <see cref="T:Godot.CubeMap"/> sampler reference passed via the <c>samplerCube</c> port. If this is set to <see cref="P:Godot.VisualShaderNodeCubeMap.Source"/>, the <see cref="P:Godot.VisualShaderNodeCubeMap.CubeMap"/> texture is ignored.</para>
  41814. </summary>
  41815. </member>
  41816. <member name="P:Godot.VisualShaderNodeCubeMap.Source">
  41817. <summary>
  41818. <para>Defines which source should be used for the sampling. See <see cref="T:Godot.VisualShaderNodeCubeMap.SourceEnum"/> for options.</para>
  41819. </summary>
  41820. </member>
  41821. <member name="P:Godot.VisualShaderNodeCubeMap.CubeMap">
  41822. <summary>
  41823. <para>The <see cref="T:Godot.CubeMap"/> texture to sample when using as <see cref="P:Godot.VisualShaderNodeCubeMap.Source"/>.</para>
  41824. </summary>
  41825. </member>
  41826. <member name="P:Godot.VisualShaderNodeCubeMap.TextureType">
  41827. <summary>
  41828. <para>Defines the type of data provided by the source texture. See <see cref="T:Godot.VisualShaderNodeCubeMap.TextureTypeEnum"/> for options.</para>
  41829. </summary>
  41830. </member>
  41831. <member name="T:Godot.VisualShaderNodeCubeMapUniform">
  41832. <summary>
  41833. <para>Translated to <c>uniform samplerCube</c> in the shader language. The output value can be used as port for <see cref="T:Godot.VisualShaderNodeCubeMap"/>.</para>
  41834. </summary>
  41835. </member>
  41836. <member name="T:Godot.VisualShaderNodeCustom">
  41837. <summary>
  41838. <para>By inheriting this class you can create a custom <see cref="T:Godot.VisualShader"/> script addon which will be automatically added to the Visual Shader Editor. The <see cref="T:Godot.VisualShaderNode"/>'s behavior is defined by overriding the provided virtual methods.</para>
  41839. <para>In order for the node to be registered as an editor addon, you must use the <c>tool</c> keyword and provide a <c>class_name</c> for your custom script. For example:</para>
  41840. <para><code>
  41841. tool
  41842. extends VisualShaderNodeCustom
  41843. class_name VisualShaderNodeNoise
  41844. </code></para>
  41845. </summary>
  41846. </member>
  41847. <member name="M:Godot.VisualShaderNodeCustom._GetCategory">
  41848. <summary>
  41849. <para>Override this method to define the category of the associated custom node in the Visual Shader Editor's members dialog.</para>
  41850. <para>Defining this method is optional. If not overridden, the node will be filed under the "Custom" category.</para>
  41851. </summary>
  41852. </member>
  41853. <member name="M:Godot.VisualShaderNodeCustom._GetCode(Godot.Collections.Array,Godot.Collections.Array,System.Int32,System.Int32)">
  41854. <summary>
  41855. <para>Override this method to define the actual shader code of the associated custom node. The shader code should be returned as a string, which can have multiple lines (the <c>"""</c> multiline string construct can be used for convenience).</para>
  41856. <para>The <c>input_vars</c> and <c>output_vars</c> arrays contain the string names of the various input and output variables, as defined by <c>_get_input_*</c> and <c>_get_output_*</c> virtual methods in this class.</para>
  41857. <para>The output ports can be assigned values in the shader code. For example, <c>return output_vars[0] + " = " + input_vars[0] + ";"</c>.</para>
  41858. <para>You can customize the generated code based on the shader <c>mode</c> (see <see cref="T:Godot.Shader.Mode"/>) and/or <c>type</c> (see <see cref="T:Godot.VisualShader.Type"/>).</para>
  41859. <para>Defining this method is required.</para>
  41860. </summary>
  41861. </member>
  41862. <member name="M:Godot.VisualShaderNodeCustom._GetDescription">
  41863. <summary>
  41864. <para>Override this method to define the description of the associated custom node in the Visual Shader Editor's members dialog.</para>
  41865. <para>Defining this method is optional.</para>
  41866. </summary>
  41867. </member>
  41868. <member name="M:Godot.VisualShaderNodeCustom._GetGlobalCode(System.Int32)">
  41869. <summary>
  41870. <para>Override this method to add shader code on top of the global shader, to define your own standard library of reusable methods, varyings, constants, uniforms, etc. The shader code should be returned as a string, which can have multiple lines (the <c>"""</c> multiline string construct can be used for convenience).</para>
  41871. <para>Be careful with this functionality as it can cause name conflicts with other custom nodes, so be sure to give the defined entities unique names.</para>
  41872. <para>You can customize the generated code based on the shader <c>mode</c> (see <see cref="T:Godot.Shader.Mode"/>).</para>
  41873. <para>Defining this method is optional.</para>
  41874. </summary>
  41875. </member>
  41876. <member name="M:Godot.VisualShaderNodeCustom._GetInputPortCount">
  41877. <summary>
  41878. <para>Override this method to define the amount of input ports of the associated custom node.</para>
  41879. <para>Defining this method is required. If not overridden, the node has no input ports.</para>
  41880. </summary>
  41881. </member>
  41882. <member name="M:Godot.VisualShaderNodeCustom._GetInputPortName(System.Int32)">
  41883. <summary>
  41884. <para>Override this method to define the names of input ports of the associated custom node. The names are used both for the input slots in the editor and as identifiers in the shader code, and are passed in the <c>input_vars</c> array in <see cref="M:Godot.VisualShaderNodeCustom._GetCode(Godot.Collections.Array,Godot.Collections.Array,System.Int32,System.Int32)"/>.</para>
  41885. <para>Defining this method is optional, but recommended. If not overridden, input ports are named as <c>"in" + str(port)</c>.</para>
  41886. </summary>
  41887. </member>
  41888. <member name="M:Godot.VisualShaderNodeCustom._GetInputPortType(System.Int32)">
  41889. <summary>
  41890. <para>Override this method to define the returned type of each input port of the associated custom node (see <see cref="T:Godot.VisualShaderNode.PortType"/> for possible types).</para>
  41891. <para>Defining this method is optional, but recommended. If not overridden, input ports will return the type.</para>
  41892. </summary>
  41893. </member>
  41894. <member name="M:Godot.VisualShaderNodeCustom._GetName">
  41895. <summary>
  41896. <para>Override this method to define the name of the associated custom node in the Visual Shader Editor's members dialog and graph.</para>
  41897. <para>Defining this method is optional, but recommended. If not overridden, the node will be named as "Unnamed".</para>
  41898. </summary>
  41899. </member>
  41900. <member name="M:Godot.VisualShaderNodeCustom._GetOutputPortCount">
  41901. <summary>
  41902. <para>Override this method to define the amount of output ports of the associated custom node.</para>
  41903. <para>Defining this method is required. If not overridden, the node has no output ports.</para>
  41904. </summary>
  41905. </member>
  41906. <member name="M:Godot.VisualShaderNodeCustom._GetOutputPortName(System.Int32)">
  41907. <summary>
  41908. <para>Override this method to define the names of output ports of the associated custom node. The names are used both for the output slots in the editor and as identifiers in the shader code, and are passed in the <c>output_vars</c> array in <see cref="M:Godot.VisualShaderNodeCustom._GetCode(Godot.Collections.Array,Godot.Collections.Array,System.Int32,System.Int32)"/>.</para>
  41909. <para>Defining this method is optional, but recommended. If not overridden, output ports are named as <c>"out" + str(port)</c>.</para>
  41910. </summary>
  41911. </member>
  41912. <member name="M:Godot.VisualShaderNodeCustom._GetOutputPortType(System.Int32)">
  41913. <summary>
  41914. <para>Override this method to define the returned type of each output port of the associated custom node (see <see cref="T:Godot.VisualShaderNode.PortType"/> for possible types).</para>
  41915. <para>Defining this method is optional, but recommended. If not overridden, output ports will return the type.</para>
  41916. </summary>
  41917. </member>
  41918. <member name="M:Godot.VisualShaderNodeCustom._GetReturnIconType">
  41919. <summary>
  41920. <para>Override this method to define the return icon of the associated custom node in the Visual Shader Editor's members dialog.</para>
  41921. <para>Defining this method is optional. If not overridden, no return icon is shown.</para>
  41922. </summary>
  41923. </member>
  41924. <member name="M:Godot.VisualShaderNodeCustom._GetSubcategory">
  41925. <summary>
  41926. <para>Override this method to define the subcategory of the associated custom node in the Visual Shader Editor's members dialog.</para>
  41927. <para>Defining this method is optional. If not overridden, the node will be filed under the root of the main category (see <see cref="M:Godot.VisualShaderNodeCustom._GetCategory"/>).</para>
  41928. </summary>
  41929. </member>
  41930. <member name="T:Godot.VisualShaderNodeDeterminant">
  41931. <summary>
  41932. <para>Translates to <c>deteminant(x)</c> in the shader language.</para>
  41933. </summary>
  41934. </member>
  41935. <member name="T:Godot.VisualShaderNodeDotProduct">
  41936. <summary>
  41937. <para>Translates to <c>dot(a, b)</c> in the shader language.</para>
  41938. </summary>
  41939. </member>
  41940. <member name="T:Godot.VisualShaderNodeExpression">
  41941. <summary>
  41942. <para>Custom Godot Shading Language expression, with a custom amount of input and output ports.</para>
  41943. <para>The provided code is directly injected into the graph's matching shader function (<c>vertex</c>, <c>fragment</c>, or <c>light</c>), so it cannot be used to to declare functions, varyings, uniforms, or global constants. See <see cref="T:Godot.VisualShaderNodeGlobalExpression"/> for such global definitions.</para>
  41944. </summary>
  41945. </member>
  41946. <member name="P:Godot.VisualShaderNodeExpression.Expression">
  41947. <summary>
  41948. <para>An expression in Godot Shading Language, which will be injected at the start of the graph's matching shader function (<c>vertex</c>, <c>fragment</c>, or <c>light</c>), and thus cannot be used to declare functions, varyings, uniforms, or global constants.</para>
  41949. </summary>
  41950. </member>
  41951. <member name="T:Godot.VisualShaderNodeFaceForward">
  41952. <summary>
  41953. <para>Translates to <c>faceforward(N, I, Nref)</c> in the shader language. The function has three vector parameters: <c>N</c>, the vector to orient, <c>I</c>, the incident vector, and <c>Nref</c>, the reference vector. If the dot product of <c>I</c> and <c>Nref</c> is smaller than zero the return value is <c>N</c>. Otherwise <c>-N</c> is returned.</para>
  41954. </summary>
  41955. </member>
  41956. <member name="T:Godot.VisualShaderNodeFresnel">
  41957. <summary>
  41958. <para>Returns falloff based on the dot product of surface normal and view direction of camera (pass associated inputs to it).</para>
  41959. </summary>
  41960. </member>
  41961. <member name="T:Godot.VisualShaderNodeGlobalExpression">
  41962. <summary>
  41963. <para>Custom Godot Shader Language expression, which is placed on top of the generated shader. You can place various function definitions inside to call later in <see cref="T:Godot.VisualShaderNodeExpression"/>s (which are injected in the main shader functions). You can also declare varyings, uniforms and global constants.</para>
  41964. </summary>
  41965. </member>
  41966. <member name="T:Godot.VisualShaderNodeGroupBase">
  41967. <summary>
  41968. <para>Currently, has no direct usage, use the derived classes instead.</para>
  41969. </summary>
  41970. </member>
  41971. <member name="P:Godot.VisualShaderNodeGroupBase.Size">
  41972. <summary>
  41973. <para>The size of the node in the visual shader graph.</para>
  41974. </summary>
  41975. </member>
  41976. <member name="M:Godot.VisualShaderNodeGroupBase.SetInputs(System.String)">
  41977. <summary>
  41978. <para>Defines all input ports using a <see cref="T:System.String"/> formatted as a colon-separated list: <c>id,type,name;</c> (see <see cref="M:Godot.VisualShaderNodeGroupBase.AddInputPort(System.Int32,System.Int32,System.String)"/>).</para>
  41979. </summary>
  41980. </member>
  41981. <member name="M:Godot.VisualShaderNodeGroupBase.GetInputs">
  41982. <summary>
  41983. <para>Returns a <see cref="T:System.String"/> description of the input ports as as colon-separated list using the format <c>id,type,name;</c> (see <see cref="M:Godot.VisualShaderNodeGroupBase.AddInputPort(System.Int32,System.Int32,System.String)"/>).</para>
  41984. </summary>
  41985. </member>
  41986. <member name="M:Godot.VisualShaderNodeGroupBase.SetOutputs(System.String)">
  41987. <summary>
  41988. <para>Defines all output ports using a <see cref="T:System.String"/> formatted as a colon-separated list: <c>id,type,name;</c> (see <see cref="M:Godot.VisualShaderNodeGroupBase.AddOutputPort(System.Int32,System.Int32,System.String)"/>).</para>
  41989. </summary>
  41990. </member>
  41991. <member name="M:Godot.VisualShaderNodeGroupBase.GetOutputs">
  41992. <summary>
  41993. <para>Returns a <see cref="T:System.String"/> description of the output ports as as colon-separated list using the format <c>id,type,name;</c> (see <see cref="M:Godot.VisualShaderNodeGroupBase.AddOutputPort(System.Int32,System.Int32,System.String)"/>).</para>
  41994. </summary>
  41995. </member>
  41996. <member name="M:Godot.VisualShaderNodeGroupBase.IsValidPortName(System.String)">
  41997. <summary>
  41998. <para>Returns <c>true</c> if the specified port name does not override an existed port name and is valid within the shader.</para>
  41999. </summary>
  42000. </member>
  42001. <member name="M:Godot.VisualShaderNodeGroupBase.AddInputPort(System.Int32,System.Int32,System.String)">
  42002. <summary>
  42003. <para>Adds an input port with the specified <c>type</c> (see <see cref="T:Godot.VisualShaderNode.PortType"/>) and <c>name</c>.</para>
  42004. </summary>
  42005. </member>
  42006. <member name="M:Godot.VisualShaderNodeGroupBase.RemoveInputPort(System.Int32)">
  42007. <summary>
  42008. <para>Removes the specified input port.</para>
  42009. </summary>
  42010. </member>
  42011. <member name="M:Godot.VisualShaderNodeGroupBase.GetInputPortCount">
  42012. <summary>
  42013. <para>Returns the number of input ports in use. Alternative for <see cref="M:Godot.VisualShaderNodeGroupBase.GetFreeInputPortId"/>.</para>
  42014. </summary>
  42015. </member>
  42016. <member name="M:Godot.VisualShaderNodeGroupBase.HasInputPort(System.Int32)">
  42017. <summary>
  42018. <para>Returns <c>true</c> if the specified input port exists.</para>
  42019. </summary>
  42020. </member>
  42021. <member name="M:Godot.VisualShaderNodeGroupBase.ClearInputPorts">
  42022. <summary>
  42023. <para>Removes all previously specified input ports.</para>
  42024. </summary>
  42025. </member>
  42026. <member name="M:Godot.VisualShaderNodeGroupBase.AddOutputPort(System.Int32,System.Int32,System.String)">
  42027. <summary>
  42028. <para>Adds an output port with the specified <c>type</c> (see <see cref="T:Godot.VisualShaderNode.PortType"/>) and <c>name</c>.</para>
  42029. </summary>
  42030. </member>
  42031. <member name="M:Godot.VisualShaderNodeGroupBase.RemoveOutputPort(System.Int32)">
  42032. <summary>
  42033. <para>Removes the specified output port.</para>
  42034. </summary>
  42035. </member>
  42036. <member name="M:Godot.VisualShaderNodeGroupBase.GetOutputPortCount">
  42037. <summary>
  42038. <para>Returns the number of output ports in use. Alternative for <see cref="M:Godot.VisualShaderNodeGroupBase.GetFreeOutputPortId"/>.</para>
  42039. </summary>
  42040. </member>
  42041. <member name="M:Godot.VisualShaderNodeGroupBase.HasOutputPort(System.Int32)">
  42042. <summary>
  42043. <para>Returns <c>true</c> if the specified output port exists.</para>
  42044. </summary>
  42045. </member>
  42046. <member name="M:Godot.VisualShaderNodeGroupBase.ClearOutputPorts">
  42047. <summary>
  42048. <para>Removes all previously specified output ports.</para>
  42049. </summary>
  42050. </member>
  42051. <member name="M:Godot.VisualShaderNodeGroupBase.SetInputPortName(System.Int32,System.String)">
  42052. <summary>
  42053. <para>Renames the specified input port.</para>
  42054. </summary>
  42055. </member>
  42056. <member name="M:Godot.VisualShaderNodeGroupBase.SetInputPortType(System.Int32,System.Int32)">
  42057. <summary>
  42058. <para>Sets the specified input port's type (see <see cref="T:Godot.VisualShaderNode.PortType"/>).</para>
  42059. </summary>
  42060. </member>
  42061. <member name="M:Godot.VisualShaderNodeGroupBase.SetOutputPortName(System.Int32,System.String)">
  42062. <summary>
  42063. <para>Renames the specified output port.</para>
  42064. </summary>
  42065. </member>
  42066. <member name="M:Godot.VisualShaderNodeGroupBase.SetOutputPortType(System.Int32,System.Int32)">
  42067. <summary>
  42068. <para>Sets the specified output port's type (see <see cref="T:Godot.VisualShaderNode.PortType"/>).</para>
  42069. </summary>
  42070. </member>
  42071. <member name="M:Godot.VisualShaderNodeGroupBase.GetFreeInputPortId">
  42072. <summary>
  42073. <para>Returns a free input port ID which can be used in <see cref="M:Godot.VisualShaderNodeGroupBase.AddInputPort(System.Int32,System.Int32,System.String)"/>.</para>
  42074. </summary>
  42075. </member>
  42076. <member name="M:Godot.VisualShaderNodeGroupBase.GetFreeOutputPortId">
  42077. <summary>
  42078. <para>Returns a free output port ID which can be used in <see cref="M:Godot.VisualShaderNodeGroupBase.AddOutputPort(System.Int32,System.Int32,System.String)"/>.</para>
  42079. </summary>
  42080. </member>
  42081. <member name="T:Godot.VisualShaderNodeInput">
  42082. <summary>
  42083. <para>Gives access to input variables (built-ins) available for the shader. See the shading reference for the list of available built-ins for each shader type (check <c>Tutorials</c> section for link).</para>
  42084. </summary>
  42085. </member>
  42086. <member name="P:Godot.VisualShaderNodeInput.InputName">
  42087. <summary>
  42088. <para>One of the several input constants in lower-case style like: "vertex"(<c>VERTEX</c>) or "point_size"(<c>POINT_SIZE</c>).</para>
  42089. </summary>
  42090. </member>
  42091. <member name="T:Godot.VisualShaderNodeIs">
  42092. <summary>
  42093. <para>Returns the boolean result of the comparison between <c>INF</c> or <c>NaN</c> and a scalar parameter.</para>
  42094. </summary>
  42095. </member>
  42096. <member name="F:Godot.VisualShaderNodeIs.FunctionEnum.Inf">
  42097. <summary>
  42098. <para>Comparison with <c>INF</c> (Infinity).</para>
  42099. </summary>
  42100. </member>
  42101. <member name="F:Godot.VisualShaderNodeIs.FunctionEnum.Nan">
  42102. <summary>
  42103. <para>Comparison with <c>NaN</c> (Not a Number; denotes invalid numeric results, e.g. division by zero).</para>
  42104. </summary>
  42105. </member>
  42106. <member name="P:Godot.VisualShaderNodeIs.Function">
  42107. <summary>
  42108. <para>The comparison function. See <see cref="T:Godot.VisualShaderNodeIs.FunctionEnum"/> for options.</para>
  42109. </summary>
  42110. </member>
  42111. <member name="T:Godot.VisualShaderNodeOuterProduct">
  42112. <summary>
  42113. <para><c>OuterProduct</c> treats the first parameter <c>c</c> as a column vector (matrix with one column) and the second parameter <c>r</c> as a row vector (matrix with one row) and does a linear algebraic matrix multiply <c>c * r</c>, yielding a matrix whose number of rows is the number of components in <c>c</c> and whose number of columns is the number of components in <c>r</c>.</para>
  42114. </summary>
  42115. </member>
  42116. <member name="T:Godot.VisualShaderNodeOutput">
  42117. <summary>
  42118. <para>This visual shader node is present in all shader graphs in form of "Output" block with mutliple output value ports.</para>
  42119. </summary>
  42120. </member>
  42121. <member name="T:Godot.VisualShaderNodeScalarClamp">
  42122. <summary>
  42123. <para>Constrains a value to lie between <c>min</c> and <c>max</c> values.</para>
  42124. </summary>
  42125. </member>
  42126. <member name="T:Godot.VisualShaderNodeScalarDerivativeFunc">
  42127. <summary>
  42128. <para>This node is only available in <c>Fragment</c> and <c>Light</c> visual shaders.</para>
  42129. </summary>
  42130. </member>
  42131. <member name="F:Godot.VisualShaderNodeScalarDerivativeFunc.FunctionEnum.Sum">
  42132. <summary>
  42133. <para>Sum of absolute derivative in <c>x</c> and <c>y</c>.</para>
  42134. </summary>
  42135. </member>
  42136. <member name="F:Godot.VisualShaderNodeScalarDerivativeFunc.FunctionEnum.X">
  42137. <summary>
  42138. <para>Derivative in <c>x</c> using local differencing.</para>
  42139. </summary>
  42140. </member>
  42141. <member name="F:Godot.VisualShaderNodeScalarDerivativeFunc.FunctionEnum.Y">
  42142. <summary>
  42143. <para>Derivative in <c>y</c> using local differencing.</para>
  42144. </summary>
  42145. </member>
  42146. <member name="P:Godot.VisualShaderNodeScalarDerivativeFunc.Function">
  42147. <summary>
  42148. <para>The derivative type. See <see cref="T:Godot.VisualShaderNodeScalarDerivativeFunc.FunctionEnum"/> for options.</para>
  42149. </summary>
  42150. </member>
  42151. <member name="T:Godot.VisualShaderNodeScalarInterp">
  42152. <summary>
  42153. <para>Translates to <c>mix(a, b, weight)</c> in the shader language.</para>
  42154. </summary>
  42155. </member>
  42156. <member name="T:Godot.VisualShaderNodeScalarSmoothStep">
  42157. <summary>
  42158. <para>Translates to <c>smoothstep(edge0, edge1, x)</c> in the shader language.</para>
  42159. <para>Returns <c>0.0</c> if <c>x</c> is smaller than <c>edge0</c> and <c>1.0</c> if <c>x</c> is larger than <c>edge1</c>. Otherwise the return value is interpolated between <c>0.0</c> and <c>1.0</c> using Hermite polynomials.</para>
  42160. </summary>
  42161. </member>
  42162. <member name="T:Godot.VisualShaderNodeScalarSwitch">
  42163. <summary>
  42164. <para>Returns an associated scalar if the provided boolean value is <c>true</c> or <c>false</c>.</para>
  42165. </summary>
  42166. </member>
  42167. <member name="T:Godot.VisualShaderNodeSwitch">
  42168. <summary>
  42169. <para>Returns an associated vector if the provided boolean value is <c>true</c> or <c>false</c>.</para>
  42170. </summary>
  42171. </member>
  42172. <member name="T:Godot.VisualShaderNodeTexture">
  42173. <summary>
  42174. <para>Performs a lookup operation on the provided texture, with support for multiple texture sources to choose from.</para>
  42175. </summary>
  42176. </member>
  42177. <member name="F:Godot.VisualShaderNodeTexture.TextureTypeEnum.Data">
  42178. <summary>
  42179. <para>No hints are added to the uniform declaration.</para>
  42180. </summary>
  42181. </member>
  42182. <member name="F:Godot.VisualShaderNodeTexture.TextureTypeEnum.Color">
  42183. <summary>
  42184. <para>Adds <c>hint_albedo</c> as hint to the uniform declaration for proper sRGB to linear conversion.</para>
  42185. </summary>
  42186. </member>
  42187. <member name="F:Godot.VisualShaderNodeTexture.TextureTypeEnum.Normalmap">
  42188. <summary>
  42189. <para>Adds <c>hint_normal</c> as hint to the uniform declaration, which internally converts the texture for proper usage as normal map.</para>
  42190. </summary>
  42191. </member>
  42192. <member name="F:Godot.VisualShaderNodeTexture.SourceEnum.Texture">
  42193. <summary>
  42194. <para>Use the texture given as an argument for this function.</para>
  42195. </summary>
  42196. </member>
  42197. <member name="F:Godot.VisualShaderNodeTexture.SourceEnum.Screen">
  42198. <summary>
  42199. <para>Use the current viewport's texture as the source.</para>
  42200. </summary>
  42201. </member>
  42202. <member name="F:Godot.VisualShaderNodeTexture.SourceEnum.Source2dTexture">
  42203. <summary>
  42204. <para>Use the texture from this shader's texture built-in (e.g. a texture of a <see cref="T:Godot.Sprite"/>).</para>
  42205. </summary>
  42206. </member>
  42207. <member name="F:Godot.VisualShaderNodeTexture.SourceEnum.Source2dNormal">
  42208. <summary>
  42209. <para>Use the texture from this shader's normal map built-in.</para>
  42210. </summary>
  42211. </member>
  42212. <member name="F:Godot.VisualShaderNodeTexture.SourceEnum.Depth">
  42213. <summary>
  42214. <para>Use the depth texture available for this shader.</para>
  42215. </summary>
  42216. </member>
  42217. <member name="F:Godot.VisualShaderNodeTexture.SourceEnum.Port">
  42218. <summary>
  42219. <para>Use the texture provided in the input port for this function.</para>
  42220. </summary>
  42221. </member>
  42222. <member name="P:Godot.VisualShaderNodeTexture.Source">
  42223. <summary>
  42224. <para>Determines the source for the lookup. See <see cref="T:Godot.VisualShaderNodeTexture.SourceEnum"/> for options.</para>
  42225. </summary>
  42226. </member>
  42227. <member name="P:Godot.VisualShaderNodeTexture.Texture">
  42228. <summary>
  42229. <para>The source texture, if needed for the selected <see cref="P:Godot.VisualShaderNodeTexture.Source"/>.</para>
  42230. </summary>
  42231. </member>
  42232. <member name="P:Godot.VisualShaderNodeTexture.TextureType">
  42233. <summary>
  42234. <para>Specifies the type of the texture if <see cref="P:Godot.VisualShaderNodeTexture.Source"/> is set to . See <see cref="T:Godot.VisualShaderNodeTexture.TextureTypeEnum"/> for options.</para>
  42235. </summary>
  42236. </member>
  42237. <member name="T:Godot.VisualShaderNodeTextureUniform">
  42238. <summary>
  42239. <para>Performs a lookup operation on the texture provided as a uniform for the shader.</para>
  42240. </summary>
  42241. </member>
  42242. <member name="F:Godot.VisualShaderNodeTextureUniform.TextureTypeEnum.Data">
  42243. <summary>
  42244. <para>No hints are added to the uniform declaration.</para>
  42245. </summary>
  42246. </member>
  42247. <member name="F:Godot.VisualShaderNodeTextureUniform.TextureTypeEnum.Color">
  42248. <summary>
  42249. <para>Adds <c>hint_albedo</c> as hint to the uniform declaration for proper sRGB to linear conversion.</para>
  42250. </summary>
  42251. </member>
  42252. <member name="F:Godot.VisualShaderNodeTextureUniform.TextureTypeEnum.Normalmap">
  42253. <summary>
  42254. <para>Adds <c>hint_normal</c> as hint to the uniform declaration, which internally converts the texture for proper usage as normal map.</para>
  42255. </summary>
  42256. </member>
  42257. <member name="F:Godot.VisualShaderNodeTextureUniform.TextureTypeEnum.Aniso">
  42258. <summary>
  42259. <para>Adds <c>hint_aniso</c> as hint to the uniform declaration to use for a flowmap.</para>
  42260. </summary>
  42261. </member>
  42262. <member name="F:Godot.VisualShaderNodeTextureUniform.ColorDefaultEnum.White">
  42263. <summary>
  42264. <para>Defaults to white color.</para>
  42265. </summary>
  42266. </member>
  42267. <member name="F:Godot.VisualShaderNodeTextureUniform.ColorDefaultEnum.Black">
  42268. <summary>
  42269. <para>Defaults to black color.</para>
  42270. </summary>
  42271. </member>
  42272. <member name="P:Godot.VisualShaderNodeTextureUniform.TextureType">
  42273. <summary>
  42274. <para>Defines the type of data provided by the source texture. See <see cref="T:Godot.VisualShaderNodeTextureUniform.TextureTypeEnum"/> for options.</para>
  42275. </summary>
  42276. </member>
  42277. <member name="P:Godot.VisualShaderNodeTextureUniform.ColorDefault">
  42278. <summary>
  42279. <para>Sets the default color if no texture is assigned to the uniform.</para>
  42280. </summary>
  42281. </member>
  42282. <member name="T:Godot.VisualShaderNodeTextureUniformTriplanar">
  42283. <summary>
  42284. <para>Performs a lookup operation on the texture provided as a uniform for the shader, with support for triplanar mapping.</para>
  42285. </summary>
  42286. </member>
  42287. <member name="T:Godot.VisualShaderNodeTransformCompose">
  42288. <summary>
  42289. <para>Creates a 4x4 transform matrix using four vectors of type <c>vec3</c>. Each vector is one row in the matrix and the last column is a <c>vec4(0, 0, 0, 1)</c>.</para>
  42290. </summary>
  42291. </member>
  42292. <member name="T:Godot.VisualShaderNodeTransformConstant">
  42293. <summary>
  42294. <para>A constant <see cref="T:Godot.Transform"/>, which can be used as an input node.</para>
  42295. </summary>
  42296. </member>
  42297. <member name="P:Godot.VisualShaderNodeTransformConstant.Constant">
  42298. <summary>
  42299. <para>A <see cref="T:Godot.Transform"/> constant which represents the state of this node.</para>
  42300. </summary>
  42301. </member>
  42302. <member name="T:Godot.VisualShaderNodeTransformDecompose">
  42303. <summary>
  42304. <para>Takes a 4x4 transform matrix and decomposes it into four <c>vec3</c> values, one from each row of the matrix.</para>
  42305. </summary>
  42306. </member>
  42307. <member name="T:Godot.VisualShaderNodeTransformFunc">
  42308. <summary>
  42309. <para>Computes an inverse or transpose function on the provided <see cref="T:Godot.Transform"/>.</para>
  42310. </summary>
  42311. </member>
  42312. <member name="F:Godot.VisualShaderNodeTransformFunc.FunctionEnum.Inverse">
  42313. <summary>
  42314. <para>Perform the inverse operation on the <see cref="T:Godot.Transform"/> matrix.</para>
  42315. </summary>
  42316. </member>
  42317. <member name="F:Godot.VisualShaderNodeTransformFunc.FunctionEnum.Transpose">
  42318. <summary>
  42319. <para>Perform the transpose operation on the <see cref="T:Godot.Transform"/> matrix.</para>
  42320. </summary>
  42321. </member>
  42322. <member name="P:Godot.VisualShaderNodeTransformFunc.Function">
  42323. <summary>
  42324. <para>The function to be computed. See <see cref="T:Godot.VisualShaderNodeTransformFunc.FunctionEnum"/> for options.</para>
  42325. </summary>
  42326. </member>
  42327. <member name="T:Godot.VisualShaderNodeTransformMult">
  42328. <summary>
  42329. <para>A multiplication operation on two transforms (4x4 matrices), with support for different multiplication operators.</para>
  42330. </summary>
  42331. </member>
  42332. <member name="F:Godot.VisualShaderNodeTransformMult.OperatorEnum.Axb">
  42333. <summary>
  42334. <para>Multiplies transform <c>a</c> by the transform <c>b</c>.</para>
  42335. </summary>
  42336. </member>
  42337. <member name="F:Godot.VisualShaderNodeTransformMult.OperatorEnum.Bxa">
  42338. <summary>
  42339. <para>Multiplies transform <c>b</c> by the transform <c>a</c>.</para>
  42340. </summary>
  42341. </member>
  42342. <member name="F:Godot.VisualShaderNodeTransformMult.OperatorEnum.AxbComp">
  42343. <summary>
  42344. <para>Performs a component-wise multiplication of transform <c>a</c> by the transform <c>b</c>.</para>
  42345. </summary>
  42346. </member>
  42347. <member name="F:Godot.VisualShaderNodeTransformMult.OperatorEnum.BxaComp">
  42348. <summary>
  42349. <para>Performs a component-wise multiplication of transform <c>b</c> by the transform <c>a</c>.</para>
  42350. </summary>
  42351. </member>
  42352. <member name="P:Godot.VisualShaderNodeTransformMult.Operator">
  42353. <summary>
  42354. <para>The multiplication type to be performed on the transforms. See <see cref="T:Godot.VisualShaderNodeTransformMult.OperatorEnum"/> for options.</para>
  42355. </summary>
  42356. </member>
  42357. <member name="T:Godot.VisualShaderNodeTransformUniform">
  42358. <summary>
  42359. <para>Translated to <c>uniform mat4</c> in the shader language.</para>
  42360. </summary>
  42361. </member>
  42362. <member name="T:Godot.VisualShaderNodeTransformVecMult">
  42363. <summary>
  42364. <para>A multiplication operation on a transform (4x4 matrix) and a vector, with support for different multiplication operators.</para>
  42365. </summary>
  42366. </member>
  42367. <member name="F:Godot.VisualShaderNodeTransformVecMult.OperatorEnum.Axb">
  42368. <summary>
  42369. <para>Multiplies transform <c>a</c> by the vector <c>b</c>.</para>
  42370. </summary>
  42371. </member>
  42372. <member name="F:Godot.VisualShaderNodeTransformVecMult.OperatorEnum.Bxa">
  42373. <summary>
  42374. <para>Multiplies vector <c>b</c> by the transform <c>a</c>.</para>
  42375. </summary>
  42376. </member>
  42377. <member name="F:Godot.VisualShaderNodeTransformVecMult.OperatorEnum.Op3x3Axb">
  42378. <summary>
  42379. <para>Multiplies transform <c>a</c> by the vector <c>b</c>, skipping the last row and column of the transform.</para>
  42380. </summary>
  42381. </member>
  42382. <member name="F:Godot.VisualShaderNodeTransformVecMult.OperatorEnum.Op3x3Bxa">
  42383. <summary>
  42384. <para>Multiplies vector <c>b</c> by the transform <c>a</c>, skipping the last row and column of the transform.</para>
  42385. </summary>
  42386. </member>
  42387. <member name="P:Godot.VisualShaderNodeTransformVecMult.Operator">
  42388. <summary>
  42389. <para>The multiplication type to be performed. See <see cref="T:Godot.VisualShaderNodeTransformVecMult.OperatorEnum"/> for options.</para>
  42390. </summary>
  42391. </member>
  42392. <member name="T:Godot.VisualShaderNodeUniform">
  42393. <summary>
  42394. <para>A uniform represents a variable in the shader which is set externally, i.e. from the <see cref="T:Godot.ShaderMaterial"/>. Uniforms are exposed as properties in the <see cref="T:Godot.ShaderMaterial"/> and can be assigned from the inspector or from a script.</para>
  42395. </summary>
  42396. </member>
  42397. <member name="P:Godot.VisualShaderNodeUniform.UniformName">
  42398. <summary>
  42399. <para>Name of the uniform, by which it can be accessed through the <see cref="T:Godot.ShaderMaterial"/> properties.</para>
  42400. </summary>
  42401. </member>
  42402. <member name="T:Godot.VisualShaderNodeVec3Constant">
  42403. <summary>
  42404. <para>A constant <see cref="T:Godot.Vector3"/>, which can be used as an input node.</para>
  42405. </summary>
  42406. </member>
  42407. <member name="P:Godot.VisualShaderNodeVec3Constant.Constant">
  42408. <summary>
  42409. <para>A <see cref="T:Godot.Vector3"/> constant which represents the state of this node.</para>
  42410. </summary>
  42411. </member>
  42412. <member name="T:Godot.VisualShaderNodeVec3Uniform">
  42413. <summary>
  42414. <para>Translated to <c>uniform vec3</c> in the shader language.</para>
  42415. </summary>
  42416. </member>
  42417. <member name="T:Godot.VisualShaderNodeVectorClamp">
  42418. <summary>
  42419. <para>Constrains a value to lie between <c>min</c> and <c>max</c> values. The operation is performed on each component of the vector individually.</para>
  42420. </summary>
  42421. </member>
  42422. <member name="T:Godot.VisualShaderNodeVectorCompose">
  42423. <summary>
  42424. <para>Creates a <c>vec3</c> using three scalar values that can be provided from separate inputs.</para>
  42425. </summary>
  42426. </member>
  42427. <member name="T:Godot.VisualShaderNodeVectorDecompose">
  42428. <summary>
  42429. <para>Takes a <c>vec3</c> and decomposes it into three scalar values that can be used as separate inputs.</para>
  42430. </summary>
  42431. </member>
  42432. <member name="T:Godot.VisualShaderNodeVectorDerivativeFunc">
  42433. <summary>
  42434. <para>This node is only available in <c>Fragment</c> and <c>Light</c> visual shaders.</para>
  42435. </summary>
  42436. </member>
  42437. <member name="F:Godot.VisualShaderNodeVectorDerivativeFunc.FunctionEnum.Sum">
  42438. <summary>
  42439. <para>Sum of absolute derivative in <c>x</c> and <c>y</c>.</para>
  42440. </summary>
  42441. </member>
  42442. <member name="F:Godot.VisualShaderNodeVectorDerivativeFunc.FunctionEnum.X">
  42443. <summary>
  42444. <para>Derivative in <c>x</c> using local differencing.</para>
  42445. </summary>
  42446. </member>
  42447. <member name="F:Godot.VisualShaderNodeVectorDerivativeFunc.FunctionEnum.Y">
  42448. <summary>
  42449. <para>Derivative in <c>y</c> using local differencing.</para>
  42450. </summary>
  42451. </member>
  42452. <member name="P:Godot.VisualShaderNodeVectorDerivativeFunc.Function">
  42453. <summary>
  42454. <para>A derivative type. See <see cref="T:Godot.VisualShaderNodeVectorDerivativeFunc.FunctionEnum"/> for options.</para>
  42455. </summary>
  42456. </member>
  42457. <member name="T:Godot.VisualShaderNodeVectorDistance">
  42458. <summary>
  42459. <para>Calculates distance from point represented by vector <c>p0</c> to vector <c>p1</c>.</para>
  42460. <para>Translated to <c>distance(p0, p1)</c> in the shader language.</para>
  42461. </summary>
  42462. </member>
  42463. <member name="T:Godot.VisualShaderNodeVectorFunc">
  42464. <summary>
  42465. <para>A visual shader node able to perform different functions using vectors.</para>
  42466. </summary>
  42467. </member>
  42468. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Normalize">
  42469. <summary>
  42470. <para>Normalizes the vector so that it has a length of <c>1</c> but points in the same direction.</para>
  42471. </summary>
  42472. </member>
  42473. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Saturate">
  42474. <summary>
  42475. <para>Clamps the value between <c>0.0</c> and <c>1.0</c>.</para>
  42476. </summary>
  42477. </member>
  42478. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Negate">
  42479. <summary>
  42480. <para>Returns the opposite value of the parameter.</para>
  42481. </summary>
  42482. </member>
  42483. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Reciprocal">
  42484. <summary>
  42485. <para>Returns <c>1/vector</c>.</para>
  42486. </summary>
  42487. </member>
  42488. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Rgb2hsv">
  42489. <summary>
  42490. <para>Converts RGB vector to HSV equivalent.</para>
  42491. </summary>
  42492. </member>
  42493. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Hsv2rgb">
  42494. <summary>
  42495. <para>Converts HSV vector to RGB equivalent.</para>
  42496. </summary>
  42497. </member>
  42498. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Abs">
  42499. <summary>
  42500. <para>Returns the absolute value of the parameter.</para>
  42501. </summary>
  42502. </member>
  42503. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Acos">
  42504. <summary>
  42505. <para>Returns the arc-cosine of the parameter.</para>
  42506. </summary>
  42507. </member>
  42508. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Acosh">
  42509. <summary>
  42510. <para>Returns the inverse hyperbolic cosine of the parameter.</para>
  42511. </summary>
  42512. </member>
  42513. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Asin">
  42514. <summary>
  42515. <para>Returns the arc-sine of the parameter.</para>
  42516. </summary>
  42517. </member>
  42518. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Asinh">
  42519. <summary>
  42520. <para>Returns the inverse hyperbolic sine of the parameter.</para>
  42521. </summary>
  42522. </member>
  42523. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Atan">
  42524. <summary>
  42525. <para>Returns the arc-tangent of the parameter.</para>
  42526. </summary>
  42527. </member>
  42528. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Atanh">
  42529. <summary>
  42530. <para>Returns the inverse hyperbolic tangent of the parameter.</para>
  42531. </summary>
  42532. </member>
  42533. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Ceil">
  42534. <summary>
  42535. <para>Finds the nearest integer that is greater than or equal to the parameter.</para>
  42536. </summary>
  42537. </member>
  42538. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Cos">
  42539. <summary>
  42540. <para>Returns the cosine of the parameter.</para>
  42541. </summary>
  42542. </member>
  42543. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Cosh">
  42544. <summary>
  42545. <para>Returns the hyperbolic cosine of the parameter.</para>
  42546. </summary>
  42547. </member>
  42548. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Degrees">
  42549. <summary>
  42550. <para>Converts a quantity in radians to degrees.</para>
  42551. </summary>
  42552. </member>
  42553. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Exp">
  42554. <summary>
  42555. <para>Base-e Exponential.</para>
  42556. </summary>
  42557. </member>
  42558. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Exp2">
  42559. <summary>
  42560. <para>Base-2 Exponential.</para>
  42561. </summary>
  42562. </member>
  42563. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Floor">
  42564. <summary>
  42565. <para>Finds the nearest integer less than or equal to the parameter.</para>
  42566. </summary>
  42567. </member>
  42568. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Frac">
  42569. <summary>
  42570. <para>Computes the fractional part of the argument.</para>
  42571. </summary>
  42572. </member>
  42573. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.InverseSqrt">
  42574. <summary>
  42575. <para>Returns the inverse of the square root of the parameter.</para>
  42576. </summary>
  42577. </member>
  42578. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Log">
  42579. <summary>
  42580. <para>Natural logarithm.</para>
  42581. </summary>
  42582. </member>
  42583. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Log2">
  42584. <summary>
  42585. <para>Base-2 logarithm.</para>
  42586. </summary>
  42587. </member>
  42588. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Radians">
  42589. <summary>
  42590. <para>Converts a quantity in degrees to radians.</para>
  42591. </summary>
  42592. </member>
  42593. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Round">
  42594. <summary>
  42595. <para>Finds the nearest integer to the parameter.</para>
  42596. </summary>
  42597. </member>
  42598. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Roundeven">
  42599. <summary>
  42600. <para>Finds the nearest even integer to the parameter.</para>
  42601. </summary>
  42602. </member>
  42603. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Sign">
  42604. <summary>
  42605. <para>Extracts the sign of the parameter, i.e. returns <c>-1</c> if the parameter is negative, <c>1</c> if it's positive and <c>0</c> otherwise.</para>
  42606. </summary>
  42607. </member>
  42608. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Sin">
  42609. <summary>
  42610. <para>Returns the sine of the parameter.</para>
  42611. </summary>
  42612. </member>
  42613. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Sinh">
  42614. <summary>
  42615. <para>Returns the hyperbolic sine of the parameter.</para>
  42616. </summary>
  42617. </member>
  42618. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Sqrt">
  42619. <summary>
  42620. <para>Returns the square root of the parameter.</para>
  42621. </summary>
  42622. </member>
  42623. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Tan">
  42624. <summary>
  42625. <para>Returns the tangent of the parameter.</para>
  42626. </summary>
  42627. </member>
  42628. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Tanh">
  42629. <summary>
  42630. <para>Returns the hyperbolic tangent of the parameter.</para>
  42631. </summary>
  42632. </member>
  42633. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Trunc">
  42634. <summary>
  42635. <para>Returns a value equal to the nearest integer to the parameter whose absolute value is not larger than the absolute value of the parameter.</para>
  42636. </summary>
  42637. </member>
  42638. <member name="F:Godot.VisualShaderNodeVectorFunc.FunctionEnum.Oneminus">
  42639. <summary>
  42640. <para>Returns <c>1.0 - vector</c>.</para>
  42641. </summary>
  42642. </member>
  42643. <member name="P:Godot.VisualShaderNodeVectorFunc.Function">
  42644. <summary>
  42645. <para>The function to be performed. See <see cref="T:Godot.VisualShaderNodeVectorFunc.FunctionEnum"/> for options.</para>
  42646. </summary>
  42647. </member>
  42648. <member name="T:Godot.VisualShaderNodeVectorInterp">
  42649. <summary>
  42650. <para>Translates to <c>mix(a, b, weight)</c> in the shader language, where <c>weight</c> is a <see cref="T:Godot.Vector3"/> with weights for each component.</para>
  42651. </summary>
  42652. </member>
  42653. <member name="T:Godot.VisualShaderNodeVectorLen">
  42654. <summary>
  42655. <para>Translated to <c>length(p0)</c> in the shader language.</para>
  42656. </summary>
  42657. </member>
  42658. <member name="T:Godot.VisualShaderNodeVectorOp">
  42659. <summary>
  42660. <para>A visual shader node for use of vector operators. Operates on vector <c>a</c> and vector <c>b</c>.</para>
  42661. </summary>
  42662. </member>
  42663. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Add">
  42664. <summary>
  42665. <para>Adds two vectors.</para>
  42666. </summary>
  42667. </member>
  42668. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Sub">
  42669. <summary>
  42670. <para>Subtracts a vector from a vector.</para>
  42671. </summary>
  42672. </member>
  42673. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Mul">
  42674. <summary>
  42675. <para>Multiplies two vectors.</para>
  42676. </summary>
  42677. </member>
  42678. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Div">
  42679. <summary>
  42680. <para>Divides vector by vector.</para>
  42681. </summary>
  42682. </member>
  42683. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Mod">
  42684. <summary>
  42685. <para>Returns the remainder of the two vectors.</para>
  42686. </summary>
  42687. </member>
  42688. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Pow">
  42689. <summary>
  42690. <para>Returns the value of the first parameter raised to the power of the second, for each component of the vectors.</para>
  42691. </summary>
  42692. </member>
  42693. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Max">
  42694. <summary>
  42695. <para>Returns the greater of two values, for each component of the vectors.</para>
  42696. </summary>
  42697. </member>
  42698. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Min">
  42699. <summary>
  42700. <para>Returns the lesser of two values, for each component of the vectors.</para>
  42701. </summary>
  42702. </member>
  42703. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Cross">
  42704. <summary>
  42705. <para>Calculates the cross product of two vectors.</para>
  42706. </summary>
  42707. </member>
  42708. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Atan2">
  42709. <summary>
  42710. <para>Returns the arc-tangent of the parameters.</para>
  42711. </summary>
  42712. </member>
  42713. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Reflect">
  42714. <summary>
  42715. <para>Returns the vector that points in the direction of reflection. <c>a</c> is incident vector and <c>b</c> is the normal vector.</para>
  42716. </summary>
  42717. </member>
  42718. <member name="F:Godot.VisualShaderNodeVectorOp.OperatorEnum.Step">
  42719. <summary>
  42720. <para>Vector step operator. Returns <c>0.0</c> if <c>a</c> is smaller than <c>b</c> and <c>1.0</c> otherwise.</para>
  42721. </summary>
  42722. </member>
  42723. <member name="P:Godot.VisualShaderNodeVectorOp.Operator">
  42724. <summary>
  42725. <para>The operator to be used. See <see cref="T:Godot.VisualShaderNodeVectorOp.OperatorEnum"/> for options.</para>
  42726. </summary>
  42727. </member>
  42728. <member name="T:Godot.VisualShaderNodeVectorRefract">
  42729. <summary>
  42730. <para>Translated to <c>refract(I, N, eta)</c> in the shader language, where <c>I</c> is the incident vector, <c>N</c> is the normal vector and <c>eta</c> is the ratio of the indicies of the refraction.</para>
  42731. </summary>
  42732. </member>
  42733. <member name="T:Godot.VisualShaderNodeVectorScalarMix">
  42734. <summary>
  42735. <para>Translates to <c>mix(a, b, weight)</c> in the shader language, where <c>a</c> and <c>b</c> are vectors and <c>weight</c> is a scalar.</para>
  42736. </summary>
  42737. </member>
  42738. <member name="T:Godot.VisualShaderNodeVectorScalarSmoothStep">
  42739. <summary>
  42740. <para>Translates to <c>smoothstep(edge0, edge1, x)</c> in the shader language, where <c>x</c> is a scalar.</para>
  42741. <para>Returns <c>0.0</c> if <c>x</c> is smaller than <c>edge0</c> and <c>1.0</c> if <c>x</c> is larger than <c>edge1</c>. Otherwise the return value is interpolated between <c>0.0</c> and <c>1.0</c> using Hermite polynomials.</para>
  42742. </summary>
  42743. </member>
  42744. <member name="T:Godot.VisualShaderNodeVectorScalarStep">
  42745. <summary>
  42746. <para>Translates to <c>step(edge, x)</c> in the shader language.</para>
  42747. <para>Returns <c>0.0</c> if <c>x</c> is smaller than <c>edge</c> and <c>1.0</c> otherwise.</para>
  42748. </summary>
  42749. </member>
  42750. <member name="T:Godot.VisualShaderNodeVectorSmoothStep">
  42751. <summary>
  42752. <para>Translates to <c>smoothstep(edge0, edge1, x)</c> in the shader language, where <c>x</c> is a vector.</para>
  42753. <para>Returns <c>0.0</c> if <c>x</c> is smaller than <c>edge0</c> and <c>1.0</c> if <c>x</c> is larger than <c>edge1</c>. Otherwise the return value is interpolated between <c>0.0</c> and <c>1.0</c> using Hermite polynomials.</para>
  42754. </summary>
  42755. </member>
  42756. <member name="T:Godot.WeakRef">
  42757. <summary>
  42758. <para>A weakref can hold a <see cref="T:Godot.Reference"/>, without contributing to the reference counter. A weakref can be created from an <see cref="T:Godot.Object"/> using <c>@GDScript.weakref</c>. If this object is not a reference, weakref still works, however, it does not have any effect on the object. Weakrefs are useful in cases where multiple classes have variables that refer to each other. Without weakrefs, using these classes could lead to memory leaks, since both references keep each other from being released. Making part of the variables a weakref can prevent this cyclic dependency, and allows the references to be released.</para>
  42759. </summary>
  42760. </member>
  42761. <member name="M:Godot.WeakRef.GetRef">
  42762. <summary>
  42763. <para>Returns the <see cref="T:Godot.Object"/> this weakref is referring to.</para>
  42764. </summary>
  42765. </member>
  42766. <member name="F:Godot.WebRTCDataChannel.WriteModeEnum.Text">
  42767. <summary>
  42768. <para>Tells the channel to send data over this channel as text. An external peer (non-Godot) would receive this as a string.</para>
  42769. </summary>
  42770. </member>
  42771. <member name="F:Godot.WebRTCDataChannel.WriteModeEnum.Binary">
  42772. <summary>
  42773. <para>Tells the channel to send data over this channel as binary. An external peer (non-Godot) would receive this as array buffer or blob.</para>
  42774. </summary>
  42775. </member>
  42776. <member name="F:Godot.WebRTCDataChannel.ChannelState.Connecting">
  42777. <summary>
  42778. <para>The channel was created, but it's still trying to connect.</para>
  42779. </summary>
  42780. </member>
  42781. <member name="F:Godot.WebRTCDataChannel.ChannelState.Open">
  42782. <summary>
  42783. <para>The channel is currently open, and data can flow over it.</para>
  42784. </summary>
  42785. </member>
  42786. <member name="F:Godot.WebRTCDataChannel.ChannelState.Closing">
  42787. <summary>
  42788. <para>The channel is being closed, no new messages will be accepted, but those already in queue will be flushed.</para>
  42789. </summary>
  42790. </member>
  42791. <member name="F:Godot.WebRTCDataChannel.ChannelState.Closed">
  42792. <summary>
  42793. <para>The channel was closed, or connection failed.</para>
  42794. </summary>
  42795. </member>
  42796. <member name="P:Godot.WebRTCDataChannel.WriteMode">
  42797. <summary>
  42798. <para>The transfer mode to use when sending outgoing packet. Either text or binary.</para>
  42799. </summary>
  42800. </member>
  42801. <member name="M:Godot.WebRTCDataChannel.Poll">
  42802. <summary>
  42803. <para>Reserved, but not used for now.</para>
  42804. </summary>
  42805. </member>
  42806. <member name="M:Godot.WebRTCDataChannel.Close">
  42807. <summary>
  42808. <para>Closes this data channel, notifying the other peer.</para>
  42809. </summary>
  42810. </member>
  42811. <member name="M:Godot.WebRTCDataChannel.WasStringPacket">
  42812. <summary>
  42813. <para>Returns <c>true</c> if the last received packet was transferred as text. See <see cref="P:Godot.WebRTCDataChannel.WriteMode"/>.</para>
  42814. </summary>
  42815. </member>
  42816. <member name="M:Godot.WebRTCDataChannel.GetReadyState">
  42817. <summary>
  42818. <para>Returns the current state of this channel, see <see cref="T:Godot.WebRTCDataChannel.ChannelState"/>.</para>
  42819. </summary>
  42820. </member>
  42821. <member name="M:Godot.WebRTCDataChannel.GetLabel">
  42822. <summary>
  42823. <para>Returns the label assigned to this channel during creation.</para>
  42824. </summary>
  42825. </member>
  42826. <member name="M:Godot.WebRTCDataChannel.IsOrdered">
  42827. <summary>
  42828. <para>Returns <c>true</c> if this channel was created with ordering enabled (default).</para>
  42829. </summary>
  42830. </member>
  42831. <member name="M:Godot.WebRTCDataChannel.GetId">
  42832. <summary>
  42833. <para>Returns the id assigned to this channel during creation (or auto-assigned during negotiation).</para>
  42834. <para>If the channel is not negotiated out-of-band the id will only be available after the connection is established (will return <c>65535</c> until then).</para>
  42835. </summary>
  42836. </member>
  42837. <member name="M:Godot.WebRTCDataChannel.GetMaxPacketLifeTime">
  42838. <summary>
  42839. <para>Returns the <c>maxPacketLifeTime</c> value assigned to this channel during creation.</para>
  42840. <para>Will be <c>65535</c> if not specified.</para>
  42841. </summary>
  42842. </member>
  42843. <member name="M:Godot.WebRTCDataChannel.GetMaxRetransmits">
  42844. <summary>
  42845. <para>Returns the <c>maxRetransmits</c> value assigned to this channel during creation.</para>
  42846. <para>Will be <c>65535</c> if not specified.</para>
  42847. </summary>
  42848. </member>
  42849. <member name="M:Godot.WebRTCDataChannel.GetProtocol">
  42850. <summary>
  42851. <para>Returns the sub-protocol assigned to this channel during creation. An empty string if not specified.</para>
  42852. </summary>
  42853. </member>
  42854. <member name="M:Godot.WebRTCDataChannel.IsNegotiated">
  42855. <summary>
  42856. <para>Returns <c>true</c> if this channel was created with out-of-band configuration.</para>
  42857. </summary>
  42858. </member>
  42859. <member name="T:Godot.WebRTCMultiplayer">
  42860. <summary>
  42861. <para>This class constructs a full mesh of <see cref="T:Godot.WebRTCPeerConnection"/> (one connection for each peer) that can be used as a <see cref="P:Godot.MultiplayerAPI.NetworkPeer"/>.</para>
  42862. <para>You can add each <see cref="T:Godot.WebRTCPeerConnection"/> via <see cref="M:Godot.WebRTCMultiplayer.AddPeer(Godot.WebRTCPeerConnection,System.Int32,System.Int32)"/> or remove them via <see cref="M:Godot.WebRTCMultiplayer.RemovePeer(System.Int32)"/>. Peers must be added in state to allow it to create the appropriate channels. This class will not create offers nor set descriptions, it will only poll them, and notify connections and disconnections.</para>
  42863. <para><c>NetworkedMultiplayerPeer.connection_succeeded</c> and <c>NetworkedMultiplayerPeer.server_disconnected</c> will not be emitted unless <c>server_compatibility</c> is <c>true</c> in <see cref="M:Godot.WebRTCMultiplayer.Initialize(System.Int32,System.Boolean)"/>. Beside that data transfer works like in a <see cref="T:Godot.NetworkedMultiplayerPeer"/>.</para>
  42864. </summary>
  42865. </member>
  42866. <member name="M:Godot.WebRTCMultiplayer.Initialize(System.Int32,System.Boolean)">
  42867. <summary>
  42868. <para>Initialize the multiplayer peer with the given <c>peer_id</c> (must be between 1 and 2147483647).</para>
  42869. <para>If <c>server_compatibilty</c> is <c>false</c> (default), the multiplayer peer will be immediately in state and <c>NetworkedMultiplayerPeer.connection_succeeded</c> will not be emitted.</para>
  42870. <para>If <c>server_compatibilty</c> is <c>true</c> the peer will suppress all <c>NetworkedMultiplayerPeer.peer_connected</c> signals until a peer with id connects and then emit <c>NetworkedMultiplayerPeer.connection_succeeded</c>. After that the signal <c>NetworkedMultiplayerPeer.peer_connected</c> will be emitted for every already connected peer, and any new peer that might connect. If the server peer disconnects after that, signal <c>NetworkedMultiplayerPeer.server_disconnected</c> will be emitted and state will become .</para>
  42871. </summary>
  42872. </member>
  42873. <member name="M:Godot.WebRTCMultiplayer.AddPeer(Godot.WebRTCPeerConnection,System.Int32,System.Int32)">
  42874. <summary>
  42875. <para>Add a new peer to the mesh with the given <c>peer_id</c>. The <see cref="T:Godot.WebRTCPeerConnection"/> must be in state .</para>
  42876. <para>Three channels will be created for reliable, unreliable, and ordered transport. The value of <c>unreliable_lifetime</c> will be passed to the <c>maxPacketLifetime</c> option when creating unreliable and ordered channels (see <see cref="M:Godot.WebRTCPeerConnection.CreateDataChannel(System.String,Godot.Collections.Dictionary)"/>).</para>
  42877. </summary>
  42878. </member>
  42879. <member name="M:Godot.WebRTCMultiplayer.RemovePeer(System.Int32)">
  42880. <summary>
  42881. <para>Remove the peer with given <c>peer_id</c> from the mesh. If the peer was connected, and <c>NetworkedMultiplayerPeer.peer_connected</c> was emitted for it, then <c>NetworkedMultiplayerPeer.peer_disconnected</c> will be emitted.</para>
  42882. </summary>
  42883. </member>
  42884. <member name="M:Godot.WebRTCMultiplayer.HasPeer(System.Int32)">
  42885. <summary>
  42886. <para>Returns <c>true</c> if the given <c>peer_id</c> is in the peers map (it might not be connected though).</para>
  42887. </summary>
  42888. </member>
  42889. <member name="M:Godot.WebRTCMultiplayer.GetPeer(System.Int32)">
  42890. <summary>
  42891. <para>Return a dictionary representation of the peer with given <c>peer_id</c> with three keys. <c>connection</c> containing the <see cref="T:Godot.WebRTCPeerConnection"/> to this peer, <c>channels</c> an array of three <see cref="T:Godot.WebRTCDataChannel"/>, and <c>connected</c> a boolean representing if the peer connection is currently connected (all three channels are open).</para>
  42892. </summary>
  42893. </member>
  42894. <member name="M:Godot.WebRTCMultiplayer.GetPeers">
  42895. <summary>
  42896. <para>Returns a dictionary which keys are the peer ids and values the peer representation as in <see cref="M:Godot.WebRTCMultiplayer.GetPeer(System.Int32)"/>.</para>
  42897. </summary>
  42898. </member>
  42899. <member name="M:Godot.WebRTCMultiplayer.Close">
  42900. <summary>
  42901. <para>Close all the add peer connections and channels, freeing all resources.</para>
  42902. </summary>
  42903. </member>
  42904. <member name="T:Godot.WebRTCPeerConnection">
  42905. <summary>
  42906. <para>A WebRTC connection between the local computer and a remote peer. Provides an interface to connect, maintain and monitor the connection.</para>
  42907. <para>Setting up a WebRTC connection between two peers from now on) may not seem a trivial task, but it can be broken down into 3 main steps:</para>
  42908. <para>- The peer that wants to initiate the connection (<c>A</c> from now on) creates an offer and send it to the other peer (<c>B</c> from now on).</para>
  42909. <para>- <c>B</c> receives the offer, generate and answer, and sends it to <c>A</c>).</para>
  42910. <para>- <c>A</c> and <c>B</c> then generates and exchange ICE candidates with each other.</para>
  42911. <para>After these steps, the connection should become connected. Keep on reading or look into the tutorial for more information.</para>
  42912. </summary>
  42913. </member>
  42914. <member name="F:Godot.WebRTCPeerConnection.ConnectionState.New">
  42915. <summary>
  42916. <para>The connection is new, data channels and an offer can be created in this state.</para>
  42917. </summary>
  42918. </member>
  42919. <member name="F:Godot.WebRTCPeerConnection.ConnectionState.Connecting">
  42920. <summary>
  42921. <para>The peer is connecting, ICE is in progress, none of the transports has failed.</para>
  42922. </summary>
  42923. </member>
  42924. <member name="F:Godot.WebRTCPeerConnection.ConnectionState.Connected">
  42925. <summary>
  42926. <para>The peer is connected, all ICE transports are connected.</para>
  42927. </summary>
  42928. </member>
  42929. <member name="F:Godot.WebRTCPeerConnection.ConnectionState.Disconnected">
  42930. <summary>
  42931. <para>At least one ICE transport is disconnected.</para>
  42932. </summary>
  42933. </member>
  42934. <member name="F:Godot.WebRTCPeerConnection.ConnectionState.Failed">
  42935. <summary>
  42936. <para>One or more of the ICE transports failed.</para>
  42937. </summary>
  42938. </member>
  42939. <member name="F:Godot.WebRTCPeerConnection.ConnectionState.Closed">
  42940. <summary>
  42941. <para>The peer connection is closed (after calling <see cref="M:Godot.WebRTCPeerConnection.Close"/> for example).</para>
  42942. </summary>
  42943. </member>
  42944. <member name="M:Godot.WebRTCPeerConnection.Initialize(Godot.Collections.Dictionary)">
  42945. <summary>
  42946. <para>Re-initialize this peer connection, closing any previously active connection, and going back to state . A dictionary of <c>options</c> can be passed to configure the peer connection.</para>
  42947. <para>Valid <c>options</c> are:</para>
  42948. <para><code>
  42949. {
  42950. "iceServers": [
  42951. {
  42952. "urls": [ "stun:stun.example.com:3478" ], # One or more STUN servers.
  42953. },
  42954. {
  42955. "urls": [ "turn:turn.example.com:3478" ], # One or more TURN servers.
  42956. "username": "a_username", # Optional username for the TURN server.
  42957. "credentials": "a_password", # Optional password for the TURN server.
  42958. }
  42959. ]
  42960. }
  42961. </code></para>
  42962. </summary>
  42963. <param name="configuration">If the parameter is null, then the default value is new Godot.Collections.Dictionary()</param>
  42964. </member>
  42965. <member name="M:Godot.WebRTCPeerConnection.CreateDataChannel(System.String,Godot.Collections.Dictionary)">
  42966. <summary>
  42967. <para>Returns a new <see cref="T:Godot.WebRTCDataChannel"/> (or <c>null</c> on failure) with given <c>label</c> and optionally configured via the <c>options</c> dictionary. This method can only be called when the connection is in state .</para>
  42968. <para>There are two ways to create a working data channel: either call <see cref="M:Godot.WebRTCPeerConnection.CreateDataChannel(System.String,Godot.Collections.Dictionary)"/> on only one of the peer and listen to <c>data_channel_received</c> on the other, or call <see cref="M:Godot.WebRTCPeerConnection.CreateDataChannel(System.String,Godot.Collections.Dictionary)"/> on both peers, with the same values, and the <c>negotiated</c> option set to <c>true</c>.</para>
  42969. <para>Valid <c>options</c> are:</para>
  42970. <para><code>
  42971. {
  42972. "negotiated": true, # When set to true (default off), means the channel is negotiated out of band. "id" must be set too. data_channel_received will not be called.
  42973. "id": 1, # When "negotiated" is true this value must also be set to the same value on both peer.
  42974. # Only one of maxRetransmits and maxPacketLifeTime can be specified, not both. They make the channel unreliable (but also better at real time).
  42975. "maxRetransmits": 1, # Specify the maximum number of attempt the peer will make to retransmits packets if they are not acknowledged.
  42976. "maxPacketLifeTime": 100, # Specify the maximum amount of time before giving up retransmitions of unacknowledged packets (in milliseconds).
  42977. "ordered": true, # When in unreliable mode (i.e. either "maxRetransmits" or "maxPacketLifetime" is set), "ordered" (true by default) specify if packet ordering is to be enforced.
  42978. "protocol": "my-custom-protocol", # A custom sub-protocol string for this channel.
  42979. }
  42980. </code></para>
  42981. <para>Note: You must keep a reference to channels created this way, or it will be closed.</para>
  42982. </summary>
  42983. <param name="options">If the parameter is null, then the default value is new Godot.Collections.Dictionary()</param>
  42984. </member>
  42985. <member name="M:Godot.WebRTCPeerConnection.CreateOffer">
  42986. <summary>
  42987. <para>Creates a new SDP offer to start a WebRTC connection with a remote peer. At least one <see cref="T:Godot.WebRTCDataChannel"/> must have been created before calling this method.</para>
  42988. <para>If this functions returns , <c>session_description_created</c> will be called when the session is ready to be sent.</para>
  42989. </summary>
  42990. </member>
  42991. <member name="M:Godot.WebRTCPeerConnection.SetLocalDescription(System.String,System.String)">
  42992. <summary>
  42993. <para>Sets the SDP description of the local peer. This should be called in response to <c>session_description_created</c>.</para>
  42994. <para>After calling this function the peer will start emitting <c>ice_candidate_created</c> (unless an <see cref="T:Godot.Error"/> different from is returned).</para>
  42995. </summary>
  42996. </member>
  42997. <member name="M:Godot.WebRTCPeerConnection.SetRemoteDescription(System.String,System.String)">
  42998. <summary>
  42999. <para>Sets the SDP description of the remote peer. This should be called with the values generated by a remote peer and received over the signaling server.</para>
  43000. <para>If <c>type</c> is <c>offer</c> the peer will emit <c>session_description_created</c> with the appropriate answer.</para>
  43001. <para>If <c>type</c> is <c>answer</c> the peer will start emitting <c>ice_candidate_created</c>.</para>
  43002. </summary>
  43003. </member>
  43004. <member name="M:Godot.WebRTCPeerConnection.AddIceCandidate(System.String,System.Int32,System.String)">
  43005. <summary>
  43006. <para>Add an ice candidate generated by a remote peer (and received over the signaling server). See <c>ice_candidate_created</c>.</para>
  43007. </summary>
  43008. </member>
  43009. <member name="M:Godot.WebRTCPeerConnection.Poll">
  43010. <summary>
  43011. <para>Call this method frequently (e.g. in <see cref="M:Godot.Node._Process(System.Single)"/> or <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/>) to properly receive signals.</para>
  43012. </summary>
  43013. </member>
  43014. <member name="M:Godot.WebRTCPeerConnection.Close">
  43015. <summary>
  43016. <para>Close the peer connection and all data channels associated with it. Note, you cannot reuse this object for a new connection unless you call <see cref="M:Godot.WebRTCPeerConnection.Initialize(Godot.Collections.Dictionary)"/>.</para>
  43017. </summary>
  43018. </member>
  43019. <member name="M:Godot.WebRTCPeerConnection.GetConnectionState">
  43020. <summary>
  43021. <para>Returns the connection state. See <see cref="T:Godot.WebRTCPeerConnection.ConnectionState"/>.</para>
  43022. </summary>
  43023. </member>
  43024. <member name="T:Godot.WebSocketClient">
  43025. <summary>
  43026. <para>This class implements a WebSocket client compatible with any RFC 6455-compliant WebSocket server.</para>
  43027. <para>This client can be optionally used as a network peer for the <see cref="T:Godot.MultiplayerAPI"/>.</para>
  43028. <para>After starting the client (<see cref="M:Godot.WebSocketClient.ConnectToUrl(System.String,System.String[],System.Boolean,System.String[])"/>), you will need to <see cref="M:Godot.NetworkedMultiplayerPeer.Poll"/> it at regular intervals (e.g. inside <see cref="M:Godot.Node._Process(System.Single)"/>).</para>
  43029. <para>You will receive appropriate signals when connecting, disconnecting, or when new data is available.</para>
  43030. </summary>
  43031. </member>
  43032. <member name="P:Godot.WebSocketClient.VerifySsl">
  43033. <summary>
  43034. <para>If <c>true</c>, SSL certificate verification is enabled.</para>
  43035. <para>Note: You must specify the certificates to be used in the Project Settings for it to work when exported.</para>
  43036. </summary>
  43037. </member>
  43038. <member name="P:Godot.WebSocketClient.TrustedSslCertificate">
  43039. <summary>
  43040. <para>If specified, this <see cref="T:Godot.X509Certificate"/> will be the only one accepted when connecting to an SSL host. Any other certificate provided by the server will be regarded as invalid.</para>
  43041. <para>Note: Specifying a custom <c>trusted_ssl_certificate</c> is not supported in HTML5 exports due to browsers restrictions.</para>
  43042. </summary>
  43043. </member>
  43044. <member name="M:Godot.WebSocketClient.ConnectToUrl(System.String,System.String[],System.Boolean,System.String[])">
  43045. <summary>
  43046. <para>Connects to the given URL requesting one of the given <c>protocols</c> as sub-protocol. If the list empty (default), no sub-protocol will be requested.</para>
  43047. <para>If <c>true</c> is passed as <c>gd_mp_api</c>, the client will behave like a network peer for the <see cref="T:Godot.MultiplayerAPI"/>, connections to non-Godot servers will not work, and <c>data_received</c> will not be emitted.</para>
  43048. <para>If <c>false</c> is passed instead (default), you must call <see cref="T:Godot.PacketPeer"/> functions (<c>put_packet</c>, <c>get_packet</c>, etc.) on the <see cref="T:Godot.WebSocketPeer"/> returned via <c>get_peer(1)</c> and not on this object directly (e.g. <c>get_peer(1).put_packet(data)</c>).</para>
  43049. <para>You can optionally pass a list of <c>custom_headers</c> to be added to the handshake HTTP request.</para>
  43050. <para>Note: Specifying <c>custom_headers</c> is not supported in HTML5 exports due to browsers restrictions.</para>
  43051. </summary>
  43052. <param name="protocols">If the parameter is null, then the default value is new string[] {}</param>
  43053. <param name="customHeaders">If the parameter is null, then the default value is new string[] {}</param>
  43054. </member>
  43055. <member name="M:Godot.WebSocketClient.DisconnectFromHost(System.Int32,System.String)">
  43056. <summary>
  43057. <para>Disconnects this client from the connected host. See <see cref="M:Godot.WebSocketPeer.Close(System.Int32,System.String)"/> for more information.</para>
  43058. </summary>
  43059. </member>
  43060. <member name="M:Godot.WebSocketClient.GetConnectedHost">
  43061. <summary>
  43062. <para>Return the IP address of the currently connected host.</para>
  43063. </summary>
  43064. </member>
  43065. <member name="M:Godot.WebSocketClient.GetConnectedPort">
  43066. <summary>
  43067. <para>Return the IP port of the currently connected host.</para>
  43068. </summary>
  43069. </member>
  43070. <member name="T:Godot.WebSocketMultiplayerPeer">
  43071. <summary>
  43072. <para>Base class for WebSocket server and client, allowing them to be used as network peer for the <see cref="T:Godot.MultiplayerAPI"/>.</para>
  43073. </summary>
  43074. </member>
  43075. <member name="M:Godot.WebSocketMultiplayerPeer.SetBuffers(System.Int32,System.Int32,System.Int32,System.Int32)">
  43076. <summary>
  43077. <para>Configures the buffer sizes for this WebSocket peer. Default values can be specified in the Project Settings under <c>network/limits</c>. For server, values are meant per connected peer.</para>
  43078. <para>The first two parameters define the size and queued packets limits of the input buffer, the last two of the output buffer.</para>
  43079. <para>Buffer sizes are expressed in KiB, so <c>4 = 2^12 = 4096 bytes</c>. All parameters will be rounded up to the nearest power of two.</para>
  43080. <para>Note: HTML5 exports only use the input buffer since the output one is managed by browsers.</para>
  43081. </summary>
  43082. </member>
  43083. <member name="M:Godot.WebSocketMultiplayerPeer.GetPeer(System.Int32)">
  43084. <summary>
  43085. <para>Returns the <see cref="T:Godot.WebSocketPeer"/> associated to the given <c>peer_id</c>.</para>
  43086. </summary>
  43087. </member>
  43088. <member name="T:Godot.WebSocketPeer">
  43089. <summary>
  43090. <para>This class represent a specific WebSocket connection, you can do lower level operations with it.</para>
  43091. <para>You can choose to write to the socket in binary or text mode, and you can recognize the mode used for writing by the other peer.</para>
  43092. </summary>
  43093. </member>
  43094. <member name="F:Godot.WebSocketPeer.WriteMode.Text">
  43095. <summary>
  43096. <para>Specifies that WebSockets messages should be transferred as text payload (only valid UTF-8 is allowed).</para>
  43097. </summary>
  43098. </member>
  43099. <member name="F:Godot.WebSocketPeer.WriteMode.Binary">
  43100. <summary>
  43101. <para>Specifies that WebSockets messages should be transferred as binary payload (any byte combination is allowed).</para>
  43102. </summary>
  43103. </member>
  43104. <member name="M:Godot.WebSocketPeer.GetWriteMode">
  43105. <summary>
  43106. <para>Gets the current selected write mode. See <see cref="T:Godot.WebSocketPeer.WriteMode"/>.</para>
  43107. </summary>
  43108. </member>
  43109. <member name="M:Godot.WebSocketPeer.SetWriteMode(Godot.WebSocketPeer.WriteMode)">
  43110. <summary>
  43111. <para>Sets the socket to use the given <see cref="T:Godot.WebSocketPeer.WriteMode"/>.</para>
  43112. </summary>
  43113. </member>
  43114. <member name="M:Godot.WebSocketPeer.IsConnectedToHost">
  43115. <summary>
  43116. <para>Returns <c>true</c> if this peer is currently connected.</para>
  43117. </summary>
  43118. </member>
  43119. <member name="M:Godot.WebSocketPeer.WasStringPacket">
  43120. <summary>
  43121. <para>Returns <c>true</c> if the last received packet was sent as a text payload. See <see cref="T:Godot.WebSocketPeer.WriteMode"/>.</para>
  43122. </summary>
  43123. </member>
  43124. <member name="M:Godot.WebSocketPeer.Close(System.Int32,System.String)">
  43125. <summary>
  43126. <para>Closes this WebSocket connection. <c>code</c> is the status code for the closure (see RFC 6455 section 7.4 for a list of valid status codes). <c>reason</c> is the human readable reason for closing the connection (can be any UTF-8 string that's smaller than 123 bytes).</para>
  43127. <para>Note: To achieve a clean close, you will need to keep polling until either <c>WebSocketClient.connection_closed</c> or <c>WebSocketServer.client_disconnected</c> is received.</para>
  43128. <para>Note: The HTML5 export might not support all status codes. Please refer to browser-specific documentation for more details.</para>
  43129. </summary>
  43130. </member>
  43131. <member name="M:Godot.WebSocketPeer.GetConnectedHost">
  43132. <summary>
  43133. <para>Returns the IP address of the connected peer.</para>
  43134. <para>Note: Not available in the HTML5 export.</para>
  43135. </summary>
  43136. </member>
  43137. <member name="M:Godot.WebSocketPeer.GetConnectedPort">
  43138. <summary>
  43139. <para>Returns the remote port of the connected peer.</para>
  43140. <para>Note: Not available in the HTML5 export.</para>
  43141. </summary>
  43142. </member>
  43143. <member name="M:Godot.WebSocketPeer.SetNoDelay(System.Boolean)">
  43144. <summary>
  43145. <para>Disable Nagle's algorithm on the underling TCP socket (default). See <see cref="M:Godot.StreamPeerTCP.SetNoDelay(System.Boolean)"/> for more information.</para>
  43146. <para>Note: Not available in the HTML5 export.</para>
  43147. </summary>
  43148. </member>
  43149. <member name="T:Godot.WebSocketServer">
  43150. <summary>
  43151. <para>This class implements a WebSocket server that can also support the high-level multiplayer API.</para>
  43152. <para>After starting the server (<see cref="M:Godot.WebSocketServer.Listen(System.Int32,System.String[],System.Boolean)"/>), you will need to <see cref="M:Godot.NetworkedMultiplayerPeer.Poll"/> it at regular intervals (e.g. inside <see cref="M:Godot.Node._Process(System.Single)"/>). When clients connect, disconnect, or send data, you will receive the appropriate signal.</para>
  43153. <para>Note: Not available in HTML5 exports.</para>
  43154. </summary>
  43155. </member>
  43156. <member name="P:Godot.WebSocketServer.BindIp">
  43157. <summary>
  43158. <para>When not set to <c>*</c> will restrict incoming connections to the specified IP address. Setting <c>bind_ip</c> to <c>127.0.0.1</c> will cause the server to listen only to the local host.</para>
  43159. </summary>
  43160. </member>
  43161. <member name="P:Godot.WebSocketServer.PrivateKey">
  43162. <summary>
  43163. <para>When set to a valid <see cref="T:Godot.CryptoKey"/> (along with <see cref="P:Godot.WebSocketServer.SslCertificate"/>) will cause the server to require SSL instead of regular TCP (i.e. the <c>wss://</c> protocol).</para>
  43164. </summary>
  43165. </member>
  43166. <member name="P:Godot.WebSocketServer.SslCertificate">
  43167. <summary>
  43168. <para>When set to a valid <see cref="T:Godot.X509Certificate"/> (along with <see cref="P:Godot.WebSocketServer.PrivateKey"/>) will cause the server to require SSL instead of regular TCP (i.e. the <c>wss://</c> protocol).</para>
  43169. </summary>
  43170. </member>
  43171. <member name="P:Godot.WebSocketServer.CaChain">
  43172. <summary>
  43173. <para>When using SSL (see <see cref="P:Godot.WebSocketServer.PrivateKey"/> and <see cref="P:Godot.WebSocketServer.SslCertificate"/>), you can set this to a valid <see cref="T:Godot.X509Certificate"/> to be provided as additional CA chain information during the SSL handshake.</para>
  43174. </summary>
  43175. </member>
  43176. <member name="M:Godot.WebSocketServer.IsListening">
  43177. <summary>
  43178. <para>Returns <c>true</c> if the server is actively listening on a port.</para>
  43179. </summary>
  43180. </member>
  43181. <member name="M:Godot.WebSocketServer.Listen(System.Int32,System.String[],System.Boolean)">
  43182. <summary>
  43183. <para>Starts listening on the given port.</para>
  43184. <para>You can specify the desired subprotocols via the "protocols" array. If the list empty (default), no sub-protocol will be requested.</para>
  43185. <para>If <c>true</c> is passed as <c>gd_mp_api</c>, the server will behave like a network peer for the <see cref="T:Godot.MultiplayerAPI"/>, connections from non-Godot clients will not work, and <c>data_received</c> will not be emitted.</para>
  43186. <para>If <c>false</c> is passed instead (default), you must call <see cref="T:Godot.PacketPeer"/> functions (<c>put_packet</c>, <c>get_packet</c>, etc.), on the <see cref="T:Godot.WebSocketPeer"/> returned via <c>get_peer(id)</c> to communicate with the peer with given <c>id</c> (e.g. <c>get_peer(id).get_available_packet_count</c>).</para>
  43187. </summary>
  43188. <param name="protocols">If the parameter is null, then the default value is new string[] {}</param>
  43189. </member>
  43190. <member name="M:Godot.WebSocketServer.Stop">
  43191. <summary>
  43192. <para>Stops the server and clear its state.</para>
  43193. </summary>
  43194. </member>
  43195. <member name="M:Godot.WebSocketServer.HasPeer(System.Int32)">
  43196. <summary>
  43197. <para>Returns <c>true</c> if a peer with the given ID is connected.</para>
  43198. </summary>
  43199. </member>
  43200. <member name="M:Godot.WebSocketServer.GetPeerAddress(System.Int32)">
  43201. <summary>
  43202. <para>Returns the IP address of the given peer.</para>
  43203. </summary>
  43204. </member>
  43205. <member name="M:Godot.WebSocketServer.GetPeerPort(System.Int32)">
  43206. <summary>
  43207. <para>Returns the remote port of the given peer.</para>
  43208. </summary>
  43209. </member>
  43210. <member name="M:Godot.WebSocketServer.DisconnectPeer(System.Int32,System.Int32,System.String)">
  43211. <summary>
  43212. <para>Disconnects the peer identified by <c>id</c> from the server. See <see cref="M:Godot.WebSocketPeer.Close(System.Int32,System.String)"/> for more information.</para>
  43213. </summary>
  43214. </member>
  43215. <member name="T:Godot.WindowDialog">
  43216. <summary>
  43217. <para>Windowdialog is the base class for all window-based dialogs. It's a by-default toplevel <see cref="T:Godot.Control"/> that draws a window decoration and allows motion and resizing.</para>
  43218. </summary>
  43219. </member>
  43220. <member name="P:Godot.WindowDialog.WindowTitle">
  43221. <summary>
  43222. <para>The text displayed in the window's title bar.</para>
  43223. </summary>
  43224. </member>
  43225. <member name="P:Godot.WindowDialog.Resizable">
  43226. <summary>
  43227. <para>If <c>true</c>, the user can resize the window.</para>
  43228. </summary>
  43229. </member>
  43230. <member name="M:Godot.WindowDialog.GetCloseButton">
  43231. <summary>
  43232. <para>Returns the close <see cref="T:Godot.TextureButton"/>.</para>
  43233. </summary>
  43234. </member>
  43235. <member name="T:Godot.World">
  43236. <summary>
  43237. <para>Class that has everything pertaining to a world. A physics space, a visual scenario and a sound space. Spatial nodes register their resources into the current world.</para>
  43238. </summary>
  43239. </member>
  43240. <member name="P:Godot.World.Environment">
  43241. <summary>
  43242. <para>The World's <see cref="T:Godot.Environment"/>.</para>
  43243. </summary>
  43244. </member>
  43245. <member name="P:Godot.World.FallbackEnvironment">
  43246. <summary>
  43247. <para>The World's fallback_environment will be used if the World's <see cref="T:Godot.Environment"/> fails or is missing.</para>
  43248. </summary>
  43249. </member>
  43250. <member name="P:Godot.World.Space">
  43251. <summary>
  43252. <para>The World's physics space.</para>
  43253. </summary>
  43254. </member>
  43255. <member name="P:Godot.World.Scenario">
  43256. <summary>
  43257. <para>The World's visual scenario.</para>
  43258. </summary>
  43259. </member>
  43260. <member name="P:Godot.World.DirectSpaceState">
  43261. <summary>
  43262. <para>Direct access to the world's physics 3D space state. Used for querying current and potential collisions. Must only be accessed from within <c>_physics_process(delta)</c>.</para>
  43263. </summary>
  43264. </member>
  43265. <member name="T:Godot.World2D">
  43266. <summary>
  43267. <para>Class that has everything pertaining to a 2D world. A physics space, a visual scenario and a sound space. 2D nodes register their resources into the current 2D world.</para>
  43268. </summary>
  43269. </member>
  43270. <member name="P:Godot.World2D.Canvas">
  43271. <summary>
  43272. <para>The <see cref="T:Godot.RID"/> of this world's canvas resource. Used by the <see cref="T:Godot.VisualServer"/> for 2D drawing.</para>
  43273. </summary>
  43274. </member>
  43275. <member name="P:Godot.World2D.Space">
  43276. <summary>
  43277. <para>The <see cref="T:Godot.RID"/> of this world's physics space resource. Used by the <see cref="T:Godot.Physics2DServer"/> for 2D physics, treating it as both a space and an area.</para>
  43278. </summary>
  43279. </member>
  43280. <member name="P:Godot.World2D.DirectSpaceState">
  43281. <summary>
  43282. <para>Direct access to the world's physics 2D space state. Used for querying current and potential collisions. Must only be accessed from the main thread within <c>_physics_process(delta)</c>.</para>
  43283. </summary>
  43284. </member>
  43285. <member name="T:Godot.WorldEnvironment">
  43286. <summary>
  43287. <para>The <see cref="T:Godot.WorldEnvironment"/> node is used to configure the default <see cref="T:Godot.Environment"/> for the scene.</para>
  43288. <para>The parameters defined in the <see cref="T:Godot.WorldEnvironment"/> can be overridden by an <see cref="T:Godot.Environment"/> node set on the current <see cref="T:Godot.Camera"/>. Additionally, only one <see cref="T:Godot.WorldEnvironment"/> may be instanced in a given scene at a time.</para>
  43289. <para>The <see cref="T:Godot.WorldEnvironment"/> allows the user to specify default lighting parameters (e.g. ambient lighting), various post-processing effects (e.g. SSAO, DOF, Tonemapping), and how to draw the background (e.g. solid color, skybox). Usually, these are added in order to improve the realism/color balance of the scene.</para>
  43290. </summary>
  43291. </member>
  43292. <member name="P:Godot.WorldEnvironment.Environment">
  43293. <summary>
  43294. <para>The <see cref="T:Godot.Environment"/> resource used by this <see cref="T:Godot.WorldEnvironment"/>, defining the default properties.</para>
  43295. </summary>
  43296. </member>
  43297. <member name="T:Godot.X509Certificate">
  43298. <summary>
  43299. <para>The X509Certificate class represents an X509 certificate. Certificates can be loaded and saved like any other <see cref="T:Godot.Resource"/>.</para>
  43300. <para>They can be used as the server certificate in <see cref="M:Godot.StreamPeerSSL.AcceptStream(Godot.StreamPeer,Godot.CryptoKey,Godot.X509Certificate,Godot.X509Certificate)"/> (along with the proper <see cref="T:Godot.CryptoKey"/>), and to specify the only certificate that should be accepted when connecting to an SSL server via <see cref="M:Godot.StreamPeerSSL.ConnectToStream(Godot.StreamPeer,System.Boolean,System.String,Godot.X509Certificate)"/>.</para>
  43301. <para>Note: Not available in HTML5 exports.</para>
  43302. </summary>
  43303. </member>
  43304. <member name="M:Godot.X509Certificate.Save(System.String)">
  43305. <summary>
  43306. <para>Saves a certificate to the given <c>path</c> (should be a "*.crt" file).</para>
  43307. </summary>
  43308. </member>
  43309. <member name="M:Godot.X509Certificate.Load(System.String)">
  43310. <summary>
  43311. <para>Loads a certificate from <c>path</c> ("*.crt" file).</para>
  43312. </summary>
  43313. </member>
  43314. <member name="T:Godot.XMLParser">
  43315. <summary>
  43316. <para>This class can serve as base to make custom XML parsers. Since XML is a very flexible standard, this interface is low-level so it can be applied to any possible schema.</para>
  43317. </summary>
  43318. </member>
  43319. <member name="F:Godot.XMLParser.NodeType.None">
  43320. <summary>
  43321. <para>There's no node (no file or buffer opened).</para>
  43322. </summary>
  43323. </member>
  43324. <member name="F:Godot.XMLParser.NodeType.Element">
  43325. <summary>
  43326. <para>Element (tag).</para>
  43327. </summary>
  43328. </member>
  43329. <member name="F:Godot.XMLParser.NodeType.ElementEnd">
  43330. <summary>
  43331. <para>End of element.</para>
  43332. </summary>
  43333. </member>
  43334. <member name="F:Godot.XMLParser.NodeType.Text">
  43335. <summary>
  43336. <para>Text node.</para>
  43337. </summary>
  43338. </member>
  43339. <member name="F:Godot.XMLParser.NodeType.Comment">
  43340. <summary>
  43341. <para>Comment node.</para>
  43342. </summary>
  43343. </member>
  43344. <member name="F:Godot.XMLParser.NodeType.Cdata">
  43345. <summary>
  43346. <para>CDATA content.</para>
  43347. </summary>
  43348. </member>
  43349. <member name="F:Godot.XMLParser.NodeType.Unknown">
  43350. <summary>
  43351. <para>Unknown node.</para>
  43352. </summary>
  43353. </member>
  43354. <member name="M:Godot.XMLParser.Read">
  43355. <summary>
  43356. <para>Reads the next node of the file. This returns an error code.</para>
  43357. </summary>
  43358. </member>
  43359. <member name="M:Godot.XMLParser.GetNodeType">
  43360. <summary>
  43361. <para>Gets the type of the current node. Compare with <see cref="T:Godot.XMLParser.NodeType"/> constants.</para>
  43362. </summary>
  43363. </member>
  43364. <member name="M:Godot.XMLParser.GetNodeName">
  43365. <summary>
  43366. <para>Gets the name of the current element node. This will raise an error if the current node type is neither nor .</para>
  43367. </summary>
  43368. </member>
  43369. <member name="M:Godot.XMLParser.GetNodeData">
  43370. <summary>
  43371. <para>Gets the contents of a text node. This will raise an error in any other type of node.</para>
  43372. </summary>
  43373. </member>
  43374. <member name="M:Godot.XMLParser.GetNodeOffset">
  43375. <summary>
  43376. <para>Gets the byte offset of the current node since the beginning of the file or buffer.</para>
  43377. </summary>
  43378. </member>
  43379. <member name="M:Godot.XMLParser.GetAttributeCount">
  43380. <summary>
  43381. <para>Gets the amount of attributes in the current element.</para>
  43382. </summary>
  43383. </member>
  43384. <member name="M:Godot.XMLParser.GetAttributeName(System.Int32)">
  43385. <summary>
  43386. <para>Gets the name of the attribute specified by the index in <c>idx</c> argument.</para>
  43387. </summary>
  43388. </member>
  43389. <member name="M:Godot.XMLParser.GetAttributeValue(System.Int32)">
  43390. <summary>
  43391. <para>Gets the value of the attribute specified by the index in <c>idx</c> argument.</para>
  43392. </summary>
  43393. </member>
  43394. <member name="M:Godot.XMLParser.HasAttribute(System.String)">
  43395. <summary>
  43396. <para>Check whether the current element has a certain attribute.</para>
  43397. </summary>
  43398. </member>
  43399. <member name="M:Godot.XMLParser.GetNamedAttributeValue(System.String)">
  43400. <summary>
  43401. <para>Gets the value of a certain attribute of the current element by name. This will raise an error if the element has no such attribute.</para>
  43402. </summary>
  43403. </member>
  43404. <member name="M:Godot.XMLParser.GetNamedAttributeValueSafe(System.String)">
  43405. <summary>
  43406. <para>Gets the value of a certain attribute of the current element by name. This will return an empty <see cref="T:System.String"/> if the attribute is not found.</para>
  43407. </summary>
  43408. </member>
  43409. <member name="M:Godot.XMLParser.IsEmpty">
  43410. <summary>
  43411. <para>Check whether the current element is empty (this only works for completely empty tags, e.g. <c>&lt;element \&gt;</c>).</para>
  43412. </summary>
  43413. </member>
  43414. <member name="M:Godot.XMLParser.GetCurrentLine">
  43415. <summary>
  43416. <para>Gets the current line in the parsed file (currently not implemented).</para>
  43417. </summary>
  43418. </member>
  43419. <member name="M:Godot.XMLParser.SkipSection">
  43420. <summary>
  43421. <para>Skips the current section. If the node contains other elements, they will be ignored and the cursor will go to the closing of the current element.</para>
  43422. </summary>
  43423. </member>
  43424. <member name="M:Godot.XMLParser.Seek(System.UInt64)">
  43425. <summary>
  43426. <para>Moves the buffer cursor to a certain offset (since the beginning) and read the next node there. This returns an error code.</para>
  43427. </summary>
  43428. </member>
  43429. <member name="M:Godot.XMLParser.Open(System.String)">
  43430. <summary>
  43431. <para>Opens an XML file for parsing. This returns an error code.</para>
  43432. </summary>
  43433. </member>
  43434. <member name="M:Godot.XMLParser.OpenBuffer(System.Byte[])">
  43435. <summary>
  43436. <para>Opens an XML raw buffer for parsing. This returns an error code.</para>
  43437. </summary>
  43438. </member>
  43439. <member name="T:Godot.YSort">
  43440. <summary>
  43441. <para>Sort all child nodes based on their Y positions. The child node must inherit from <see cref="T:Godot.CanvasItem"/> for it to be sorted. Nodes that have a higher Y position will be drawn later, so they will appear on top of nodes that have a lower Y position.</para>
  43442. <para>Nesting of YSort nodes is possible. Children YSort nodes will be sorted in the same space as the parent YSort, allowing to better organize a scene or divide it in multiple ones, yet keep the unique sorting.</para>
  43443. </summary>
  43444. </member>
  43445. <member name="P:Godot.YSort.SortEnabled">
  43446. <summary>
  43447. <para>If <c>true</c>, child nodes are sorted, otherwise sorting is disabled.</para>
  43448. </summary>
  43449. </member>
  43450. <member name="T:Godot.ClassDB">
  43451. <summary>
  43452. <para>Provides access to metadata stored for every available class.</para>
  43453. </summary>
  43454. </member>
  43455. <member name="M:Godot.ClassDB.GetClassList">
  43456. <summary>
  43457. <para>Returns the names of all the classes available.</para>
  43458. </summary>
  43459. </member>
  43460. <member name="M:Godot.ClassDB.GetInheritersFromClass(System.String)">
  43461. <summary>
  43462. <para>Returns the names of all the classes that directly or indirectly inherit from <c>class</c>.</para>
  43463. </summary>
  43464. </member>
  43465. <member name="M:Godot.ClassDB.GetParentClass(System.String)">
  43466. <summary>
  43467. <para>Returns the parent class of <c>class</c>.</para>
  43468. </summary>
  43469. </member>
  43470. <member name="M:Godot.ClassDB.ClassExists(System.String)">
  43471. <summary>
  43472. <para>Returns whether the specified <c>class</c> is available or not.</para>
  43473. </summary>
  43474. </member>
  43475. <member name="M:Godot.ClassDB.IsParentClass(System.String,System.String)">
  43476. <summary>
  43477. <para>Returns whether <c>inherits</c> is an ancestor of <c>class</c> or not.</para>
  43478. </summary>
  43479. </member>
  43480. <member name="M:Godot.ClassDB.CanInstance(System.String)">
  43481. <summary>
  43482. <para>Returns <c>true</c> if you can instance objects from the specified <c>class</c>, <c>false</c> in other case.</para>
  43483. </summary>
  43484. </member>
  43485. <member name="M:Godot.ClassDB.Instance(System.String)">
  43486. <summary>
  43487. <para>Creates an instance of <c>class</c>.</para>
  43488. </summary>
  43489. </member>
  43490. <member name="M:Godot.ClassDB.ClassHasSignal(System.String,System.String)">
  43491. <summary>
  43492. <para>Returns whether <c>class</c> or its ancestry has a signal called <c>signal</c> or not.</para>
  43493. </summary>
  43494. </member>
  43495. <member name="M:Godot.ClassDB.ClassGetSignal(System.String,System.String)">
  43496. <summary>
  43497. <para>Returns the <c>signal</c> data of <c>class</c> or its ancestry. The returned value is a <see cref="T:Godot.Collections.Dictionary"/> with the following keys: <c>args</c>, <c>default_args</c>, <c>flags</c>, <c>id</c>, <c>name</c>, <c>return: (class_name, hint, hint_string, name, type, usage)</c>.</para>
  43498. </summary>
  43499. </member>
  43500. <member name="M:Godot.ClassDB.ClassGetSignalList(System.String,System.Boolean)">
  43501. <summary>
  43502. <para>Returns an array with all the signals of <c>class</c> or its ancestry if <c>no_inheritance</c> is <c>false</c>. Every element of the array is a <see cref="T:Godot.Collections.Dictionary"/> as described in <see cref="M:Godot.ClassDB.ClassGetSignal(System.String,System.String)"/>.</para>
  43503. </summary>
  43504. </member>
  43505. <member name="M:Godot.ClassDB.ClassGetPropertyList(System.String,System.Boolean)">
  43506. <summary>
  43507. <para>Returns an array with all the properties of <c>class</c> or its ancestry if <c>no_inheritance</c> is <c>false</c>.</para>
  43508. </summary>
  43509. </member>
  43510. <member name="M:Godot.ClassDB.ClassGetProperty(Godot.Object,System.String)">
  43511. <summary>
  43512. <para>Returns the value of <c>property</c> of <c>class</c> or its ancestry.</para>
  43513. </summary>
  43514. </member>
  43515. <member name="M:Godot.ClassDB.ClassSetProperty(Godot.Object,System.String,System.Object)">
  43516. <summary>
  43517. <para>Sets <c>property</c> value of <c>class</c> to <c>value</c>.</para>
  43518. </summary>
  43519. </member>
  43520. <member name="M:Godot.ClassDB.ClassHasMethod(System.String,System.String,System.Boolean)">
  43521. <summary>
  43522. <para>Returns whether <c>class</c> (or its ancestry if <c>no_inheritance</c> is <c>false</c>) has a method called <c>method</c> or not.</para>
  43523. </summary>
  43524. </member>
  43525. <member name="M:Godot.ClassDB.ClassGetMethodList(System.String,System.Boolean)">
  43526. <summary>
  43527. <para>Returns an array with all the methods of <c>class</c> or its ancestry if <c>no_inheritance</c> is <c>false</c>. Every element of the array is a <see cref="T:Godot.Collections.Dictionary"/> with the following keys: <c>args</c>, <c>default_args</c>, <c>flags</c>, <c>id</c>, <c>name</c>, <c>return: (class_name, hint, hint_string, name, type, usage)</c>.</para>
  43528. </summary>
  43529. </member>
  43530. <member name="M:Godot.ClassDB.ClassGetIntegerConstantList(System.String,System.Boolean)">
  43531. <summary>
  43532. <para>Returns an array with the names all the integer constants of <c>class</c> or its ancestry.</para>
  43533. </summary>
  43534. </member>
  43535. <member name="M:Godot.ClassDB.ClassHasIntegerConstant(System.String,System.String)">
  43536. <summary>
  43537. <para>Returns whether <c>class</c> or its ancestry has an integer constant called <c>name</c> or not.</para>
  43538. </summary>
  43539. </member>
  43540. <member name="M:Godot.ClassDB.ClassGetIntegerConstant(System.String,System.String)">
  43541. <summary>
  43542. <para>Returns the value of the integer constant <c>name</c> of <c>class</c> or its ancestry. Always returns 0 when the constant could not be found.</para>
  43543. </summary>
  43544. </member>
  43545. <member name="M:Godot.ClassDB.ClassGetCategory(System.String)">
  43546. <summary>
  43547. <para>Returns a category associated with the class for use in documentation and the Asset Library. Debug mode required.</para>
  43548. </summary>
  43549. </member>
  43550. <member name="M:Godot.ClassDB.IsClassEnabled(System.String)">
  43551. <summary>
  43552. <para>Returns whether this <c>class</c> is enabled or not.</para>
  43553. </summary>
  43554. </member>
  43555. <member name="T:Godot.Directory">
  43556. <summary>
  43557. <para>Directory type. It is used to manage directories and their content (not restricted to the project folder).</para>
  43558. <para>When creating a new <see cref="T:Godot.Directory"/>, its default opened directory will be <c>res://</c>. This may change in the future, so it is advised to always use <see cref="M:Godot.Directory.Open(System.String)"/> to initialize your <see cref="T:Godot.Directory"/> where you want to operate, with explicit error checking.</para>
  43559. <para>Here is an example on how to iterate through the files of a directory:</para>
  43560. <para><code>
  43561. func dir_contents(path):
  43562. var dir = Directory.new()
  43563. if dir.open(path) == OK:
  43564. dir.list_dir_begin()
  43565. var file_name = dir.get_next()
  43566. while file_name != "":
  43567. if dir.current_is_dir():
  43568. print("Found directory: " + file_name)
  43569. else:
  43570. print("Found file: " + file_name)
  43571. file_name = dir.get_next()
  43572. else:
  43573. print("An error occurred when trying to access the path.")
  43574. </code></para>
  43575. </summary>
  43576. </member>
  43577. <member name="M:Godot.Directory.Open(System.String)">
  43578. <summary>
  43579. <para>Opens an existing directory of the filesystem. The <c>path</c> argument can be within the project tree (<c>res://folder</c>), the user directory (<c>user://folder</c>) or an absolute path of the user filesystem (e.g. <c>/tmp/folder</c> or <c>C:\tmp\folder</c>).</para>
  43580. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  43581. </summary>
  43582. </member>
  43583. <member name="M:Godot.Directory.ListDirBegin(System.Boolean,System.Boolean)">
  43584. <summary>
  43585. <para>Initializes the stream used to list all files and directories using the <see cref="M:Godot.Directory.GetNext"/> function, closing the current opened stream if needed. Once the stream has been processed, it should typically be closed with <see cref="M:Godot.Directory.ListDirEnd"/>.</para>
  43586. <para>If <c>skip_navigational</c> is <c>true</c>, <c>.</c> and <c>..</c> are filtered out.</para>
  43587. <para>If <c>skip_hidden</c> is <c>true</c>, hidden files are filtered out.</para>
  43588. </summary>
  43589. </member>
  43590. <member name="M:Godot.Directory.GetNext">
  43591. <summary>
  43592. <para>Returns the next element (file or directory) in the current directory (including <c>.</c> and <c>..</c>, unless <c>skip_navigational</c> was given to <see cref="M:Godot.Directory.ListDirBegin(System.Boolean,System.Boolean)"/>).</para>
  43593. <para>The name of the file or directory is returned (and not its full path). Once the stream has been fully processed, the method returns an empty String and closes the stream automatically (i.e. <see cref="M:Godot.Directory.ListDirEnd"/> would not be mandatory in such a case).</para>
  43594. </summary>
  43595. </member>
  43596. <member name="M:Godot.Directory.CurrentIsDir">
  43597. <summary>
  43598. <para>Returns whether the current item processed with the last <see cref="M:Godot.Directory.GetNext"/> call is a directory (<c>.</c> and <c>..</c> are considered directories).</para>
  43599. </summary>
  43600. </member>
  43601. <member name="M:Godot.Directory.ListDirEnd">
  43602. <summary>
  43603. <para>Closes the current stream opened with <see cref="M:Godot.Directory.ListDirBegin(System.Boolean,System.Boolean)"/> (whether it has been fully processed with <see cref="M:Godot.Directory.GetNext"/> or not does not matter).</para>
  43604. </summary>
  43605. </member>
  43606. <member name="M:Godot.Directory.GetDriveCount">
  43607. <summary>
  43608. <para>On Windows, returns the number of drives (partitions) mounted on the current filesystem. On other platforms, the method returns 0.</para>
  43609. </summary>
  43610. </member>
  43611. <member name="M:Godot.Directory.GetDrive(System.Int32)">
  43612. <summary>
  43613. <para>On Windows, returns the name of the drive (partition) passed as an argument (e.g. <c>C:</c>). On other platforms, or if the requested drive does not existed, the method returns an empty String.</para>
  43614. </summary>
  43615. </member>
  43616. <member name="M:Godot.Directory.GetCurrentDrive">
  43617. <summary>
  43618. <para>Returns the currently opened directory's drive index. See <see cref="M:Godot.Directory.GetDrive(System.Int32)"/> to convert returned index to the name of the drive.</para>
  43619. </summary>
  43620. </member>
  43621. <member name="M:Godot.Directory.ChangeDir(System.String)">
  43622. <summary>
  43623. <para>Changes the currently opened directory to the one passed as an argument. The argument can be relative to the current directory (e.g. <c>newdir</c> or <c>../newdir</c>), or an absolute path (e.g. <c>/tmp/newdir</c> or <c>res://somedir/newdir</c>).</para>
  43624. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  43625. </summary>
  43626. </member>
  43627. <member name="M:Godot.Directory.GetCurrentDir">
  43628. <summary>
  43629. <para>Returns the absolute path to the currently opened directory (e.g. <c>res://folder</c> or <c>C:\tmp\folder</c>).</para>
  43630. </summary>
  43631. </member>
  43632. <member name="M:Godot.Directory.MakeDir(System.String)">
  43633. <summary>
  43634. <para>Creates a directory. The argument can be relative to the current directory, or an absolute path. The target directory should be placed in an already existing directory (to create the full path recursively, see <see cref="M:Godot.Directory.MakeDirRecursive(System.String)"/>).</para>
  43635. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  43636. </summary>
  43637. </member>
  43638. <member name="M:Godot.Directory.MakeDirRecursive(System.String)">
  43639. <summary>
  43640. <para>Creates a target directory and all necessary intermediate directories in its path, by calling <see cref="M:Godot.Directory.MakeDir(System.String)"/> recursively. The argument can be relative to the current directory, or an absolute path.</para>
  43641. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  43642. </summary>
  43643. </member>
  43644. <member name="M:Godot.Directory.FileExists(System.String)">
  43645. <summary>
  43646. <para>Returns whether the target file exists. The argument can be relative to the current directory, or an absolute path.</para>
  43647. </summary>
  43648. </member>
  43649. <member name="M:Godot.Directory.DirExists(System.String)">
  43650. <summary>
  43651. <para>Returns whether the target directory exists. The argument can be relative to the current directory, or an absolute path.</para>
  43652. </summary>
  43653. </member>
  43654. <member name="M:Godot.Directory.GetSpaceLeft">
  43655. <summary>
  43656. <para>On UNIX desktop systems, returns the available space on the current directory's disk. On other platforms, this information is not available and the method returns 0 or -1.</para>
  43657. </summary>
  43658. </member>
  43659. <member name="M:Godot.Directory.Copy(System.String,System.String)">
  43660. <summary>
  43661. <para>Copies the <c>from</c> file to the <c>to</c> destination. Both arguments should be paths to files, either relative or absolute. If the destination file exists and is not access-protected, it will be overwritten.</para>
  43662. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  43663. </summary>
  43664. </member>
  43665. <member name="M:Godot.Directory.Rename(System.String,System.String)">
  43666. <summary>
  43667. <para>Renames (move) the <c>from</c> file to the <c>to</c> destination. Both arguments should be paths to files, either relative or absolute. If the destination file exists and is not access-protected, it will be overwritten.</para>
  43668. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  43669. </summary>
  43670. </member>
  43671. <member name="M:Godot.Directory.Remove(System.String)">
  43672. <summary>
  43673. <para>Deletes the target file or an empty directory. The argument can be relative to the current directory, or an absolute path. If the target directory is not empty, the operation will fail.</para>
  43674. <para>Returns one of the <see cref="T:Godot.Error"/> code constants (<c>OK</c> on success).</para>
  43675. </summary>
  43676. </member>
  43677. <member name="T:Godot.Engine">
  43678. <summary>
  43679. <para>The <see cref="T:Godot.Engine"/> singleton allows you to query and modify the project's run-time parameters, such as frames per second, time scale, and others.</para>
  43680. </summary>
  43681. </member>
  43682. <member name="P:Godot.Engine.EditorHint">
  43683. <summary>
  43684. <para>If <c>true</c>, it is running inside the editor. Useful for tool scripts.</para>
  43685. </summary>
  43686. </member>
  43687. <member name="P:Godot.Engine.IterationsPerSecond">
  43688. <summary>
  43689. <para>The number of fixed iterations per second. This controls how often physics simulation and <see cref="M:Godot.Node._PhysicsProcess(System.Single)"/> methods are run. This value should generally always be set to <c>60</c> or above, as Godot doesn't interpolate the physics step. As a result, values lower than <c>60</c> will look stuttery. This value can be increased to make input more reactive or work around tunneling issues, but keep in mind doing so will increase CPU usage.</para>
  43690. </summary>
  43691. </member>
  43692. <member name="P:Godot.Engine.TargetFps">
  43693. <summary>
  43694. <para>The desired frames per second. If the hardware cannot keep up, this setting may not be respected. A value of 0 means no limit.</para>
  43695. </summary>
  43696. </member>
  43697. <member name="P:Godot.Engine.TimeScale">
  43698. <summary>
  43699. <para>Controls how fast or slow the in-game clock ticks versus the real life one. It defaults to 1.0. A value of 2.0 means the game moves twice as fast as real life, whilst a value of 0.5 means the game moves at half the regular speed.</para>
  43700. </summary>
  43701. </member>
  43702. <member name="P:Godot.Engine.PhysicsJitterFix">
  43703. <summary>
  43704. <para>Controls how much physics ticks are synchronized with real time. For 0 or less, the ticks are synchronized. Such values are recommended for network games, where clock synchronization matters. Higher values cause higher deviation of in-game clock and real clock, but allows to smooth out framerate jitters. The default value of 0.5 should be fine for most; values above 2 could cause the game to react to dropped frames with a noticeable delay and are not recommended.</para>
  43705. </summary>
  43706. </member>
  43707. <member name="M:Godot.Engine.GetPhysicsInterpolationFraction">
  43708. <summary>
  43709. <para>Returns the fraction through the current physics tick we are at the time of rendering the frame. This can be used to implement fixed timestep interpolation.</para>
  43710. </summary>
  43711. </member>
  43712. <member name="M:Godot.Engine.GetFramesDrawn">
  43713. <summary>
  43714. <para>Returns the total number of frames drawn. If the render loop is disabled with <c>--disable-render-loop</c> via command line, this returns <c>0</c>. See also <see cref="M:Godot.Engine.GetIdleFrames"/>.</para>
  43715. </summary>
  43716. </member>
  43717. <member name="M:Godot.Engine.GetFramesPerSecond">
  43718. <summary>
  43719. <para>Returns the frames per second of the running game.</para>
  43720. </summary>
  43721. </member>
  43722. <member name="M:Godot.Engine.GetPhysicsFrames">
  43723. <summary>
  43724. <para>Returns the total number of frames passed since engine initialization which is advanced on each physics frame.</para>
  43725. </summary>
  43726. </member>
  43727. <member name="M:Godot.Engine.GetIdleFrames">
  43728. <summary>
  43729. <para>Returns the total number of frames passed since engine initialization which is advanced on each idle frame, regardless of whether the render loop is enabled. See also <see cref="M:Godot.Engine.GetFramesDrawn"/>.</para>
  43730. </summary>
  43731. </member>
  43732. <member name="M:Godot.Engine.GetMainLoop">
  43733. <summary>
  43734. <para>Returns the main loop object (see <see cref="T:Godot.MainLoop"/> and <see cref="T:Godot.SceneTree"/>).</para>
  43735. </summary>
  43736. </member>
  43737. <member name="M:Godot.Engine.GetVersionInfo">
  43738. <summary>
  43739. <para>Returns the current engine version information in a Dictionary.</para>
  43740. <para><c>major</c> - Holds the major version number as an int</para>
  43741. <para><c>minor</c> - Holds the minor version number as an int</para>
  43742. <para><c>patch</c> - Holds the patch version number as an int</para>
  43743. <para><c>hex</c> - Holds the full version number encoded as a hexadecimal int with one byte (2 places) per number (see example below)</para>
  43744. <para><c>status</c> - Holds the status (e.g. "beta", "rc1", "rc2", ... "stable") as a String</para>
  43745. <para><c>build</c> - Holds the build name (e.g. "custom_build") as a String</para>
  43746. <para><c>hash</c> - Holds the full Git commit hash as a String</para>
  43747. <para><c>year</c> - Holds the year the version was released in as an int</para>
  43748. <para><c>string</c> - <c>major</c> + <c>minor</c> + <c>patch</c> + <c>status</c> + <c>build</c> in a single String</para>
  43749. <para>The <c>hex</c> value is encoded as follows, from left to right: one byte for the major, one byte for the minor, one byte for the patch version. For example, "3.1.12" would be <c>0x03010C</c>. Note: It's still an int internally, and printing it will give you its decimal representation, which is not particularly meaningful. Use hexadecimal literals for easy version comparisons from code:</para>
  43750. <para><code>
  43751. if Engine.get_version_info().hex &gt;= 0x030200:
  43752. # Do things specific to version 3.2 or later
  43753. else:
  43754. # Do things specific to versions before 3.2
  43755. </code></para>
  43756. </summary>
  43757. </member>
  43758. <member name="M:Godot.Engine.GetAuthorInfo">
  43759. <summary>
  43760. <para>Returns engine author information in a Dictionary.</para>
  43761. <para><c>lead_developers</c> - Array of Strings, lead developer names</para>
  43762. <para><c>founders</c> - Array of Strings, founder names</para>
  43763. <para><c>project_managers</c> - Array of Strings, project manager names</para>
  43764. <para><c>developers</c> - Array of Strings, developer names</para>
  43765. </summary>
  43766. </member>
  43767. <member name="M:Godot.Engine.GetCopyrightInfo">
  43768. <summary>
  43769. <para>Returns an Array of copyright information Dictionaries.</para>
  43770. <para><c>name</c> - String, component name</para>
  43771. <para><c>parts</c> - Array of Dictionaries {<c>files</c>, <c>copyright</c>, <c>license</c>} describing subsections of the component</para>
  43772. </summary>
  43773. </member>
  43774. <member name="M:Godot.Engine.GetDonorInfo">
  43775. <summary>
  43776. <para>Returns a Dictionary of Arrays of donor names.</para>
  43777. <para>{<c>platinum_sponsors</c>, <c>gold_sponsors</c>, <c>mini_sponsors</c>, <c>gold_donors</c>, <c>silver_donors</c>, <c>bronze_donors</c>}</para>
  43778. </summary>
  43779. </member>
  43780. <member name="M:Godot.Engine.GetLicenseInfo">
  43781. <summary>
  43782. <para>Returns Dictionary of licenses used by Godot and included third party components.</para>
  43783. </summary>
  43784. </member>
  43785. <member name="M:Godot.Engine.GetLicenseText">
  43786. <summary>
  43787. <para>Returns Godot license text.</para>
  43788. </summary>
  43789. </member>
  43790. <member name="M:Godot.Engine.IsInPhysicsFrame">
  43791. <summary>
  43792. <para>Returns <c>true</c> if the game is inside the fixed process and physics phase of the game loop.</para>
  43793. </summary>
  43794. </member>
  43795. <member name="M:Godot.Engine.HasSingleton(System.String)">
  43796. <summary>
  43797. <para>Returns <c>true</c> if a singleton with given <c>name</c> exists in global scope.</para>
  43798. </summary>
  43799. </member>
  43800. <member name="M:Godot.Engine.GetSingleton(System.String)">
  43801. <summary>
  43802. <para>Returns a global singleton with given <c>name</c>. Often used for plugins, e.g. <c>GodotPayment</c> on Android.</para>
  43803. </summary>
  43804. </member>
  43805. <member name="T:Godot.File">
  43806. <summary>
  43807. <para>File type. This is used to permanently store data into the user device's file system and to read from it. This can be used to store game save data or player configuration files, for example.</para>
  43808. <para>Here's a sample on how to write and read from a file:</para>
  43809. <para><code>
  43810. func save(content):
  43811. var file = File.new()
  43812. file.open("user://save_game.dat", File.WRITE)
  43813. file.store_string(content)
  43814. file.close()
  43815. func load():
  43816. var file = File.new()
  43817. file.open("user://save_game.dat", File.READ)
  43818. var content = file.get_as_text()
  43819. file.close()
  43820. return content
  43821. </code></para>
  43822. </summary>
  43823. </member>
  43824. <member name="F:Godot.File.CompressionMode.Fastlz">
  43825. <summary>
  43826. <para>Uses the <a href="http://fastlz.org/">FastLZ</a> compression method.</para>
  43827. </summary>
  43828. </member>
  43829. <member name="F:Godot.File.CompressionMode.Deflate">
  43830. <summary>
  43831. <para>Uses the <a href="https://en.wikipedia.org/wiki/DEFLATE">DEFLATE</a> compression method.</para>
  43832. </summary>
  43833. </member>
  43834. <member name="F:Godot.File.CompressionMode.Zstd">
  43835. <summary>
  43836. <para>Uses the <a href="https://facebook.github.io/zstd/">Zstandard</a> compression method.</para>
  43837. </summary>
  43838. </member>
  43839. <member name="F:Godot.File.CompressionMode.Gzip">
  43840. <summary>
  43841. <para>Uses the <a href="https://www.gzip.org/">gzip</a> compression method.</para>
  43842. </summary>
  43843. </member>
  43844. <member name="F:Godot.File.ModeFlags.Read">
  43845. <summary>
  43846. <para>Opens the file for read operations.</para>
  43847. </summary>
  43848. </member>
  43849. <member name="F:Godot.File.ModeFlags.Write">
  43850. <summary>
  43851. <para>Opens the file for write operations. Create it if the file does not exist and truncate if it exists.</para>
  43852. </summary>
  43853. </member>
  43854. <member name="F:Godot.File.ModeFlags.ReadWrite">
  43855. <summary>
  43856. <para>Opens the file for read and write operations. Does not truncate the file.</para>
  43857. </summary>
  43858. </member>
  43859. <member name="F:Godot.File.ModeFlags.WriteRead">
  43860. <summary>
  43861. <para>Opens the file for read and write operations. Create it if the file does not exist and truncate if it exists.</para>
  43862. </summary>
  43863. </member>
  43864. <member name="P:Godot.File.EndianSwap">
  43865. <summary>
  43866. <para>If <c>true</c>, the file's endianness is swapped. Use this if you're dealing with files written on big-endian machines.</para>
  43867. <para>Note: This is about the file format, not CPU type. This is always reset to <c>false</c> whenever you open the file.</para>
  43868. </summary>
  43869. </member>
  43870. <member name="M:Godot.File.OpenEncrypted(System.String,Godot.File.ModeFlags,System.Byte[])">
  43871. <summary>
  43872. <para>Opens an encrypted file in write or read mode. You need to pass a binary key to encrypt/decrypt it.</para>
  43873. </summary>
  43874. </member>
  43875. <member name="M:Godot.File.OpenEncryptedWithPass(System.String,Godot.File.ModeFlags,System.String)">
  43876. <summary>
  43877. <para>Opens an encrypted file in write or read mode. You need to pass a password to encrypt/decrypt it.</para>
  43878. </summary>
  43879. </member>
  43880. <member name="M:Godot.File.OpenCompressed(System.String,Godot.File.ModeFlags,Godot.File.CompressionMode)">
  43881. <summary>
  43882. <para>Opens a compressed file for reading or writing.</para>
  43883. </summary>
  43884. </member>
  43885. <member name="M:Godot.File.Open(System.String,Godot.File.ModeFlags)">
  43886. <summary>
  43887. <para>Opens the file for writing or reading, depending on the flags.</para>
  43888. </summary>
  43889. </member>
  43890. <member name="M:Godot.File.Close">
  43891. <summary>
  43892. <para>Closes the currently opened file.</para>
  43893. </summary>
  43894. </member>
  43895. <member name="M:Godot.File.GetPath">
  43896. <summary>
  43897. <para>Returns the path as a <see cref="T:System.String"/> for the current open file.</para>
  43898. </summary>
  43899. </member>
  43900. <member name="M:Godot.File.GetPathAbsolute">
  43901. <summary>
  43902. <para>Returns the absolute path as a <see cref="T:System.String"/> for the current open file.</para>
  43903. </summary>
  43904. </member>
  43905. <member name="M:Godot.File.IsOpen">
  43906. <summary>
  43907. <para>Returns <c>true</c> if the file is currently opened.</para>
  43908. </summary>
  43909. </member>
  43910. <member name="M:Godot.File.Seek(System.Int64)">
  43911. <summary>
  43912. <para>Changes the file reading/writing cursor to the specified position (in bytes from the beginning of the file).</para>
  43913. </summary>
  43914. </member>
  43915. <member name="M:Godot.File.SeekEnd(System.Int64)">
  43916. <summary>
  43917. <para>Changes the file reading/writing cursor to the specified position (in bytes from the end of the file).</para>
  43918. <para>Note: This is an offset, so you should use negative numbers or the cursor will be at the end of the file.</para>
  43919. </summary>
  43920. </member>
  43921. <member name="M:Godot.File.GetPosition">
  43922. <summary>
  43923. <para>Returns the file cursor's position.</para>
  43924. </summary>
  43925. </member>
  43926. <member name="M:Godot.File.GetLen">
  43927. <summary>
  43928. <para>Returns the size of the file in bytes.</para>
  43929. </summary>
  43930. </member>
  43931. <member name="M:Godot.File.EofReached">
  43932. <summary>
  43933. <para>Returns <c>true</c> if the file cursor has read past the end of the file.</para>
  43934. <para>Note: This function will still return <c>false</c> while at the end of the file and only activates when reading past it. This can be confusing but it conforms to how low-level file access works in all operating systems. There is always <see cref="M:Godot.File.GetLen"/> and <see cref="M:Godot.File.GetPosition"/> to implement a custom logic.</para>
  43935. </summary>
  43936. </member>
  43937. <member name="M:Godot.File.Get8">
  43938. <summary>
  43939. <para>Returns the next 8 bits from the file as an integer. See <see cref="M:Godot.File.Store8(System.Byte)"/> for details on what values can be stored and retrieved this way.</para>
  43940. </summary>
  43941. </member>
  43942. <member name="M:Godot.File.Get16">
  43943. <summary>
  43944. <para>Returns the next 16 bits from the file as an integer. See <see cref="M:Godot.File.Store16(System.UInt16)"/> for details on what values can be stored and retrieved this way.</para>
  43945. </summary>
  43946. </member>
  43947. <member name="M:Godot.File.Get32">
  43948. <summary>
  43949. <para>Returns the next 32 bits from the file as an integer. See <see cref="M:Godot.File.Store32(System.UInt32)"/> for details on what values can be stored and retrieved this way.</para>
  43950. </summary>
  43951. </member>
  43952. <member name="M:Godot.File.Get64">
  43953. <summary>
  43954. <para>Returns the next 64 bits from the file as an integer. See <see cref="M:Godot.File.Store64(System.UInt64)"/> for details on what values can be stored and retrieved this way.</para>
  43955. </summary>
  43956. </member>
  43957. <member name="M:Godot.File.GetFloat">
  43958. <summary>
  43959. <para>Returns the next 32 bits from the file as a floating-point number.</para>
  43960. </summary>
  43961. </member>
  43962. <member name="M:Godot.File.GetDouble">
  43963. <summary>
  43964. <para>Returns the next 64 bits from the file as a floating-point number.</para>
  43965. </summary>
  43966. </member>
  43967. <member name="M:Godot.File.GetReal">
  43968. <summary>
  43969. <para>Returns the next bits from the file as a floating-point number.</para>
  43970. </summary>
  43971. </member>
  43972. <member name="M:Godot.File.GetBuffer(System.Int32)">
  43973. <summary>
  43974. <para>Returns next <c>len</c> bytes of the file as a <see cref="T:System.Byte"/>.</para>
  43975. </summary>
  43976. </member>
  43977. <member name="M:Godot.File.GetLine">
  43978. <summary>
  43979. <para>Returns the next line of the file as a <see cref="T:System.String"/>.</para>
  43980. <para>Text is interpreted as being UTF-8 encoded.</para>
  43981. </summary>
  43982. </member>
  43983. <member name="M:Godot.File.GetCsvLine(System.String)">
  43984. <summary>
  43985. <para>Returns the next value of the file in CSV (Comma-Separated Values) format. You can pass a different delimiter <c>delim</c> to use other than the default <c>","</c> (comma). This delimiter must be one-character long.</para>
  43986. <para>Text is interpreted as being UTF-8 encoded.</para>
  43987. </summary>
  43988. </member>
  43989. <member name="M:Godot.File.GetAsText">
  43990. <summary>
  43991. <para>Returns the whole file as a <see cref="T:System.String"/>.</para>
  43992. <para>Text is interpreted as being UTF-8 encoded.</para>
  43993. </summary>
  43994. </member>
  43995. <member name="M:Godot.File.GetMd5(System.String)">
  43996. <summary>
  43997. <para>Returns an MD5 String representing the file at the given path or an empty <see cref="T:System.String"/> on failure.</para>
  43998. </summary>
  43999. </member>
  44000. <member name="M:Godot.File.GetSha256(System.String)">
  44001. <summary>
  44002. <para>Returns a SHA-256 <see cref="T:System.String"/> representing the file at the given path or an empty <see cref="T:System.String"/> on failure.</para>
  44003. </summary>
  44004. </member>
  44005. <member name="M:Godot.File.GetError">
  44006. <summary>
  44007. <para>Returns the last error that happened when trying to perform operations. Compare with the <c>ERR_FILE_*</c> constants from <see cref="T:Godot.Error"/>.</para>
  44008. </summary>
  44009. </member>
  44010. <member name="M:Godot.File.GetVar(System.Boolean)">
  44011. <summary>
  44012. <para>Returns the next <c>Variant</c> value from the file. If <c>allow_objects</c> is <c>true</c>, decoding objects is allowed.</para>
  44013. <para>Warning: Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.</para>
  44014. </summary>
  44015. </member>
  44016. <member name="M:Godot.File.Store8(System.Byte)">
  44017. <summary>
  44018. <para>Stores an integer as 8 bits in the file.</para>
  44019. <para>Note: The <c>value</c> should lie in the interval <c>[0, 255]</c>. Any other value will overflow and wrap around.</para>
  44020. <para>To store a signed integer, use <see cref="M:Godot.File.Store64(System.UInt64)"/>, or convert it manually (see <see cref="M:Godot.File.Store16(System.UInt16)"/> for an example).</para>
  44021. </summary>
  44022. </member>
  44023. <member name="M:Godot.File.Store16(System.UInt16)">
  44024. <summary>
  44025. <para>Stores an integer as 16 bits in the file.</para>
  44026. <para>Note: The <c>value</c> should lie in the interval <c>[0, 2^16 - 1]</c>. Any other value will overflow and wrap around.</para>
  44027. <para>To store a signed integer, use <see cref="M:Godot.File.Store64(System.UInt64)"/> or store a signed integer from the interval <c>[-2^15, 2^15 - 1]</c> (i.e. keeping one bit for the signedness) and compute its sign manually when reading. For example:</para>
  44028. <para><code>
  44029. const MAX_15B = 1 &lt;&lt; 15
  44030. const MAX_16B = 1 &lt;&lt; 16
  44031. func unsigned16_to_signed(unsigned):
  44032. return (unsigned + MAX_15B) % MAX_16B - MAX_15B
  44033. func _ready():
  44034. var f = File.new()
  44035. f.open("user://file.dat", File.WRITE_READ)
  44036. f.store_16(-42) # This wraps around and stores 65494 (2^16 - 42).
  44037. f.store_16(121) # In bounds, will store 121.
  44038. f.seek(0) # Go back to start to read the stored value.
  44039. var read1 = f.get_16() # 65494
  44040. var read2 = f.get_16() # 121
  44041. var converted1 = unsigned16_to_signed(read1) # -42
  44042. var converted2 = unsigned16_to_signed(read2) # 121
  44043. </code></para>
  44044. </summary>
  44045. </member>
  44046. <member name="M:Godot.File.Store32(System.UInt32)">
  44047. <summary>
  44048. <para>Stores an integer as 32 bits in the file.</para>
  44049. <para>Note: The <c>value</c> should lie in the interval <c>[0, 2^32 - 1]</c>. Any other value will overflow and wrap around.</para>
  44050. <para>To store a signed integer, use <see cref="M:Godot.File.Store64(System.UInt64)"/>, or convert it manually (see <see cref="M:Godot.File.Store16(System.UInt16)"/> for an example).</para>
  44051. </summary>
  44052. </member>
  44053. <member name="M:Godot.File.Store64(System.UInt64)">
  44054. <summary>
  44055. <para>Stores an integer as 64 bits in the file.</para>
  44056. <para>Note: The <c>value</c> must lie in the interval <c>[-2^63, 2^63 - 1]</c> (i.e. be a valid <see cref="T:System.Int32"/> value).</para>
  44057. </summary>
  44058. </member>
  44059. <member name="M:Godot.File.StoreFloat(System.Single)">
  44060. <summary>
  44061. <para>Stores a floating-point number as 32 bits in the file.</para>
  44062. </summary>
  44063. </member>
  44064. <member name="M:Godot.File.StoreDouble(System.Double)">
  44065. <summary>
  44066. <para>Stores a floating-point number as 64 bits in the file.</para>
  44067. </summary>
  44068. </member>
  44069. <member name="M:Godot.File.StoreReal(System.Single)">
  44070. <summary>
  44071. <para>Stores a floating-point number in the file.</para>
  44072. </summary>
  44073. </member>
  44074. <member name="M:Godot.File.StoreBuffer(System.Byte[])">
  44075. <summary>
  44076. <para>Stores the given array of bytes in the file.</para>
  44077. </summary>
  44078. </member>
  44079. <member name="M:Godot.File.StoreLine(System.String)">
  44080. <summary>
  44081. <para>Stores the given <see cref="T:System.String"/> as a line in the file.</para>
  44082. <para>Text will be encoded as UTF-8.</para>
  44083. </summary>
  44084. </member>
  44085. <member name="M:Godot.File.StoreCsvLine(System.String[],System.String)">
  44086. <summary>
  44087. <para>Store the given <see cref="T:System.String"/> in the file as a line formatted in the CSV (Comma-Separated Values) format. You can pass a different delimiter <c>delim</c> to use other than the default <c>","</c> (comma). This delimiter must be one-character long.</para>
  44088. <para>Text will be encoded as UTF-8.</para>
  44089. </summary>
  44090. </member>
  44091. <member name="M:Godot.File.StoreString(System.String)">
  44092. <summary>
  44093. <para>Stores the given <see cref="T:System.String"/> in the file.</para>
  44094. <para>Text will be encoded as UTF-8.</para>
  44095. </summary>
  44096. </member>
  44097. <member name="M:Godot.File.StoreVar(System.Object,System.Boolean)">
  44098. <summary>
  44099. <para>Stores any Variant value in the file. If <c>full_objects</c> is <c>true</c>, encoding objects is allowed (and can potentially include code).</para>
  44100. </summary>
  44101. </member>
  44102. <member name="M:Godot.File.StorePascalString(System.String)">
  44103. <summary>
  44104. <para>Stores the given <see cref="T:System.String"/> as a line in the file in Pascal format (i.e. also store the length of the string).</para>
  44105. <para>Text will be encoded as UTF-8.</para>
  44106. </summary>
  44107. </member>
  44108. <member name="M:Godot.File.GetPascalString">
  44109. <summary>
  44110. <para>Returns a <see cref="T:System.String"/> saved in Pascal format from the file.</para>
  44111. <para>Text is interpreted as being UTF-8 encoded.</para>
  44112. </summary>
  44113. </member>
  44114. <member name="M:Godot.File.FileExists(System.String)">
  44115. <summary>
  44116. <para>Returns <c>true</c> if the file exists in the given path.</para>
  44117. <para>Note: Many resources types are imported (e.g. textures or sound files), and that their source asset will not be included in the exported game, as only the imported version is used (in the <c>res://.import</c> folder). To check for the existence of such resources while taking into account the remapping to their imported location, use <see cref="M:Godot.ResourceLoader.Exists(System.String,System.String)"/>. Typically, using <c>File.file_exists</c> on an imported resource would work while you are developing in the editor (the source asset is present in <c>res://</c>, but fail when exported).</para>
  44118. </summary>
  44119. </member>
  44120. <member name="M:Godot.File.GetModifiedTime(System.String)">
  44121. <summary>
  44122. <para>Returns the last time the <c>file</c> was modified in unix timestamp format or returns a <see cref="T:System.String"/> "ERROR IN <c>file</c>". This unix timestamp can be converted to datetime by using <see cref="M:Godot.OS.GetDatetimeFromUnixTime(System.Int64)"/>.</para>
  44123. </summary>
  44124. </member>
  44125. <member name="T:Godot.Geometry">
  44126. <summary>
  44127. <para>Geometry provides users with a set of helper functions to create geometric shapes, compute intersections between shapes, and process various other geometric operations.</para>
  44128. </summary>
  44129. </member>
  44130. <member name="F:Godot.Geometry.PolyEndType.Polygon">
  44131. <summary>
  44132. <para>Endpoints are joined using the <see cref="T:Godot.Geometry.PolyJoinType"/> value and the path filled as a polygon.</para>
  44133. </summary>
  44134. </member>
  44135. <member name="F:Godot.Geometry.PolyEndType.Joined">
  44136. <summary>
  44137. <para>Endpoints are joined using the <see cref="T:Godot.Geometry.PolyJoinType"/> value and the path filled as a polyline.</para>
  44138. </summary>
  44139. </member>
  44140. <member name="F:Godot.Geometry.PolyEndType.Butt">
  44141. <summary>
  44142. <para>Endpoints are squared off with no extension.</para>
  44143. </summary>
  44144. </member>
  44145. <member name="F:Godot.Geometry.PolyEndType.Square">
  44146. <summary>
  44147. <para>Endpoints are squared off and extended by <c>delta</c> units.</para>
  44148. </summary>
  44149. </member>
  44150. <member name="F:Godot.Geometry.PolyEndType.Round">
  44151. <summary>
  44152. <para>Endpoints are rounded off and extended by <c>delta</c> units.</para>
  44153. </summary>
  44154. </member>
  44155. <member name="F:Godot.Geometry.PolyBooleanOperation.Union">
  44156. <summary>
  44157. <para>Create regions where either subject or clip polygons (or both) are filled.</para>
  44158. </summary>
  44159. </member>
  44160. <member name="F:Godot.Geometry.PolyBooleanOperation.Difference">
  44161. <summary>
  44162. <para>Create regions where subject polygons are filled except where clip polygons are filled.</para>
  44163. </summary>
  44164. </member>
  44165. <member name="F:Godot.Geometry.PolyBooleanOperation.Intersection">
  44166. <summary>
  44167. <para>Create regions where both subject and clip polygons are filled.</para>
  44168. </summary>
  44169. </member>
  44170. <member name="F:Godot.Geometry.PolyBooleanOperation.Xor">
  44171. <summary>
  44172. <para>Create regions where either subject or clip polygons are filled but not where both are filled.</para>
  44173. </summary>
  44174. </member>
  44175. <member name="F:Godot.Geometry.PolyJoinType.Square">
  44176. <summary>
  44177. <para>Squaring is applied uniformally at all convex edge joins at <c>1 * delta</c>.</para>
  44178. </summary>
  44179. </member>
  44180. <member name="F:Godot.Geometry.PolyJoinType.Round">
  44181. <summary>
  44182. <para>While flattened paths can never perfectly trace an arc, they are approximated by a series of arc chords.</para>
  44183. </summary>
  44184. </member>
  44185. <member name="F:Godot.Geometry.PolyJoinType.Miter">
  44186. <summary>
  44187. <para>There's a necessary limit to mitered joins since offsetting edges that join at very acute angles will produce excessively long and narrow "spikes". For any given edge join, when miter offsetting would exceed that maximum distance, "square" joining is applied.</para>
  44188. </summary>
  44189. </member>
  44190. <member name="M:Godot.Geometry.BuildBoxPlanes(Godot.Vector3)">
  44191. <summary>
  44192. <para>Returns an array with 6 <see cref="T:Godot.Plane"/>s that describe the sides of a box centered at the origin. The box size is defined by <c>extents</c>, which represents one (positive) corner of the box (i.e. half its actual size).</para>
  44193. </summary>
  44194. </member>
  44195. <member name="M:Godot.Geometry.BuildCylinderPlanes(System.Single,System.Single,System.Int32,Godot.Vector3.Axis)">
  44196. <summary>
  44197. <para>Returns an array of <see cref="T:Godot.Plane"/>s closely bounding a faceted cylinder centered at the origin with radius <c>radius</c> and height <c>height</c>. The parameter <c>sides</c> defines how many planes will be generated for the round part of the cylinder. The parameter <c>axis</c> describes the axis along which the cylinder is oriented (0 for X, 1 for Y, 2 for Z).</para>
  44198. </summary>
  44199. </member>
  44200. <member name="M:Godot.Geometry.BuildCapsulePlanes(System.Single,System.Single,System.Int32,System.Int32,Godot.Vector3.Axis)">
  44201. <summary>
  44202. <para>Returns an array of <see cref="T:Godot.Plane"/>s closely bounding a faceted capsule centered at the origin with radius <c>radius</c> and height <c>height</c>. The parameter <c>sides</c> defines how many planes will be generated for the side part of the capsule, whereas <c>lats</c> gives the number of latitudinal steps at the bottom and top of the capsule. The parameter <c>axis</c> describes the axis along which the capsule is oriented (0 for X, 1 for Y, 2 for Z).</para>
  44203. </summary>
  44204. </member>
  44205. <member name="M:Godot.Geometry.IsPointInCircle(Godot.Vector2,Godot.Vector2,System.Single)">
  44206. <summary>
  44207. <para>Returns <c>true</c> if <c>point</c> is inside the circle or if it's located exactly on the circle's boundary, otherwise returns <c>false</c>.</para>
  44208. </summary>
  44209. </member>
  44210. <member name="M:Godot.Geometry.SegmentIntersectsCircle(Godot.Vector2,Godot.Vector2,Godot.Vector2,System.Single)">
  44211. <summary>
  44212. <para>Given the 2D segment (<c>segment_from</c>, <c>segment_to</c>), returns the position on the segment (as a number between 0 and 1) at which the segment hits the circle that is located at position <c>circle_position</c> and has radius <c>circle_radius</c>. If the segment does not intersect the circle, -1 is returned (this is also the case if the line extending the segment would intersect the circle, but the segment does not).</para>
  44213. </summary>
  44214. </member>
  44215. <member name="M:Godot.Geometry.SegmentIntersectsSegment2d(Godot.Vector2,Godot.Vector2,Godot.Vector2,Godot.Vector2)">
  44216. <summary>
  44217. <para>Checks if the two segments (<c>from_a</c>, <c>to_a</c>) and (<c>from_b</c>, <c>to_b</c>) intersect. If yes, return the point of intersection as <see cref="T:Godot.Vector2"/>. If no intersection takes place, returns an empty <c>Variant</c>.</para>
  44218. </summary>
  44219. </member>
  44220. <member name="M:Godot.Geometry.LineIntersectsLine2d(Godot.Vector2,Godot.Vector2,Godot.Vector2,Godot.Vector2)">
  44221. <summary>
  44222. <para>Checks if the two lines (<c>from_a</c>, <c>dir_a</c>) and (<c>from_b</c>, <c>dir_b</c>) intersect. If yes, return the point of intersection as <see cref="T:Godot.Vector2"/>. If no intersection takes place, returns an empty <c>Variant</c>.</para>
  44223. <para>Note: The lines are specified using direction vectors, not end points.</para>
  44224. </summary>
  44225. </member>
  44226. <member name="M:Godot.Geometry.GetClosestPointsBetweenSegments2d(Godot.Vector2,Godot.Vector2,Godot.Vector2,Godot.Vector2)">
  44227. <summary>
  44228. <para>Given the two 2D segments (<c>p1</c>, <c>p2</c>) and (<c>q1</c>, <c>q2</c>), finds those two points on the two segments that are closest to each other. Returns a <see cref="T:Godot.Vector2"/> that contains this point on (<c>p1</c>, <c>p2</c>) as well the accompanying point on (<c>q1</c>, <c>q2</c>).</para>
  44229. </summary>
  44230. </member>
  44231. <member name="M:Godot.Geometry.GetClosestPointsBetweenSegments(Godot.Vector3,Godot.Vector3,Godot.Vector3,Godot.Vector3)">
  44232. <summary>
  44233. <para>Given the two 3D segments (<c>p1</c>, <c>p2</c>) and (<c>q1</c>, <c>q2</c>), finds those two points on the two segments that are closest to each other. Returns a <see cref="T:Godot.Vector3"/> that contains this point on (<c>p1</c>, <c>p2</c>) as well the accompanying point on (<c>q1</c>, <c>q2</c>).</para>
  44234. </summary>
  44235. </member>
  44236. <member name="M:Godot.Geometry.GetClosestPointToSegment2d(Godot.Vector2,Godot.Vector2,Godot.Vector2)">
  44237. <summary>
  44238. <para>Returns the 2D point on the 2D segment (<c>s1</c>, <c>s2</c>) that is closest to <c>point</c>. The returned point will always be inside the specified segment.</para>
  44239. </summary>
  44240. </member>
  44241. <member name="M:Godot.Geometry.GetClosestPointToSegment(Godot.Vector3,Godot.Vector3,Godot.Vector3)">
  44242. <summary>
  44243. <para>Returns the 3D point on the 3D segment (<c>s1</c>, <c>s2</c>) that is closest to <c>point</c>. The returned point will always be inside the specified segment.</para>
  44244. </summary>
  44245. </member>
  44246. <member name="M:Godot.Geometry.GetClosestPointToSegmentUncapped2d(Godot.Vector2,Godot.Vector2,Godot.Vector2)">
  44247. <summary>
  44248. <para>Returns the 2D point on the 2D line defined by (<c>s1</c>, <c>s2</c>) that is closest to <c>point</c>. The returned point can be inside the segment (<c>s1</c>, <c>s2</c>) or outside of it, i.e. somewhere on the line extending from the segment.</para>
  44249. </summary>
  44250. </member>
  44251. <member name="M:Godot.Geometry.GetClosestPointToSegmentUncapped(Godot.Vector3,Godot.Vector3,Godot.Vector3)">
  44252. <summary>
  44253. <para>Returns the 3D point on the 3D line defined by (<c>s1</c>, <c>s2</c>) that is closest to <c>point</c>. The returned point can be inside the segment (<c>s1</c>, <c>s2</c>) or outside of it, i.e. somewhere on the line extending from the segment.</para>
  44254. </summary>
  44255. </member>
  44256. <member name="M:Godot.Geometry.GetUv84NormalBit(Godot.Vector3)">
  44257. <summary>
  44258. <para>Used internally by the engine.</para>
  44259. </summary>
  44260. </member>
  44261. <member name="M:Godot.Geometry.RayIntersectsTriangle(Godot.Vector3,Godot.Vector3,Godot.Vector3,Godot.Vector3,Godot.Vector3)">
  44262. <summary>
  44263. <para>Tests if the 3D ray starting at <c>from</c> with the direction of <c>dir</c> intersects the triangle specified by <c>a</c>, <c>b</c> and <c>c</c>. If yes, returns the point of intersection as <see cref="T:Godot.Vector3"/>. If no intersection takes place, an empty <c>Variant</c> is returned.</para>
  44264. </summary>
  44265. </member>
  44266. <member name="M:Godot.Geometry.SegmentIntersectsTriangle(Godot.Vector3,Godot.Vector3,Godot.Vector3,Godot.Vector3,Godot.Vector3)">
  44267. <summary>
  44268. <para>Tests if the segment (<c>from</c>, <c>to</c>) intersects the triangle <c>a</c>, <c>b</c>, <c>c</c>. If yes, returns the point of intersection as <see cref="T:Godot.Vector3"/>. If no intersection takes place, an empty <c>Variant</c> is returned.</para>
  44269. </summary>
  44270. </member>
  44271. <member name="M:Godot.Geometry.SegmentIntersectsSphere(Godot.Vector3,Godot.Vector3,Godot.Vector3,System.Single)">
  44272. <summary>
  44273. <para>Checks if the segment (<c>from</c>, <c>to</c>) intersects the sphere that is located at <c>sphere_position</c> and has radius <c>sphere_radius</c>. If no, returns an empty <see cref="T:Godot.Vector3"/>. If yes, returns a <see cref="T:Godot.Vector3"/> containing the point of intersection and the sphere's normal at the point of intersection.</para>
  44274. </summary>
  44275. </member>
  44276. <member name="M:Godot.Geometry.SegmentIntersectsCylinder(Godot.Vector3,Godot.Vector3,System.Single,System.Single)">
  44277. <summary>
  44278. <para>Checks if the segment (<c>from</c>, <c>to</c>) intersects the cylinder with height <c>height</c> that is centered at the origin and has radius <c>radius</c>. If no, returns an empty <see cref="T:Godot.Vector3"/>. If an intersection takes place, the returned array contains the point of intersection and the cylinder's normal at the point of intersection.</para>
  44279. </summary>
  44280. </member>
  44281. <member name="M:Godot.Geometry.SegmentIntersectsConvex(Godot.Vector3,Godot.Vector3,Godot.Collections.Array)">
  44282. <summary>
  44283. <para>Given a convex hull defined though the <see cref="T:Godot.Plane"/>s in the array <c>planes</c>, tests if the segment (<c>from</c>, <c>to</c>) intersects with that hull. If an intersection is found, returns a <see cref="T:Godot.Vector3"/> containing the point the intersection and the hull's normal. If no intersecion is found, an the returned array is empty.</para>
  44284. </summary>
  44285. </member>
  44286. <member name="M:Godot.Geometry.PointIsInsideTriangle(Godot.Vector2,Godot.Vector2,Godot.Vector2,Godot.Vector2)">
  44287. <summary>
  44288. <para>Returns if <c>point</c> is inside the triangle specified by <c>a</c>, <c>b</c> and <c>c</c>.</para>
  44289. </summary>
  44290. </member>
  44291. <member name="M:Godot.Geometry.IsPolygonClockwise(Godot.Vector2[])">
  44292. <summary>
  44293. <para>Returns <c>true</c> if <c>polygon</c>'s vertices are ordered in clockwise order, otherwise returns <c>false</c>.</para>
  44294. </summary>
  44295. </member>
  44296. <member name="M:Godot.Geometry.IsPointInPolygon(Godot.Vector2,Godot.Vector2[])">
  44297. <summary>
  44298. <para>Returns <c>true</c> if <c>point</c> is inside <c>polygon</c> or if it's located exactly on polygon's boundary, otherwise returns <c>false</c>.</para>
  44299. </summary>
  44300. </member>
  44301. <member name="M:Godot.Geometry.TriangulatePolygon(Godot.Vector2[])">
  44302. <summary>
  44303. <para>Triangulates the polygon specified by the points in <c>polygon</c>. Returns a <see cref="T:System.Int32"/> where each triangle consists of three consecutive point indices into <c>polygon</c> (i.e. the returned array will have <c>n * 3</c> elements, with <c>n</c> being the number of found triangles). If the triangulation did not succeed, an empty <see cref="T:System.Int32"/> is returned.</para>
  44304. </summary>
  44305. </member>
  44306. <member name="M:Godot.Geometry.TriangulateDelaunay2d(Godot.Vector2[])">
  44307. <summary>
  44308. <para>Triangulates the area specified by discrete set of <c>points</c> such that no point is inside the circumcircle of any resulting triangle. Returns a <see cref="T:System.Int32"/> where each triangle consists of three consecutive point indices into <c>points</c> (i.e. the returned array will have <c>n * 3</c> elements, with <c>n</c> being the number of found triangles). If the triangulation did not succeed, an empty <see cref="T:System.Int32"/> is returned.</para>
  44309. </summary>
  44310. </member>
  44311. <member name="M:Godot.Geometry.ConvexHull2d(Godot.Vector2[])">
  44312. <summary>
  44313. <para>Given an array of <see cref="T:Godot.Vector2"/>s, returns the convex hull as a list of points in counterclockwise order. The last point is the same as the first one.</para>
  44314. </summary>
  44315. </member>
  44316. <member name="M:Godot.Geometry.ClipPolygon(Godot.Vector3[],Godot.Plane)">
  44317. <summary>
  44318. <para>Clips the polygon defined by the points in <c>points</c> against the <c>plane</c> and returns the points of the clipped polygon.</para>
  44319. </summary>
  44320. </member>
  44321. <member name="M:Godot.Geometry.MergePolygons2d(Godot.Vector2[],Godot.Vector2[])">
  44322. <summary>
  44323. <para>Merges (combines) <c>polygon_a</c> and <c>polygon_b</c> and returns an array of merged polygons. This performs between polygons.</para>
  44324. <para>The operation may result in an outer polygon (boundary) and inner polygon (hole) produced which could be distinguished by calling <see cref="M:Godot.Geometry.IsPolygonClockwise(Godot.Vector2[])"/>.</para>
  44325. </summary>
  44326. </member>
  44327. <member name="M:Godot.Geometry.ClipPolygons2d(Godot.Vector2[],Godot.Vector2[])">
  44328. <summary>
  44329. <para>Clips <c>polygon_a</c> against <c>polygon_b</c> and returns an array of clipped polygons. This performs between polygons. Returns an empty array if <c>polygon_b</c> completely overlaps <c>polygon_a</c>.</para>
  44330. <para>If <c>polygon_b</c> is enclosed by <c>polygon_a</c>, returns an outer polygon (boundary) and inner polygon (hole) which could be distiguished by calling <see cref="M:Godot.Geometry.IsPolygonClockwise(Godot.Vector2[])"/>.</para>
  44331. </summary>
  44332. </member>
  44333. <member name="M:Godot.Geometry.IntersectPolygons2d(Godot.Vector2[],Godot.Vector2[])">
  44334. <summary>
  44335. <para>Intersects <c>polygon_a</c> with <c>polygon_b</c> and returns an array of intersected polygons. This performs between polygons. In other words, returns common area shared by polygons. Returns an empty array if no intersection occurs.</para>
  44336. <para>The operation may result in an outer polygon (boundary) and inner polygon (hole) produced which could be distinguished by calling <see cref="M:Godot.Geometry.IsPolygonClockwise(Godot.Vector2[])"/>.</para>
  44337. </summary>
  44338. </member>
  44339. <member name="M:Godot.Geometry.ExcludePolygons2d(Godot.Vector2[],Godot.Vector2[])">
  44340. <summary>
  44341. <para>Mutually excludes common area defined by intersection of <c>polygon_a</c> and <c>polygon_b</c> (see <see cref="M:Godot.Geometry.IntersectPolygons2d(Godot.Vector2[],Godot.Vector2[])"/>) and returns an array of excluded polygons. This performs between polygons. In other words, returns all but common area between polygons.</para>
  44342. <para>The operation may result in an outer polygon (boundary) and inner polygon (hole) produced which could be distiguished by calling <see cref="M:Godot.Geometry.IsPolygonClockwise(Godot.Vector2[])"/>.</para>
  44343. </summary>
  44344. </member>
  44345. <member name="M:Godot.Geometry.ClipPolylineWithPolygon2d(Godot.Vector2[],Godot.Vector2[])">
  44346. <summary>
  44347. <para>Clips <c>polyline</c> against <c>polygon</c> and returns an array of clipped polylines. This performs between the polyline and the polygon. This operation can be thought of as cutting a line with a closed shape.</para>
  44348. </summary>
  44349. </member>
  44350. <member name="M:Godot.Geometry.IntersectPolylineWithPolygon2d(Godot.Vector2[],Godot.Vector2[])">
  44351. <summary>
  44352. <para>Intersects <c>polyline</c> with <c>polygon</c> and returns an array of intersected polylines. This performs between the polyline and the polygon. This operation can be thought of as chopping a line with a closed shape.</para>
  44353. </summary>
  44354. </member>
  44355. <member name="M:Godot.Geometry.OffsetPolygon2d(Godot.Vector2[],System.Single,Godot.Geometry.PolyJoinType)">
  44356. <summary>
  44357. <para>Inflates or deflates <c>polygon</c> by <c>delta</c> units (pixels). If <c>delta</c> is positive, makes the polygon grow outward. If <c>delta</c> is negative, shrinks the polygon inward. Returns an array of polygons because inflating/deflating may result in multiple discrete polygons. Returns an empty array if <c>delta</c> is negative and the absolute value of it approximately exceeds the minimum bounding rectangle dimensions of the polygon.</para>
  44358. <para>Each polygon's vertices will be rounded as determined by <c>join_type</c>, see <see cref="T:Godot.Geometry.PolyJoinType"/>.</para>
  44359. <para>The operation may result in an outer polygon (boundary) and inner polygon (hole) produced which could be distinguished by calling <see cref="M:Godot.Geometry.IsPolygonClockwise(Godot.Vector2[])"/>.</para>
  44360. </summary>
  44361. </member>
  44362. <member name="M:Godot.Geometry.OffsetPolyline2d(Godot.Vector2[],System.Single,Godot.Geometry.PolyJoinType,Godot.Geometry.PolyEndType)">
  44363. <summary>
  44364. <para>Inflates or deflates <c>polyline</c> by <c>delta</c> units (pixels), producing polygons. If <c>delta</c> is positive, makes the polyline grow outward. Returns an array of polygons because inflating/deflating may result in multiple discrete polygons. If <c>delta</c> is negative, returns an empty array.</para>
  44365. <para>Each polygon's vertices will be rounded as determined by <c>join_type</c>, see <see cref="T:Godot.Geometry.PolyJoinType"/>.</para>
  44366. <para>Each polygon's endpoints will be rounded as determined by <c>end_type</c>, see <see cref="T:Godot.Geometry.PolyEndType"/>.</para>
  44367. <para>The operation may result in an outer polygon (boundary) and inner polygon (hole) produced which could be distinguished by calling <see cref="M:Godot.Geometry.IsPolygonClockwise(Godot.Vector2[])"/>.</para>
  44368. </summary>
  44369. </member>
  44370. <member name="M:Godot.Geometry.MakeAtlas(Godot.Vector2[])">
  44371. <summary>
  44372. <para>Given an array of <see cref="T:Godot.Vector2"/>s representing tiles, builds an atlas. The returned dictionary has two keys: <c>points</c> is a vector of <see cref="T:Godot.Vector2"/> that specifies the positions of each tile, <c>size</c> contains the overall size of the whole atlas as <see cref="T:Godot.Vector2"/>.</para>
  44373. </summary>
  44374. </member>
  44375. <member name="T:Godot.GodotSharp">
  44376. <summary>
  44377. <para>This class is a bridge between Godot and the Mono runtime. It exposes several low-level operations and is only available in Mono-enabled Godot builds.</para>
  44378. <para>See also <see cref="T:Godot.CSharpScript"/>.</para>
  44379. </summary>
  44380. </member>
  44381. <member name="M:Godot.GodotSharp.AttachThread">
  44382. <summary>
  44383. <para>Attaches the current thread to the Mono runtime.</para>
  44384. </summary>
  44385. </member>
  44386. <member name="M:Godot.GodotSharp.DetachThread">
  44387. <summary>
  44388. <para>Detaches the current thread from the Mono runtime.</para>
  44389. </summary>
  44390. </member>
  44391. <member name="M:Godot.GodotSharp.GetDomainId">
  44392. <summary>
  44393. <para>Returns the current MonoDomain ID.</para>
  44394. <para>Note: The Mono runtime must be initialized for this method to work (use <see cref="M:Godot.GodotSharp.IsRuntimeInitialized"/> to check). If the Mono runtime isn't initialized at the time this method is called, the engine will crash.</para>
  44395. </summary>
  44396. </member>
  44397. <member name="M:Godot.GodotSharp.GetScriptsDomainId">
  44398. <summary>
  44399. <para>Returns the scripts MonoDomain's ID. This will be the same MonoDomain ID as <see cref="M:Godot.GodotSharp.GetDomainId"/>, unless the scripts domain isn't loaded.</para>
  44400. <para>Note: The Mono runtime must be initialized for this method to work (use <see cref="M:Godot.GodotSharp.IsRuntimeInitialized"/> to check). If the Mono runtime isn't initialized at the time this method is called, the engine will crash.</para>
  44401. </summary>
  44402. </member>
  44403. <member name="M:Godot.GodotSharp.IsScriptsDomainLoaded">
  44404. <summary>
  44405. <para>Returns <c>true</c> if the scripts domain is loaded, <c>false</c> otherwise.</para>
  44406. </summary>
  44407. </member>
  44408. <member name="M:Godot.GodotSharp.IsDomainFinalizingForUnload(System.Int32)">
  44409. <summary>
  44410. <para>Returns <c>true</c> if the domain is being finalized, <c>false</c> otherwise.</para>
  44411. </summary>
  44412. </member>
  44413. <member name="M:Godot.GodotSharp.IsRuntimeShuttingDown">
  44414. <summary>
  44415. <para>Returns <c>true</c> if the Mono runtime is shutting down, <c>false</c> otherwise.</para>
  44416. </summary>
  44417. </member>
  44418. <member name="M:Godot.GodotSharp.IsRuntimeInitialized">
  44419. <summary>
  44420. <para>Returns <c>true</c> if the Mono runtime is initialized, <c>false</c> otherwise.</para>
  44421. </summary>
  44422. </member>
  44423. <member name="T:Godot.JSON">
  44424. <summary>
  44425. <para>Helper class for parsing JSON data. For usage example and other important hints, see <see cref="T:Godot.JSONParseResult"/>.</para>
  44426. </summary>
  44427. </member>
  44428. <member name="M:Godot.JSON.Print(System.Object,System.String,System.Boolean)">
  44429. <summary>
  44430. <para>Converts a <c>Variant</c> var to JSON text and returns the result. Useful for serializing data to store or send over the network.</para>
  44431. </summary>
  44432. </member>
  44433. <member name="M:Godot.JSON.Parse(System.String)">
  44434. <summary>
  44435. <para>Parses a JSON encoded string and returns a <see cref="T:Godot.JSONParseResult"/> containing the result.</para>
  44436. </summary>
  44437. </member>
  44438. <member name="T:Godot.Marshalls">
  44439. <summary>
  44440. <para>Provides data transformation and encoding utility functions.</para>
  44441. </summary>
  44442. </member>
  44443. <member name="M:Godot.Marshalls.VariantToBase64(System.Object,System.Boolean)">
  44444. <summary>
  44445. <para>Returns a Base64-encoded string of the <c>Variant</c> <c>variant</c>. If <c>full_objects</c> is <c>true</c>, encoding objects is allowed (and can potentially include code).</para>
  44446. </summary>
  44447. </member>
  44448. <member name="M:Godot.Marshalls.Base64ToVariant(System.String,System.Boolean)">
  44449. <summary>
  44450. <para>Returns a decoded <c>Variant</c> corresponding to the Base64-encoded string <c>base64_str</c>. If <c>allow_objects</c> is <c>true</c>, decoding objects is allowed.</para>
  44451. <para>Warning: Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution.</para>
  44452. </summary>
  44453. </member>
  44454. <member name="M:Godot.Marshalls.RawToBase64(System.Byte[])">
  44455. <summary>
  44456. <para>Returns a Base64-encoded string of a given <see cref="T:System.Byte"/>.</para>
  44457. </summary>
  44458. </member>
  44459. <member name="M:Godot.Marshalls.Base64ToRaw(System.String)">
  44460. <summary>
  44461. <para>Returns a decoded <see cref="T:System.Byte"/> corresponding to the Base64-encoded string <c>base64_str</c>.</para>
  44462. </summary>
  44463. </member>
  44464. <member name="M:Godot.Marshalls.Utf8ToBase64(System.String)">
  44465. <summary>
  44466. <para>Returns a Base64-encoded string of the UTF-8 string <c>utf8_str</c>.</para>
  44467. </summary>
  44468. </member>
  44469. <member name="M:Godot.Marshalls.Base64ToUtf8(System.String)">
  44470. <summary>
  44471. <para>Returns a decoded string corresponding to the Base64-encoded string <c>base64_str</c>.</para>
  44472. </summary>
  44473. </member>
  44474. <member name="T:Godot.Mutex">
  44475. <summary>
  44476. <para>A synchronization mutex (mutual exclusion). This is used to synchronize multiple <see cref="T:Godot.Thread"/>s, and is equivalent to a binary <see cref="T:Godot.Semaphore"/>. It guarantees that only one thread can ever acquire the lock at a time. A mutex can be used to protect a critical section; however, be careful to avoid deadlocks.</para>
  44477. </summary>
  44478. </member>
  44479. <member name="M:Godot.Mutex.Lock">
  44480. <summary>
  44481. <para>Locks this <see cref="T:Godot.Mutex"/>, blocks until it is unlocked by the current owner.</para>
  44482. </summary>
  44483. </member>
  44484. <member name="M:Godot.Mutex.TryLock">
  44485. <summary>
  44486. <para>Tries locking this <see cref="T:Godot.Mutex"/>, but does not block. Returns on success, otherwise.</para>
  44487. </summary>
  44488. </member>
  44489. <member name="M:Godot.Mutex.Unlock">
  44490. <summary>
  44491. <para>Unlocks this <see cref="T:Godot.Mutex"/>, leaving it to other threads.</para>
  44492. </summary>
  44493. </member>
  44494. <member name="T:Godot.OS">
  44495. <summary>
  44496. <para>Operating System functions. OS wraps the most common functionality to communicate with the host operating system, such as the clipboard, video driver, date and time, timers, environment variables, execution of binaries, command line, etc.</para>
  44497. </summary>
  44498. </member>
  44499. <member name="F:Godot.OS.VideoDriver.Gles2">
  44500. <summary>
  44501. <para>The GLES2 rendering backend. It uses OpenGL ES 2.0 on mobile devices, OpenGL 2.1 on desktop platforms and WebGL 1.0 on the web.</para>
  44502. </summary>
  44503. </member>
  44504. <member name="F:Godot.OS.VideoDriver.Gles3">
  44505. <summary>
  44506. <para>The GLES3 rendering backend. It uses OpenGL ES 3.0 on mobile devices, OpenGL 3.3 on desktop platforms and WebGL 2.0 on the web.</para>
  44507. </summary>
  44508. </member>
  44509. <member name="F:Godot.OS.SystemDir.Desktop">
  44510. <summary>
  44511. <para>Desktop directory path.</para>
  44512. </summary>
  44513. </member>
  44514. <member name="F:Godot.OS.SystemDir.Dcim">
  44515. <summary>
  44516. <para>DCIM (Digital Camera Images) directory path.</para>
  44517. </summary>
  44518. </member>
  44519. <member name="F:Godot.OS.SystemDir.Documents">
  44520. <summary>
  44521. <para>Documents directory path.</para>
  44522. </summary>
  44523. </member>
  44524. <member name="F:Godot.OS.SystemDir.Downloads">
  44525. <summary>
  44526. <para>Downloads directory path.</para>
  44527. </summary>
  44528. </member>
  44529. <member name="F:Godot.OS.SystemDir.Movies">
  44530. <summary>
  44531. <para>Movies directory path.</para>
  44532. </summary>
  44533. </member>
  44534. <member name="F:Godot.OS.SystemDir.Music">
  44535. <summary>
  44536. <para>Music directory path.</para>
  44537. </summary>
  44538. </member>
  44539. <member name="F:Godot.OS.SystemDir.Pictures">
  44540. <summary>
  44541. <para>Pictures directory path.</para>
  44542. </summary>
  44543. </member>
  44544. <member name="F:Godot.OS.SystemDir.Ringtones">
  44545. <summary>
  44546. <para>Ringtones directory path.</para>
  44547. </summary>
  44548. </member>
  44549. <member name="F:Godot.OS.ScreenOrientationEnum.Landscape">
  44550. <summary>
  44551. <para>Landscape screen orientation.</para>
  44552. </summary>
  44553. </member>
  44554. <member name="F:Godot.OS.ScreenOrientationEnum.Portrait">
  44555. <summary>
  44556. <para>Portrait screen orientation.</para>
  44557. </summary>
  44558. </member>
  44559. <member name="F:Godot.OS.ScreenOrientationEnum.ReverseLandscape">
  44560. <summary>
  44561. <para>Reverse landscape screen orientation.</para>
  44562. </summary>
  44563. </member>
  44564. <member name="F:Godot.OS.ScreenOrientationEnum.ReversePortrait">
  44565. <summary>
  44566. <para>Reverse portrait screen orientation.</para>
  44567. </summary>
  44568. </member>
  44569. <member name="F:Godot.OS.ScreenOrientationEnum.SensorLandscape">
  44570. <summary>
  44571. <para>Uses landscape or reverse landscape based on the hardware sensor.</para>
  44572. </summary>
  44573. </member>
  44574. <member name="F:Godot.OS.ScreenOrientationEnum.SensorPortrait">
  44575. <summary>
  44576. <para>Uses portrait or reverse portrait based on the hardware sensor.</para>
  44577. </summary>
  44578. </member>
  44579. <member name="F:Godot.OS.ScreenOrientationEnum.Sensor">
  44580. <summary>
  44581. <para>Uses most suitable orientation based on the hardware sensor.</para>
  44582. </summary>
  44583. </member>
  44584. <member name="F:Godot.OS.PowerState.Unknown">
  44585. <summary>
  44586. <para>Unknown powerstate.</para>
  44587. </summary>
  44588. </member>
  44589. <member name="F:Godot.OS.PowerState.OnBattery">
  44590. <summary>
  44591. <para>Unplugged, running on battery.</para>
  44592. </summary>
  44593. </member>
  44594. <member name="F:Godot.OS.PowerState.NoBattery">
  44595. <summary>
  44596. <para>Plugged in, no battery available.</para>
  44597. </summary>
  44598. </member>
  44599. <member name="F:Godot.OS.PowerState.Charging">
  44600. <summary>
  44601. <para>Plugged in, battery charging.</para>
  44602. </summary>
  44603. </member>
  44604. <member name="F:Godot.OS.PowerState.Charged">
  44605. <summary>
  44606. <para>Plugged in, battery fully charged.</para>
  44607. </summary>
  44608. </member>
  44609. <member name="F:Godot.OS.Month.January">
  44610. <summary>
  44611. <para>January.</para>
  44612. </summary>
  44613. </member>
  44614. <member name="F:Godot.OS.Month.February">
  44615. <summary>
  44616. <para>February.</para>
  44617. </summary>
  44618. </member>
  44619. <member name="F:Godot.OS.Month.March">
  44620. <summary>
  44621. <para>March.</para>
  44622. </summary>
  44623. </member>
  44624. <member name="F:Godot.OS.Month.April">
  44625. <summary>
  44626. <para>April.</para>
  44627. </summary>
  44628. </member>
  44629. <member name="F:Godot.OS.Month.May">
  44630. <summary>
  44631. <para>May.</para>
  44632. </summary>
  44633. </member>
  44634. <member name="F:Godot.OS.Month.June">
  44635. <summary>
  44636. <para>June.</para>
  44637. </summary>
  44638. </member>
  44639. <member name="F:Godot.OS.Month.July">
  44640. <summary>
  44641. <para>July.</para>
  44642. </summary>
  44643. </member>
  44644. <member name="F:Godot.OS.Month.August">
  44645. <summary>
  44646. <para>August.</para>
  44647. </summary>
  44648. </member>
  44649. <member name="F:Godot.OS.Month.September">
  44650. <summary>
  44651. <para>September.</para>
  44652. </summary>
  44653. </member>
  44654. <member name="F:Godot.OS.Month.October">
  44655. <summary>
  44656. <para>October.</para>
  44657. </summary>
  44658. </member>
  44659. <member name="F:Godot.OS.Month.November">
  44660. <summary>
  44661. <para>November.</para>
  44662. </summary>
  44663. </member>
  44664. <member name="F:Godot.OS.Month.December">
  44665. <summary>
  44666. <para>December.</para>
  44667. </summary>
  44668. </member>
  44669. <member name="F:Godot.OS.Weekday.Sunday">
  44670. <summary>
  44671. <para>Sunday.</para>
  44672. </summary>
  44673. </member>
  44674. <member name="F:Godot.OS.Weekday.Monday">
  44675. <summary>
  44676. <para>Monday.</para>
  44677. </summary>
  44678. </member>
  44679. <member name="F:Godot.OS.Weekday.Tuesday">
  44680. <summary>
  44681. <para>Tuesday.</para>
  44682. </summary>
  44683. </member>
  44684. <member name="F:Godot.OS.Weekday.Wednesday">
  44685. <summary>
  44686. <para>Wednesday.</para>
  44687. </summary>
  44688. </member>
  44689. <member name="F:Godot.OS.Weekday.Thursday">
  44690. <summary>
  44691. <para>Thursday.</para>
  44692. </summary>
  44693. </member>
  44694. <member name="F:Godot.OS.Weekday.Friday">
  44695. <summary>
  44696. <para>Friday.</para>
  44697. </summary>
  44698. </member>
  44699. <member name="F:Godot.OS.Weekday.Saturday">
  44700. <summary>
  44701. <para>Saturday.</para>
  44702. </summary>
  44703. </member>
  44704. <member name="P:Godot.OS.TabletDriver">
  44705. <summary>
  44706. <para>The current tablet drvier in use.</para>
  44707. </summary>
  44708. </member>
  44709. <member name="P:Godot.OS.Clipboard">
  44710. <summary>
  44711. <para>The clipboard from the host OS. Might be unavailable on some platforms.</para>
  44712. </summary>
  44713. </member>
  44714. <member name="P:Godot.OS.CurrentScreen">
  44715. <summary>
  44716. <para>The current screen index (starting from 0).</para>
  44717. </summary>
  44718. </member>
  44719. <member name="P:Godot.OS.ExitCode">
  44720. <summary>
  44721. <para>The exit code passed to the OS when the main loop exits. By convention, an exit code of <c>0</c> indicates success whereas a non-zero exit code indicates an error. For portability reasons, the exit code should be set between 0 and 125 (inclusive).</para>
  44722. <para>Note: This value will be ignored if using <see cref="M:Godot.SceneTree.Quit(System.Int32)"/> with an <c>exit_code</c> argument passed.</para>
  44723. </summary>
  44724. </member>
  44725. <member name="P:Godot.OS.VsyncEnabled">
  44726. <summary>
  44727. <para>If <c>true</c>, vertical synchronization (Vsync) is enabled.</para>
  44728. </summary>
  44729. </member>
  44730. <member name="P:Godot.OS.VsyncViaCompositor">
  44731. <summary>
  44732. <para>If <c>true</c> and <c>vsync_enabled</c> is true, the operating system's window compositor will be used for vsync when the compositor is enabled and the game is in windowed mode.</para>
  44733. <para>Note: This option is experimental and meant to alleviate stutter experienced by some users. However, some users have experienced a Vsync framerate halving (e.g. from 60 FPS to 30 FPS) when using it.</para>
  44734. <para>Note: This property is only implemented on Windows.</para>
  44735. </summary>
  44736. </member>
  44737. <member name="P:Godot.OS.LowProcessorUsageMode">
  44738. <summary>
  44739. <para>If <c>true</c>, the engine optimizes for low processor usage by only refreshing the screen if needed. Can improve battery consumption on mobile.</para>
  44740. </summary>
  44741. </member>
  44742. <member name="P:Godot.OS.LowProcessorUsageModeSleepUsec">
  44743. <summary>
  44744. <para>The amount of sleeping between frames when the low-processor usage mode is enabled (in microseconds). Higher values will result in lower CPU usage.</para>
  44745. </summary>
  44746. </member>
  44747. <member name="P:Godot.OS.KeepScreenOn">
  44748. <summary>
  44749. <para>If <c>true</c>, the engine tries to keep the screen on while the game is running. Useful on mobile.</para>
  44750. </summary>
  44751. </member>
  44752. <member name="P:Godot.OS.MinWindowSize">
  44753. <summary>
  44754. <para>The minimum size of the window (without counting window manager decorations). Does not affect fullscreen mode. Set to <c>(0, 0)</c> to reset to the system default value.</para>
  44755. </summary>
  44756. </member>
  44757. <member name="P:Godot.OS.MaxWindowSize">
  44758. <summary>
  44759. <para>The maximum size of the window (without counting window manager decorations). Does not affect fullscreen mode. Set to <c>(0, 0)</c> to reset to the system default value.</para>
  44760. </summary>
  44761. </member>
  44762. <member name="P:Godot.OS.ScreenOrientation">
  44763. <summary>
  44764. <para>The current screen orientation.</para>
  44765. </summary>
  44766. </member>
  44767. <member name="P:Godot.OS.WindowBorderless">
  44768. <summary>
  44769. <para>If <c>true</c>, removes the window frame.</para>
  44770. <para>Note: Setting <c>window_borderless</c> to <c>false</c> disables per-pixel transparency.</para>
  44771. </summary>
  44772. </member>
  44773. <member name="P:Godot.OS.WindowPerPixelTransparencyEnabled">
  44774. <summary>
  44775. <para>If <c>true</c>, the window background is transparent and window frame is removed.</para>
  44776. <para>Use <c>get_tree().get_root().set_transparent_background(true)</c> to disable main viewport background rendering.</para>
  44777. <para>Note: This property has no effect if Project &gt; Project Settings &gt; Display &gt; Window &gt; Per-pixel transparency &gt; Allowed setting is disabled.</para>
  44778. <para>Note: This property is implemented on HTML5, Linux, macOS and Windows.</para>
  44779. </summary>
  44780. </member>
  44781. <member name="P:Godot.OS.WindowFullscreen">
  44782. <summary>
  44783. <para>If <c>true</c>, the window is fullscreen.</para>
  44784. </summary>
  44785. </member>
  44786. <member name="P:Godot.OS.WindowMaximized">
  44787. <summary>
  44788. <para>If <c>true</c>, the window is maximized.</para>
  44789. </summary>
  44790. </member>
  44791. <member name="P:Godot.OS.WindowMinimized">
  44792. <summary>
  44793. <para>If <c>true</c>, the window is minimized.</para>
  44794. </summary>
  44795. </member>
  44796. <member name="P:Godot.OS.WindowResizable">
  44797. <summary>
  44798. <para>If <c>true</c>, the window is resizable by the user.</para>
  44799. </summary>
  44800. </member>
  44801. <member name="P:Godot.OS.WindowPosition">
  44802. <summary>
  44803. <para>The window position relative to the screen, the origin is the top left corner, +Y axis goes to the bottom and +X axis goes to the right.</para>
  44804. </summary>
  44805. </member>
  44806. <member name="P:Godot.OS.WindowSize">
  44807. <summary>
  44808. <para>The size of the window (without counting window manager decorations).</para>
  44809. </summary>
  44810. </member>
  44811. <member name="M:Godot.OS.GlobalMenuAddItem(System.String,System.String,System.Object,System.Object)">
  44812. <summary>
  44813. <para>Add a new item with text "label" to global menu. Use "_dock" menu to add item to the macOS dock icon menu.</para>
  44814. <para>Note: This method is implemented on macOS.</para>
  44815. </summary>
  44816. </member>
  44817. <member name="M:Godot.OS.GlobalMenuAddSeparator(System.String)">
  44818. <summary>
  44819. <para>Add a separator between items. Separators also occupy an index.</para>
  44820. <para>Note: This method is implemented on macOS.</para>
  44821. </summary>
  44822. </member>
  44823. <member name="M:Godot.OS.GlobalMenuRemoveItem(System.String,System.Int32)">
  44824. <summary>
  44825. <para>Removes the item at index "idx" from the global menu. Note that the indexes of items after the removed item are going to be shifted by one.</para>
  44826. <para>Note: This method is implemented on macOS.</para>
  44827. </summary>
  44828. </member>
  44829. <member name="M:Godot.OS.GlobalMenuClear(System.String)">
  44830. <summary>
  44831. <para>Clear the global menu, in effect removing all items.</para>
  44832. <para>Note: This method is implemented on macOS.</para>
  44833. </summary>
  44834. </member>
  44835. <member name="M:Godot.OS.GetVideoDriverCount">
  44836. <summary>
  44837. <para>Returns the number of video drivers supported on the current platform.</para>
  44838. </summary>
  44839. </member>
  44840. <member name="M:Godot.OS.GetVideoDriverName(Godot.OS.VideoDriver)">
  44841. <summary>
  44842. <para>Returns the name of the video driver matching the given <c>driver</c> index. This index is a value from <see cref="T:Godot.OS.VideoDriver"/>, and you can use <see cref="M:Godot.OS.GetCurrentVideoDriver"/> to get the current backend's index.</para>
  44843. </summary>
  44844. </member>
  44845. <member name="M:Godot.OS.GetCurrentVideoDriver">
  44846. <summary>
  44847. <para>Returns the currently used video driver, using one of the values from <see cref="T:Godot.OS.VideoDriver"/>.</para>
  44848. </summary>
  44849. </member>
  44850. <member name="M:Godot.OS.GetAudioDriverCount">
  44851. <summary>
  44852. <para>Returns the total number of available audio drivers.</para>
  44853. </summary>
  44854. </member>
  44855. <member name="M:Godot.OS.GetAudioDriverName(System.Int32)">
  44856. <summary>
  44857. <para>Returns the audio driver name for the given index.</para>
  44858. </summary>
  44859. </member>
  44860. <member name="M:Godot.OS.GetConnectedMidiInputs">
  44861. <summary>
  44862. <para>Returns an array of MIDI device names.</para>
  44863. <para>The returned array will be empty if the system MIDI driver has not previously been initialised with <see cref="M:Godot.OS.OpenMidiInputs"/>.</para>
  44864. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44865. </summary>
  44866. </member>
  44867. <member name="M:Godot.OS.OpenMidiInputs">
  44868. <summary>
  44869. <para>Initialises the singleton for the system MIDI driver.</para>
  44870. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44871. </summary>
  44872. </member>
  44873. <member name="M:Godot.OS.CloseMidiInputs">
  44874. <summary>
  44875. <para>Shuts down system MIDI driver.</para>
  44876. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44877. </summary>
  44878. </member>
  44879. <member name="M:Godot.OS.GetScreenCount">
  44880. <summary>
  44881. <para>Returns the number of displays attached to the host machine.</para>
  44882. </summary>
  44883. </member>
  44884. <member name="M:Godot.OS.GetScreenPosition(System.Int32)">
  44885. <summary>
  44886. <para>Returns the position of the specified screen by index. If <c>screen</c> is [/code]-1[/code] (the default value), the current screen will be used.</para>
  44887. </summary>
  44888. </member>
  44889. <member name="M:Godot.OS.GetScreenSize(System.Int32)">
  44890. <summary>
  44891. <para>Returns the dimensions in pixels of the specified screen. If <c>screen</c> is [/code]-1[/code] (the default value), the current screen will be used.</para>
  44892. </summary>
  44893. </member>
  44894. <member name="M:Godot.OS.GetScreenDpi(System.Int32)">
  44895. <summary>
  44896. <para>Returns the dots per inch density of the specified screen. If <c>screen</c> is [/code]-1[/code] (the default value), the current screen will be used.</para>
  44897. <para>On Android devices, the actual screen densities are grouped into six generalized densities:</para>
  44898. <para><code>
  44899. ldpi - 120 dpi
  44900. mdpi - 160 dpi
  44901. hdpi - 240 dpi
  44902. xhdpi - 320 dpi
  44903. xxhdpi - 480 dpi
  44904. xxxhdpi - 640 dpi
  44905. </code></para>
  44906. <para>Note: This method is implemented on Android, Linux, macOS and Windows. Returns <c>72</c> on unsupported platforms.</para>
  44907. </summary>
  44908. </member>
  44909. <member name="M:Godot.OS.GetWindowSafeArea">
  44910. <summary>
  44911. <para>Returns unobscured area of the window where interactive controls should be rendered.</para>
  44912. </summary>
  44913. </member>
  44914. <member name="M:Godot.OS.SetWindowAlwaysOnTop(System.Boolean)">
  44915. <summary>
  44916. <para>Sets whether the window should always be on top.</para>
  44917. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44918. </summary>
  44919. </member>
  44920. <member name="M:Godot.OS.IsWindowAlwaysOnTop">
  44921. <summary>
  44922. <para>Returns <c>true</c> if the window should always be on top of other windows.</para>
  44923. </summary>
  44924. </member>
  44925. <member name="M:Godot.OS.IsWindowFocused">
  44926. <summary>
  44927. <para>Returns <c>true</c> if the window is currently focused.</para>
  44928. <para>Note: Only implemented on desktop platforms. On other platforms, it will always return <c>true</c>.</para>
  44929. </summary>
  44930. </member>
  44931. <member name="M:Godot.OS.RequestAttention">
  44932. <summary>
  44933. <para>Request the user attention to the window. It'll flash the taskbar button on Windows or bounce the dock icon on OSX.</para>
  44934. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44935. </summary>
  44936. </member>
  44937. <member name="M:Godot.OS.GetRealWindowSize">
  44938. <summary>
  44939. <para>Returns the window size including decorations like window borders.</para>
  44940. </summary>
  44941. </member>
  44942. <member name="M:Godot.OS.CenterWindow">
  44943. <summary>
  44944. <para>Centers the window on the screen if in windowed mode.</para>
  44945. </summary>
  44946. </member>
  44947. <member name="M:Godot.OS.MoveWindowToForeground">
  44948. <summary>
  44949. <para>Moves the window to the front.</para>
  44950. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44951. </summary>
  44952. </member>
  44953. <member name="M:Godot.OS.SetImeActive(System.Boolean)">
  44954. <summary>
  44955. <para>Sets whether IME input mode should be enabled.</para>
  44956. <para>If active IME handles key events before the application and creates an composition string and suggestion list.</para>
  44957. <para>Application can retrieve the composition status by using <see cref="M:Godot.OS.GetImeSelection"/> and <see cref="M:Godot.OS.GetImeText"/> functions.</para>
  44958. <para>Completed composition string is committed when input is finished.</para>
  44959. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44960. </summary>
  44961. </member>
  44962. <member name="M:Godot.OS.SetImePosition(Godot.Vector2)">
  44963. <summary>
  44964. <para>Sets position of IME suggestion list popup (in window coordinates).</para>
  44965. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  44966. </summary>
  44967. </member>
  44968. <member name="M:Godot.OS.GetImeSelection">
  44969. <summary>
  44970. <para>Returns the IME cursor position (the currently-edited portion of the string) relative to the characters in the composition string.</para>
  44971. <para> is sent to the application to notify it of changes to the IME cursor position.</para>
  44972. <para>Note: This method is implemented on macOS.</para>
  44973. </summary>
  44974. </member>
  44975. <member name="M:Godot.OS.GetImeText">
  44976. <summary>
  44977. <para>Returns the IME intermediate composition string.</para>
  44978. <para> is sent to the application to notify it of changes to the IME composition string.</para>
  44979. <para>Note: This method is implemented on macOS.</para>
  44980. </summary>
  44981. </member>
  44982. <member name="M:Godot.OS.HasTouchscreenUiHint">
  44983. <summary>
  44984. <para>Returns <c>true</c> if the device has a touchscreen or emulates one.</para>
  44985. </summary>
  44986. </member>
  44987. <member name="M:Godot.OS.SetWindowTitle(System.String)">
  44988. <summary>
  44989. <para>Sets the window title to the specified string.</para>
  44990. <para>Note: This should be used sporadically. Don't set this every frame, as that will negatively affect performance on some window managers.</para>
  44991. <para>Note: This method is implemented on HTML5, Linux, macOS and Windows.</para>
  44992. </summary>
  44993. </member>
  44994. <member name="M:Godot.OS.GetProcessorCount">
  44995. <summary>
  44996. <para>Returns the number of threads available on the host machine.</para>
  44997. </summary>
  44998. </member>
  44999. <member name="M:Godot.OS.GetExecutablePath">
  45000. <summary>
  45001. <para>Returns the path to the current engine executable.</para>
  45002. </summary>
  45003. </member>
  45004. <member name="M:Godot.OS.Execute(System.String,System.String[],System.Boolean,Godot.Collections.Array,System.Boolean)">
  45005. <summary>
  45006. <para>Execute the file at the given path with the arguments passed as an array of strings. Platform path resolution will take place. The resolved file must exist and be executable.</para>
  45007. <para>The arguments are used in the given order and separated by a space, so <c>OS.execute("ping", ["-w", "3", "godotengine.org"], false)</c> will resolve to <c>ping -w 3 godotengine.org</c> in the system's shell.</para>
  45008. <para>This method has slightly different behavior based on whether the <c>blocking</c> mode is enabled.</para>
  45009. <para>If <c>blocking</c> is <c>true</c>, the Godot thread will pause its execution while waiting for the process to terminate. The shell output of the process will be written to the <c>output</c> array as a single string. When the process terminates, the Godot thread will resume execution.</para>
  45010. <para>If <c>blocking</c> is <c>false</c>, the Godot thread will continue while the new process runs. It is not possible to retrieve the shell output in non-blocking mode, so <c>output</c> will be empty.</para>
  45011. <para>The return value also depends on the blocking mode. When blocking, the method will return an exit code of the process. When non-blocking, the method returns a process ID, which you can use to monitor the process (and potentially terminate it with <see cref="M:Godot.OS.Kill(System.Int32)"/>). If the process forking (non-blocking) or opening (blocking) fails, the method will return <c>-1</c> or another exit code.</para>
  45012. <para>Example of blocking mode and retrieving the shell output:</para>
  45013. <para><code>
  45014. var output = []
  45015. var exit_code = OS.execute("ls", ["-l", "/tmp"], true, output)
  45016. </code></para>
  45017. <para>Example of non-blocking mode, running another instance of the project and storing its process ID:</para>
  45018. <para><code>
  45019. var pid = OS.execute(OS.get_executable_path(), [], false)
  45020. </code></para>
  45021. <para>If you wish to access a shell built-in or perform a composite command, a platform-specific shell can be invoked. For example:</para>
  45022. <para><code>
  45023. OS.execute("CMD.exe", ["/C", "cd %TEMP% &amp;&amp; dir"], true, output)
  45024. </code></para>
  45025. <para>Note: This method is implemented on Android, iOS, Linux, macOS and Windows.</para>
  45026. </summary>
  45027. <param name="output">If the parameter is null, then the default value is new Godot.Collections.Array {}</param>
  45028. </member>
  45029. <member name="M:Godot.OS.Kill(System.Int32)">
  45030. <summary>
  45031. <para>Kill (terminate) the process identified by the given process ID (<c>pid</c>), e.g. the one returned by <see cref="M:Godot.OS.Execute(System.String,System.String[],System.Boolean,Godot.Collections.Array,System.Boolean)"/> in non-blocking mode.</para>
  45032. <para>Note: This method can also be used to kill processes that were not spawned by the game.</para>
  45033. <para>Note: This method is implemented on Android, iOS, Linux, macOS and Windows.</para>
  45034. </summary>
  45035. </member>
  45036. <member name="M:Godot.OS.ShellOpen(System.String)">
  45037. <summary>
  45038. <para>Requests the OS to open a resource with the most appropriate program. For example:</para>
  45039. <para>- <c>OS.shell_open("C:\\Users\name\Downloads")</c> on Windows opens the file explorer at the user's Downloads folder.</para>
  45040. <para>- <c>OS.shell_open("https://godotengine.org")</c> opens the default web browser on the official Godot website.</para>
  45041. <para>- <c>OS.shell_open("mailto:example@example.com")</c> opens the default email client with the "To" field set to <c>example@example.com</c>. See <a href="https://blog.escapecreative.com/customizing-mailto-links/">Customizing <c>mailto:</c> Links</a> for a list of fields that can be added.</para>
  45042. <para>Use <see cref="M:Godot.ProjectSettings.GlobalizePath(System.String)"/> to convert a <c>res://</c> or <c>user://</c> path into a system path for use with this method.</para>
  45043. <para>Note: This method is implemented on Android, iOS, HTML5, Linux, macOS and Windows.</para>
  45044. </summary>
  45045. </member>
  45046. <member name="M:Godot.OS.GetProcessId">
  45047. <summary>
  45048. <para>Returns the project's process ID.</para>
  45049. <para>Note: This method is implemented on Android, iOS, Linux, macOS and Windows.</para>
  45050. </summary>
  45051. </member>
  45052. <member name="M:Godot.OS.GetEnvironment(System.String)">
  45053. <summary>
  45054. <para>Returns an environment variable.</para>
  45055. </summary>
  45056. </member>
  45057. <member name="M:Godot.OS.HasEnvironment(System.String)">
  45058. <summary>
  45059. <para>Returns <c>true</c> if an environment variable exists.</para>
  45060. </summary>
  45061. </member>
  45062. <member name="M:Godot.OS.GetName">
  45063. <summary>
  45064. <para>Returns the name of the host OS. Possible values are: <c>"Android"</c>, <c>"iOS"</c>, <c>"HTML5"</c>, <c>"OSX"</c>, <c>"Server"</c>, <c>"Windows"</c>, <c>"UWP"</c>, <c>"X11"</c>.</para>
  45065. </summary>
  45066. </member>
  45067. <member name="M:Godot.OS.GetCmdlineArgs">
  45068. <summary>
  45069. <para>Returns the command line arguments passed to the engine.</para>
  45070. </summary>
  45071. </member>
  45072. <member name="M:Godot.OS.GetDatetime(System.Boolean)">
  45073. <summary>
  45074. <para>Returns current datetime as a dictionary of keys: <c>year</c>, <c>month</c>, <c>day</c>, <c>weekday</c>, <c>dst</c> (Daylight Savings Time), <c>hour</c>, <c>minute</c>, <c>second</c>.</para>
  45075. </summary>
  45076. </member>
  45077. <member name="M:Godot.OS.GetDate(System.Boolean)">
  45078. <summary>
  45079. <para>Returns current date as a dictionary of keys: <c>year</c>, <c>month</c>, <c>day</c>, <c>weekday</c>, <c>dst</c> (Daylight Savings Time).</para>
  45080. </summary>
  45081. </member>
  45082. <member name="M:Godot.OS.GetTime(System.Boolean)">
  45083. <summary>
  45084. <para>Returns current time as a dictionary of keys: hour, minute, second.</para>
  45085. </summary>
  45086. </member>
  45087. <member name="M:Godot.OS.GetTimeZoneInfo">
  45088. <summary>
  45089. <para>Returns the current time zone as a dictionary with the keys: bias and name.</para>
  45090. </summary>
  45091. </member>
  45092. <member name="M:Godot.OS.GetUnixTime">
  45093. <summary>
  45094. <para>Returns the current UNIX epoch timestamp.</para>
  45095. </summary>
  45096. </member>
  45097. <member name="M:Godot.OS.GetDatetimeFromUnixTime(System.Int64)">
  45098. <summary>
  45099. <para>Gets a dictionary of time values corresponding to the given UNIX epoch time (in seconds).</para>
  45100. <para>The returned Dictionary's values will be the same as <see cref="M:Godot.OS.GetDatetime(System.Boolean)"/>, with the exception of Daylight Savings Time as it cannot be determined from the epoch.</para>
  45101. </summary>
  45102. </member>
  45103. <member name="M:Godot.OS.GetUnixTimeFromDatetime(Godot.Collections.Dictionary)">
  45104. <summary>
  45105. <para>Gets an epoch time value from a dictionary of time values.</para>
  45106. <para><c>datetime</c> must be populated with the following keys: <c>year</c>, <c>month</c>, <c>day</c>, <c>hour</c>, <c>minute</c>, <c>second</c>.</para>
  45107. <para>You can pass the output from <see cref="M:Godot.OS.GetDatetimeFromUnixTime(System.Int64)"/> directly into this function. Daylight Savings Time (<c>dst</c>), if present, is ignored.</para>
  45108. </summary>
  45109. </member>
  45110. <member name="M:Godot.OS.GetSystemTimeSecs">
  45111. <summary>
  45112. <para>Returns the epoch time of the operating system in seconds.</para>
  45113. </summary>
  45114. </member>
  45115. <member name="M:Godot.OS.GetSystemTimeMsecs">
  45116. <summary>
  45117. <para>Returns the epoch time of the operating system in milliseconds.</para>
  45118. </summary>
  45119. </member>
  45120. <member name="M:Godot.OS.SetNativeIcon(System.String)">
  45121. <summary>
  45122. <para>Sets the game's icon using a multi-size platform-specific icon file (<c>*.ico</c> on Windows and <c>*.icns</c> on macOS).</para>
  45123. <para>Appropriate size sub-icons are used for window caption, taskbar/dock and window selection dialog.</para>
  45124. <para>Note: This method is implemented on macOS and Windows.</para>
  45125. </summary>
  45126. </member>
  45127. <member name="M:Godot.OS.SetIcon(Godot.Image)">
  45128. <summary>
  45129. <para>Sets the game's icon using an <see cref="T:Godot.Image"/> resource.</para>
  45130. <para>The same image is used for window caption, taskbar/dock and window selection dialog. Image is scaled as needed.</para>
  45131. <para>Note: This method is implemented on HTML5, Linux, macOS and Windows.</para>
  45132. </summary>
  45133. </member>
  45134. <member name="M:Godot.OS.DelayUsec(System.UInt32)">
  45135. <summary>
  45136. <para>Delay execution of the current thread by <c>usec</c> microseconds.</para>
  45137. </summary>
  45138. </member>
  45139. <member name="M:Godot.OS.DelayMsec(System.UInt32)">
  45140. <summary>
  45141. <para>Delay execution of the current thread by <c>msec</c> milliseconds.</para>
  45142. </summary>
  45143. </member>
  45144. <member name="M:Godot.OS.GetTicksMsec">
  45145. <summary>
  45146. <para>Returns the amount of time passed in milliseconds since the engine started.</para>
  45147. </summary>
  45148. </member>
  45149. <member name="M:Godot.OS.GetTicksUsec">
  45150. <summary>
  45151. <para>Returns the amount of time passed in microseconds since the engine started.</para>
  45152. </summary>
  45153. </member>
  45154. <member name="M:Godot.OS.GetSplashTickMsec">
  45155. <summary>
  45156. <para>Returns the amount of time in milliseconds it took for the boot logo to appear.</para>
  45157. </summary>
  45158. </member>
  45159. <member name="M:Godot.OS.GetLocale">
  45160. <summary>
  45161. <para>Returns the host OS locale.</para>
  45162. </summary>
  45163. </member>
  45164. <member name="M:Godot.OS.GetLatinKeyboardVariant">
  45165. <summary>
  45166. <para>Returns the current latin keyboard variant as a String.</para>
  45167. <para>Possible return values are: <c>"QWERTY"</c>, <c>"AZERTY"</c>, <c>"QZERTY"</c>, <c>"DVORAK"</c>, <c>"NEO"</c>, <c>"COLEMAK"</c> or <c>"ERROR"</c>.</para>
  45168. <para>Note: This method is implemented on Linux, macOS and Windows. Returns <c>"QWERTY"</c> on unsupported platforms.</para>
  45169. </summary>
  45170. </member>
  45171. <member name="M:Godot.OS.GetModelName">
  45172. <summary>
  45173. <para>Returns the model name of the current device.</para>
  45174. <para>Note: This method is implemented on Android and iOS. Returns <c>"GenericDevice"</c> on unsupported platforms.</para>
  45175. </summary>
  45176. </member>
  45177. <member name="M:Godot.OS.KeyboardGetLayoutCount">
  45178. <summary>
  45179. <para>Returns the number of keyboard layouts.</para>
  45180. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45181. </summary>
  45182. </member>
  45183. <member name="M:Godot.OS.KeyboardGetCurrentLayout">
  45184. <summary>
  45185. <para>Returns active keyboard layout index.</para>
  45186. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45187. </summary>
  45188. </member>
  45189. <member name="M:Godot.OS.KeyboardSetCurrentLayout(System.Int32)">
  45190. <summary>
  45191. <para>Sets active keyboard layout.</para>
  45192. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45193. </summary>
  45194. </member>
  45195. <member name="M:Godot.OS.KeyboardGetLayoutLanguage(System.Int32)">
  45196. <summary>
  45197. <para>Returns the ISO-639/BCP-47 language code of the keyboard layout at position <c>index</c>.</para>
  45198. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45199. </summary>
  45200. </member>
  45201. <member name="M:Godot.OS.KeyboardGetLayoutName(System.Int32)">
  45202. <summary>
  45203. <para>Returns the localized name of the keyboard layout at position <c>index</c>.</para>
  45204. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45205. </summary>
  45206. </member>
  45207. <member name="M:Godot.OS.CanDraw">
  45208. <summary>
  45209. <para>Returns <c>true</c> if the host OS allows drawing.</para>
  45210. </summary>
  45211. </member>
  45212. <member name="M:Godot.OS.IsUserfsPersistent">
  45213. <summary>
  45214. <para>If <c>true</c>, the <c>user://</c> file system is persistent, so that its state is the same after a player quits and starts the game again. Relevant to the HTML5 platform, where this persistence may be unavailable.</para>
  45215. </summary>
  45216. </member>
  45217. <member name="M:Godot.OS.IsStdoutVerbose">
  45218. <summary>
  45219. <para>Returns <c>true</c> if the engine was executed with <c>-v</c> (verbose stdout).</para>
  45220. </summary>
  45221. </member>
  45222. <member name="M:Godot.OS.CanUseThreads">
  45223. <summary>
  45224. <para>Returns <c>true</c> if the current host platform is using multiple threads.</para>
  45225. </summary>
  45226. </member>
  45227. <member name="M:Godot.OS.IsDebugBuild">
  45228. <summary>
  45229. <para>Returns <c>true</c> if the Godot binary used to run the project is a debug export template, or when running in the editor.</para>
  45230. <para>Returns <c>false</c> if the Godot binary used to run the project is a release export template.</para>
  45231. <para>To check whether the Godot binary used to run the project is an export template (debug or release), use <c>OS.has_feature("standalone")</c> instead.</para>
  45232. </summary>
  45233. </member>
  45234. <member name="M:Godot.OS.DumpMemoryToFile(System.String)">
  45235. <summary>
  45236. <para>Dumps the memory allocation ringlist to a file (only works in debug).</para>
  45237. <para>Entry format per line: "Address - Size - Description".</para>
  45238. </summary>
  45239. </member>
  45240. <member name="M:Godot.OS.DumpResourcesToFile(System.String)">
  45241. <summary>
  45242. <para>Dumps all used resources to file (only works in debug).</para>
  45243. <para>Entry format per line: "Resource Type : Resource Location".</para>
  45244. <para>At the end of the file is a statistic of all used Resource Types.</para>
  45245. </summary>
  45246. </member>
  45247. <member name="M:Godot.OS.HasVirtualKeyboard">
  45248. <summary>
  45249. <para>Returns <c>true</c> if the platform has a virtual keyboard, <c>false</c> otherwise.</para>
  45250. </summary>
  45251. </member>
  45252. <member name="M:Godot.OS.ShowVirtualKeyboard(System.String)">
  45253. <summary>
  45254. <para>Shows the virtual keyboard if the platform has one. The <c>existing_text</c> parameter is useful for implementing your own LineEdit, as it tells the virtual keyboard what text has already been typed (the virtual keyboard uses it for auto-correct and predictions).</para>
  45255. <para>Note: This method is implemented on Android, iOS and UWP.</para>
  45256. </summary>
  45257. </member>
  45258. <member name="M:Godot.OS.HideVirtualKeyboard">
  45259. <summary>
  45260. <para>Hides the virtual keyboard if it is shown, does nothing otherwise.</para>
  45261. </summary>
  45262. </member>
  45263. <member name="M:Godot.OS.GetVirtualKeyboardHeight">
  45264. <summary>
  45265. <para>Returns the on-screen keyboard's height in pixels. Returns 0 if there is no keyboard or if it is currently hidden.</para>
  45266. </summary>
  45267. </member>
  45268. <member name="M:Godot.OS.PrintResourcesInUse(System.Boolean)">
  45269. <summary>
  45270. <para>Shows all resources currently used by the game.</para>
  45271. </summary>
  45272. </member>
  45273. <member name="M:Godot.OS.PrintAllResources(System.String)">
  45274. <summary>
  45275. <para>Shows all resources in the game. Optionally, the list can be written to a file by specifying a file path in <c>tofile</c>.</para>
  45276. </summary>
  45277. </member>
  45278. <member name="M:Godot.OS.GetStaticMemoryUsage">
  45279. <summary>
  45280. <para>Returns the amount of static memory being used by the program in bytes.</para>
  45281. </summary>
  45282. </member>
  45283. <member name="M:Godot.OS.GetStaticMemoryPeakUsage">
  45284. <summary>
  45285. <para>Returns the maximum amount of static memory used (only works in debug).</para>
  45286. </summary>
  45287. </member>
  45288. <member name="M:Godot.OS.GetDynamicMemoryUsage">
  45289. <summary>
  45290. <para>Returns the total amount of dynamic memory used (only works in debug).</para>
  45291. </summary>
  45292. </member>
  45293. <member name="M:Godot.OS.GetUserDataDir">
  45294. <summary>
  45295. <para>Returns the absolute directory path where user data is written (<c>user://</c>).</para>
  45296. <para>On Linux, this is <c>~/.local/share/godot/app_userdata/[project_name]</c>, or <c>~/.local/share/[custom_name]</c> if <c>use_custom_user_dir</c> is set.</para>
  45297. <para>On macOS, this is <c>~/Library/Application Support/Godot/app_userdata/[project_name]</c>, or <c>~/Library/Application Support/[custom_name]</c> if <c>use_custom_user_dir</c> is set.</para>
  45298. <para>On Windows, this is <c>%APPDATA%\Godot\app_userdata\[project_name]</c>, or <c>%APPDATA%\[custom_name]</c> if <c>use_custom_user_dir</c> is set. <c>%APPDATA%</c> expands to <c>%USERPROFILE%\AppData\Roaming</c>.</para>
  45299. <para>If the project name is empty, <c>user://</c> falls back to <c>res://</c>.</para>
  45300. </summary>
  45301. </member>
  45302. <member name="M:Godot.OS.GetSystemDir(Godot.OS.SystemDir)">
  45303. <summary>
  45304. <para>Returns the actual path to commonly used folders across different platforms. Available locations are specified in <see cref="T:Godot.OS.SystemDir"/>.</para>
  45305. <para>Note: This method is implemented on Android, Linux, macOS and Windows.</para>
  45306. </summary>
  45307. </member>
  45308. <member name="M:Godot.OS.GetUniqueId">
  45309. <summary>
  45310. <para>Returns a string that is unique to the device.</para>
  45311. <para>Note: Returns an empty string on HTML5 and UWP, as this method isn't implemented on those platforms yet.</para>
  45312. </summary>
  45313. </member>
  45314. <member name="M:Godot.OS.IsOkLeftAndCancelRight">
  45315. <summary>
  45316. <para>Returns <c>true</c> if the OK button should appear on the left and Cancel on the right.</para>
  45317. </summary>
  45318. </member>
  45319. <member name="M:Godot.OS.PrintAllTexturesBySize">
  45320. <summary>
  45321. <para>Shows the list of loaded textures sorted by size in memory.</para>
  45322. </summary>
  45323. </member>
  45324. <member name="M:Godot.OS.PrintResourcesByType(System.String[])">
  45325. <summary>
  45326. <para>Shows the number of resources loaded by the game of the given types.</para>
  45327. </summary>
  45328. </member>
  45329. <member name="M:Godot.OS.NativeVideoPlay(System.String,System.Single,System.String,System.String)">
  45330. <summary>
  45331. <para>Plays native video from the specified path, at the given volume and with audio and subtitle tracks.</para>
  45332. <para>Note: This method is implemented on Android and iOS, and the current Android implementation does not support the <c>volume</c>, <c>audio_track</c> and <c>subtitle_track</c> options.</para>
  45333. </summary>
  45334. </member>
  45335. <member name="M:Godot.OS.NativeVideoIsPlaying">
  45336. <summary>
  45337. <para>Returns <c>true</c> if native video is playing.</para>
  45338. <para>Note: This method is implemented on Android and iOS.</para>
  45339. </summary>
  45340. </member>
  45341. <member name="M:Godot.OS.NativeVideoStop">
  45342. <summary>
  45343. <para>Stops native video playback.</para>
  45344. <para>Note: This method is implemented on Android and iOS.</para>
  45345. </summary>
  45346. </member>
  45347. <member name="M:Godot.OS.NativeVideoPause">
  45348. <summary>
  45349. <para>Pauses native video playback.</para>
  45350. <para>Note: This method is implemented on Android and iOS.</para>
  45351. </summary>
  45352. </member>
  45353. <member name="M:Godot.OS.NativeVideoUnpause">
  45354. <summary>
  45355. <para>Resumes native video playback.</para>
  45356. <para>Note: This method is implemented on Android and iOS.</para>
  45357. </summary>
  45358. </member>
  45359. <member name="M:Godot.OS.GetScancodeString(System.UInt32)">
  45360. <summary>
  45361. <para>Returns the given scancode as a string (e.g. Return values: <c>"Escape"</c>, <c>"Shift+Escape"</c>).</para>
  45362. <para>See also <see cref="P:Godot.InputEventKey.Scancode"/> and <see cref="M:Godot.InputEventKey.GetScancodeWithModifiers"/>.</para>
  45363. </summary>
  45364. </member>
  45365. <member name="M:Godot.OS.IsScancodeUnicode(System.UInt32)">
  45366. <summary>
  45367. <para>Returns <c>true</c> if the input scancode corresponds to a Unicode character.</para>
  45368. </summary>
  45369. </member>
  45370. <member name="M:Godot.OS.FindScancodeFromString(System.String)">
  45371. <summary>
  45372. <para>Returns the scancode of the given string (e.g. "Escape").</para>
  45373. </summary>
  45374. </member>
  45375. <member name="M:Godot.OS.SetUseFileAccessSaveAndSwap(System.Boolean)">
  45376. <summary>
  45377. <para>Enables backup saves if <c>enabled</c> is <c>true</c>.</para>
  45378. </summary>
  45379. </member>
  45380. <member name="M:Godot.OS.Alert(System.String,System.String)">
  45381. <summary>
  45382. <para>Displays a modal dialog box using the host OS' facilities. Execution is blocked until the dialog is closed.</para>
  45383. </summary>
  45384. </member>
  45385. <member name="M:Godot.OS.SetThreadName(System.String)">
  45386. <summary>
  45387. <para>Sets the name of the current thread.</para>
  45388. </summary>
  45389. </member>
  45390. <member name="M:Godot.OS.HasFeature(System.String)">
  45391. <summary>
  45392. <para>Returns <c>true</c> if the feature for the given feature tag is supported in the currently running instance, depending on platform, build etc. Can be used to check whether you're currently running a debug build, on a certain platform or arch, etc. Refer to the <a href="https://docs.godotengine.org/en/latest/getting_started/workflow/export/feature_tags.html">Feature Tags</a> documentation for more details.</para>
  45393. <para>Note: Tag names are case-sensitive.</para>
  45394. </summary>
  45395. </member>
  45396. <member name="M:Godot.OS.GetPowerState">
  45397. <summary>
  45398. <para>Returns the current state of the device regarding battery and power. See <see cref="T:Godot.OS.PowerState"/> constants.</para>
  45399. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45400. </summary>
  45401. </member>
  45402. <member name="M:Godot.OS.GetPowerSecondsLeft">
  45403. <summary>
  45404. <para>Returns an estimate of the time left in seconds before the device runs out of battery. Returns <c>-1</c> if power state is unknown.</para>
  45405. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45406. </summary>
  45407. </member>
  45408. <member name="M:Godot.OS.GetPowerPercentLeft">
  45409. <summary>
  45410. <para>Returns the amount of battery left in the device as a percentage. Returns <c>-1</c> if power state is unknown.</para>
  45411. <para>Note: This method is implemented on Linux, macOS and Windows.</para>
  45412. </summary>
  45413. </member>
  45414. <member name="M:Godot.OS.RequestPermission(System.String)">
  45415. <summary>
  45416. <para>At the moment this function is only used by <c>AudioDriverOpenSL</c> to request permission for <c>RECORD_AUDIO</c> on Android.</para>
  45417. </summary>
  45418. </member>
  45419. <member name="M:Godot.OS.RequestPermissions">
  45420. <summary>
  45421. <para>With this function you can request dangerous permissions since normal permissions are automatically granted at install time in Android application.</para>
  45422. <para>Note: This method is implemented on Android.</para>
  45423. </summary>
  45424. </member>
  45425. <member name="M:Godot.OS.GetGrantedPermissions">
  45426. <summary>
  45427. <para>With this function you can get the list of dangerous permissions that have been granted to the Android application.</para>
  45428. <para>Note: This method is implemented on Android.</para>
  45429. </summary>
  45430. </member>
  45431. <member name="M:Godot.OS.GetTabletDriverCount">
  45432. <summary>
  45433. <para>Returns the total number of available tablet drivers.</para>
  45434. <para>Note: This method is implemented on Windows.</para>
  45435. </summary>
  45436. </member>
  45437. <member name="M:Godot.OS.GetTabletDriverName(System.Int32)">
  45438. <summary>
  45439. <para>Returns the tablet driver name for the given index.</para>
  45440. <para>Note: This method is implemented on Windows.</para>
  45441. </summary>
  45442. </member>
  45443. <member name="T:Godot.ResourceSaver">
  45444. <summary>
  45445. <para>Singleton for saving Godot-specific resource types to the filesystem.</para>
  45446. <para>It uses the many <see cref="T:Godot.ResourceFormatSaver"/> classes registered in the engine (either built-in or from a plugin) to save engine-specific resource data to text-based (e.g. <c>.tres</c> or <c>.tscn</c>) or binary files (e.g. <c>.res</c> or <c>.scn</c>).</para>
  45447. </summary>
  45448. </member>
  45449. <member name="F:Godot.ResourceSaver.SaverFlags.RelativePaths">
  45450. <summary>
  45451. <para>Save the resource with a path relative to the scene which uses it.</para>
  45452. </summary>
  45453. </member>
  45454. <member name="F:Godot.ResourceSaver.SaverFlags.BundleResources">
  45455. <summary>
  45456. <para>Bundles external resources.</para>
  45457. </summary>
  45458. </member>
  45459. <member name="F:Godot.ResourceSaver.SaverFlags.ChangePath">
  45460. <summary>
  45461. <para>Changes the <see cref="P:Godot.Resource.ResourcePath"/> of the saved resource to match its new location.</para>
  45462. </summary>
  45463. </member>
  45464. <member name="F:Godot.ResourceSaver.SaverFlags.OmitEditorProperties">
  45465. <summary>
  45466. <para>Do not save editor-specific metadata (identified by their <c>__editor</c> prefix).</para>
  45467. </summary>
  45468. </member>
  45469. <member name="F:Godot.ResourceSaver.SaverFlags.SaveBigEndian">
  45470. <summary>
  45471. <para>Save as big endian (see <see cref="P:Godot.File.EndianSwap"/>).</para>
  45472. </summary>
  45473. </member>
  45474. <member name="F:Godot.ResourceSaver.SaverFlags.Compress">
  45475. <summary>
  45476. <para>Compress the resource on save using . Only available for binary resource types.</para>
  45477. </summary>
  45478. </member>
  45479. <member name="F:Godot.ResourceSaver.SaverFlags.ReplaceSubresourcePaths">
  45480. <summary>
  45481. <para>Take over the paths of the saved subresources (see <see cref="M:Godot.Resource.TakeOverPath(System.String)"/>).</para>
  45482. </summary>
  45483. </member>
  45484. <member name="M:Godot.ResourceSaver.Save(System.String,Godot.Resource,Godot.ResourceSaver.SaverFlags)">
  45485. <summary>
  45486. <para>Saves a resource to disk to the given path, using a <see cref="T:Godot.ResourceFormatSaver"/> that recognizes the resource object.</para>
  45487. <para>The <c>flags</c> bitmask can be specified to customize the save behavior.</para>
  45488. <para>Returns on success.</para>
  45489. </summary>
  45490. </member>
  45491. <member name="M:Godot.ResourceSaver.GetRecognizedExtensions(Godot.Resource)">
  45492. <summary>
  45493. <para>Returns the list of extensions available for saving a resource of a given type.</para>
  45494. </summary>
  45495. </member>
  45496. <member name="T:Godot.Semaphore">
  45497. <summary>
  45498. <para>A synchronization semaphore which can be used to synchronize multiple <see cref="T:Godot.Thread"/>s. Initialized to zero on creation. Be careful to avoid deadlocks. For a binary version, see <see cref="T:Godot.Mutex"/>.</para>
  45499. </summary>
  45500. </member>
  45501. <member name="M:Godot.Semaphore.Wait">
  45502. <summary>
  45503. <para>Tries to wait for the <see cref="T:Godot.Semaphore"/>, if its value is zero, blocks until non-zero. Returns on success, otherwise.</para>
  45504. </summary>
  45505. </member>
  45506. <member name="M:Godot.Semaphore.Post">
  45507. <summary>
  45508. <para>Lowers the <see cref="T:Godot.Semaphore"/>, allowing one more thread in. Returns on success, otherwise.</para>
  45509. </summary>
  45510. </member>
  45511. <member name="T:Godot.Thread">
  45512. <summary>
  45513. <para>A unit of execution in a process. Can run methods on <see cref="T:Godot.Object"/>s simultaneously. The use of synchronization via <see cref="T:Godot.Mutex"/> or <see cref="T:Godot.Semaphore"/> is advised if working with shared objects.</para>
  45514. </summary>
  45515. </member>
  45516. <member name="F:Godot.Thread.Priority.Low">
  45517. <summary>
  45518. <para>A thread running with lower priority than normally.</para>
  45519. </summary>
  45520. </member>
  45521. <member name="F:Godot.Thread.Priority.Normal">
  45522. <summary>
  45523. <para>A thread with a standard priority.</para>
  45524. </summary>
  45525. </member>
  45526. <member name="F:Godot.Thread.Priority.High">
  45527. <summary>
  45528. <para>A thread running with higher priority than normally.</para>
  45529. </summary>
  45530. </member>
  45531. <member name="M:Godot.Thread.Start(Godot.Object,System.String,System.Object,Godot.Thread.Priority)">
  45532. <summary>
  45533. <para>Starts a new <see cref="T:Godot.Thread"/> that runs <c>method</c> on object <c>instance</c> with <c>userdata</c> passed as an argument. Even if no userdata is passed, <c>method</c> must accept one argument and it will be null. The <c>priority</c> of the <see cref="T:Godot.Thread"/> can be changed by passing a value from the <see cref="T:Godot.Thread.Priority"/> enum.</para>
  45534. <para>Returns on success, or on failure.</para>
  45535. </summary>
  45536. </member>
  45537. <member name="M:Godot.Thread.GetId">
  45538. <summary>
  45539. <para>Returns the current <see cref="T:Godot.Thread"/>'s ID, uniquely identifying it among all threads.</para>
  45540. </summary>
  45541. </member>
  45542. <member name="M:Godot.Thread.IsActive">
  45543. <summary>
  45544. <para>Returns <c>true</c> if this <see cref="T:Godot.Thread"/> is currently active. An active <see cref="T:Godot.Thread"/> cannot start work on a new method but can be joined with <see cref="M:Godot.Thread.WaitToFinish"/>.</para>
  45545. </summary>
  45546. </member>
  45547. <member name="M:Godot.Thread.WaitToFinish">
  45548. <summary>
  45549. <para>Joins the <see cref="T:Godot.Thread"/> and waits for it to finish. Returns what the method called returned.</para>
  45550. </summary>
  45551. </member>
  45552. </members>
  45553. </doc>