Click or drag to resize

CollidersSetCollisionIgnores Method (Transform, Transform, Boolean)

Disables/enables all the colliders between the objects.

Namespace:  KSPDev.ModelUtils
Assembly:  KSPDev_Utils.2.0 (in KSPDev_Utils.2.0.dll) Version: 2.0 for KSP v1.8+
Syntax
C#
public static void SetCollisionIgnores(
	Transform obj1,
	Transform obj2,
	bool ignore
)
Request Example View Source

Parameters

obj1
Type: Transform
Source object.
obj2
Type: Transform
Target object.
ignore
Type: SystemBoolean
If true then the collisions between the objects will be ignored. Otherwise, the collisions will be handled.
Remarks
All colliders in all the children of the both objects are explicitly adjusted. The ignore state is reset to false on every scene load.
See Also