mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
cd4711a8e5
- Includes addons for hands and sex toys - WIP and very buggy
17 lines
352 B
C#
17 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace RimWorldAnimationStudio
|
|
{
|
|
public static class Vector3Extension
|
|
{
|
|
public static Vector3 FlipAxes(this Vector3 v)
|
|
{
|
|
return new Vector3(v.x, v.z, v.y);
|
|
}
|
|
}
|
|
}
|