Skip to content

Commit 62517fb

Browse files
author
Roberto De Ioris
committed
added asset_editors.py example
1 parent 604b969 commit 62517fb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

examples/asset_editors.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import unreal_engine as ue
2+
3+
for _asset in ue.get_all_edited_assets():
4+
editor = ue.find_editor_for_asset(_asset)
5+
print('{0} - {1}'.format(editor.get_editor_name(), editor.get_last_activation_time()))
6+
editor.focus_window()

0 commit comments

Comments
 (0)