diff --git a/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/bulk_renamer.py b/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/bulk_renamer.py index 4c9df52..3127a03 100644 --- a/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/bulk_renamer.py +++ b/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/bulk_renamer.py @@ -1,8 +1,8 @@ import unreal -# src_num = # Binded value from Widget UI -# dst_num = # Binded value from Widget UI +src_num :str #Binded value from Widget UI +dst_num :str # Binded value from Widget UI ar_asset_lists = unreal.EditorUtilityLibrary.get_selected_assets() diff --git a/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/smesh_lod_builder.py b/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/smesh_lod_builder.py index e4e5d3d..ed24c67 100644 --- a/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/smesh_lod_builder.py +++ b/Python/PyUnreal/PyUnreal/runs_with_editorUtility/Skeletal_Mesh_Edit/smesh_lod_builder.py @@ -2,6 +2,8 @@ import unreal import sys +__lo_d_level :str + _num_lod : int = int(__lo_d_level) # Binded value from Widget UI selected : list = unreal.EditorUtilityLibrary.get_selected_assets() #get selected assets using editorUtilityLib diff --git a/Python/PyUnreal/PyUnreal/runs_with_editorUtility/WIP/texture_cutoff.py b/Python/PyUnreal/PyUnreal/runs_with_editorUtility/WIP/texture_cutoff.py index 240b9fa..d1dbc34 100644 --- a/Python/PyUnreal/PyUnreal/runs_with_editorUtility/WIP/texture_cutoff.py +++ b/Python/PyUnreal/PyUnreal/runs_with_editorUtility/WIP/texture_cutoff.py @@ -1,7 +1,7 @@ import unreal as ue -#new_size :int = 0 +new_size :int #input from editor asset_lib :object = ue.EditorAssetLibrary diff --git a/Tracer/Tracer.mcr b/Tracer/Tracer.mcr new file mode 100644 index 0000000..269deb5 --- /dev/null +++ b/Tracer/Tracer.mcr @@ -0,0 +1,12 @@ +macroScript tracer_opener + category:"EVE" + ButtonText:"Tracer" + toolTip:"Tracer" + -- icon: #("\\\\10.220.70.12\\eve\\ART_Backup\\Script\\Logo\\eveLogo.bmp") + --iconName:"bmp_index" + --silentErrors:true + --autoUndoEnabled:true +( + on execute do (fileIn "\\\\10.220.70.12\\eve\\ART_Backup\\Script\\Tracer\\Tracer.ms" ) +) + diff --git a/Tracer/Tracer.ms b/Tracer/Tracer.ms new file mode 100644 index 0000000..9af2e77 --- /dev/null +++ b/Tracer/Tracer.ms @@ -0,0 +1,22 @@ + -- Tracer Script by Mino +if selection.count != 0 do ( + with animate on ( + for each in selection do ( + tracer = dummy() + tracer.name = each.name + tracer.parent = each.parent + for i in animationRange.start to animationRange.end do ( + slidertime = i + tracer.transform = each.transform + ) + sliderTime = animationRange.start + ) + ) + + $Bip001.controller.figureMode = true + $Bip001.controller.prop1exists = false + $Bip001.controller.figureMode = false + + select $'Bip001 Prop1' +) +