Hi,
So i have this Uobject
UPROPERTY(EditAnywhere, Category = "Our Spawning Object")
TSubclassOf<UObject> ourSpawnObject;
But now i want to set that UObject’s InitialLifeSpan() .
And im guessing the below code doesnt work like how i thought it would work… (i came from c# unity)
ourSpawnObject.InitialLifeSpan(1.0f);
Some assistance to nudge me in the right direction would be nice.