Click or drag to resize

ILinkRenderer Interface

Interface for a module that takes care of rendering a link and, optionally, manages its colliders.

Namespace:  KASAPIv2
Assembly:  KAS-API-v2 (in KAS-API-v2.dll) Version: KAS API v2
Syntax
C#
public interface ILinkRenderer
Request Example View Source

The ILinkRenderer type exposes the following members.

Properties
  NameDescription
Public propertycfgRendererName
Unique name of the renderer that is used by the other modules to find this renderer.
Public propertycolorOverride
Temporally sets another color to the link meshes.
Public propertyisPhysicalCollider
Tells if the link colliders should be active.
Public propertyisStarted
Tells if the renderer is started and active.
Public propertyshaderNameOverride
Temporally sets another shader to the link meshes.
Public propertysourceTransform
Base position/direction of the connection point at the beginning of the link. The source joint models will be aligned against this transform.
Public propertytargetTransform
Base position/direction of the connection point at the end of the link. The target joint models will be aligned against this transform.
Top
Methods
  NameDescription
Public methodCheckColliderHits
Verifies that there are no obstacles between the points.
Public methodGetMeshByName
Returns a mesh, created by the renderer.
Public methodStartRenderer
Starts rendering a link between the objects.
Public methodStopRenderer
Cancels rendering the link.
Public methodUpdateLink
Called when a link representation update is required.
Top
Remarks
The link can be rendered between any two transformations. The renderer is responsible to adjust the representation if the connecting points have moved (UpdateLink).
See Also