• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Multiple Text Replacement

Status
Not open for further replies.
Level 20
Joined
Apr 12, 2018
Messages
494
For some reason there's a distinct lack of offline tools that can replace multiple words of text at once. This is something you might want to do when renaming bones.

I randomly stumbled upon this online version which does the above. Still looking for a good offline solution.

Multiple Replace - JSFiddle - Code Playground

Bone names aren't universal nor consistent even within Blizzard models so even a list replacement isn't 100% foolproof, but it does take a lot of the work out of it.

War3 bones (sample replacement list)
Code:
Bone_Chest
Bone_Leg1
Bone_Leg2
Bone_Foot
Bone_Toes
Bone_Waist
Bone_Pelvis
Bone_ChestLower
Bone_Arm1
Bone_Arm2
Bone_Hand
Bone_Thumb1
Bone_Thumb2
Bone_FingerA1
Bone_FingerA2
Bone_FingerB1
Bone_FingerB2
Bone_FingerC1
Bone_FingerC2
Bone_FingerD1
Bone_FingerD2
Bone_Cape_M1
Bone_Cape_M2
Bone_Cape_M3
Bone_Cape_M4
Bone_Cape_M5
Bone_Cape_L2
Bone_Cape_L3
Bone_Cape_L4
Bone_Cape_R2
Bone_Cape_R3
Bone_Cape_R4
Bone_Cape_L1
Bone_Cape_R1

Heroes of the Storm sample (based off Sylvanas; note that two of the cape nodes are misnamed)
Code:
Bone_Torso
Bone_LegThigh
Bone_LegCalf
Bone_LegFoot
Bone_LegFootToe
Bone_Spine
Bone_Hips
Bone_Spine01
Bone_Arm
Bone_ArmFore
Bone_ArmHand
Bone_ArmThumb_Upper
Bone_ArmThumb_Lower
Bone_ArmFingerA_Upper
Bone_ArmFingerA_Lower
Bone_ArmFingerB_Upper
Bone_ArmFingerB_Lower
Bone_ArmFingerC_Upper
Bone_ArmFingerC_Lower
Bone_ArmFingerD_Upper
Bone_ArmFingerD_Lower
Bone_Cape_Chest
Bone_Cape_Upper
Bone_Cape_Mid
Bone_Cape_Lower
Bone_Cape_Lower02
Bone_Cape_Mid_L
Bone_Cape_Lower_L
Bone_Cape_Mid02_L
Bone_Cape_Mid_R
Bone_Cape_Mid02_R
Bone_Cape_Lower_R
Bone_Cape_Upper_L
Bone_Cape_Upper_R
 
Status
Not open for further replies.
Top