diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-13 11:37:37 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-13 12:37:45 +0100 |
commit | 54ac8eaba661a599983ae4774113d1a15cfa461a (patch) | |
tree | 6f302875ff4008d0f4a51a91fea59933a2a73eea /doc/classes/InstancePlaceholder.xml | |
parent | f1ac2920847eafb7e89a27dcb98ecd4ee68b9750 (diff) |
Remove more deprecated methods and code
Diffstat (limited to 'doc/classes/InstancePlaceholder.xml')
-rw-r--r-- | doc/classes/InstancePlaceholder.xml | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/doc/classes/InstancePlaceholder.xml b/doc/classes/InstancePlaceholder.xml index c1d920c2c1..39827f6604 100644 --- a/doc/classes/InstancePlaceholder.xml +++ b/doc/classes/InstancePlaceholder.xml @@ -4,8 +4,8 @@ Placeholder for the root [Node] of a [PackedScene]. </brief_description> <description> - Turning on the option [b]Load As Placeholder[/b] 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 [method replace_by_instance]. This is useful to avoid loading large scenes all at once by loading parts of it selectively. - 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. + Turning on the option [b]Load As Placeholder[/b] 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 [method create_instance]. This is useful to avoid loading large scenes all at once by loading parts of it selectively. + 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. </description> <tutorials> </tutorials> @@ -24,7 +24,7 @@ <return type="String"> </return> <description> - Gets the path to the [PackedScene] resource file that is loaded by default when calling [method replace_by_instance]. + Gets the path to the [PackedScene] resource file that is loaded by default when calling [method create_instance]. </description> </method> <method name="get_stored_values"> @@ -35,15 +35,6 @@ <description> </description> </method> - <method name="replace_by_instance"> - <return type="void"> - </return> - <argument index="0" name="custom_scene" type="PackedScene" default="null"> - </argument> - <description> - 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. - </description> - </method> </methods> <constants> </constants> |