facebook twitter hatena line email

「Unity/3d/rigidbody」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==Rotation固定にscriptでチェックを入れる== <pre> Rigidbody rigidbody = obj.AddComponent<Rigidbody>(); rigidbody.constraints = RigidbodyConstraints.FreezeRotat...」)
 
(Rotation固定にscriptでチェックを入れる)
行4: 行4:
 
rigidbody.constraints = RigidbodyConstraints.FreezeRotation;
 
rigidbody.constraints = RigidbodyConstraints.FreezeRotation;
 
</pre>
 
</pre>
 +
 +
==x方向へ常に進んでいく==
 +
Rigidbody2D rigidbody;
 +
rigidbody.velocity = new Vector2(1f, 0f);

2024年8月28日 (水) 08:57時点における版

Rotation固定にscriptでチェックを入れる

Rigidbody rigidbody = obj.AddComponent<Rigidbody>();
rigidbody.constraints = RigidbodyConstraints.FreezeRotation;

x方向へ常に進んでいく

Rigidbody2D rigidbody; rigidbody.velocity = new Vector2(1f, 0f);