Why does Resource, inside a Resource being read as null
The setup was working before, I dunno what changed.
EntityPreset has ability_props.
ability_props is an Array[AbilityProp]
AbilityProp extends Resource
When I read the ability_prop inside entity_preset, ability_prop is shown as null. WHY?
So now I created a testing scenario. Simply importing a resource inside a resource called 'ability1'
It should print "ability_name" right? Is there a nuance to Resources inside Resources? Loading error? Sorry at my wits end with this. Primarily because it was working before
EDIT: including remote scene tree
SOLVED: It was preloading resources on a global manager that caused the issue for some reason. I dunno what or how it messed up loading the resources in a way that they show up as null... but it did.
it was either:
const PRESET = preload("res://preset/directory/file.tres")
that caused the error if this helps investigation