(2019年11月10日)
■使用ソフト
・Unity Hub 2.1.3
・Unity 2019.2.11f1
・Visual Studio Community 2019
■言語
・C#
■手順
1.ゲームオブジェクト→3Dオブジェクト→キューブ
2.アセット→作成→マテリアル
3.アルベド→色を選択
4.マテリアルをキューブへドラッグ&ドロップする
5.アセット→作成→C#スクリプト
6.C#スクリプトをキューブへドラッグ&ドロップする
7.C#スクリプトをダブルクリックしてVisual Studioを開く
8.コードを以下のとおり変更する
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NewBehaviourScript : MonoBehaviour
{
int iCount = 0;
float fMove = 0.1f;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
//上下移動
transform.Translate(0.0f, fMove, 0.0f);
iCount++;
if (iCount == 50)
{
iCount = 0;
fMove *= -1;
}
//回転
transform.Rotate(0.0f, 2.0f, 0.0f);
}
}
using System.Collections.Generic;
using UnityEngine;
public class NewBehaviourScript : MonoBehaviour
{
int iCount = 0;
float fMove = 0.1f;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
//上下移動
transform.Translate(0.0f, fMove, 0.0f);
iCount++;
if (iCount == 50)
{
iCount = 0;
fMove *= -1;
}
//回転
transform.Rotate(0.0f, 2.0f, 0.0f);
}
}
9.コードを右クリックして保存する
10.実行するとキューブがY軸回転しながら上下に動く
11.ファイル→保存
■参考文献
見てわかるUnity2019C#スクリプト超入門
0 件のコメント:
コメントを投稿