public static void NotifyIngoreGravity(GameObject target, bool isIngore) { MovementControl mgr = target.GetComponent <MovementControl>(); if (mgr == null) { LogicSystem.GfxLog("NotifyIngoreGravity control miss!"); return; } mgr.NotifyIngoreGravity(isIngore); }