Added base examples

This commit is contained in:
DaanV2
2021-10-11 18:10:42 +02:00
parent f188cfa6ee
commit 67ccb3d2d1
134 changed files with 2414 additions and 385 deletions

View File

@@ -11,7 +11,12 @@
"description": "The amount of blocks away the entity will look at to push away from.",
"title": "Block Distance"
},
"block_weight": { "type": "number", "default": 0, "description": "The weight of the push back away from blocks.", "title": "Block Weight" },
"block_weight": {
"type": "number",
"default": 0,
"description": "The weight of the push back away from blocks.",
"title": "Block Weight"
},
"breach_influence": {
"type": "number",
"default": 0,
@@ -30,7 +35,12 @@
"description": "The weight applied for the cohesion steering of the flock.",
"title": "Cohesion Weight"
},
"goal_weight": { "type": "number", "default": 0, "description": "The weight on which to apply on the goal output.", "title": "Goal Weight" },
"goal_weight": {
"type": "number",
"default": 0,
"description": "The weight on which to apply on the goal output.",
"title": "Goal Weight"
},
"high_flock_limit": {
"type": "integer",
"default": 0,
@@ -73,8 +83,18 @@
"description": "Tells the flockers that they can only match similar entities that also match the variant, mark variants, and color data of the other potential flockers.",
"title": "Match Variants"
},
"max_height": { "type": "number", "default": 0, "description": "The Maximum height allowable in the air or water.", "title": "Maximum Height" },
"min_height": { "type": "number", "default": 0, "description": "The Minimum height allowable in the air or water.", "title": "Minimum Height" },
"max_height": {
"type": "number",
"default": 0,
"description": "The Maximum height allowable in the air or water.",
"title": "Maximum Height"
},
"min_height": {
"type": "number",
"default": 0,
"description": "The Minimum height allowable in the air or water.",
"title": "Minimum Height"
},
"separation_threshold": {
"type": "number",
"default": 2,
@@ -93,5 +113,27 @@
"description": "Tells the flockers that they will follow flocks based on the center of mass.",
"title": "Use Center Of Mass"
}
}
},
"examples": [
{
"block_distance": 0,
"block_weight": 0,
"breach_influence": 0,
"cohesion_threshold": 1,
"cohesion_weight": 1,
"goal_weight": 0,
"high_flock_limit": 0,
"in_water": false,
"influence_radius": 0,
"innner_cohesion_threshold": 0,
"loner_chance": 0,
"low_flock_limit": 0,
"match_variants": false,
"max_height": 0,
"min_height": 0,
"separation_threshold": 2,
"separation_weight": 1,
"use_center_of_mass": false
}
]
}