public static ProjectileBehaviour Get(string p_name, bool p_reference)
    {
        ProjectileBehaviour found = m_loadedBehaviours.Find(pb => pb.m_name == p_name);

        if (found)
        {
            return(p_reference ? found : found.Clone());
        }

        return(null);
    }