Table of Contents

Class World.InvalidCollisionTypeException

Namespace
Jitter2
Assembly
Jitter2.dll

Thrown when the narrow phase encounters a pair of proxy types it cannot process.

public class World.InvalidCollisionTypeException : Exception, ISerializable
Inheritance
World.InvalidCollisionTypeException
Implements
Inherited Members

Remarks

This typically indicates that non-RigidBodyShape proxies were inserted into the world's DynamicTree. Use BroadPhaseFilter to filter such pairs, or ensure only supported proxy types are added.

Constructors

InvalidCollisionTypeException()

public InvalidCollisionTypeException()

InvalidCollisionTypeException(string)

public InvalidCollisionTypeException(string message)

Parameters

message string

InvalidCollisionTypeException(string, Exception)

public InvalidCollisionTypeException(string message, Exception innerException)

Parameters

message string
innerException Exception

InvalidCollisionTypeException(Type, Type)

public InvalidCollisionTypeException(Type proxyA, Type proxyB)

Parameters

proxyA Type
proxyB Type

Properties

ProxyA

public Type? ProxyA { get; }

Property Value

Type

ProxyB

public Type? ProxyB { get; }

Property Value

Type