static rocks
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
This commit is contained in:
parent
a530a7242a
commit
1a244f2590
@ -4,6 +4,7 @@
|
|||||||
"files" : [
|
"files" : [
|
||||||
"Data/entity/foliage/grass.json",
|
"Data/entity/foliage/grass.json",
|
||||||
"Data/entity/foliage/trees.json",
|
"Data/entity/foliage/trees.json",
|
||||||
"Data/entity/foliage/bushes.json"
|
"Data/entity/foliage/bushes.json",
|
||||||
|
"Data/entity/foliage/rocks.json"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
46
assets/Data/entity/foliage/rocks.json
Normal file
46
assets/Data/entity/foliage/rocks.json
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{
|
||||||
|
"foliageList" : [
|
||||||
|
{
|
||||||
|
"id" : "rock_static",
|
||||||
|
"tokens" : [
|
||||||
|
],
|
||||||
|
"buttonInteraction" : {
|
||||||
|
"onInteract" : "harvest",
|
||||||
|
"interactionShape" : {
|
||||||
|
"type" : "CUBE",
|
||||||
|
"dimension1" : 0.3,
|
||||||
|
"dimension2" : 0.3,
|
||||||
|
"dimension3" : 0.3,
|
||||||
|
"rotX": 0,
|
||||||
|
"rotY": 0,
|
||||||
|
"rotZ": 0,
|
||||||
|
"rotW": 1,
|
||||||
|
"offsetX" : 0.0,
|
||||||
|
"offsetY" : 0.1,
|
||||||
|
"offsetZ" : 0.0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"healthSystem" : {
|
||||||
|
"maxHealth" : 1,
|
||||||
|
"onDamageIFrames" : 0,
|
||||||
|
"lootPool" : {
|
||||||
|
"tickets" : [
|
||||||
|
{
|
||||||
|
"itemId" : "Rock",
|
||||||
|
"rarity" : 1.0,
|
||||||
|
"minQuantity" : 1,
|
||||||
|
"maxQuantity" : 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"graphicsTemplate": {
|
||||||
|
"model": {
|
||||||
|
"path" : "Models/items/materials/rock1.glb"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"files" : [
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -96,6 +96,15 @@
|
|||||||
"threshold": 0.05,
|
"threshold": 0.05,
|
||||||
"scale": 0.5,
|
"scale": 0.5,
|
||||||
"priority": 1.0
|
"priority": 1.0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"entityIDs": [
|
||||||
|
"rock_static"
|
||||||
|
],
|
||||||
|
"regularity": 0.6,
|
||||||
|
"threshold": 0.04,
|
||||||
|
"scale": 0.5,
|
||||||
|
"priority": 1.0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1445,6 +1445,7 @@ Recursive recipe data files
|
|||||||
ServerEntityUtils recursive move function potential bugfix
|
ServerEntityUtils recursive move function potential bugfix
|
||||||
Harvest bushes kills them
|
Harvest bushes kills them
|
||||||
Fix harvest interaction targeting client player entity on server side
|
Fix harvest interaction targeting client player entity on server side
|
||||||
|
Static rocks which harvest into rock items that spawn in forest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user