class_planeshape.rst 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/make_rst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the PlaneShape.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_PlaneShape:
  6. PlaneShape
  7. ==========
  8. **Inherits:** :ref:`Shape<class_Shape>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  9. Infinite plane shape for 3D collisions.
  10. Description
  11. -----------
  12. An infinite plane shape for 3D collisions. Note that the :ref:`Plane<class_Plane>`'s normal matters; anything "below" the plane will collide with it. If the ``PlaneShape`` is used in a :ref:`PhysicsBody<class_PhysicsBody>`, it will cause colliding objects placed "below" it to teleport "above" the plane.
  13. Properties
  14. ----------
  15. +---------------------------+-----------------------------------------------+-------------------------+
  16. | :ref:`Plane<class_Plane>` | :ref:`plane<class_PlaneShape_property_plane>` | ``Plane( 0, 1, 0, 0 )`` |
  17. +---------------------------+-----------------------------------------------+-------------------------+
  18. Property Descriptions
  19. ---------------------
  20. .. _class_PlaneShape_property_plane:
  21. - :ref:`Plane<class_Plane>` **plane**
  22. +-----------+-------------------------+
  23. | *Default* | ``Plane( 0, 1, 0, 0 )`` |
  24. +-----------+-------------------------+
  25. | *Setter* | set_plane(value) |
  26. +-----------+-------------------------+
  27. | *Getter* | get_plane() |
  28. +-----------+-------------------------+
  29. The :ref:`Plane<class_Plane>` used by the ``PlaneShape`` for collision.
  30. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  31. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  32. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`