10 กันยายน 2559

Unity : 2D Game with Unity Part # 3



// โค้ดคำสั่งของ volt_controler.cs

using UnityEngine;
using System.Collections;

public class volt_controler : MonoBehaviour {
    public float jumpSpeed;
    Rigidbody2D rb;
    // Use this for initialization
    void Start () {
        rb = GetComponent ();
    }
   
    // Update is called once per frame
    void Update () {
        if (Input.GetButtonDown ("Jump")) {
            rb.velocity = new Vector2 (rb.velocity.x, jumpSpeed);
        }
    }
}

2 ความคิดเห็น:

Unknown กล่าวว่า...

ไม่มีต่อหรอคะ อยากได้โค้ดที่ชนวัตถุแล้วจบเกม

Unknown กล่าวว่า...

ทำไมกระโดดไม่ได้คะ

"I Believe in You"

Copyright(c) 2007 - 2022 by Kasem Kamolchaipisit.