Skip to content

Commit

Permalink
added asset_editors.py example
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto De Ioris committed Jun 26, 2018
1 parent 604b969 commit 62517fb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/asset_editors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import unreal_engine as ue

for _asset in ue.get_all_edited_assets():
editor = ue.find_editor_for_asset(_asset)
print('{0} - {1}'.format(editor.get_editor_name(), editor.get_last_activation_time()))
editor.focus_window()

0 comments on commit 62517fb

Please sign in to comment.