「unreal」(Unreal Engine Python API)は、Unreal EngineのPythonライブラリです。このAPIを使用することで、Unreal Engineをより簡単にカスタマイズすることができます。Pythonは、様々なプログラミング言語で使用される汎用的なスクリプト言語であり、「unreal」はPythonを使用して構築されています。本記事では、「unreal」を用いたゲームビューを終了する方法を紹介します。
# editor_set_game_view関数によるゲームビューの終了
unreal.LevelEditorSubsystem().editor_set_game_view(False,ビューポート)
下記の様な内容で悩んでいる/困っている場合に使える方法を参考までにご共有させて頂きます。
・Unreal Engine上で、どの様にPythonを使うの?
・Unreal Engine上のPythonで、どの様にゲームビューを終了するの?
また、「unreal」を使用する上で基礎的な情報は下記の記事で紹介しております。
他の「unreal」のクラスや関数について気になる方はこちらの記事をご覧ください。
目次
editor_set_game_view関数によるシミュレーションの終了
unreal.LevelEditorSubsystem().editor_set_game_view関数の基本構文
unreal.LevelEditorSubsystem().editor_set_game_view(
game_view: bool,
viewport_config_key: unreal.Name='None'
)
→ None
unreal.LevelEditorSubsystem().editor_set_game_view関数の使い方
import unreal
activeViewport = unreal.LevelEditorSubsystem().get_active_viewport_config_key()
unreal.LevelEditorSubsystem().editor_set_game_view(False,activeViewport)
まとめ
「unreal」(Unreal Engine Python API)は、Pythonを使ったUnreal Engineの開発に非常に役立ちます。この記事では、ゲームビューを終了する方法を紹介しました。ぜひ活用してみてください。
関連検索ワード
How to end game view?
関連キーワード
unreal, python, game view, end, ゲームビュー, 終了