Difference between revisions of "R3d.CapsuleShape"

From GiderosMobile
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
  
 
=== Description ===
 
=== Description ===
The CapsuleShape class describes a capsule collision shape around the local Y axis and centered at the origin of the shape local-space. It is the convex hull of two spheres. It can also be seen as an elongated sphere.
+
The CapsuleShape class describes a capsule collision shape around the local Y axis and centered at the origin of the collider. It is the convex hull of two spheres. It can also be seen as an elongated sphere.
 +
 
 +
In order to create it, you only need to specify the radius of the two spheres and the height of the capsule (distance between the centers of the two spheres).
  
 
{|-
 
{|-
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
 
=== Methods ===
 
=== Methods ===
[[r3d.CapsuleShape.new]] ''creates a new collision capsule shape''<br/>
+
[[r3d.CapsuleShape.new]] ''creates a new collision capsule shape''<br/><!--GIDEROSMTD:r3d.CapsuleShape.new(radius,height) creates a new collision capsule shape-->
<!-- GIDEROSMTD:r3d.CapsuleShape.new(radius,height) creates a new collision capsule shape -->
+
 
 +
[[r3d.CapsuleShape:setHeight]] ''sets the height of a collision capsule shape''<br/><!--GIDEROSMTD:r3d.CapsuleShape:setHeight(number) sets the height of a collision capsule shape-->
 +
[[r3d.CapsuleShape:setRadius]] ''sets the radius of a collision capsule shape''<br/><!--GIDEROSMTD:r3d.CapsuleShape:setRadius(number) sets the radius of a collision capsule shape-->
  
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|

Latest revision as of 04:36, 19 December 2025

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2019.10

Description

The CapsuleShape class describes a capsule collision shape around the local Y axis and centered at the origin of the collider. It is the convex hull of two spheres. It can also be seen as an elongated sphere.

In order to create it, you only need to specify the radius of the two spheres and the height of the capsule (distance between the centers of the two spheres).

Methods

r3d.CapsuleShape.new creates a new collision capsule shape

r3d.CapsuleShape:setHeight sets the height of a collision capsule shape
r3d.CapsuleShape:setRadius sets the radius of a collision capsule shape