2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "VisibilityEnabler" inherits= "VisibilityNotifier" category= "Core" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
Enables certain nodes only when visible.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
The VisibilityEnabler will disable [RigidBody] and [AnimationPlayer] nodes when they are not visible. It will only affect other nodes within the same scene as the VisibilityEnabler itself.
</description>
<tutorials >
</tutorials>
<methods >
2019-06-27 16:10:09 +02:00
<method name= "is_enabler_enabled" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "enabler" type= "int" enum= "VisibilityEnabler.Enabler" >
</argument>
<description >
2020-01-08 22:51:16 +01:00
Returns whether the enabler identified by given [enum Enabler] constant is active.
2019-06-27 16:10:09 +02:00
</description>
</method>
<method name= "set_enabler" >
<return type= "void" >
</return>
<argument index= "0" name= "enabler" type= "int" enum= "VisibilityEnabler.Enabler" >
</argument>
<argument index= "1" name= "enabled" type= "bool" >
</argument>
<description >
2020-01-08 22:51:16 +01:00
Sets active state of the enabler identified by given [enum Enabler] constant.
2019-06-27 16:10:09 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "freeze_bodies" type= "bool" setter= "set_enabler" getter= "is_enabler_enabled" default= "true" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], [RigidBody] nodes will be paused.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "pause_animations" type= "bool" setter= "set_enabler" getter= "is_enabler_enabled" default= "true" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], [AnimationPlayer] nodes will be paused.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "ENABLER_PAUSE_ANIMATIONS" value= "0" enum= "Enabler" >
2017-09-12 22:42:36 +02:00
This enabler will pause [AnimationPlayer] nodes.
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ENABLER_FREEZE_BODIES" value= "1" enum= "Enabler" >
2017-10-22 12:56:11 +02:00
This enabler will freeze [RigidBody] nodes.
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "ENABLER_MAX" value= "2" enum= "Enabler" >
2019-06-27 11:10:53 +02:00
Represents the size of the [enum Enabler] enum.
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>