2017-10-10から1日間の記事一覧

C# ゲーム 減速

using UnityEngine; using System.Collections; public class CarController : MonoBehaviour { float speed = 0; // Use this for initialization void Start () { } // Update is called once per frame void Update () { if(Input.GetMouseButtonDown(0))…