using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Move : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
}
public class Move : MonoBehaviour {
public float length;
public float speed;
Vector3 startP;
void Start () {
startP = GetComponent<Rigidbody>().position;
}
void Update () {
float z = length * Mathf.Sin(Time.time * speed);
}
void Update () {
float z = length * Mathf.Sin(Time.time * speed);
}
void Update () {
float z = length * Mathf.Sin(Time.time * speed);
GetComponent<Rigidbody>().position = startP + new Vector3(0,0,z);
}
void Update () {
float z = length * Mathf.Sin(Time.time * speed);
transform.position = startP + new Vector3(0,0,z);
}
float t;
void Update () {
t += 0.1f;
float z = length * Mathf.Sin(t * speed);
transform.position = startP + new Vector3(0,0,z);
Debug.Log(Time.time);
}
void Update () {
float z = length * Mathf.Sin(Time.time * speed);
transform.position = startP + new Vector3(0,0,z);
Debug.Log(z);
}
①
②
⑤
③
④
Q
W
E
R
T
public class BulletCreate : MonoBehaviour {
public float power;
public GameObject pre;
void Update () {
if(Input.GetMouseButtonDown(0)){
GameObject bullet = Instantiate(pre);
bullet.transform.parent = transform;
bullet.transform.localPosition = new Vector3(0, 0, 0);
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
Vector3 dir = ray.direction;
bullet.GetComponent<Rigidbody>().velocity = dir * power;
}
}
}
public class BulletCreate : MonoBehaviour {
public float power;
public GameObject pre;
void Update () {
if(Input.GetMouseButtonDown(0)){
RaycastHit hit;
if(Physics.Raycast(ray, out hit,100)){
if( hit.collider.gameObject.name == "Back" ){
}
}
GameObject bullet = Instantiate(pre);
bullet.transform.parent = transform;
bullet.transform.localPosition = new Vector3(0, 0, 0);
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
Vector3 dir = ray.direction;
bullet.GetComponent<Rigidbody>().velocity = dir.normalized * power;
}
}
}
※out修飾子に関しては、ちょっとややこしいので別の機会にやります。
public class BulletCreate : MonoBehaviour {
public float power;
public GameObject pre;
void Update () {
if(Input.GetMouseButtonDown(0)){
RaycastHit hit;
if(Physics.Raycast(ray, out hit,100)){
if( hit.collider.gameObject.name == "Back" ){
}
}
GameObject bullet = Instantiate(pre);
bullet.transform.parent = transform;
bullet.transform.localPosition = new Vector3(0, 0, 0);
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
Vector3 dir = ray.direction;
bullet.GetComponent<Rigidbody>().velocity = dir.normalized * power;
}
}
}
void Update () {
float z = length * Mathf.Sin(Time.time * speed);
GetComponent<Rigidbody>().MovePosition(startP + new Vector3(0,0,z));
}
position(座標:途中経過を計算せず、ワープのような動き)で動かすのか?
MovePosition(座標:途中経過も計算する動き)で動かすのか?
など考えることは沢山あります。
また、これに【回転・方向】などの要素も考えなければ思ったとおりの動きにはなりません。
「物体を動かす」というのは単純なようで、実はかなり難解なのです。
まぁぼちぼち学んでいきましょう。
void FixedUpdate () {
float z = length * Mathf.Sin(Time.time * speed);
GetComponent<Rigidbody>().MovePosition(startP + new Vector3(0,0,z));
}
public int startCoin;
void Start () {
int x,y,z;
x = Random.Range(-4, 4);
y = Random.Range(0, 20);
z = Random.Range(0, 4);
Instantiate(pre, new Vector3(x, y, z), Quaternion.identity);
}
public int startCoin;
void Start () {
int x,y,z;
x = Random.Range(-4, 4);
y = Random.Range(0, 20);
z = Random.Range(0, 4);
Instantiate(pre, new Vector3(x, y, z), Quaternion.identity);
}
public int startCoin;
void Start () {
int x,y,z;
x = Random.Range(-4, 4);
y = Random.Range(0, 20);
z = Random.Range(0, 4);
Instantiate(pre, new Vector3(x, y, z), Quaternion.identity);
}
public int startCoin;
void Start () {
int x,y,z;
x = Random.Range(-4, 4);
y = Random.Range(0, 20);
z = Random.Range(0, 4);
Instantiate(pre, new Vector3(x, y, z), Quaternion.identity);
}
public int startCoin;
void Start () {
int x,y,z;
x = Random.Range(-4, 4);
y = Random.Range(0, 20);
z = Random.Range(0, 4);
Instantiate(pre, new Vector3(x, y, z), Quaternion.identity);
}
public void CoinDown(){
coinStock--;
}
public void CoinUp(){
coinStock++;
}
public void OnGUI(){
GUI.color = Color.black;
string label = "残りのコイン:" + coinStock;
GUI.Label(new Rect(0,0,200,50),label);
}
public CoinNum coinNum = new CoinNum();
if( hit.collider.gameObject.name == "Back" ){
coinNum.CoinDown();
//他のコードはしょうりゃく
}
if ( 0 < コインの数 ){
コインを飛ばすプログラム;
}
public class Hit : MonoBehaviour {
void OnTriggerEnter ( Collider co ){
if(co.gameObject.tag == "scoreUp"){
Score.score++;
}
}
}
public class CoinUpFloor : MonoBehaviour {
void OnTriggerEnter ( Collider co ){
if(co.gameObject.tag == "coin"){
}
}
}
※次ページにサンプル値をのせておきますので、参考にしてください。
サンプル
Instantiate(effectPre,co.transform.position,Quaternion.Euler(-90,0,0));
Instantiate(effectPre,co.transform.position,Quaternion.Euler(-90,0,0));
ParticleSystem particle;
void Start () {
particle = GetComponent<ParticleSystem>();
Destroy(gameObject, particle.main.duration);
}