0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

unity > csharp > transform.positionの変更

Last updated at Posted at 2015-07-11

http://dotinstall.com/lessons/basic_unity/24614
javasciptで以下のように説明している。

transform.position.y += 0.1f;

transform.positionを直接変更しようとしても、c#ではエラーとなる。
http://answers.unity3d.com/questions/19888/transformposition-error.html

代わりの実装が以下。

	void Update () {
		if (Input.GetKeyUp("space")) {
			Vector3 newPos = transform.position;
			newPos.y += 0.1f;
			transform.position = newPos;
		}
	} 
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?