I'm trying to get the short prefab name from the Construction component of OnConstructionPlace() - I've tried the following but they either complained about the method not being available or that you can't convert to a string:
string prefab = component.ToString();
string prefab = component.ShortPrefabName;
string prefab = component.ToBaseEntity().ShortPrefabName;Any help appreciated.