Intern PlayCanvas Problem

Dumb ‘Solution’

In the Template loader in the spawnTemplate, disable and enable the spawnable entity

spawnAt.addChild(newTemplate);
newTemplate.enabled = false;
newTemplate.enabled = true;

It “works” for me… But, this is strange.