onCollisionEnter#

onCollisionEnter(subItemName, otherObjectName)#

SubItemと他のColliderが衝突した時に実行されます。

Parameters:
  • subItemName (string) -- SubItem 名

  • otherObjectName (string) -- 衝突したオブジェクト名

説明#

SubItemの所有権を持つプレイヤーの環境でのみ実行されます。
SubItemのColliderと衝突対象のColliderはいずれも Is Triggerfalse である必要があります。
SubItemの衝突判定には自身を含む子孫のColliderが使用されます。

Example#

SubItem 同士が接触すると SubItem の名前がコンソールに出力されます。

function onCollisionEnter(subItemName, otherObjectName)
    print("Collision Enter")
    print(string.format("%s <= %s", subItemName, otherObjectName))
end