【UE×Python】レベル上のアクターのモビリティを変更する方法について徹底解説

Python

「unreal」(Unreal Engine Python API)は、Unreal EngineのPythonライブラリです。このAPIを使用することで、Unreal Engineをより簡単にカスタマイズすることができます。Pythonは、様々なプログラミング言語で使用される汎用的なスクリプト言語であり、「unreal」はPythonを使用して構築されています。本記事では、「unreal」を用いたレベル上のアクターのモビリティを変更する方法を紹介します。

# set_mobility関数によるアクターのモビリティの変更
アクター.set_mobility(モビリティ)
アクター.ルートコンポーネント.set_mobility(モビリティ)

下記の様な内容で悩んでいる/困っている場合に使える方法を参考までにご共有させて頂きます。

・Unreal Engine上で、どの様にPythonを使うの?
・Unreal Engine上のPythonで、どの様にレベル上のアクターのモビリティを変更するの?

また、「unreal」を使用する上で基礎的な情報は下記の記事で紹介しております。
他の「unreal」のクラスや関数について気になる方はこちらの記事をご覧ください。

set_mobility関数によるアクターのモビリティの変更

“unreal.StaticMeshActor”.set_mobility関数の基本構文

“unreal.StaticMeshActor”.set_mobility(
	mobility: unreal.ComponentMobility
) 
→ None

“unreal.StaticMeshActor”.set_mobility関数の使い方(STATICへの変更)

import unreal

actor_path = "PersistentLevel.StaticMeshActor_0"
actor = unreal.EditorActorSubsystem().get_actor_reference(actor_path)
actor.set_mobility(unreal.ComponentMobility.STATIC)

“unreal.StaticMeshActor”.set_mobility関数の使い方(STATIONARYへの変更)

import unreal

actor_path = "PersistentLevel.StaticMeshActor_0"
actor = unreal.EditorActorSubsystem().get_actor_reference(actor_path)
actor.set_mobility(unreal.ComponentMobility.STATIONARY)

“unreal.StaticMeshActor”.set_mobility関数の使い方(MOVABLEへの変更)

import unreal

actor_path = "PersistentLevel.StaticMeshActor_0"
actor = unreal.EditorActorSubsystem().get_actor_reference(actor_path)
actor.set_mobility(unreal.ComponentMobility.MOVABLE)

“unreal.SceneComponent”.set_mobility関数の基本構文

“unreal.SceneComponent”.set_mobility(
	new_mobility: unreal.ComponentMobility
) 
→ None

“unreal.SceneComponent”.set_mobility関数の使い方(STATICへの変更)

import unreal

actor_path = "PersistentLevel.StaticMeshActor_0"
actor = unreal.EditorActorSubsystem().get_actor_reference(actor_path)
rootComponent = actor.root_component
rootComponent.set_mobility(unreal.ComponentMobility.STATIC)

“unreal.SceneComponent”.set_mobility関数の使い方(STATIONARYへの変更)

import unreal

actor_path = "PersistentLevel.StaticMeshActor_0"
actor = unreal.EditorActorSubsystem().get_actor_reference(actor_path)
rootComponent = actor.root_component
rootComponent.set_mobility(unreal.ComponentMobility.STATIONARY)

“unreal.SceneComponent”.set_mobility関数の使い方(MOVABLEへの変更)

import unreal

actor_path = "PersistentLevel.StaticMeshActor_0"
actor = unreal.EditorActorSubsystem().get_actor_reference(actor_path)
rootComponent = actor.root_component
rootComponent.set_mobility(unreal.ComponentMobility.MOVABLE)

まとめ

「unreal」(Unreal Engine Python API)は、Pythonを使ったUnreal Engineの開発に非常に役立ちます。この記事では、レベル上のアクターのモビリティを変更する方法を紹介しました。ぜひ活用してみてください。

関連検索ワード

How to set the mobility of an actor?

関連キーワード

unreal, python, set, actor, level, mobility, 変更, モビリティ