File: GodotSharp.xml

package info (click to toggle)
godot 3.2.3-stable-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 121,308 kB
  • sloc: cpp: 804,285; ansic: 597,434; xml: 77,823; asm: 17,127; cs: 13,535; lisp: 12,017; python: 9,376; java: 7,474; sh: 973; javascript: 659; perl: 264; pascal: 203; objc: 116; makefile: 105
file content (76 lines) | stat: -rw-r--r-- 2,692 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8" ?>
<class name="GodotSharp" inherits="Object" category="Core" version="3.2">
	<brief_description>
		Bridge between Godot and the Mono runtime (Mono-enabled builds only).
	</brief_description>
	<description>
		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.
		See also [CSharpScript].
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="attach_thread">
			<return type="void">
			</return>
			<description>
				Attaches the current thread to the Mono runtime.
			</description>
		</method>
		<method name="detach_thread">
			<return type="void">
			</return>
			<description>
				Detaches the current thread from the Mono runtime.
			</description>
		</method>
		<method name="get_domain_id">
			<return type="int">
			</return>
			<description>
				Returns the current MonoDomain ID.
				[b]Note:[/b] The Mono runtime must be initialized for this method to work (use [method is_runtime_initialized] to check). If the Mono runtime isn't initialized at the time this method is called, the engine will crash.
			</description>
		</method>
		<method name="get_scripts_domain_id">
			<return type="int">
			</return>
			<description>
				Returns the scripts MonoDomain's ID. This will be the same MonoDomain ID as [method get_domain_id], unless the scripts domain isn't loaded.
				[b]Note:[/b] The Mono runtime must be initialized for this method to work (use [method is_runtime_initialized] to check). If the Mono runtime isn't initialized at the time this method is called, the engine will crash.
			</description>
		</method>
		<method name="is_domain_finalizing_for_unload">
			<return type="bool">
			</return>
			<argument index="0" name="domain_id" type="int">
			</argument>
			<description>
				Returns [code]true[/code] if the domain is being finalized, [code]false[/code] otherwise.
			</description>
		</method>
		<method name="is_runtime_initialized">
			<return type="bool">
			</return>
			<description>
				Returns [code]true[/code] if the Mono runtime is initialized, [code]false[/code] otherwise.
			</description>
		</method>
		<method name="is_runtime_shutting_down">
			<return type="bool">
			</return>
			<description>
				Returns [code]true[/code] if the Mono runtime is shutting down, [code]false[/code] otherwise.
			</description>
		</method>
		<method name="is_scripts_domain_loaded">
			<return type="bool">
			</return>
			<description>
				Returns [code]true[/code] if the scripts domain is loaded, [code]false[/code] otherwise.
			</description>
		</method>
	</methods>
	<constants>
	</constants>
</class>