Difference between revisions of "love.physics (Français)"
(Correction de la description (Anglais->Français)) |
|||
Line 1: | Line 1: | ||
+ | {{newin (Français)|[[0.4.0]]|040|type=module}} | ||
Peut simuler la physique 2D des corps rigides de manière réaliste. | Peut simuler la physique 2D des corps rigides de manière réaliste. | ||
− | Ce module étant basé sur [http://www.box2d.org/ Box2D], cette API (interface de programmation ) correspond aussi étroitement que possible à l'[http://www.box2d.org/manual.html API Box2D] . | + | Ce module étant basé sur [http://www.box2d.org/ Box2D], cette API (interface de programmation) correspond aussi étroitement que possible à l'[http://www.box2d.org/manual.html API Box2D] . |
+ | |||
+ | Pour des cas plus simples (et plus communs), quelques bibliothèques existent, généralement utilisées de façon plus populaires que love.physics. On peut les trouver ici : https://github.com/love2d-community/awesome-love2d#physics | ||
+ | |||
{{notice|Love.physics est ni léger et ni facile d' utilisation. C'est un véritable poids lourd conçu pour soulever de grosses charges. | {{notice|Love.physics est ni léger et ni facile d' utilisation. C'est un véritable poids lourd conçu pour soulever de grosses charges. | ||
− | Si vous voulez simplement faire un sauter un personnage sur des blocs ou faire des choses de ce genre, dites-vous qu' il n'y a rien à voir ici.}} | + | Si vous voulez simplement faire un sauter un personnage sur des blocs ou faire des choses de ce genre, dites-vous qu'il n'y a rien à voir ici.}} |
== Types == | == Types == | ||
Line 14: | Line 18: | ||
| ?Description | | ?Description | ||
}} | }} | ||
− | [[Category:Modules]] | + | [[Category:Modules (Français)]] |
{{#set:Description=Peut simuler la physique 2D des corps rigides de manière réaliste.}} | {{#set:Description=Peut simuler la physique 2D des corps rigides de manière réaliste.}} | ||
== Voir aussi == | == Voir aussi == | ||
* [[parent::love (Français)]] | * [[parent::love (Français)]] | ||
− | * [[Tutorial:Physics]] | + | * [[Tutorial:Physics (Français)]] |
− | == Autres | + | == Autres langues == |
{{i18n|love.physics}} | {{i18n|love.physics}} |
Revision as of 17:07, 27 December 2020
Disponible depuis LÖVE 0.4.0 |
Ce-tte module n'est pas supporté-e par des versions plus anciennes. |
Peut simuler la physique 2D des corps rigides de manière réaliste. Ce module étant basé sur Box2D, cette API (interface de programmation) correspond aussi étroitement que possible à l'API Box2D .
Pour des cas plus simples (et plus communs), quelques bibliothèques existent, généralement utilisées de façon plus populaires que love.physics. On peut les trouver ici : https://github.com/love2d-community/awesome-love2d#physics
Contents
Types
Body | Bodies are objects with velocity and position. |
Contact | Contacts are objects created to manage collisions in worlds. |
Fixture | Fixtures attach shapes to bodies. |
Joint | Attach multiple bodies together to interact in unique ways. |
Shape | Shapes are objects used to control mass and collisions. |
World | A world is an object that contains all bodies and joints. |
Fonctions
love.physics.getDistance | Returns the two closest points between two fixtures and their distance. |
love.physics.getMeter | Returns the meter scale factor. |
love.physics.newBody | Creates a new body. |
love.physics.newChainShape | Creates a new ChainShape. |
love.physics.newCircleBody | Creates a new Body with an attached CircleShape. |
love.physics.newCircleShape | Creates a new CircleShape. |
love.physics.newDistanceJoint | Creates a DistanceJoint between two bodies. |
love.physics.newEdgeShape | Creates a new EdgeShape. |
love.physics.newFixture | Creates and attaches a fixture. |
love.physics.newFrictionJoint | A FrictionJoint applies friction to a body. |
love.physics.newGearJoint | Create a GearJoint connecting two Joints. |
love.physics.newMotorJoint | Creates a joint between two bodies which controls the relative motion between them. |
love.physics.newMouseJoint | Create a joint between a body and the mouse. |
love.physics.newPolygonBody | Creates a new Body with an attached PolygonShape. |
love.physics.newPolygonShape | Creates a new PolygonShape. |
love.physics.newPrismaticJoint | Creates a PrismaticJoint between two bodies. |
love.physics.newPulleyJoint | Creates a PulleyJoint to join two bodies to each other and the ground. |
love.physics.newRectangleBody | Creates a new Body with an attached rectangle PolygonShape. |
love.physics.newRectangleShape | Shorthand for creating rectangular PolygonShapes. |
love.physics.newRevoluteJoint | Creates a pivot joint between two bodies. |
love.physics.newRopeJoint | Creates a joint between two bodies that enforces a max distance between them. |
love.physics.newWeldJoint | A WeldJoint essentially glues two bodies together. |
love.physics.newWheelJoint | Creates a wheel joint. |
love.physics.newWorld | Creates a new World. |
love.physics.setMeter | Sets the meter scale factor. |
Voir aussi
Autres langues
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info