mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
Actor addons and animation
- Includes addons for hands and sex toys - WIP and very buggy
This commit is contained in:
parent
d9e6288e3a
commit
cd4711a8e5
400 changed files with 10269 additions and 661 deletions
17
Assets/Scripts/Extensions/Vector3Extension.cs
Normal file
17
Assets/Scripts/Extensions/Vector3Extension.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
11
Assets/Scripts/Extensions/Vector3Extension.cs.meta
Normal file
11
Assets/Scripts/Extensions/Vector3Extension.cs.meta
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1b49e51e0077dee41a199e4e81f26e32
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Loading…
Add table
Add a link
Reference in a new issue