前提・実現したいこと
風車の回転数を数えたいのですがどうしたらいいかわかりません。
今は、クリックして回転数を数えています。自動的に数えることはできますか?
該当のソースコード
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Windmill : MonoBehaviour { float rotSpeed = 0; int count = 0; // Use this for initialization void Start() { } // Update is called once per frame void Update() { if (Input.GetMouseButtonDown(0)) { count++; Debug.Log(count); this.rotSpeed = 1; } transform.Rotate(new Vector3(0, 0, 0.5f)); } }
試したこと
クリックで数えるようにしました。
補足情報(FW/ツールのバージョンなど)
Unity(2017.1.1f1)
C#
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。