#Camera won't reference to resource pack properly

1 messages · Page 1 of 1 (latest)

cosmic plover
#

I'm trying to create a camera that basically just acts as a first person camera but I can change where it faces, however, my packs give "Could not set up Camera Preset with name 'rpg:free_first'. Are you missing 'inherit_from'?"
I have both a resource and a behavior pack on, both cameras are referenced as 'rpg:free_first' and the packs should properly be refrencing one another, any ideas?

#

BP>cameras>presets>free_first.json

{
"format_version": "1.19.50",
"minecraft:camera_preset": {
"identifier": "rpg:free_first",
}
}

RP>cameras>free_first.json

{
"format_version": "1.18.10",
"minecraft:camera_entity": {
"description": {
"identifier": "rpg:free_first"
},

RP>manifest.json

{
"format_version": 2,
"header": {
"name": "RPG Utility Pack",
"description": "1.0.9",
"uuid": "2b42e457-c3a8-4cb9-a403-8402d742f306",
"version": [
1,
0,
0
],

BP>manifest.json

{
"format_version": 2,
"header": {
"description": "V1.0.10",
"name": "RPG Utility",
"uuid":"0c68e5ed-32ff-43df-afd7-9fc6d3f373d9",
"version": [1, 0, 0],
"min_engine_version": [1, 16, 0]
},

...
"dependencies": [
{
"uuid":"2b42e457-c3a8-4cb9-a403-8402d742f306",
"version":[1,0,0]
}
]

With more in each file ofc, but for simplicity this is what should be important

I also know the dependencies work, since if I attempt to remove the resouce pack it refuses saying that I can't remove the dependency of another pack.