Ejemplo n.º 1
0
 public void InitializeDefault(bool debug = false)
 {
     Bounds            = null;
     CropSectionBounds = null;
     CropSection       = CropSection3D.Null;
     this.debug        = debug;
 }
Ejemplo n.º 2
0
    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
    {
        // First we grab the value of the object and the GUI Event
        //	Event guiEvent = Event.current;
        // this display all properties, save for later

        /*
         *                      SerializedObject childObj = new UnityEditor.SerializedObject(property.serializedObject.targetObject);
         *
         *                      SerializedProperty ite = childObj.GetIterator();
         *                      float prevHeight = 0;// = EditorGUI.GetPropertyHeight(property, label, true);
         *
         *                      while (ite.NextVisible(true))
         *                      {
         *                              if ( NeededField(ite.name))
         *                              {
         *                                      Debug.Log("Child is " + ite.displayName + "\n" + ite.name);
         *                                      Rect newRect = new Rect(position.x, position.y + prevHeight + EditorGUIUtility.standardVerticalSpacing, position.width, EditorGUI.GetPropertyHeight(ite, label, true));
         *                                      prevHeight += newRect.height + EditorGUIUtility.standardVerticalSpacing;
         *                                      EditorGUI.PropertyField(newRect, ite,true);
         *                              }
         *                      }*/
        AColliderClass aCollider = null;

        try
        {
            // error happens when i call this. idk why it's calling the CropSection3D struct but whatever i'll just use a workaround for now
            aCollider = fieldInfo.GetValue(property.serializedObject.targetObject) as AColliderClass;
        }
        catch (ArgumentException e)
        {
            ///	Debug.LogWarning("AColliderClass: that wierd error is happing again please make sure you update this in the future and try to fix it!");
        }
        if (aCollider != null)
        {
            aCollider.Update();
        }

        //	if (aCollider.collider.GetCollider().Type == Unity.Physics.ColliderType.Box)
        //	{
        //		Unity.Physics.BoxCollider box = aCollider.collider.GetCollider<Unity.Physics.BoxCollider>();
        //	}

        EditorGUI.PropertyField(position, property, true);
    }
Ejemplo n.º 3
0
 public CropSection3DClass(PhysicsShapeAuthoring shapeA, PhysicsShapeAuthoring shapeB, bool debug = false)
 {
     Bounds                  = new AColliderClass(shapeA);
     CropSectionBounds       = new AColliderClass(shapeB);
     CropSection             = new CropSection3D(Bounds.collider, CropSectionBounds.collider, float3.zero, float3.zero);
     TranslationOffsetSlider = new Float3Slider(CropSection.TranslationOffsetMin, CropSection.TranslationOffsetMax,