Created
April 11, 2018 03:36
-
-
Save todorok1/72e217428d8eb6103a2e26f1fe4fd7cd to your computer and use it in GitHub Desktop.
Unityチュートリアル・Inspectorウィンドウからのデバッグのスクリプト。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class SphereBooster : MonoBehaviour { | |
// 力を加える方向 | |
Vector3 forceDirection = new Vector3(1.0f, 1.0f, 0f); | |
// 加える力の大きさ | |
float forceMagnitude = 10.0f; | |
// イカ、省略 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment