This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
dragengine:modules:dragonscript:behavior_clearpath [2020/09/20 00:09] – created dragonlord | dragengine:modules:dragonscript:behavior_clearpath [2025/03/13 17:09] (current) – dragonlord | ||
---|---|---|---|
Line 1: | Line 1: | ||
{{tag> | {{tag> | ||
<WRAP youarehere> | <WRAP youarehere> | ||
- | [[: | + | [[: |
</ | </ | ||
Line 8: | Line 8: | ||
====== ECBehaviorClearPath ====== | ====== ECBehaviorClearPath ====== | ||
+ | |||
+ | <WRAP center 100%> | ||
+ | <WRAP center box 450px> | ||
+ | {{youtube> | ||
+ | <WRAP centeralign> | ||
+ | </ | ||
+ | </ | ||
Behavior adding support to actors to make other actors get out of the way. | Behavior adding support to actors to make other actors get out of the way. | ||
Line 19: | Line 26: | ||
To use this behavior add it to the element class and make sure to call setShapeSphere() to set up the collision test shapes. The best time to do this is either in BehaviorElement.init() or inside BaseActorAction if you need to change them per action. | To use this behavior add it to the element class and make sure to call setShapeSphere() to set up the collision test shapes. The best time to do this is either in BehaviorElement.init() or inside BaseActorAction if you need to change them per action. | ||
- | **Configurations** | + | //Configurations// |
There are usually two possible configurations used for this behavior. | There are usually two possible configurations used for this behavior. | ||
Line 33: | Line 40: | ||
====== Element Class Properties ====== | ====== Element Class Properties ====== | ||
- | Element class properties have the prefix | + | Element class properties have the prefix |
===== enabled ===== | ===== enabled ===== | ||
Determines if the behavior is initially enabled. | Determines if the behavior is initially enabled. | ||
- | * Full name: "clearPath.enabled" | + | * Full name: '' |
* Type: boolean | * Type: boolean | ||
- | * Default Value: true | + | * Default Value: |
* Example (*.deeclass) <code xml>< | * Example (*.deeclass) <code xml>< | ||
===== checkInterval ===== | ===== checkInterval ===== | ||
Check interval in seconds. | Check interval in seconds. | ||
- | * Full name: "clearPath.checkInterval" | + | * Full name: '' |
* Type: floating point | * Type: floating point | ||
- | * Minimum Value: 0 | ||
* Default value: 1 | * Default value: 1 | ||
+ | * Restriction: | ||
* Example (*.deeclass) <code xml>< | * Example (*.deeclass) <code xml>< | ||
Line 54: | Line 61: | ||
* Full name: " | * Full name: " | ||
* Type: floating point | * Type: floating point | ||
- | * Minimum Value: 0 | ||
* Default value: 0.05 | * Default value: 0.05 | ||
+ | * Restriction: | ||
* Example (*.deeclass) <code xml>< | * Example (*.deeclass) <code xml>< | ||
Line 65: | Line 72: | ||
====== Persistency ====== | ====== Persistency ====== | ||
- | This behavior does support element class to be persistable (setPersistable). Saves enabled, check interval, clear path time and the elapsed check interval time. | + | This behavior does support element class to be persistable (setPersistable). |
====== API Documentation ====== | ====== API Documentation ====== | ||
- | [[https:// | + | # |
- | Since DragonScript Module Version | + | Since DragonScript Module Version |
====== Use Cases ====== | ====== Use Cases ====== | ||
Line 88: | Line 95: | ||
| | ||
- | // create required behaviors | ||
| | ||
| | ||
| | ||
| | ||
- | |||
- | // create clear path behavior. the default settings cause the element | ||
- | // to clear path up to a few centimeters ahead. | ||
| | ||
end | end | ||
end | end | ||
</ | </ | ||
+ | |||
+ | ====== Behavior Factory ====== | ||
+ | |||
+ | Using element class supporting adding behaviors the behavior can be added like this: | ||
+ | <code xml> | ||
+ | <?xml version=' | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | | ||
+ | < | ||
+ | <!-- set element properties. omit property prefix if used inside behavior tag --> | ||
+ | <float name=' | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ====== Live Examples ====== | ||
+ | |||
+ | * [[https:// | ||
+ |