Difference between revisions of "Raycaster (LogiX node)/ja"

From Neos Wiki
Jump to navigation Jump to search
(Created page with "<code>Direction</code>は、レイがキャストされる方向ベクトルを定義します。この値は入力された<code>Root</code>スロットのローカル座標...")
(Created page with "<code>MaxDistance</code>はレイキャストの最大長を制御します。レイキャストの実際の長さは、この入力と入力された<code>Root</code>スロ...")
Line 27: Line 27:
  
  
The <code>MaxDistance</code> controls the maximum length of the raycast. The actual length of the raycast is affected by both this input and the global scale of the input <code>Root</code> slot. Default value is very large (~3.4×10<sup>38</sup>), so setting this is recommended.
+
<code>MaxDistance</code>はレイキャストの最大長を制御します。レイキャストの実際の長さは、この入力と入力された<code>Root</code>スロットのグローバルスケールの両方によって影響されます。デフォルト値は非常に大きい (~3.4×10<sup>38</sup>) ので、これを設定することが推奨されます。
  
  

Revision as of 08:09, 15 February 2022

Other languages:
English • ‎日本語 • ‎한국어
Raycaster
'Raycaster' LogiX node
Inputs
  Float3 Origin
  Float3 Direction
  Float MaxDistance
  Bool HitTriggers
  Bool UsersOnly
  Slot Root
Outputs
  Bool HasHit
  ICollider HitCollider
  Float HitDistance
  Float3 HitPoint
  Float3 HitNormal
  Int HitTriangleIndex

Raycasterノードは、フレームごとに更新される入力プロパティでレイキャストを生成します。現在ヒットしているターゲットコライダーに関する詳細(存在する場合)を、出力から得ることができます。

== 使用方法

入力

Origin は、レイがキャストされるポイントを定義します。この値は、入力された Root スロットの ローカル座標空間からの相対値として扱われます。デフォルトは [0;0;0] です。


Directionは、レイがキャストされる方向ベクトルを定義します。この値は入力されたRootスロットのローカル座標空間からの相対値として扱われます。この入力は、デフォルトが[0;0;0]であるため、値を設定することが必要です。


MaxDistanceはレイキャストの最大長を制御します。レイキャストの実際の長さは、この入力と入力されたRootスロットのグローバルスケールの両方によって影響されます。デフォルト値は非常に大きい (~3.4×1038) ので、これを設定することが推奨されます。


The HitTriggers determines whether collider components with the collider Type field set as Trigger or HapticTrigger are considered valid hit targets. Default is false.


The UsersOnly determines whether colliders which do not have an active user are considered valid hit targets. Defaults to false, in which case all colliders are considered valid hit targets (depending on other factors). However, if set to true, only colliders with an active user (i.e. are parented under a user's slot hierarchy) are considered valid hit targets.


The Root input defines the slot relative to whose local coordinate space the Origin, Direction, and MaxDistance are calcluated.

Outputs

The HasHit input outputs whether the raycast has a valid hit target currently.


The HitCollider output provides the first valid target collider hit along the path of the raycast. Default is null.


The HitDistance output provides the global distance between the raycast origin and the HitPoint. Default is 0.


The HitPoint output provides the global coordinates of the point where raycast first intersects with the HitCollider. Default is [0;0;0].


The HitNormal output provides the normal vector for the intersection of the raycast and the HitCollider.


The HitTriangleIndex outputs the index of the mesh triangle which was hit in the case that the HitCollider is a MeshCollider (Component).

Notes

Colliders will generally be valid hit targets for raycasts unless their Type enum field is set to Trigger, HapticTrigger, or HapticSampler, though see details for the HitTriggers input. Colliders will not be valid targets if the IgnoreRaycasts bool is set to true on the collider component.

Examples

Node Menu

NodeMenu-Physics/ja