public void InitValue(Core.Node t)
        {
//             SetVisible("Name", false);
//             SetVisible("Type", false);
//             SetVisible("Position", false);
//             SetVisible("Scale", false);
//             SetVisible("FrontVector", false);

            target = t;

            Name = target.GetObjectName();
            Type = target.GetClassName();

            Position.Set(target.GetPosition());
            Scale.Set(target.GetScale());
            FrontVector.Set(target.GetFrontVector());
        }