bush foliage entity
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2025-04-03 14:33:59 -04:00
parent 52010d8b5a
commit b21343b830
7 changed files with 83 additions and 0 deletions

View File

@ -231,6 +231,17 @@
"path" : "Models/foliage/tree4.glb" "path" : "Models/foliage/tree4.glb"
} }
} }
},
{
"id" : "bush4",
"tokens" : [
"FLAMMABLE"
],
"graphicsTemplate": {
"model": {
"path" : "Models/foliage/bush4.glb"
}
}
} }
] ]

View File

@ -37,6 +37,69 @@
] ]
} }
}, },
{
"id": "forest",
"displayName": "Forest",
"isAerial": false,
"isSurface": true,
"isSubterranean": false,
"regions": [
{
"frequency": 1.0,
"baseFloorVoxel": 1,
"floorVariants": [
{
"voxelId": 2,
"frequency": 1.0,
"dispersion": 1.0,
"priority": 1.0
}
],
"foliageDescription": [
]
}
],
"surfaceGenerationParams": {
"surfaceGenTag": "plains",
"heightOffset": 20,
"noiseScale" : 0.1,
"warpScale" : 0.1,
"floorVariants": [
{
"voxelId": 2,
"frequency": 0.9,
"dispersion": 1.0,
"priority": 1.0
},
{
"voxelId": 1,
"frequency": 0.1,
"dispersion": 1.0,
"priority": 1.0
}
],
"foliageDescriptions": [
{
"entityIDs": [
"pine2"
],
"regularity": 0.6,
"threshold": 0.03,
"scale": 0.5,
"priority": 1.0
},
{
"entityIDs": [
"bush4"
],
"regularity": 0.6,
"threshold": 0.05,
"scale": 0.5,
"priority": 1.0
}
]
}
},
{ {
"id": "hills", "id": "hills",
"displayName": "Hills", "displayName": "Hills",

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

View File

@ -11,6 +11,13 @@
"diffuse" : "/Textures/Leaf_Pine_C.png", "diffuse" : "/Textures/Leaf_Pine_C.png",
"isDefault" : false "isDefault" : false
} }
],
"Models/foliage/bush4.glb": [
{
"meshName" : "bush",
"diffuse" : "/Models/foliage/Leaves_TwistedTree_Green.png",
"isDefault" : true
}
] ]
} }
} }

View File

@ -1421,6 +1421,8 @@ Noise control from biome definition
(04/03/2025) (04/03/2025)
Add rock and stick items Add rock and stick items
Update ServerEntityUtils.repositionEntityRecursive behavior Update ServerEntityUtils.repositionEntityRecursive behavior
Add bush entity
Add bushes to forest biome