Categories
Uncategorized

Angel

New angel wings, still a wip but I they were kind of built on a whim.

Categories
Uncategorized

New Charge Attack

The new charge attack uses the ummorpg buffskill set to buff your speed until you hit your goal. This works in the linux environment and looks great! Also got my youtube channel cleaned up a little so feel free to subscribe and leave comments!

new charge attack!
Categories
Uncategorized

working capes again

got the capes working on mount and while he runs, huge hurdle. turns out there was an override in ummorpg player.cs that goes to the default animator controller instead of any children controllers in use. by adding && info.location.name != “Cape” we can bypass this override and use the animator controller as desired.

Animator anim = go.GetComponent<Animator>(); if (anim != null && info.location.name != “Cape”) { // assign main animation controller to it anim.runtimeAnimatorController = animator.runtimeAnimatorController; // restart all animators, so that skinned mesh equipment will be // in sync with the main animation RebindAnimators(); }

Categories
Uncategorized

perseus online

finally got the malber’s animation to work with ummorpg. Also fixed an issue with the characters rotation during strafe. The results are beautiful.