はじめまして
私はまだunityをはじめてまだ日が浅く、現在勉強中です。
以下のコードは、電車が横向きなどのときに、電車の前方向に進ませるコードです。別の方に教えていただきました。
float force = 100.0f;
this.rigidbody.AddForce(this.transform.forward * force, ForceMode.Force)
これをunityのNewBehaviourScriptに落とし込みました。
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NewBehaviourScript : MonoBehaviour
{
// Start is called before the first frame update
float force = 100.0f;
// Update is called once per frame
void Update()
{
this.rigidbody.AddForce(this.transform.forward * force, ForceMode.Force)
}
}
しかし、これでは動きません。
どう直したらいいでしょうか。
もし可能であれば、public class から全部載せていただけると助かります。