close

Triggers是非觸碰式觸發器、點了就沒有了Collections的碰撞效果、必需用程序觸發。

必須其中一個是剛體、另一個是靜態物體。

點選Freeze Position的X軸和Z軸。

using UnityEngine;
using System.Collections;

public class OnCollsion : MonoBehaviour
{
public floot hoverForce = 12f;

void OncolisionStay (Collision other) // 被封存在other類別
{
other.rigidbody.AddForce(Vector3.up * hoverForce, ForceMode.Acceleration); //預先的函數式
}
}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 kk匡 的頭像
    kk匡

    kk匡的日記&學習筆記

    kk匡 發表在 痞客邦 留言(0) 人氣()