Now is time to resurrect this project and start to write posts again and rewrite old systems.
I replaced Unity's default input system with Rewired which made input coding a bliss.
I modified Mixamo's paladin character to fit my needs.
Paladin only had diffuse, normal and specular textures which I needed to convert to more PBR friendly shape. Substance Painter proved to be perfect for this job. I wanted to get this done quick so
I started by adding old diffuse as a fill layer in subtance painter.
Then I added metal material as a fill layer and masked out every non-metal surfaces and added some leather material to all leather straps. Quick and results good enough for my tests.
![]() |
Original diffuse |
![]() |
Metal and leather materials added. |
Then I needed to chop this paladin into different body parts and add some kind of flesh material which I painted in Substance Painter.
![]() |
All different body parts separated |
I made a Warrior Creator script which makes making new warriors simple. I just need to make sure that every character rig and body parts follow my naming policy.
It used to be really long and time consuming process to prepare new character meshes as warrior but now it's just a one button. I could share it but it's so specific for my project so it would be quite pointless to share it.
I rewrote whole arm controller because old one was not that well coded, really shows my lack of experience as a coder.
I used Custom Handles to make it easy to adjust arm rotation limits in unity Scene view. Custom Handles is really nice asset if you need to make any kind of custom gizmos.
There is some dependencies which I'll also share but I can't obviously share Rewired or Custom Handles.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using Rewired; | |
using System.Collections; | |
using System; | |
namespace Fleshwound.Core | |
{ | |
public class LimbHandler : MonoBehaviour | |
{ | |
public LimbAction[] Actions; | |
//These three are used for the custom scene view gizmos | |
[HideInInspector] | |
public float AngleLimitX; | |
[HideInInspector] | |
public float AngleLimitY; | |
[HideInInspector] | |
public float AngleLimitZ; | |
Vector4 newTransforms; | |
Vector4 transformLimits = Vector4.zero; | |
float rotation1 = 0F; | |
float rotation2 = 0F; | |
float rotation3 = 0F; | |
float distanceValue; | |
Quaternion originalRotation; | |
Quaternion _quaternionX; | |
Quaternion _quaternionY; | |
Quaternion _quaternionZ; | |
private bool Left; | |
private bool Right; | |
private Player player; | |
public int PlayerID = 0; | |
void Awake() | |
{ | |
player = ReInput.players.GetPlayer(PlayerID); | |
} | |
private void Start() | |
{ | |
newTransforms = Vector3.zero; | |
distanceValue = 0f; | |
originalRotation = transform.localRotation; | |
_quaternionX = originalRotation; | |
_quaternionY = originalRotation; | |
_quaternionZ = originalRotation; | |
//This is just to set correct location for distance movement if needed. | |
foreach (var item in Actions) | |
{ | |
if (item.MyTransformtype == Commons.TransformType.Move) | |
switch (item.MoveVariables.MyMoveAxis) | |
{ | |
case Commons.MoveAxis.X: | |
newTransforms.w = transform.localPosition.x; | |
break; | |
case Commons.MoveAxis.Y: | |
newTransforms.w = transform.localPosition.y; | |
break; | |
case Commons.MoveAxis.Z: | |
newTransforms.w = transform.localPosition.z; | |
break; | |
default: | |
break; | |
} | |
} | |
} | |
void Update() | |
{ | |
//We are checking which hand is active for this player | |
if (InputManager.Instance.GetRightHand(player)) | |
ToggleHand(Commons.Hand.Right); | |
if (InputManager.Instance.GetLeftHand(player)) | |
ToggleHand(Commons.Hand.Left); | |
if (InputManager.Instance.GetBothHand(player)) | |
ToggleHand(Commons.Hand.Left, true); | |
//set transform values to 0 at beginning of every frame | |
rotation1 = 0f; | |
rotation2 = 0f; | |
rotation3 = 0f; | |
distanceValue = 0f; | |
//for each action, if action is enabled check action handiness and active hand. | |
foreach (LimbAction action in Actions) | |
{ | |
if (action.Enabled) | |
{ | |
if ((action.MyHand == Commons.Hand.Right && Right) | |
|| | |
(action.MyHand == Commons.Hand.Left && Left) | |
|| | |
(action.MyHand == Commons.Hand.None && (!Right && !Left))) | |
{ | |
CheckInput(action); | |
} | |
} | |
} | |
} | |
//check for actual input | |
public void CheckInput(LimbAction action) | |
{ | |
foreach (var MyActionButton in action.MyActionButton) | |
{ | |
if (InputManager.Instance.GetAction1(player) && (MyActionButton == Commons.ActionButtons.ActionButton1)) | |
{ | |
AdjustTransform(action); | |
} | |
else if (InputManager.Instance.GetAction2(player) && (MyActionButton == Commons.ActionButtons.ActionButton2)) | |
{ | |
AdjustTransform(action); | |
} | |
else if (InputManager.Instance.GetAction3(player) && (MyActionButton == Commons.ActionButtons.ActionButton3)) | |
{ | |
AdjustTransform(action); | |
} | |
else if (!InputManager.Instance.GetAction1(player) && !InputManager.Instance.GetAction2(player) && !InputManager.Instance.GetAction3(player) && MyActionButton == Commons.ActionButtons.None) | |
{ | |
AdjustTransform(action); | |
} | |
} | |
} | |
//adjust transform according to action | |
public void AdjustTransform(LimbAction action) | |
{ | |
//check if the action is rotation action | |
bool isRotation = action.MyTransformtype == Commons.TransformType.Rotate ? true : false; | |
//which axis is used to activate this action | |
switch (action.MyInputType) | |
{ | |
case Commons.InputType.Yaw: | |
float yaw = InputManager.Instance.GetYaw(player); | |
if (isRotation) | |
{ | |
newTransforms.x += yaw * action.Sensitivity; | |
newTransforms.x = ClampAngle(newTransforms.x, action); | |
if (action.MySpace == Space.World) | |
_quaternionX = Quaternion.AngleAxis(newTransforms.x, Vector3.up); | |
else | |
_quaternionX = Quaternion.AngleAxis(newTransforms.x, transform.up); | |
//transform.localRotation = originalRotation * _quaternionX; | |
} | |
else | |
{ | |
newTransforms.w += yaw * (action.Sensitivity / 20); | |
newTransforms.w = ClampFloat(newTransforms.w, action); | |
} | |
break; | |
case Commons.InputType.Pitch: | |
float pitch = InputManager.Instance.GetPitch(player); | |
if (isRotation) | |
{ | |
newTransforms.y += pitch * action.Sensitivity; | |
newTransforms.y = ClampAngle(newTransforms.y, action); | |
if (action.MySpace == Space.World) | |
_quaternionY = Quaternion.AngleAxis(newTransforms.y, Vector3.forward); | |
else | |
_quaternionY = Quaternion.AngleAxis(newTransforms.y, transform.forward); | |
//transform.localRotation = originalRotation * _quaternionY; | |
} | |
else | |
{ | |
newTransforms.w += pitch * (action.Sensitivity / 20); | |
newTransforms.w = ClampFloat(newTransforms.w, action); | |
} | |
break; | |
case Commons.InputType.Roll: | |
float roll = InputManager.Instance.GetRoll(player); | |
if (isRotation) | |
{ | |
newTransforms.z += roll * (action.Sensitivity * 15); | |
newTransforms.z = ClampAngle(newTransforms.z, action); | |
if (action.MySpace == Space.World) | |
_quaternionZ = Quaternion.AngleAxis(newTransforms.z, -Vector3.right); | |
else | |
_quaternionZ = Quaternion.AngleAxis(newTransforms.z, -transform.right); | |
//transform.localRotation = originalRotation * _quaternionZ; | |
} | |
else | |
{ | |
newTransforms.w += roll * (action.Sensitivity / 20); | |
newTransforms.w = ClampFloat(newTransforms.w, action); | |
} | |
break; | |
} | |
//_amount = new Vector4(_amount.x += rotation1, _amount.y += rotation2, _amount.z += rotation3, _amount.w += distanceValue); | |
if (isRotation) | |
transform.localRotation = originalRotation * _quaternionX * _quaternionY * _quaternionZ; | |
else | |
switch (action.MoveVariables.MyMoveAxis) | |
{ | |
case Commons.MoveAxis.X: | |
transform.localPosition = new Vector3(newTransforms.w, 0, 0); | |
break; | |
case Commons.MoveAxis.Y: | |
transform.localPosition = new Vector3(0, newTransforms.w, 0); | |
break; | |
case Commons.MoveAxis.Z: | |
transform.localPosition = new Vector3(0, 0, newTransforms.w); | |
break; | |
default: | |
break; | |
} | |
} | |
private void ToggleHand(Commons.Hand hand, bool both = false) | |
{ | |
Right = false; | |
Left = false; | |
if (both) | |
{ | |
Right = true; | |
Left = true; | |
} | |
else | |
{ | |
if (hand == Commons.Hand.Right) | |
Right = true; | |
else | |
Left = true; | |
} | |
} | |
//code from unity mouselook script | |
public float ClampAngle(float angle, LimbAction action) | |
{ | |
angle = angle % 360; | |
if ((angle >= -360F) && (angle <= 360F)) | |
{ | |
if (angle < -360F) | |
{ | |
angle += 360F; | |
} | |
if (angle > 360F) | |
{ | |
angle -= 360F; | |
} | |
} | |
angle = Mathf.Clamp(angle, action.RotationVariables.MinAndMaxAngles.x, action.RotationVariables.MinAndMaxAngles.y); | |
return angle; | |
} | |
public float ClampFloat(float value, LimbAction action) | |
{ | |
return Mathf.Clamp(value, action.MoveVariables.MinAndMaxDistances.x, action.MoveVariables.MinAndMaxDistances.y); | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Candlelight; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
using Fleshwound.Core; | |
namespace Fleshwound.Editor | |
{ | |
[CustomEditor(typeof(Core.LimbHandler))] | |
public class LimbHandlerInspector : UnityEditor.Editor | |
{ | |
Matrix4x4 startmatrix; | |
private Core.LimbHandler script; | |
private List<float> angleLimits = new List<float>(); | |
void OnEnable() | |
{ | |
script = (Core.LimbHandler)target; | |
startmatrix = script.transform.localToWorldMatrix; | |
} | |
void OnSceneGUI() | |
{ | |
angleLimits.Clear(); | |
Vector3 position = script.transform.position; | |
Vector3 scale = script.transform.lossyScale; | |
Vector3 eulers = script.transform.eulerAngles; | |
Quaternion q = Quaternion.Euler(eulers); | |
if (SceneGUI.BeginHandles(script, "Modi..test test")) | |
{ | |
Matrix4x4 m = Matrix4x4.identity; | |
m.SetTRS(position, q, scale); | |
Handles.matrix = m; | |
//maxRot = ArcHandles.SolidAngle(0, maxRot, Vector3.zero, Quaternion.identity, 1); | |
LimbAction[] actions = script.Actions; | |
int i = 0; | |
foreach (var item in actions) | |
{ | |
angleLimits.Add(item.AngleLimit); | |
Handles.color = item.HandleColor; | |
switch (item.MyInputType) | |
{ | |
case Commons.InputType.Yaw: | |
if (item.MyTransformtype == Commons.TransformType.Rotate) | |
{ | |
angleLimits[i] = ArcHandles.SolidWedge(0, angleLimits[i], Vector3.zero, Quaternion.Euler(0, 90, 0), 0.25f); | |
} | |
break; | |
case Commons.InputType.Pitch: | |
if (item.MyTransformtype == Commons.TransformType.Rotate) | |
{ | |
angleLimits[i] = ArcHandles.SolidWedge(0, angleLimits[i], Vector3.zero, Quaternion.Euler(0, 90, 90), 0.25f); | |
} | |
break; | |
case Commons.InputType.Roll: | |
if (item.MyTransformtype == Commons.TransformType.Rotate) | |
{ | |
angleLimits[i] = ArcHandles.SolidWedge(0, angleLimits[i], Vector3.zero, Quaternion.Euler(-90, -90, 0), 0.25f); | |
} | |
break; | |
default: | |
break; | |
} | |
i++; | |
} | |
} | |
if (SceneGUI.EndHandles()) | |
{ | |
int x = 0; | |
foreach (var item in script.Actions) | |
{ | |
item.AngleLimit = angleLimits[x]; | |
item.RotationVariables.MinAndMaxAngles.x = (-angleLimits[x] / 2); | |
item.RotationVariables.MinAndMaxAngles.y = (angleLimits[x] / 2); | |
x++; | |
} | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using UnityEngine; | |
namespace Fleshwound.Core | |
{ | |
[Serializable] | |
public class LimbAction | |
{ | |
public string name; | |
public Color HandleColor; | |
public bool Enabled = true; | |
public Space MySpace; | |
public Commons.Hand MyHand; | |
public Commons.InputType MyInputType; | |
public Commons.TransformType MyTransformtype; | |
public Commons.ActionButtons[] MyActionButton; | |
[Range(0f, 1f)] | |
public float Sensitivity = 0.25f; | |
public RotationVariables RotationVariables; | |
public MoveVariables MoveVariables; | |
[HideInInspector] | |
public float AngleLimit; | |
} | |
[Serializable] | |
public class RotationVariables | |
{ | |
public Vector2 MinAndMaxAngles = new Vector2(-90, 90); | |
} | |
[Serializable] | |
public class MoveVariables | |
{ | |
public Transform DistanceOrigin; | |
public Commons.MoveAxis MyMoveAxis; | |
public Vector2 MinAndMaxDistances = new Vector2(0, 5); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using RootMotion.Dynamics; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
namespace Fleshwound.Core | |
{ | |
public static class Commons | |
{ | |
public enum Hand { Right, Left, None } | |
public enum InputType { Yaw, Pitch, Roll } | |
public enum TransformType { Rotate, Scale, Move } | |
public enum ActionButtons { None = 0, ActionButton1 = 1, ActionButton2 = 2, ActionButton3 = 3 } | |
public enum MoveAxis { X = 1, Y = 2, Z = 3 } | |
public static Rigidbody GetMuscleRigidbody(HumanBodyBones bone, PuppetMaster puppet, Animator animator) | |
{ | |
Rigidbody rb = null; | |
foreach (var item in puppet.muscles) | |
{ | |
if (item.target == animator.GetBoneTransform(bone)) | |
rb = item.joint.GetComponent<Rigidbody>(); | |
} | |
return rb; | |
} | |
public static Transform GetMuscleTarget(HumanBodyBones bone, PuppetMaster puppet, Animator animator) | |
{ | |
Transform target = null; | |
foreach (var item in puppet.muscles) | |
{ | |
if (item.target == animator.GetBoneTransform(bone)) | |
target = item.target; | |
} | |
return target; | |
} | |
public static HumanBodyBones GetHumanbodyBonesByTransform(Transform trans, Animator animator) | |
{ | |
HumanBodyBones hb = HumanBodyBones.Head; | |
foreach (HumanBodyBones item in Enum.GetValues(typeof(HumanBodyBones))) | |
{ | |
if (animator.GetBoneTransform(item) == trans) | |
hb = item; | |
} | |
return hb; | |
} | |
public static ConfigurableJoint GetMuscleJoint(HumanBodyBones bone, PuppetMaster puppet, Animator animator) | |
{ | |
ConfigurableJoint joint = null; | |
foreach (var item in puppet.muscles) | |
{ | |
if (item.target == animator.GetBoneTransform(bone)) | |
joint = item.joint; | |
} | |
return joint; | |
} | |
} | |
static public class MethodExtensionForMonoBehaviourTransform | |
{ | |
/// <summary> | |
/// Gets or add a component. Usage example: | |
/// BoxCollider boxCollider = transform.GetOrAddComponent<BoxCollider>(); | |
/// </summary> | |
static public T GetOrAddComponent<T>(this Component child) where T : Component | |
{ | |
T result = child.GetComponent<T>(); | |
if (result == null) | |
{ | |
result = child.gameObject.AddComponent<T>(); | |
} | |
return result; | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Rewired; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
namespace Fleshwound.Core | |
{ | |
public class InputManager : Singleton<InputManager> | |
{ | |
protected InputManager() { } // guarantee this will be always a singleton only - can't use the constructor! | |
private float Yaw; | |
private float Pitch; | |
private float Roll; | |
public bool b; | |
private Player player; | |
public bool GetRightHand(Player player) | |
{ | |
return player.GetButtonDown("RightHand"); | |
} | |
public bool GetLeftHand(Player player) | |
{ | |
return player.GetButtonDown("LeftHand"); | |
} | |
public bool GetBothHand(Player player) | |
{ | |
return player.GetButtonDown("BothHands"); | |
} | |
public float GetPitch(Player player) | |
{ | |
return player.GetAxis("Pitch"); | |
} | |
public bool GetAction1(Player player) | |
{ | |
return player.GetButton("Action1"); | |
} | |
public bool GetAction2(Player player) | |
{ | |
return player.GetButton("Action2"); | |
} | |
public bool GetAction3(Player player) | |
{ | |
return player.GetButton("Action3"); | |
} | |
public float GetYaw(Player player) | |
{ | |
return player.GetAxis("Yaw"); | |
} | |
public float GetRoll(Player player) | |
{ | |
return player.GetAxis("Roll"); | |
} | |
} | |
} |