C# Класс Box2DX.Collision.ShapeDef

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Density float
Filter FilterData
Friction float
IsSensor bool
Restitution float
Type ShapeType
UserData object

Открытые методы

Метод Описание
ShapeDef ( ) : System

The constructor sets the default shape definition values.

Описание методов

ShapeDef() публичный Метод

The constructor sets the default shape definition values.
public ShapeDef ( ) : System
Результат System

Описание свойств

Density публичное свойство

The shape's density, usually in kg/m^2.
public float Density
Результат float

Filter публичное свойство

Contact filtering data.
public FilterData Filter
Результат FilterData

Friction публичное свойство

The shape's friction coefficient, usually in the range [0,1].
public float Friction
Результат float

IsSensor публичное свойство

A sensor shape collects contact information but never generates a collision response.
public bool IsSensor
Результат bool

Restitution публичное свойство

The shape's restitution (elasticity) usually in the range [0,1].
public float Restitution
Результат float

Type публичное свойство

Holds the shape type for down-casting.
public ShapeType Type
Результат ShapeType

UserData публичное свойство

Use this to store application specify shape data.
public object UserData
Результат object