merge remote to laser cutter

This commit is contained in:
K0RB4K 2023-01-19 12:18:04 +01:00
commit 400e23adc9
Signed by: K0RB4K
GPG Key ID: 6144B19EE4FDDAC4
151 changed files with 32514 additions and 74742 deletions

71
Assets/Catalog.cs Normal file
View File

@ -0,0 +1,71 @@
using System.Collections;
using UnityEngine;
using Valve.VR.InteractionSystem;
public class Catalog : MonoBehaviour
{
private Player player = null;
public int maxShownObjects = 5;
public int angle = 180;
public float distance = .5f;
public float objectScale = .1f;
// Start is called before the first frame update
void Start()
{
player = Player.instance;
if (player == null)
{
Debug.LogError("<b>[SteamVR Interaction]</b> Teleport: No Player instance found in map.", this);
Destroy(this.gameObject);
return;
}
ShowCatalog();
}
// Update is called once per frame
void Update()
{
}
private void ShowCatalog()
{
gameObject.transform.SetParent(player.hands[0].transform);
gameObject.transform.localPosition = Vector3.zero;
float radians = angle * Mathf.Deg2Rad;
float angleIncrement = radians / (maxShownObjects - 1);
for (float i = 0 / 2; i < maxShownObjects; i++)
{
var j = i * angleIncrement - radians / 2;
var sphere = GameObject.CreatePrimitive(PrimitiveType.Sphere);
sphere.transform.parent = transform;
sphere.transform.localScale = Vector3.one * objectScale;
sphere.transform.localPosition = new Vector3(Mathf.Sin(j), 0, Mathf.Cos(j)) * distance;
}
StartCoroutine(CatalogCoroutine());
}
private IEnumerator CatalogCoroutine()
{
var hand = player.hands;
while (true)
{
transform.rotation = Quaternion.LookRotation(transform.position - player.hmdTransform.position);
transform.rotation = new Quaternion(0, transform.rotation.y, 0, transform.rotation.w);
yield return null;
}
}
private void OnDrawGizmosSelected()
{
float radians = angle * Mathf.Deg2Rad;
float angleIncrement = radians / (maxShownObjects - 1);
for (float i = 0 / 2; i < maxShownObjects; i++)
{
var j = i * angleIncrement - radians / 2;
Gizmos.DrawWireSphere(transform.position + new Vector3(Mathf.Sin(j), 0, Mathf.Cos(j)) * distance, objectScale / 2);
}
}
}

11
Assets/Catalog.cs.meta Normal file
View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 6e448cbb02ada1545b6c4c79341232fc
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

12
Assets/Editor.meta Normal file
View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
<<<<<<<< HEAD:Assets/Models/Blender/textures.meta
guid: 5ec463f81825d9aeaa6ecb8b743edc26
========
guid: 88c951c75d8d97540908f1edc66613c9
>>>>>>>> origin/Assets:Assets/Editor.meta
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,20 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 424c5a33b3bea46f3bd7ae461a273b6d, type: 3}
m_Name: ProjectAuditorConfig
m_EditorClassIdentifier:
AnalyzeOnBuild: 0
AnalyzeInBackground: 1
CompilationMode: 0
UseRoslynAnalyzers: 0
FailBuildOnIssues: 0
m_Rules: []

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c164f01698d742e4983083d92a7fe2cd
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,53 +0,0 @@
Shader "Cg shading in world space" {
SubShader {
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// uniform float4x4 unity_ObjectToWorld;
// automatic definition of a Unity-specific uniform parameter
struct vertexInput {
float4 vertex : POSITION;
};
struct vertexOutput {
float4 pos : SV_POSITION;
float4 position_in_world_space : TEXCOORD0;
};
vertexOutput vert(vertexInput input)
{
vertexOutput output;
output.pos = UnityObjectToClipPos(input.vertex);
output.position_in_world_space =
mul(unity_ObjectToWorld, input.vertex);
// transformation of input.vertex from object
// coordinates to world coordinates;
return output;
}
float4 frag(vertexOutput input) : COLOR
{
// computes the distance between the fragment position
// and the origin (the 4th coordinate should always be
// 1 for points).
return float4(fmod(input.position_in_world_space.x,1), input.position_in_world_space.y % 1, input.position_in_world_space.z % 1, 1.0);
/*if (input.position_in_world_space.x % 1 < .5)
{
return float4(0.0, 1.0, 0.0, 1.0);
// color near origin
}
else
{
return float4(0.1, 0.1, 0.1, 1.0);
// color far from origin
}*/
}
ENDCG
}
}
}

View File

@ -63,9 +63,9 @@ Material:
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _Glossiness: 0
- _GlossyReflections: 1
- _Metallic: 0
- _Metallic: 0.718
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02

View File

@ -9,7 +9,8 @@ Material:
m_PrefabAsset: {fileID: 0}
m_Name: Key
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: []
m_ValidKeywords:
- _METALLICGLOSSMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
@ -41,11 +42,11 @@ Material:
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Texture: {fileID: 2800000, guid: a0fc9ee942198a6478ff47f039befb18, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Texture: {fileID: 2800000, guid: 819a395179b18454289278680ebc8b1b, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
@ -62,7 +63,7 @@ Material:
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _GlossMapScale: 1
- _GlossMapScale: 0.468
- _Glossiness: 0.5
- _GlossyReflections: 1
- _Metallic: 0

View File

@ -7,8 +7,8 @@ Material:
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Hologram
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_Name: Keyboard
m_Shader: {fileID: 4800000, guid: 545f09bbeef645047bfe01d94ee1d5e7, type: 3}
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4

View File

@ -0,0 +1,66 @@
Shader "RGB Keys" {
SubShader {
Pass {
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
// uniform float4x4 unity_ObjectToWorld;
// automatic definition of a Unity-specific uniform parameter
struct vertexInput {
float4 vertex : POSITION;
UNITY_VERTEX_INPUT_INSTANCE_ID
};
struct vertexOutput {
float4 pos : SV_POSITION;
float4 position_in_world_space : TEXCOORD0;
UNITY_VERTEX_OUTPUT_STEREO
};
vertexOutput vert(vertexInput input)
{
vertexOutput output;
UNITY_SETUP_INSTANCE_ID(input);
UNITY_INITIALIZE_OUTPUT(vertexOutput, output);
UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output);
output.pos = UnityObjectToClipPos(input.vertex);
output.position_in_world_space =
mul(unity_ObjectToWorld, input.vertex);
// transformation of input.vertex from object
// coordinates to world coordinates;
return output;
}
UNITY_DECLARE_SCREENSPACE_TEXTURE(_MainTex);
float3 ApplyHue(float t)
{
float3 result;
result.r = sin(t * 6.283185307179586476925286766559 + 0.0) * 0.5 + 0.5;
result.g = sin(t * 6.283185307179586476925286766559 + 2.0943951023931954923084289221863) * 0.5 + 0.5;
result.b = sin(t * 6.283185307179586476925286766559 + 4.1887902047863909846168578443727) * 0.5 + 0.5;
return result;
}
float4 frag(vertexOutput input) : COLOR
{
// computes the distance between the fragment position
// and the origin (the 4th coordinate should always be
// 1 for points).
UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input)
// fixed4 col = UNITY_SAMPLE_SCREENSPACE_TEXTURE(_MainTex, input.position_in_world_space);
//col = (ApplyHue(_Time.x*4.), 1.0);
return float4(ApplyHue(_Time.x*4.), 1.0);
//return float4(fmod(input.position_in_world_space.x,1), input.position_in_world_space.y % 1, input.position_in_world_space.z % 1, 1.0);
}
ENDCG
}
}
}

View File

@ -8,7 +8,7 @@ Material:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: red
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_Shader: {fileID: 4800000, guid: 545f09bbeef645047bfe01d94ee1d5e7, type: 3}
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4

View File

@ -1,5 +1,6 @@
fileFormatVersion: 2
guid: 7e271bd70c7d61e4bb2480882dfde12c
guid: 0c4061bc82225b74489c77b544450c46
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:

View File

@ -0,0 +1,81 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Material 1
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords:
- _METALLICGLOSSMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 10d02b1e0525ef94bbe20e0c383f4229, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 2800000, guid: 285b59c0e6707d343849f4ed9cb3906a, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
m_BuildTextureStacks: []

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 2a0f09ede532b4648b21b397e9605e22
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,86 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Material
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords:
- _METALLICGLOSSMAP
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 0aff3df6854d11b4599b809d07bd3ed2, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 2800000, guid: 33ef2905e65468c4a8bdbf7613c47218, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1cee05d88bdf344479c996b827ad201c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

BIN
Assets/Models/Blender/Lamp.blend (Stored with Git LFS)

Binary file not shown.

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1

Binary file not shown.

View File

@ -47,7 +47,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

BIN
Assets/Models/Blender/circuitboard.blend (Stored with Git LFS)

Binary file not shown.

View File

@ -3,7 +3,12 @@ guid: 49362df3fa9630d41bbc0bd46629331f
ModelImporter:
serializedVersion: 21300
internalIDToNameTable: []
externalObjects: {}
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Material
second: {fileID: 2100000, guid: 2a0f09ede532b4648b21b397e9605e22, type: 2}
materials:
materialImportMode: 2
materialName: 0
@ -32,7 +37,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

BIN
Assets/Models/Blender/hammer.blend (Stored with Git LFS)

Binary file not shown.

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
@ -42,8 +42,8 @@ ModelImporter:
sortHierarchyByName: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 0
importLights: 0
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
@ -51,7 +51,7 @@ ModelImporter:
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4

BIN
Assets/Models/Blender/keyboard.blend (Stored with Git LFS)

Binary file not shown.

View File

@ -3,82 +3,7 @@ guid: 6989f565337da034f98d0b5a0898d245
ModelImporter:
serializedVersion: 21300
internalIDToNameTable: []
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Base
second: {fileID: 2100000, guid: 79a99cd6e1eda5b4da339568fbbe83cb, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Dark Blue
second: {fileID: 2100000, guid: af5a3eb883f6921498004dd91777e663, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Floor Mat
second: {fileID: 2100000, guid: d0d840d43e731f648a481bd14ee948d0, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Green
second: {fileID: 2100000, guid: df65e44d2f170644fa98d23e93246560, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Key
second: {fileID: 2100000, guid: 85f929bc6eaffbd409c800bb37efb5a8, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Light Blue
second: {fileID: 2100000, guid: d41ffe0eeea31304fb95ae438d31d1a7, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Monitor
second: {fileID: 2100000, guid: 55ee7adf59734244fb3a72b3eb85431a, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: OrANGE
second: {fileID: 2100000, guid: 9e5c58735c7f1694480894da293f8be7, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Plaster07_3K
second: {fileID: 2100000, guid: 66ae63a7972e2ea4f90677daee77ad4c, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Yellow
second: {fileID: 2100000, guid: a99608b50f6483f4d9ca579e11e917e3, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: dark pink
second: {fileID: 2100000, guid: 53fad8cc2a72b6d4fb7da08c3234387a, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: lightest Blue
second: {fileID: 2100000, guid: d34fb393ef0930e4caeccf07c8dba3c6, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: pink
second: {fileID: 2100000, guid: bedf34ca6abfb0f478775889fe704757, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: purple
second: {fileID: 2100000, guid: d9ecc0625952a0642aeb8eaf6035f209, type: 2}
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: red
second: {fileID: 2100000, guid: 6aa4ab55e397ef343829a33464c473af, type: 2}
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
@ -115,10 +40,10 @@ ModelImporter:
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importVisibility: 0
importVisibility: 1
importBlendShapes: 1
importCameras: 0
importLights: 0
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
@ -145,7 +70,7 @@ ModelImporter:
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 1
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

BIN
Assets/Models/Blender/pliers.blend (Stored with Git LFS)

Binary file not shown.

View File

@ -32,7 +32,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1

View File

@ -47,7 +47,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

View File

@ -42,7 +42,7 @@ ModelImporter:
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5ec463f81825d9aeaa6ecb8b743edc26
guid: 180a0a6f3b6c8b8418fa5d9adf36c009
folderAsset: yes
DefaultImporter:
externalObjects: {}

BIN
Assets/Models/Blender/textures/brick.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,171 @@
fileFormatVersion: 2
guid: 4566d92e31a440b4c81fd6bdb100bf38
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Windows Store Apps
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/Models/Blender/textures/cobblestone.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,171 @@
fileFormatVersion: 2
guid: 634470330618bcb4ba7dfb94e222b036
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Windows Store Apps
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/Models/Blender/textures/creeper.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,171 @@
fileFormatVersion: 2
guid: 37e761954f614864896d10f41f802f51
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Windows Store Apps
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -11,6 +11,7 @@ GameObject:
- component: {fileID: 5290343921484584014}
- component: {fileID: 2991921771696845434}
- component: {fileID: 4695026017945986165}
- component: {fileID: 4401397110049476693}
m_Layer: 0
m_Name: Low-Poly Plant_
m_TagString: Untagged
@ -83,6 +84,19 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &4401397110049476693
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 999207089627997314}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.46242094, y: 0.4626884, z: 0.39726856}
m_Center: {x: -0.0006460771, y: -0.00008407235, z: 0.16253324}
--- !u!1 &5022219494863929666
GameObject:
m_ObjectHideFlags: 0
@ -92,6 +106,7 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 5690670490328783864}
- component: {fileID: 2962965480065639428}
m_Layer: 0
m_Name: IndoorPlant01
m_TagString: Untagged
@ -116,6 +131,22 @@ Transform:
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!54 &2962965480065639428
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5022219494863929666}
serializedVersion: 2
m_Mass: 1
m_Drag: 0
m_AngularDrag: 0.05
m_UseGravity: 1
m_IsKinematic: 0
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!1 &8294151951189356629
GameObject:
m_ObjectHideFlags: 0
@ -127,6 +158,7 @@ GameObject:
- component: {fileID: 1171425573176347497}
- component: {fileID: 13326192116113386}
- component: {fileID: 1971294045591473939}
- component: {fileID: 9016718629509090105}
m_Layer: 0
m_Name: Low-Poly Plant_.001
m_TagString: Untagged
@ -199,3 +231,17 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!136 &9016718629509090105
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8294151951189356629}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 0.30235288
m_Height: 1.0554479
m_Direction: 2
m_Center: {x: 0.028538108, y: -0.034282655, z: 0.7626465}

View File

@ -11,6 +11,8 @@ GameObject:
- component: {fileID: 5869846997090749818}
- component: {fileID: 7411298994668946143}
- component: {fileID: 4701421984937096725}
- component: {fileID: 2966059419517524822}
- component: {fileID: 8484002625320914911}
m_Layer: 0
m_Name: IndoorPlant02
m_TagString: Untagged
@ -86,3 +88,32 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!54 &2966059419517524822
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6502689968648656832}
serializedVersion: 2
m_Mass: 1
m_Drag: 0
m_AngularDrag: 0.05
m_UseGravity: 1
m_IsKinematic: 0
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!65 &8484002625320914911
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6502689968648656832}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 1.945082, y: 2.0702388, z: 6.223421}
m_Center: {x: -0.04922211, y: -0.01309447, z: 3.1023586}

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: b6e04371fb6e5d4488dd1167ef14299f
guid: cbdff3e37c153cc48b95d4374a38eed9
PrefabImporter:
externalObjects: {}
userData:

View File

@ -30,7 +30,7 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 905368309636460435}
m_RootOrder: 10
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!108 &6774370061540394056
Light:
@ -191,7 +191,7 @@ PrefabInstance:
objectReference: {fileID: 2100000, guid: ff3ca534769e99b428e81eb2a5dea4bf, type: 2}
- target: {fileID: -7029948723529949830, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_IsActive
value: 0
value: 1
objectReference: {fileID: 0}
- target: {fileID: -7029948723529949830, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_StaticEditorFlags
@ -261,6 +261,18 @@ PrefabInstance:
propertyPath: m_StaticEditorFlags
value: 2147483647
objectReference: {fileID: 0}
- target: {fileID: -1439730007547781893, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_CastShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: -1439730007547781893, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ImportantGI
value: 1
objectReference: {fileID: 0}
- target: {fileID: -1439730007547781893, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ReceiveShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: -1439730007547781893, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_Materials.Array.data[0]
value:
@ -349,6 +361,18 @@ PrefabInstance:
propertyPath: m_StaticEditorFlags
value: 2147483647
objectReference: {fileID: 0}
- target: {fileID: 1129496810705857465, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_CastShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1129496810705857465, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ImportantGI
value: 1
objectReference: {fileID: 0}
- target: {fileID: 1129496810705857465, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ReceiveShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1129496810705857465, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_Materials.Array.data[0]
value:
@ -385,10 +409,34 @@ PrefabInstance:
propertyPath: m_StaticEditorFlags
value: 1
objectReference: {fileID: 0}
- target: {fileID: 7071182760956848314, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_CastShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7071182760956848314, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ImportantGI
value: 1
objectReference: {fileID: 0}
- target: {fileID: 7071182760956848314, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ReceiveShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7071182760956848314, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_Materials.Array.data[0]
value:
objectReference: {fileID: 2100000, guid: 270dc0d593aecc2458523ba699539374, type: 2}
- target: {fileID: 7202271454713460447, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_CastShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7202271454713460447, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ImportantGI
value: 1
objectReference: {fileID: 0}
- target: {fileID: 7202271454713460447, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_ReceiveShadows
value: 0
objectReference: {fileID: 0}
- target: {fileID: 7202271454713460447, guid: 2d215d829a7ab10408170d7036d2728a, type: 3}
propertyPath: m_Materials.Array.data[0]
value:

View File

@ -155,3 +155,97 @@ BoxCollider:
serializedVersion: 2
m_Size: {x: 2.3920648, y: 34.231796, z: 66.83912}
m_Center: {x: 0.060222983, y: 23.6941, z: -0.1438942}
--- !u!114 &-824593605154785917
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9020478203752881838}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- monitor (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: ac3246a4a9ba7544382304d07f641347, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1
--- !u!114 &3057425583810886374
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9020478203752881838}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 0
hideSkeletonOnAttach: 0
hideControllerOnAttach: 0
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!114 &5131825721450230886
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 9020478203752881838}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0

View File

@ -41,7 +41,7 @@ MeshFilter:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6605845652538914080}
m_Mesh: {fileID: -3796887150266652070, guid: 2c680f33e3b2a354795f5bb9d9c1f65c, type: 3}
m_Mesh: {fileID: 6605384932166185756, guid: 2c680f33e3b2a354795f5bb9d9c1f65c, type: 3}
--- !u!23 &9198014314391204201
MeshRenderer:
m_ObjectHideFlags: 0
@ -98,8 +98,8 @@ BoxCollider:
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.4912855, y: 0.82858396, z: 0.2350294}
m_Center: {x: 0.009628491, y: -0.010703472, z: 0.12372286}
m_Size: {x: 0.45713696, y: 0.82858396, z: 0.23502941}
m_Center: {x: -0.0074458206, y: -0.010703454, z: 0.12372286}
--- !u!1 &6637160171134098244
GameObject:
m_ObjectHideFlags: 0
@ -110,6 +110,12 @@ GameObject:
m_Component:
- component: {fileID: 6291597597410968062}
- component: {fileID: 3216914102031913610}
- component: {fileID: -6273774318473183326}
- component: {fileID: 7630103447095755543}
- component: {fileID: -4025371315460726001}
- component: {fileID: 3935599548195046469}
- component: {fileID: 2858763493006575941}
- component: {fileID: -8848150202108019884}
m_Layer: 0
m_Name: Mouse
m_TagString: Untagged
@ -149,3 +155,191 @@ Rigidbody:
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!114 &-6273774318473183326
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6637160171134098244}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0
--- !u!114 &7630103447095755543
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6637160171134098244}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 0
hideSkeletonOnAttach: 0
hideControllerOnAttach: 1
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!114 &-4025371315460726001
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6637160171134098244}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- Mouse (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: 738f5669843d15d4fb1bf788c062ae7d, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1
--- !u!114 &3935599548195046469
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6637160171134098244}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: ffefbea063cab884ca33e5a449e5c22c, type: 3}
m_Name:
m_EditorClassIdentifier:
attachmentFlags: 341
attachmentOffset: {fileID: 0}
catchingSpeedThreshold: -1
releaseVelocityStyle: 3
releaseVelocityTimeOffset: -0.011
scaleReleaseVelocity: 1.1
scaleReleaseVelocityThreshold: -1
scaleReleaseVelocityCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
restoreOriginalParent: 0
onPickUp:
m_PersistentCalls:
m_Calls: []
onDetachFromHand:
m_PersistentCalls:
m_Calls: []
onHeldUpdate:
m_PersistentCalls:
m_Calls: []
interactable: {fileID: 0}
--- !u!114 &2858763493006575941
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6637160171134098244}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: c4153b26428ccf041950b92c057812a3, type: 3}
m_Name:
m_EditorClassIdentifier:
onHandHoverBegin:
m_PersistentCalls:
m_Calls: []
onHandHoverEnd:
m_PersistentCalls:
m_Calls: []
onAttachedToHand:
m_PersistentCalls:
m_Calls: []
onDetachedFromHand:
m_PersistentCalls:
m_Calls: []
--- !u!114 &-8848150202108019884
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6637160171134098244}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 037de2161ddbc6f4e96de7dd85ea6686, type: 3}
m_Name:
m_EditorClassIdentifier:
targetCollider: {fileID: 0}
spawnObjectOnCollision: {fileID: 1000012514662164, guid: ada35c93b68ad004d9b4e7bd686cf189, type: 3}
colorSpawnedObject: 1
destroyOnTargetCollision: 1

View File

@ -11,6 +11,7 @@ GameObject:
- component: {fileID: 5569992116628908473}
- component: {fileID: 2472856654148928913}
- component: {fileID: 3727303620116880137}
- component: {fileID: 2376179122941027147}
m_Layer: 0
m_Name: UM3_UM3_Ultimaker
m_TagString: Untagged
@ -83,3 +84,15 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!114 &2376179122941027147
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6042578527978222026}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 7310167259df75745b825087bf4c8de0, type: 3}
m_Name:
m_EditorClassIdentifier:

View File

@ -186,38 +186,6 @@ MeshCollider:
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: -3183339516574119901, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
--- !u!114 &1204935884
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 749501648960564542}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d2fe5546f775c47d2820aa5e8a715f53, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"nest":{"source":"Macro","macro":0,"embed":null}}'
_objectReferences:
- {fileID: 11400000, guid: 167792fa91240014fb8100d8c0b8e71c, type: 2}
--- !u!114 &1204935885
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 749501648960564542}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e741851cba3ad425c91ecf922cc6b379, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"declarations":{"Kind":"Object","collection":{"$content":[{"name":"OnGround","value":{"$content":false,"$type":"System.Boolean"},"typeHandle":{"Identification":"System.Boolean,
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089","$version":"A"},"$version":"A"}],"$version":"A"},"$version":"A"}}'
_objectReferences: []
--- !u!1 &1941168049300974042 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 6085450026611476016, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
@ -256,38 +224,6 @@ MeshCollider:
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: -3183339516574119901, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
--- !u!114 &1243286690
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2398297990381228278}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d2fe5546f775c47d2820aa5e8a715f53, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"nest":{"source":"Macro","macro":0,"embed":null}}'
_objectReferences:
- {fileID: 11400000, guid: 167792fa91240014fb8100d8c0b8e71c, type: 2}
--- !u!114 &1243286695
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2398297990381228278}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e741851cba3ad425c91ecf922cc6b379, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"declarations":{"Kind":"Object","collection":{"$content":[{"name":"OnGround","value":{"$content":false,"$type":"System.Boolean"},"typeHandle":{"Identification":"System.Boolean,
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089","$version":"A"},"$version":"A"}],"$version":"A"},"$version":"A"}}'
_objectReferences: []
--- !u!1 &2813751424733417823 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: -1616859871024398667, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
@ -325,110 +261,11 @@ MeshCollider:
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: -3183339516574119901, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
--- !u!114 &1224994882
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3387733359169555233}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d2fe5546f775c47d2820aa5e8a715f53, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"nest":{"source":"Macro","macro":0,"embed":null}}'
_objectReferences:
- {fileID: 11400000, guid: 167792fa91240014fb8100d8c0b8e71c, type: 2}
--- !u!114 &1224994887
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3387733359169555233}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e741851cba3ad425c91ecf922cc6b379, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"declarations":{"Kind":"Object","collection":{"$content":[{"name":"OnGround","value":{"$content":false,"$type":"System.Boolean"},"typeHandle":{"Identification":"System.Boolean,
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089","$version":"A"},"$version":"A"}],"$version":"A"},"$version":"A"}}'
_objectReferences: []
--- !u!1 &4774624094512517819 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
m_PrefabInstance: {fileID: 5657566221092892650}
m_PrefabAsset: {fileID: 0}
--- !u!54 &1958800420
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4774624094512517819}
serializedVersion: 2
m_Mass: 10
m_Drag: 0
m_AngularDrag: 0.05
m_UseGravity: 1
m_IsKinematic: 0
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!114 &1958800415
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4774624094512517819}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d2fe5546f775c47d2820aa5e8a715f53, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"nest":{"source":"Macro","macro":0,"embed":null}}'
_objectReferences:
- {fileID: 11400000, guid: 0c540d3c7eee4e0469db633fd590172c, type: 2}
--- !u!114 &1958800416
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4774624094512517819}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e741851cba3ad425c91ecf922cc6b379, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"declarations":{"Kind":"Object","collection":{"$content":[{"name":"Direction","value":{"x":10.0,"y":-0.06,"z":0.0,"$type":"UnityEngine.Vector3"},"typeHandle":{"Identification":"UnityEngine.Vector3,
UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null","$version":"A"},"$version":"A"},{"name":"Grounded_Wheels","value":{"$content":[],"$type":"System.Collections.Generic.List`1[[UnityEngine.GameObject,
UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]"},"typeHandle":{"Identification":"System.Collections.Generic.List`1[[UnityEngine.GameObject,
UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]],
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089","$version":"A"},"$version":"A"}],"$version":"A"},"$version":"A"}}'
_objectReferences: []
--- !u!114 &1958800417
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4774624094512517819}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d2fe5546f775c47d2820aa5e8a715f53, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"nest":{"source":"Macro","macro":0,"embed":null}}'
_objectReferences:
- {fileID: 11400000, guid: 0c540d3c7eee4e0469db633fd590172c, type: 2}
--- !u!114 &2140801147600063524
MonoBehaviour:
m_ObjectHideFlags: 0
@ -489,38 +326,6 @@ MeshCollider:
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: -3183339516574119901, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
--- !u!114 &2133825191
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7629644934281361513}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d2fe5546f775c47d2820aa5e8a715f53, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"nest":{"source":"Macro","macro":0,"embed":null}}'
_objectReferences:
- {fileID: 11400000, guid: 167792fa91240014fb8100d8c0b8e71c, type: 2}
--- !u!114 &2133825192
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7629644934281361513}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e741851cba3ad425c91ecf922cc6b379, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"declarations":{"Kind":"Object","collection":{"$content":[{"name":"OnGround","value":{"$content":false,"$type":"System.Boolean"},"typeHandle":{"Identification":"System.Boolean,
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089","$version":"A"},"$version":"A"}],"$version":"A"},"$version":"A"}}'
_objectReferences: []
--- !u!1 &7802258548554580668 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: -6718097069914690218, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
@ -540,35 +345,3 @@ MeshCollider:
m_Convex: 1
m_CookingOptions: 30
m_Mesh: {fileID: -3183339516574119901, guid: 61dd8047e5e66dc4db5c150abe38beae, type: 3}
--- !u!114 &969457602
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7802258548554580668}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d2fe5546f775c47d2820aa5e8a715f53, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"nest":{"source":"Macro","macro":0,"embed":null}}'
_objectReferences:
- {fileID: 11400000, guid: 167792fa91240014fb8100d8c0b8e71c, type: 2}
--- !u!114 &969457603
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7802258548554580668}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e741851cba3ad425c91ecf922cc6b379, type: 3}
m_Name:
m_EditorClassIdentifier:
_data:
_json: '{"declarations":{"Kind":"Object","collection":{"$content":[{"name":"OnGround","value":{"$content":false,"$type":"System.Boolean"},"typeHandle":{"Identification":"System.Boolean,
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089","$version":"A"},"$version":"A"}],"$version":"A"},"$version":"A"}}'
_objectReferences: []

View File

@ -155,3 +155,97 @@ BoxCollider:
serializedVersion: 2
m_Size: {x: 10.236521, y: 0.1180733, z: 10.341999}
m_Center: {x: -0.08280562, y: 0.026818777, z: 0.02435037}
--- !u!114 &-4431022277672732694
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5070182670462689044}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0
--- !u!114 &4197128717957136542
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5070182670462689044}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- circuitBoard (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: a796cb24d8f897f4ba19d9f73f93594d, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1
--- !u!114 &5146560493390744643
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5070182670462689044}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 1
hideSkeletonOnAttach: 0
hideControllerOnAttach: 0
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0

View File

@ -0,0 +1,443 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &824263321116495128
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 7346427678238726441}
- component: {fileID: 8336471965619010397}
- component: {fileID: 6501772055063754183}
- component: {fileID: 4942355061758732446}
m_Layer: 0
m_Name: Cylinder
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &7346427678238726441
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 824263321116495128}
m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
m_LocalPosition: {x: 0, y: -8.117916, z: 0}
m_LocalScale: {x: 1.327, y: 1.327, z: 11.943}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 4486656134198732019}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &8336471965619010397
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 824263321116495128}
m_Mesh: {fileID: 2534964839176971238, guid: 9c6676177a91c284587cc7cc7945291e, type: 3}
--- !u!23 &6501772055063754183
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 824263321116495128}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: -6478536213147159724, guid: 9c6676177a91c284587cc7cc7945291e, type: 3}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!136 &4942355061758732446
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 824263321116495128}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 0.89
m_Height: 2.0881348
m_Direction: 2
m_Center: {x: 0, y: 4.3881283e-16, z: 0.015327733}
--- !u!1 &3821336543567445577
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 4486656134198732019}
- component: {fileID: 2614228687595584918}
- component: {fileID: 5243535338284627606}
- component: {fileID: 5268342958506644195}
- component: {fileID: 888201809050694435}
- component: {fileID: 577636041138724377}
- component: {fileID: 3825121798803051441}
- component: {fileID: 5355251579501427505}
m_Layer: 0
m_Name: hammer 1
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &4486656134198732019
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -0.8882, y: 1.8316, z: -0.3722}
m_LocalScale: {x: 0.012410344, y: 0.012410344, z: 0.012410344}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 99912826031381173}
- {fileID: 7346427678238726441}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!54 &2614228687595584918
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
serializedVersion: 2
m_Mass: 1
m_Drag: 0
m_AngularDrag: 0.05
m_UseGravity: 1
m_IsKinematic: 0
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 1
--- !u!114 &5243535338284627606
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0
--- !u!114 &5268342958506644195
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 0
hideSkeletonOnAttach: 0
hideControllerOnAttach: 1
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!114 &888201809050694435
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- Hammer (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: 547dd222068fd3649b8088509288a6b2, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1
--- !u!114 &577636041138724377
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: ffefbea063cab884ca33e5a449e5c22c, type: 3}
m_Name:
m_EditorClassIdentifier:
attachmentFlags: 341
attachmentOffset: {fileID: 0}
catchingSpeedThreshold: -1
releaseVelocityStyle: 3
releaseVelocityTimeOffset: -0.011
scaleReleaseVelocity: 1.1
scaleReleaseVelocityThreshold: -1
scaleReleaseVelocityCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
restoreOriginalParent: 0
onPickUp:
m_PersistentCalls:
m_Calls: []
onDetachFromHand:
m_PersistentCalls:
m_Calls: []
onHeldUpdate:
m_PersistentCalls:
m_Calls: []
interactable: {fileID: 0}
--- !u!114 &3825121798803051441
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: c4153b26428ccf041950b92c057812a3, type: 3}
m_Name:
m_EditorClassIdentifier:
onHandHoverBegin:
m_PersistentCalls:
m_Calls: []
onHandHoverEnd:
m_PersistentCalls:
m_Calls: []
onAttachedToHand:
m_PersistentCalls:
m_Calls: []
onDetachedFromHand:
m_PersistentCalls:
m_Calls: []
--- !u!114 &5355251579501427505
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3821336543567445577}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 037de2161ddbc6f4e96de7dd85ea6686, type: 3}
m_Name:
m_EditorClassIdentifier:
targetCollider: {fileID: 0}
spawnObjectOnCollision: {fileID: 1000012514662164, guid: ada35c93b68ad004d9b4e7bd686cf189, type: 3}
colorSpawnedObject: 1
destroyOnTargetCollision: 1
--- !u!1 &4692477033812591368
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 99912826031381173}
- component: {fileID: 1479852372980070552}
- component: {fileID: 5940549584530792713}
- component: {fileID: 509878056762323840}
m_Layer: 0
m_Name: Cube.001
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &99912826031381173
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4692477033812591368}
m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071067}
m_LocalPosition: {x: 0, y: 2.48, z: 0.06175232}
m_LocalScale: {x: 1.4781778, y: 1.4781778, z: 1.4781778}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 4486656134198732019}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &1479852372980070552
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4692477033812591368}
m_Mesh: {fileID: 4493585093827132993, guid: 9c6676177a91c284587cc7cc7945291e, type: 3}
--- !u!23 &5940549584530792713
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4692477033812591368}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2782983888940816016, guid: 9c6676177a91c284587cc7cc7945291e, type: 3}
- {fileID: -3846018093981099296, guid: 9c6676177a91c284587cc7cc7945291e, type: 3}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!136 &509878056762323840
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4692477033812591368}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 1.1895691
m_Height: 7.2362013
m_Direction: 1
m_Center: {x: 0, y: -0.78, z: -0.01}

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: a5ad10e8001991843904af2b450a3720
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -104,3 +104,97 @@ CapsuleCollider:
m_Height: 5.028683
m_Direction: 1
m_Center: {x: -0.0032335243, y: 0, z: 0.008526197}
--- !u!114 &-5493251244395968600
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6470350642986323071}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 0
hideSkeletonOnAttach: 0
hideControllerOnAttach: 0
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!114 &-556491359271716455
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6470350642986323071}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0
--- !u!114 &793090644047326532
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6470350642986323071}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- Led (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: ac2c30b849eac3f46b37278e591e29e7, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1

View File

@ -1,5 +1,97 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &7294306213817841913
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 5051974099058533860}
- component: {fileID: 1326149147513620089}
m_Layer: 0
m_Name: GameObject
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &5051974099058533860
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7294306213817841913}
m_LocalRotation: {x: -0, y: -0.000000033527616, z: -0.060163762, w: 0.99818856}
m_LocalPosition: {x: 0.34739798, y: -0.3021596, z: 0.00000014764869}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 2459765496072189932}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: -6.898}
--- !u!136 &1326149147513620089
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7294306213817841913}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 1.8321849
m_Height: 33.520123
m_Direction: 1
m_Center: {x: -1.8588488, y: -3.0329907, z: -0.18795842}
--- !u!1 &7811542833698616349
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 90472166206718251}
- component: {fileID: 6183866133075204637}
m_Layer: 0
m_Name: GameObject
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &90472166206718251
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7811542833698616349}
m_LocalRotation: {x: 0, y: 0, z: 0.060160033, w: 0.99818873}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 3034737219805177363}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 6.898}
--- !u!136 &6183866133075204637
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7811542833698616349}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 1.3482766
m_Height: 22.762789
m_Direction: 1
m_Center: {x: 1.0752505, y: -2.362289, z: -0.18795864}
--- !u!1001 &1286279349039090530
PrefabInstance:
m_ObjectHideFlags: 0
@ -13,27 +105,27 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalScale.x
value: 0.10131945
value: 0.2
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalScale.y
value: 0.10131945
value: 0.2
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalScale.z
value: 0.10131945
value: 0.2
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalPosition.x
value: -0.9151
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalPosition.y
value: 1.7806
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalPosition.z
value: -0.41508
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalRotation.w
@ -63,69 +155,24 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_ConstrainProportionsScale
value: 1
objectReference: {fileID: 0}
- target: {fileID: -5477749408508380018, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalPosition.x
value: 0.015
objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_Name
value: pliers
objectReference: {fileID: 0}
- target: {fileID: 4306643203051859313, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
propertyPath: m_LocalPosition.x
value: 0.015000224
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
--- !u!1 &301319348876434176 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: -7640558969779515294, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
m_PrefabInstance: {fileID: 1286279349039090530}
m_PrefabAsset: {fileID: 0}
--- !u!136 &7688451815724401248
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 301319348876434176}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 0.9883504
m_Height: 11.624478
m_Direction: 2
m_Center: {x: 0.0035420142, y: 0.5332932, z: 3.5446324}
--- !u!1 &940052642335090451 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: -7146521406498821007, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
m_PrefabInstance: {fileID: 1286279349039090530}
m_PrefabAsset: {fileID: 0}
--- !u!136 &2602164159852921622
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 940052642335090451}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 0.975318
m_Height: 11.624478
m_Direction: 2
m_Center: {x: 0.016420316, y: -0.49450693, z: 3.5446322}
--- !u!1 &1897611713971714310 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: -8391222552659086748, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
m_PrefabInstance: {fileID: 1286279349039090530}
m_PrefabAsset: {fileID: 0}
--- !u!136 &1069054466478590149
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1897611713971714310}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 2.4462943
m_Height: 18.52887
m_Direction: 2
m_Center: {x: -2.3329592, y: -8.697551e-15, z: -3.736883}
--- !u!1 &2096603271310898739 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
@ -147,22 +194,201 @@ Rigidbody:
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!1 &7570475958632844146 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: -516098083770646512, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
m_PrefabInstance: {fileID: 1286279349039090530}
m_PrefabAsset: {fileID: 0}
--- !u!136 &8228600816443438243
CapsuleCollider:
--- !u!114 &-7256534349025035699
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 7570475958632844146}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_GameObject: {fileID: 2096603271310898739}
m_Enabled: 1
m_Radius: 2.4462943
m_Height: 18.52887
m_Direction: 2
m_Center: {x: 2.5, y: -8.697551e-15, z: -3.736883}
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: c4153b26428ccf041950b92c057812a3, type: 3}
m_Name:
m_EditorClassIdentifier:
onHandHoverBegin:
m_PersistentCalls:
m_Calls: []
onHandHoverEnd:
m_PersistentCalls:
m_Calls: []
onAttachedToHand:
m_PersistentCalls:
m_Calls: []
onDetachedFromHand:
m_PersistentCalls:
m_Calls: []
--- !u!114 &-4994144242778264270
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2096603271310898739}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 037de2161ddbc6f4e96de7dd85ea6686, type: 3}
m_Name:
m_EditorClassIdentifier:
targetCollider: {fileID: 0}
spawnObjectOnCollision: {fileID: 1000012514662164, guid: ada35c93b68ad004d9b4e7bd686cf189, type: 3}
colorSpawnedObject: 1
destroyOnTargetCollision: 1
--- !u!114 &3435628847850333870
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2096603271310898739}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 0
hideSkeletonOnAttach: 0
hideControllerOnAttach: 0
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!114 &3960184586102675806
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2096603271310898739}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- Pliers (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: 6ab30d9290ee9ef429794473765f9019, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1
--- !u!114 &4983244824993224224
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2096603271310898739}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: ffefbea063cab884ca33e5a449e5c22c, type: 3}
m_Name:
m_EditorClassIdentifier:
attachmentFlags: 341
attachmentOffset: {fileID: 0}
catchingSpeedThreshold: -1
releaseVelocityStyle: 3
releaseVelocityTimeOffset: -0.011
scaleReleaseVelocity: 1.1
scaleReleaseVelocityThreshold: -1
scaleReleaseVelocityCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
restoreOriginalParent: 0
onPickUp:
m_PersistentCalls:
m_Calls: []
onDetachFromHand:
m_PersistentCalls:
m_Calls: []
onHeldUpdate:
m_PersistentCalls:
m_Calls: []
interactable: {fileID: 0}
--- !u!114 &9084598848516749552
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2096603271310898739}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0
--- !u!4 &2459765496072189932 stripped
Transform:
m_CorrespondingSourceObject: {fileID: -5477749408508380018, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
m_PrefabInstance: {fileID: 1286279349039090530}
m_PrefabAsset: {fileID: 0}
--- !u!4 &3034737219805177363 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 4306643203051859313, guid: d8f1959686ece1243846f554fdcd7273, type: 3}
m_PrefabInstance: {fileID: 1286279349039090530}
m_PrefabAsset: {fileID: 0}

View File

@ -1,6 +1,6 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1001 &6672334254378066
--- !u!1001 &1645536414922509306
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
@ -13,7 +13,7 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.x
value: 0.87347186
value: 0.94849885
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.y
@ -21,7 +21,7 @@ PrefabInstance:
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.z
value: -0.47286284
value: -0.30144894
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalRotation.w
@ -51,24 +51,92 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: -7370156802671013846, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.x
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -7370156802671013846, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.y
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -7370156802671013846, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.z
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -7370156802671013846, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.x
value: 0.029693
objectReference: {fileID: 0}
- target: {fileID: -7370156802671013846, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.y
value: -0.000085374
objectReference: {fileID: 0}
- target: {fileID: -7370156802671013846, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.z
value: -0.0000016157
objectReference: {fileID: 0}
- target: {fileID: -6326432011286397282, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.x
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -6326432011286397282, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.y
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -6326432011286397282, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.z
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -6326432011286397282, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.x
value: -0.021575
objectReference: {fileID: 0}
- target: {fileID: -6326432011286397282, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.y
value: 0.00018697
objectReference: {fileID: 0}
- target: {fileID: -6326432011286397282, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.z
value: 0.0000068587
objectReference: {fileID: 0}
- target: {fileID: -998398479812398829, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.x
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -998398479812398829, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.y
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -998398479812398829, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalScale.z
value: 1.1768
objectReference: {fileID: 0}
- target: {fileID: -998398479812398829, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.x
value: -0.044928
objectReference: {fileID: 0}
- target: {fileID: -998398479812398829, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_LocalPosition.y
value: -0.000086029
objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
propertyPath: m_Name
value: screwdriver
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
--- !u!1 &925170461409751299 stripped
--- !u!1 &1880102723515332267 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
m_PrefabInstance: {fileID: 6672334254378066}
m_PrefabInstance: {fileID: 1645536414922509306}
m_PrefabAsset: {fileID: 0}
--- !u!54 &7366338431045245879
--- !u!54 &3030814555091099886
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 925170461409751299}
m_GameObject: {fileID: 1880102723515332267}
serializedVersion: 2
m_Mass: 1
m_Drag: 0
@ -78,17 +146,135 @@ Rigidbody:
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!136 &2436006181550054090
--- !u!114 &-7726799899309593108
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1880102723515332267}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0
--- !u!114 &1369094586809578807
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1880102723515332267}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 1
hideSkeletonOnAttach: 0
hideControllerOnAttach: 0
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!114 &1904605114195921641
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1880102723515332267}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- Screwdriver (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: b70bd50f52391f24ca4f813618eba453, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1
--- !u!1 &3509871167403709943 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 2766212503428324877, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
m_PrefabInstance: {fileID: 1645536414922509306}
m_PrefabAsset: {fileID: 0}
--- !u!136 &4813865525065741618
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 925170461409751299}
m_GameObject: {fileID: 3509871167403709943}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 0.012368143
m_Height: 0.15233302
m_Radius: 0.0121972
m_Height: 0.08470684
m_Direction: 0
m_Center: {x: 0.011099577, y: 0.00017076731, z: 0}
m_Center: {x: -0.00037118793, y: 0.00042753483, z: 0.00021821634}
--- !u!1 &5266742986661508918 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 6899836172652002508, guid: 21eef4e05fdb69a4a8aa0e4ef1007bab, type: 3}
m_PrefabInstance: {fileID: 1645536414922509306}
m_PrefabAsset: {fileID: 0}
--- !u!136 &4491952877952344357
CapsuleCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5266742986661508918}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
m_Radius: 0.001852781
m_Height: 0.07685834
m_Direction: 0
m_Center: {x: -0.008781582, y: -0.00006752438, z: -0.000000014901161}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 29b6d28473b6e3c48956c3f497fffd96
guid: c1bebd6efa306204bb0978afc704a746
PrefabImporter:
externalObjects: {}
userData:

View File

@ -11,7 +11,6 @@ GameObject:
- component: {fileID: 4373656613854321104}
- component: {fileID: 7637922860383089311}
- component: {fileID: 4348504127986111419}
- component: {fileID: 1318798626810527609}
m_Layer: 0
m_Name: Plank
m_TagString: Untagged
@ -84,19 +83,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &1318798626810527609
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 151859614629998926}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 2, z: 2.0000002}
m_Center: {x: 0, y: 1, z: 0}
--- !u!1 &817123034334832562
GameObject:
m_ObjectHideFlags: 0
@ -108,7 +94,6 @@ GameObject:
- component: {fileID: 6292331777379627211}
- component: {fileID: 3753834416908518541}
- component: {fileID: 5629230511514222605}
- component: {fileID: 4058928967459523749}
m_Layer: 0
m_Name: Plank.001
m_TagString: Untagged
@ -181,19 +166,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &4058928967459523749
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 817123034334832562}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 2, z: 2.0000002}
m_Center: {x: 0, y: 36.333344, z: 0}
--- !u!1 &1565016516766354980
GameObject:
m_ObjectHideFlags: 0
@ -205,10 +177,6 @@ GameObject:
- component: {fileID: 5583610603562163468}
- component: {fileID: 3292573091458175095}
- component: {fileID: 9057493809775734115}
- component: {fileID: 6160030466470075121}
- component: {fileID: 7748589321633903647}
- component: {fileID: 7498499362672734371}
- component: {fileID: 5666846177935578967}
m_Layer: 0
m_Name: Case.003
m_TagString: Untagged
@ -281,58 +249,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &6160030466470075121
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1565016516766354980}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33332, z: 2.0000002}
m_Center: {x: 0.99, y: 124.66672, z: 0}
--- !u!65 &7748589321633903647
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1565016516766354980}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33332, z: 2.0000002}
m_Center: {x: -0.99, y: 124.66672, z: 0}
--- !u!65 &7498499362672734371
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1565016516766354980}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33332, z: 0.02}
m_Center: {x: 0, y: 124.66672, z: 0.99}
--- !u!65 &5666846177935578967
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1565016516766354980}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33332, z: 0.02}
m_Center: {x: 0, y: 124.66672, z: -0.99}
--- !u!1 &2512467202128557025
GameObject:
m_ObjectHideFlags: 0
@ -342,7 +258,10 @@ GameObject:
serializedVersion: 6
m_Component:
- component: {fileID: 2996515769384266075}
- component: {fileID: 132909661356426889}
- component: {fileID: 2709258200819239477}
- component: {fileID: -1376262336802859445}
- component: {fileID: 6247588457019656027}
- component: {fileID: 6645681851711596344}
m_Layer: 0
m_Name: shelf_empty
m_TagString: Untagged
@ -357,10 +276,10 @@ Transform:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2512467202128557025}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalRotation: {x: -0.7071068, y: 0, z: 0, w: 0.7071068}
m_LocalPosition: {x: -3.52, y: 1, z: 3.092}
m_LocalScale: {x: 0.5, y: 0.02, z: 12}
m_ConstrainProportionsScale: 0
m_LocalScale: {x: 0.5, y: 0.5, z: 0.5}
m_ConstrainProportionsScale: 1
m_Children:
- {fileID: 8447632888168588931}
- {fileID: 202432281068539332}
@ -373,8 +292,72 @@ Transform:
- {fileID: 5613503160827514234}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!54 &132909661356426889
m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0}
--- !u!114 &2709258200819239477
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2512467202128557025}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 7310167259df75745b825087bf4c8de0, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!114 &-1376262336802859445
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2512467202128557025}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 1
hideSkeletonOnAttach: 0
hideControllerOnAttach: 0
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!54 &6247588457019656027
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
@ -382,7 +365,7 @@ Rigidbody:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2512467202128557025}
serializedVersion: 2
m_Mass: 1
m_Mass: 30
m_Drag: 0
m_AngularDrag: 0.05
m_UseGravity: 1
@ -390,6 +373,19 @@ Rigidbody:
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!65 &6645681851711596344
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2512467202128557025}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2.017374, y: 1.4093293, z: 4.320848}
m_Center: {x: -0.0065603256, y: 0.012041539, z: 2.1498158}
--- !u!1 &2602268122132683364
GameObject:
m_ObjectHideFlags: 0
@ -401,10 +397,6 @@ GameObject:
- component: {fileID: 202432281068539332}
- component: {fileID: 4105538804836527084}
- component: {fileID: 8099980996366375314}
- component: {fileID: 1860166316009346449}
- component: {fileID: 5314367847807052730}
- component: {fileID: 7288559417510018501}
- component: {fileID: 6975802239949089571}
m_Layer: 0
m_Name: Case.001
m_TagString: Untagged
@ -477,58 +469,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &1860166316009346449
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2602268122132683364}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33333, z: 2.0000002}
m_Center: {x: 0.99, y: 54.000023, z: 0}
--- !u!65 &5314367847807052730
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2602268122132683364}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33333, z: 2.0000002}
m_Center: {x: -0.99, y: 54.000023, z: 0}
--- !u!65 &7288559417510018501
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2602268122132683364}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33333, z: 0.02}
m_Center: {x: 0, y: 54.000023, z: 0.99}
--- !u!65 &6975802239949089571
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2602268122132683364}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33333, z: 0.02}
m_Center: {x: 0, y: 54.000023, z: -0.99}
--- !u!1 &2884046772418411006
GameObject:
m_ObjectHideFlags: 0
@ -540,7 +480,6 @@ GameObject:
- component: {fileID: 1696234186987782576}
- component: {fileID: 6763664956820690827}
- component: {fileID: 362197538518680714}
- component: {fileID: 8160727578668804248}
m_Layer: 0
m_Name: Plank.002
m_TagString: Untagged
@ -613,19 +552,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &8160727578668804248
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2884046772418411006}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 2, z: 2.0000002}
m_Center: {x: 0, y: 71.666695, z: 0}
--- !u!1 &3615767594520240237
GameObject:
m_ObjectHideFlags: 0
@ -637,10 +563,6 @@ GameObject:
- component: {fileID: 7890210162564769367}
- component: {fileID: 392810343679152641}
- component: {fileID: 1511596586900661309}
- component: {fileID: 408986790971302572}
- component: {fileID: 5036578118453262057}
- component: {fileID: 2381396890185052033}
- component: {fileID: 2042963223716183304}
m_Layer: 0
m_Name: Case.002
m_TagString: Untagged
@ -713,58 +635,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &408986790971302572
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3615767594520240237}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33332, z: 2.0000002}
m_Center: {x: 0.99, y: 89.333374, z: 0}
--- !u!65 &5036578118453262057
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3615767594520240237}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33333, z: 2.0000002}
m_Center: {x: -0.99, y: 89.333374, z: 0}
--- !u!65 &2381396890185052033
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3615767594520240237}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33333, z: 0.02}
m_Center: {x: 0, y: 89.333374, z: 0.99}
--- !u!65 &2042963223716183304
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3615767594520240237}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33333, z: 0.02}
m_Center: {x: 0, y: 89.333374, z: -0.99}
--- !u!1 &4983300697117577925
GameObject:
m_ObjectHideFlags: 0
@ -776,10 +646,6 @@ GameObject:
- component: {fileID: 8447632888168588931}
- component: {fileID: 1399714457888884384}
- component: {fileID: 1234959651347419651}
- component: {fileID: 4840747266804622323}
- component: {fileID: 7689395428113402843}
- component: {fileID: 5603078500253086344}
- component: {fileID: 7083916509750795341}
m_Layer: 0
m_Name: Case
m_TagString: Untagged
@ -852,58 +718,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &4840747266804622323
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4983300697117577925}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33333, z: 2.0000002}
m_Center: {x: 0.99, y: 18.66668, z: 0}
--- !u!65 &7689395428113402843
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4983300697117577925}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 0.02, y: 33.33333, z: 2.0000002}
m_Center: {x: -0.99, y: 18.66668, z: 0}
--- !u!65 &5603078500253086344
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4983300697117577925}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33333, z: 0.02}
m_Center: {x: 0, y: 18.66668, z: 0.99}
--- !u!65 &7083916509750795341
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 4983300697117577925}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 33.33333, z: 0.02}
m_Center: {x: 0, y: 18.66668, z: -0.99}
--- !u!1 &6640510962220684130
GameObject:
m_ObjectHideFlags: 0
@ -915,7 +729,6 @@ GameObject:
- component: {fileID: 2781697966167280641}
- component: {fileID: 3020234109186093194}
- component: {fileID: 2847253363038930626}
- component: {fileID: 5347817316691360900}
m_Layer: 0
m_Name: Plank.003
m_TagString: Untagged
@ -988,19 +801,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &5347817316691360900
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6640510962220684130}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 2, z: 2.0000002}
m_Center: {x: 0, y: 107.00004, z: 0}
--- !u!1 &8712456045789040059
GameObject:
m_ObjectHideFlags: 0
@ -1012,7 +812,6 @@ GameObject:
- component: {fileID: 5613503160827514234}
- component: {fileID: 2866881517702111988}
- component: {fileID: 7788739625590415122}
- component: {fileID: 717754671244414684}
m_Layer: 0
m_Name: Plank.004
m_TagString: Untagged
@ -1085,16 +884,3 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &717754671244414684
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8712456045789040059}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Size: {x: 2, y: 2, z: 2.0000002}
m_Center: {x: 0, y: 142.3334, z: 0}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 8b578b5744fda3641a8d996a918ec63a
guid: aff9dd7f4661a304db8c13ec51f5439f
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 9f27ae35e9c6a864a9658954416bfc75
guid: 61dd48eadc9e10e4e8760076126e06fd
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5360045862826a045b6c3cef30f5639b
guid: 2edf2e80568d0c24d836471a5917fa42
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: c8305a29937c8a54b9f60723b403ba42
guid: 2e99fd235e51b7f4fa6113442f38c775
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 560c58b9626f7f24db7b85bc2203443d
guid: cb0c4a068e89532458c4dd85d7c7ffcb
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: ea2a4d02adb742e4f818340766c20e3e
guid: 532a6a69d17ab90459858a26dae70c29
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@ -21,34 +21,34 @@ MonoBehaviour:
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.000000059604645, y: 0, z: 0}
rotation: {x: 0, y: -0, z: -0, w: -1}
position: {x: 0.000000059604645, y: 0.13002685, z: 0.025429917}
rotation: {x: -0.35898447, y: 0, z: 0, w: -0.9333436}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083233, y: 0.028070247, z: 0.025049694}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: -0.0120832035, y: 0.028070271, z: 0.02504969}
- {x: 0.040405992, y: -0.000000074505806, z: 0.00000008568168}
- {x: 0.03251684, y: -0.000000095926225, z: 0.0000000060535967}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.074204385, y: 0.005002201, z: -0.00023377323}
- {x: 0.043930072, y: 0.000000059567498, z: 0.00000018367103}
- {x: 0.02869547, y: -0.00000009398158, z: -0.00000012649753}
- {x: 0.074204385, y: 0.005002206, z: -0.00023377687}
- {x: 0.043930106, y: 0.000000055879354, z: 0.00000025704503}
- {x: 0.028695509, y: -0.000000078231096, z: -0.00000017875573}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095288, y: -0.00077883265, z: -0.000997186}
- {x: 0.043108486, y: -0.00000009950596, z: -0.0000000067041825}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.0021772787, y: 0.0071195485, z: 0.01631873}
- {x: 0.07095284, y: -0.00077884225, z: -0.0009971559}
- {x: 0.04310853, y: -0.000000110827386, z: -0.00000008195639}
- {x: 0.03326609, y: -0.000000011175871, z: 0.0000000069849193}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587581, y: -0.0017857892, z: -0.00069344096}
- {x: 0.04069671, y: -0.000000095347104, z: -0.000000022934731}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.06587583, y: -0.0017857598, z: -0.0006934181}
- {x: 0.040696662, y: -0.000000113621354, z: 0.00000001565786}
- {x: 0.028746959, y: 0.000000015832484, z: 0.000000113010174}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.06287839, y: -0.0028440962, z: -0.0003315471}
- {x: 0.030219711, y: -0.00000007264316, z: -0.00000014752732}
- {x: 0.018186592, y: -0.000000030413503, z: -0.0000002116285}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
@ -58,29 +58,29 @@ MonoBehaviour:
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.46411175, y: -0.623374, z: 0.2721063, w: 0.5674181}
- {x: 0.08293856, y: -0.019454371, z: -0.055129882, w: 0.9948384}
- {x: -0.0032133153, y: -0.021866836, z: 0.22201493, w: 0.9747928}
- {x: -0.23508942, y: -0.72099006, z: 0.5307722, w: 0.37840092}
- {x: 0.083156615, y: 0.010508746, z: -0.4089103, w: 0.9087172}
- {x: 0.013237866, y: -0.040114056, z: -0.41791132, w: 0.9075052}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6442515, y: -0.42213318, z: -0.4782025, w: 0.42197865}
- {x: 0.0070068412, y: 0.039123755, z: -0.08794935, w: 0.9953317}
- {x: 0.045808382, y: -0.0021422536, z: 0.0459431, w: 0.9978909}
- {x: 0.0018504566, y: 0.022782495, z: 0.013409463, w: 0.9996488}
- {x: 0.06763993, y: 0.095334835, z: -0.53600055, w: 0.8360859}
- {x: -0.0001272149, y: -0.024776356, z: -0.5610274, w: 0.8274264}
- {x: 0.068622366, y: 0.027653338, z: -0.38545522, w: 0.9197557}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.16726136, y: 0.0789587, z: -0.06936778, w: 0.9802945}
- {x: 0.018492563, y: -0.013192348, z: -0.05988611, w: 0.99794674}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: -0.5290854, y: -0.4955871, z: -0.46520746, w: 0.5079804}
- {x: -0.14877546, y: 0.046282455, z: -0.38834614, w: 0.9082462}
- {x: 0.070677616, y: 0.04055094, z: -0.71124846, w: 0.69820195}
- {x: 0.025877282, y: 0.044215277, z: -0.22436093, w: 0.97315854}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.058696117, y: 0.10181952, z: -0.072495356, w: 0.9904201}
- {x: -0.0022397265, y: -0.0000039300317, z: -0.030081047, w: 0.999545}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 0.042431094, y: -0.09118161, z: -0.47704595, w: 0.87310517}
- {x: 0.036713783, y: -0.07658199, z: -0.37631872, w: 0.9225896}
- {x: 0.08138534, y: -0.112705395, z: -0.6202345, w: 0.7719995}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: -0.059614867, y: 0.13516304, z: -0.06913207, w: 0.9866093}
- {x: 0.0018961236, y: 0.00013150928, z: -0.10644623, w: 0.99431664}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0.0057748104, y: -0.018080495, z: -0.4504606, w: 0.8925946}
- {x: 0.008491938, y: 0.011734275, z: -0.17159538, w: 0.98506105}
- {x: 0.04895498, y: 0.11093989, z: -0.27495462, w: 0.95377976}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
@ -96,34 +96,34 @@ MonoBehaviour:
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0, y: 0, z: 0}
rotation: {x: -0, y: -0, z: -0, w: 1}
position: {x: -0.000000059604645, y: 0.13002685, z: 0.025429917}
rotation: {x: 0.35898447, y: 0, z: 0, w: 0.9333436}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083233, y: 0.028070247, z: 0.025049694}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: -0.0120832035, y: 0.028070271, z: 0.02504969}
- {x: 0.040405992, y: -0.000000074505806, z: 0.00000008568168}
- {x: 0.03251684, y: -0.000000095926225, z: 0.0000000060535967}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.074204385, y: 0.005002201, z: -0.00023377323}
- {x: 0.043930072, y: 0.000000059567498, z: 0.00000018367103}
- {x: 0.02869547, y: -0.00000009398158, z: -0.00000012649753}
- {x: 0.074204385, y: 0.005002206, z: -0.00023377687}
- {x: 0.043930106, y: 0.000000055879354, z: 0.00000025704503}
- {x: 0.028695509, y: -0.000000078231096, z: -0.00000017875573}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095288, y: -0.00077883265, z: -0.000997186}
- {x: 0.043108486, y: -0.00000009950596, z: -0.0000000067041825}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.0021772787, y: 0.0071195485, z: 0.01631873}
- {x: 0.07095284, y: -0.00077884225, z: -0.0009971559}
- {x: 0.04310853, y: -0.000000110827386, z: -0.00000008195639}
- {x: 0.03326609, y: -0.000000011175871, z: 0.0000000069849193}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587581, y: -0.0017857892, z: -0.00069344096}
- {x: 0.04069671, y: -0.000000095347104, z: -0.000000022934731}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.06587583, y: -0.0017857598, z: -0.0006934181}
- {x: 0.040696662, y: -0.000000113621354, z: 0.00000001565786}
- {x: 0.028746959, y: 0.000000015832484, z: 0.000000113010174}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.06287839, y: -0.0028440962, z: -0.0003315471}
- {x: 0.030219711, y: -0.00000007264316, z: -0.00000014752732}
- {x: 0.018186592, y: -0.000000030413503, z: -0.0000002116285}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
@ -133,29 +133,29 @@ MonoBehaviour:
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.46411175, y: -0.623374, z: 0.2721063, w: 0.5674181}
- {x: 0.08293856, y: -0.019454371, z: -0.055129882, w: 0.9948384}
- {x: -0.0032133153, y: -0.021866836, z: 0.22201493, w: 0.9747928}
- {x: -0.23508942, y: -0.72099006, z: 0.5307722, w: 0.37840092}
- {x: 0.083156615, y: 0.010508746, z: -0.4089103, w: 0.9087172}
- {x: 0.013237866, y: -0.040114056, z: -0.41791132, w: 0.9075052}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6442515, y: -0.42213318, z: -0.4782025, w: 0.42197865}
- {x: 0.0070068412, y: 0.039123755, z: -0.08794935, w: 0.9953317}
- {x: 0.045808382, y: -0.0021422536, z: 0.0459431, w: 0.9978909}
- {x: 0.0018504566, y: 0.022782495, z: 0.013409463, w: 0.9996488}
- {x: 0.06763993, y: 0.095334835, z: -0.53600055, w: 0.8360859}
- {x: -0.0001272149, y: -0.024776356, z: -0.5610274, w: 0.8274264}
- {x: 0.068622366, y: 0.027653338, z: -0.38545522, w: 0.9197557}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.16726136, y: 0.0789587, z: -0.06936778, w: 0.9802945}
- {x: 0.018492563, y: -0.013192348, z: -0.05988611, w: 0.99794674}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: -0.5290854, y: -0.4955871, z: -0.46520746, w: 0.5079804}
- {x: -0.14877546, y: 0.046282455, z: -0.38834614, w: 0.9082462}
- {x: 0.070677616, y: 0.04055094, z: -0.71124846, w: 0.69820195}
- {x: 0.025877282, y: 0.044215277, z: -0.22436093, w: 0.97315854}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.058696117, y: 0.10181952, z: -0.072495356, w: 0.9904201}
- {x: -0.0022397265, y: -0.0000039300317, z: -0.030081047, w: 0.999545}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 0.042431094, y: -0.09118161, z: -0.47704595, w: 0.87310517}
- {x: 0.036713783, y: -0.07658199, z: -0.37631872, w: 0.9225896}
- {x: 0.08138534, y: -0.112705395, z: -0.6202345, w: 0.7719995}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: -0.059614867, y: 0.13516304, z: -0.06913207, w: 0.9866093}
- {x: 0.0018961236, y: 0.00013150928, z: -0.10644623, w: 0.99431664}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0.0057748104, y: -0.018080495, z: -0.4504606, w: 0.8925946}
- {x: 0.008491938, y: 0.011734275, z: -0.17159538, w: 0.98506105}
- {x: 0.04895498, y: 0.11093989, z: -0.27495462, w: 0.95377976}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}

165
Assets/Poses/Keyboard.asset Normal file
View File

@ -0,0 +1,165 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e90911e410742a1498a167540c7865bf, type: 3}
m_Name: Keyboard
m_EditorClassIdentifier:
leftHand:
inputSource: 1
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.054930303, y: 0.026936188, z: -0.0587569}
rotation: {x: 0.0075309286, y: -0.97341716, z: 0.22661841, w: 0.032348387}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083208, y: 0.028070228, z: 0.02504966}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006323671, y: 0.026866116, z: 0.015001873}
- {x: 0.07420438, y: 0.0050023412, z: -0.00023373216}
- {x: 0.04393011, y: 0.00000007939525, z: 0.00000019511208}
- {x: 0.02869547, y: -0.00000009398158, z: -0.00000012649753}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773353, y: 0.0071194503, z: 0.016318707}
- {x: 0.07095292, y: -0.00077881524, z: -0.0009971038}
- {x: 0.04310848, y: -0.00000011501834, z: 0.000000055879354}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134685, y: -0.006545119, z: 0.016347647}
- {x: 0.06587585, y: -0.0017856346, z: -0.0006934032}
- {x: 0.040696613, y: -0.0000000661239, z: -0.000000055646524}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.0024781781, y: -0.01898133, z: 0.015213638}
- {x: 0.06287837, y: -0.0028439611, z: -0.00033162907}
- {x: 0.030219693, y: -0.0000000121071935, z: -0.00000014560646}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.3229165, y: -0.7342497, z: 0.16674991, w: 0.57340807}
- {x: 0.08293856, y: -0.019454371, z: -0.055129882, w: 0.9948384}
- {x: -0.0032133153, y: -0.021866836, z: 0.22201493, w: 0.9747928}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6281639, y: -0.4360387, z: -0.5173522, w: 0.38422272}
- {x: -0.07540977, y: 0.06442624, z: -0.24685764, w: 0.9639626}
- {x: -0.21358033, y: 0.1381581, z: -0.51626694, w: 0.8177801}
- {x: 0.0018504566, y: 0.022782495, z: 0.013409463, w: 0.9996488}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.5300114, y: -0.48942944, z: -0.48959637, w: 0.48973683}
- {x: -0.19931558, y: 0.08461046, z: -0.18259941, w: 0.95904744}
- {x: -0.15533368, y: 0.10668026, z: -0.69930905, w: 0.6895344}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5006494, y: -0.4538077, z: -0.53075236, w: 0.51157665}
- {x: -0.08459001, y: 0.09571196, z: -0.26762313, w: 0.9550192}
- {x: -0.02491317, y: 0.022291787, z: -0.62669325, w: 0.77854866}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5010046, y: -0.35239956, z: -0.62384886, w: 0.48540872}
- {x: -0.05088811, y: 0.1649705, z: -0.21829313, w: 0.9604912}
- {x: 0.078301124, y: 0.16696562, z: -0.63049084, w: 0.75397134}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
rightHand:
inputSource: 2
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: -0.5212788, y: 0.027556181, z: -0.09009224}
rotation: {x: -0.0075309286, y: -0.97341716, z: 0.22661841, w: -0.032348387}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083208, y: 0.028070228, z: 0.02504966}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006323671, y: 0.026866116, z: 0.015001873}
- {x: 0.07420438, y: 0.0050023412, z: -0.00023373216}
- {x: 0.04393011, y: 0.00000007939525, z: 0.00000019511208}
- {x: 0.02869547, y: -0.00000009398158, z: -0.00000012649753}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773353, y: 0.0071194503, z: 0.016318707}
- {x: 0.07095292, y: -0.00077881524, z: -0.0009971038}
- {x: 0.04310848, y: -0.00000011501834, z: 0.000000055879354}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134685, y: -0.006545119, z: 0.016347647}
- {x: 0.06587585, y: -0.0017856346, z: -0.0006934032}
- {x: 0.040696613, y: -0.0000000661239, z: -0.000000055646524}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.0024781781, y: -0.01898133, z: 0.015213638}
- {x: 0.06287837, y: -0.0028439611, z: -0.00033162907}
- {x: 0.030219693, y: -0.0000000121071935, z: -0.00000014560646}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.3229165, y: -0.7342497, z: 0.16674991, w: 0.57340807}
- {x: 0.08293856, y: -0.019454371, z: -0.055129882, w: 0.9948384}
- {x: -0.0032133153, y: -0.021866836, z: 0.22201493, w: 0.9747928}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6281639, y: -0.4360387, z: -0.5173522, w: 0.38422272}
- {x: -0.07540977, y: 0.06442624, z: -0.24685764, w: 0.9639626}
- {x: -0.21358031, y: 0.1381581, z: -0.5162669, w: 0.8177801}
- {x: 0.0018504566, y: 0.022782495, z: 0.013409463, w: 0.9996488}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.5300114, y: -0.48942944, z: -0.48959637, w: 0.48973683}
- {x: -0.19931558, y: 0.08461046, z: -0.18259941, w: 0.95904744}
- {x: -0.15533368, y: 0.10668026, z: -0.69930905, w: 0.6895344}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5006494, y: -0.4538077, z: -0.53075236, w: 0.51157665}
- {x: -0.08459001, y: 0.09571196, z: -0.26762313, w: 0.9550192}
- {x: -0.02491317, y: 0.022291787, z: -0.62669325, w: 0.77854866}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5010046, y: -0.35239956, z: -0.62384886, w: 0.48540872}
- {x: -0.05088811, y: 0.1649705, z: -0.21829313, w: 0.9604912}
- {x: 0.078301124, y: 0.16696562, z: -0.63049084, w: 0.75397134}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
applyToSkeletonRoot: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9847fe9622ba63a47b1a3184d701b909
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

165
Assets/Poses/Led.asset Normal file
View File

@ -0,0 +1,165 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e90911e410742a1498a167540c7865bf, type: 3}
m_Name: Led
m_EditorClassIdentifier:
leftHand:
inputSource: 1
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.029536474, y: -0.01460548, z: -0.049178444}
rotation: {x: -0.6267585, y: 0, z: 0, w: -0.77921355}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.01208327, y: 0.028070211, z: 0.025049657}
- {x: 0.040405944, y: -0.000000055879354, z: 0.000000055879354}
- {x: 0.032516826, y: -0.000000054453267, z: -0.000000009786163}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.07420441, y: 0.0050022155, z: -0.00023374707}
- {x: 0.04393006, y: 0.00000006938353, z: 0.00000015331898}
- {x: 0.028695468, y: -0.000000067288056, z: -0.0000001626322}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095288, y: -0.00077883265, z: -0.000997186}
- {x: 0.043108486, y: -0.00000009950596, z: -0.0000000067041825}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587581, y: -0.0017857892, z: -0.00069344096}
- {x: 0.04069671, y: -0.000000095347104, z: -0.000000022934731}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: 0.060702123, y: -0.70587486, z: 0.4677729, w: 0.5284358}
- {x: 0.089689784, y: -0.0259513, z: -0.007730306, w: 0.9956016}
- {x: -0.054242358, y: 0.003827855, z: -0.07313762, w: 0.99583834}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6442515, y: -0.42213318, z: -0.4782025, w: 0.42197865}
- {x: 0.015660955, y: 0.005319863, z: -0.35070726, w: 0.9363391}
- {x: 0.044468064, y: 0.011206407, z: -0.24481249, w: 0.96848536}
- {x: -0.022972926, y: -0.05405879, z: -0.24617554, w: 0.9674438}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.16726136, y: 0.0789587, z: -0.06936778, w: 0.9802945}
- {x: 0.018492563, y: -0.013192348, z: -0.05988611, w: 0.99794674}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.058696117, y: 0.10181952, z: -0.072495356, w: 0.9904201}
- {x: -0.0022397265, y: -0.0000039300317, z: -0.030081047, w: 0.999545}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: -0.059614867, y: 0.13516304, z: -0.06913207, w: 0.9866093}
- {x: 0.0018961236, y: 0.00013150928, z: -0.10644623, w: 0.99431664}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
rightHand:
inputSource: 2
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: -0.029536474, y: -0.01460548, z: -0.049178444}
rotation: {x: 0.6267585, y: 0, z: 0, w: 0.77921355}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.01208327, y: 0.028070211, z: 0.025049657}
- {x: 0.040405944, y: -0.000000055879354, z: 0.000000055879354}
- {x: 0.032516826, y: -0.000000054453267, z: -0.000000009786163}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.07420441, y: 0.0050022155, z: -0.00023374707}
- {x: 0.04393006, y: 0.00000006938353, z: 0.00000015331898}
- {x: 0.028695468, y: -0.000000067288056, z: -0.0000001626322}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095288, y: -0.00077883265, z: -0.000997186}
- {x: 0.043108486, y: -0.00000009950596, z: -0.0000000067041825}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587581, y: -0.0017857892, z: -0.00069344096}
- {x: 0.04069671, y: -0.000000095347104, z: -0.000000022934731}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: 0.060702123, y: -0.70587486, z: 0.4677729, w: 0.5284358}
- {x: 0.089689784, y: -0.0259513, z: -0.007730306, w: 0.9956016}
- {x: -0.054242358, y: 0.003827855, z: -0.07313762, w: 0.99583834}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6442515, y: -0.42213318, z: -0.4782025, w: 0.42197865}
- {x: 0.015660955, y: 0.005319863, z: -0.35070726, w: 0.9363391}
- {x: 0.044468064, y: 0.011206407, z: -0.24481249, w: 0.96848536}
- {x: -0.022972926, y: -0.05405879, z: -0.24617554, w: 0.9674438}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.16726136, y: 0.0789587, z: -0.06936778, w: 0.9802945}
- {x: 0.018492563, y: -0.013192348, z: -0.05988611, w: 0.99794674}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.058696117, y: 0.10181952, z: -0.072495356, w: 0.9904201}
- {x: -0.0022397265, y: -0.0000039300317, z: -0.030081047, w: 0.999545}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: -0.059614867, y: 0.13516304, z: -0.06913207, w: 0.9866093}
- {x: 0.0018961236, y: 0.00013150928, z: -0.10644623, w: 0.99431664}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
applyToSkeletonRoot: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ac2c30b849eac3f46b37278e591e29e7
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

165
Assets/Poses/Mouse.asset Normal file
View File

@ -0,0 +1,165 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e90911e410742a1498a167540c7865bf, type: 3}
m_Name: Mouse
m_EditorClassIdentifier:
leftHand:
inputSource: 1
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.06432454, y: -0.0030566137, z: 0.1038176}
rotation: {x: 0.3872679, y: -0.519138, z: 0.6107113, w: -0.4555778}
bonePositions:
- {x: 0, y: 0, z: 0}
- {x: 0.00015978733, y: -0.000031924497, z: -0.00062570866}
- {x: -0.017913789, y: 0.029178174, z: 0.0252984}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: -0.0015565647, y: 0.021072546, z: 0.014786866}
- {x: 0.073797606, y: -0.00000002316186, z: -0.0000000914779}
- {x: 0.043286677, y: 0.000000043578464, z: 0.00000015154872}
- {x: 0.028275194, y: -0.00000003048054, z: -0.00000012984884}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.00217785, y: 0.0071189054, z: 0.016318422}
- {x: 0.070885606, y: 0.000000109007054, z: -0.0000000030843281}
- {x: 0.04310849, y: -0.000000129195, z: 0.000000021561931}
- {x: 0.03326598, y: 0.000000032656022, z: -0.00000001536071}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.00051394047, y: -0.0065457164, z: 0.016347341}
- {x: 0.06597489, y: -0.000000009740257, z: 0.000000004879422}
- {x: 0.040331203, y: -9.808473e-10, z: -9.0967783e-10}
- {x: 0.02848878, y: 0.0000000034877343, z: 0.00000007339703}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.0024777015, y: -0.018981889, z: 0.015213424}
- {x: 0.06285566, y: 0.00000001673586, z: -0.0000000221746}
- {x: 0.029874247, y: -0.00000003982057, z: 0.00000008708328}
- {x: 0.017978692, y: 0.00000010086095, z: -0.00000009401077}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.03928085, y: 0.06008116, z: 0.0844918}
- {x: -0.018232813, y: 0.037278313, z: 0.14895566}
- {x: -0.012560685, y: 0.007871133, z: 0.1546902}
- {x: -0.017869227, y: -0.023237694, z: 0.14223532}
- {x: -0.016008036, y: -0.045651924, z: 0.11928007}
boneRotations:
- {x: -0, y: -0, z: -0, w: 1}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.2763868, y: -0.77303576, z: 0.18202923, w: 0.54119444}
- {x: 0.000060980376, y: 0.0013718528, z: -0.24637747, w: 0.96917295}
- {x: 0.000097572745, y: -0.0014028269, z: -0.15333512, w: 0.98817325}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5643996, y: -0.5277427, z: -0.33192632, w: 0.5410783}
- {x: 0.0016234712, y: 0.05288696, z: -0.24140385, w: 0.9689812}
- {x: -0.00008592637, y: -0.005041468, z: -0.18476209, w: 0.9827703}
- {x: 0.00003136136, y: 0.0011659226, z: -0.076457635, w: 0.99707216}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5355096, y: -0.41224125, z: -0.40749225, w: 0.61419606}
- {x: -1.6651267e-16, y: 0.00018549249, z: -0.22916262, w: 0.9733882}
- {x: 0.0000932807, y: 0.003688209, z: -0.15739559, w: 0.9875288}
- {x: -0.00010739729, y: -0.0041253637, z: -0.14127655, w: 0.98996156}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.50724775, y: -0.34011436, z: -0.5071735, w: 0.6081093}
- {x: -0.00090130453, y: 0.04095693, z: -0.22036932, w: 0.97455585}
- {x: -0.00007313708, y: -0.002531439, z: -0.13382986, w: 0.99100107}
- {x: 0.00019865863, y: 0.004263068, z: -0.13535492, w: 0.990788}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.47658816, y: -0.31890374, z: -0.62407553, w: 0.5307484}
- {x: 0.0039421897, y: -0.0281641, z: -0.11030768, w: 0.9934906}
- {x: 0.00038264412, y: 0.01145603, z: -0.13252294, w: 0.99111366}
- {x: -0.0005384765, y: -0.0127024595, z: -0.10858105, w: 0.9940063}
- {x: 0, y: -0, z: -0, w: 1}
- {x: 0.04861431, y: -0.81958884, z: -0.045037255, w: 0.5691067}
- {x: 0.20955543, y: 0.7084193, z: 0.59722805, w: -0.3123255}
- {x: 0.22114079, y: 0.67740285, z: 0.6470612, w: -0.27117142}
- {x: 0.23741451, y: 0.5950273, z: 0.7216289, w: -0.262352}
- {x: 0.34899986, y: 0.5114209, z: 0.7390305, w: -0.2654839}
rightHand:
inputSource: 2
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: -0.06432455, y: -0.003056577, z: 0.1038176}
rotation: {x: -0.3872679, y: -0.519138, z: 0.6107113, w: 0.4555778}
bonePositions:
- {x: 0, y: 0, z: 0}
- {x: 0.00015978733, y: -0.000031924497, z: -0.00062570866}
- {x: -0.017913789, y: 0.029178174, z: 0.0252984}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: -0.0015565647, y: 0.021072546, z: 0.014786866}
- {x: 0.073797606, y: -0.00000002316186, z: -0.0000000914779}
- {x: 0.043286677, y: 0.000000043578464, z: 0.00000015154872}
- {x: 0.028275194, y: -0.00000003048054, z: -0.00000012984884}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.00217785, y: 0.0071189054, z: 0.016318422}
- {x: 0.070885606, y: 0.000000109007054, z: -0.0000000030843281}
- {x: 0.04310849, y: -0.000000129195, z: 0.000000021561931}
- {x: 0.03326598, y: 0.000000032656022, z: -0.00000001536071}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.00051394047, y: -0.0065457164, z: 0.016347341}
- {x: 0.06597489, y: -0.000000009740257, z: 0.000000004879422}
- {x: 0.040331203, y: -9.808473e-10, z: -9.0967783e-10}
- {x: 0.02848878, y: 0.0000000034877343, z: 0.00000007339703}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.0024777015, y: -0.018981889, z: 0.015213424}
- {x: 0.06285566, y: 0.00000001673586, z: -0.0000000221746}
- {x: 0.029874247, y: -0.00000003982057, z: 0.00000008708328}
- {x: 0.017978692, y: 0.00000010086095, z: -0.00000009401077}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.03928085, y: 0.06008116, z: 0.0844918}
- {x: -0.018232813, y: 0.037278313, z: 0.14895566}
- {x: -0.012560685, y: 0.007871133, z: 0.1546902}
- {x: -0.017869227, y: -0.023237694, z: 0.14223532}
- {x: -0.016008036, y: -0.045651924, z: 0.11928007}
boneRotations:
- {x: -0, y: -0, z: -0, w: 1}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.2763868, y: -0.77303576, z: 0.18202923, w: 0.54119444}
- {x: 0.000060980376, y: 0.0013718528, z: -0.24637747, w: 0.96917295}
- {x: 0.000097572745, y: -0.0014028269, z: -0.15333512, w: 0.98817325}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5643996, y: -0.5277427, z: -0.33192632, w: 0.5410783}
- {x: 0.0016234712, y: 0.05288696, z: -0.24140385, w: 0.9689812}
- {x: -0.00008592637, y: -0.005041468, z: -0.18476209, w: 0.9827703}
- {x: 0.00003136136, y: 0.0011659226, z: -0.076457635, w: 0.99707216}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5355096, y: -0.41224125, z: -0.40749225, w: 0.61419606}
- {x: -1.6651267e-16, y: 0.00018549249, z: -0.22916262, w: 0.9733882}
- {x: 0.0000932807, y: 0.003688209, z: -0.15739559, w: 0.9875288}
- {x: -0.00010739729, y: -0.0041253637, z: -0.14127655, w: 0.98996156}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5072478, y: -0.34011438, z: -0.50717354, w: 0.60810935}
- {x: -0.00090130453, y: 0.04095693, z: -0.22036932, w: 0.97455585}
- {x: -0.00007313708, y: -0.002531439, z: -0.13382986, w: 0.99100107}
- {x: 0.00019865863, y: 0.004263068, z: -0.13535492, w: 0.990788}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.47658816, y: -0.31890374, z: -0.62407553, w: 0.5307484}
- {x: 0.0039421897, y: -0.0281641, z: -0.11030768, w: 0.9934906}
- {x: 0.00038264412, y: 0.01145603, z: -0.13252294, w: 0.99111366}
- {x: -0.0005384765, y: -0.0127024595, z: -0.10858105, w: 0.9940063}
- {x: 0, y: -0, z: -0, w: 1}
- {x: 0.04861431, y: -0.81958884, z: -0.045037255, w: 0.5691067}
- {x: 0.20955543, y: 0.7084193, z: 0.59722805, w: -0.3123255}
- {x: 0.22114079, y: 0.67740285, z: 0.6470612, w: -0.27117142}
- {x: 0.23741451, y: 0.5950273, z: 0.7216289, w: -0.262352}
- {x: 0.34899986, y: 0.5114209, z: 0.7390305, w: -0.2654839}
applyToSkeletonRoot: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 738f5669843d15d4fb1bf788c062ae7d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

165
Assets/Poses/Pliers.asset Normal file
View File

@ -0,0 +1,165 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e90911e410742a1498a167540c7865bf, type: 3}
m_Name: Pliers
m_EditorClassIdentifier:
leftHand:
inputSource: 1
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: -0.009199754, y: -0.082850955, z: -0.16851862}
rotation: {x: 0.5660312, y: 0.7596644, z: -0.26363766, w: 0.18169731}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.0120830145, y: 0.028069109, z: 0.025048245}
- {x: 0.0404056, y: -0.00000064529013, z: 0.00000021234155}
- {x: 0.03251674, y: -0.00000056566205, z: 0.0000002788147}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.074203216, y: 0.0050035976, z: -0.00023521483}
- {x: 0.04393112, y: -0.00000043399632, z: -0.00000075018033}
- {x: 0.028703194, y: 0.00000030640513, z: -0.000003366731}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095189, y: -0.0007774839, z: -0.0010002851}
- {x: 0.043108515, y: 0.000000059604645, z: -0.000002885703}
- {x: 0.03326688, y: -0.0000009444775, z: -0.000004336529}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587441, y: -0.0017844317, z: -0.00069537014}
- {x: 0.040696263, y: -0.00000020256266, z: -0.0000010356307}
- {x: 0.02874725, y: -0.00000009709038, z: -0.0000006786431}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.06287831, y: -0.002844044, z: -0.00033168495}
- {x: 0.030219277, y: 0.000000043277396, z: -0.0000014103716}
- {x: 0.018186918, y: -0.00000044805347, z: -0.0000010880249}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: 0.13241564, y: 0.81801784, z: 0.07090429, w: -0.5552347}
- {x: 0.09558897, y: 0.06837717, z: -0.05742094, w: 0.9914082}
- {x: 0.01137593, y: 0.023362055, z: 0.21656506, w: 0.9759224}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6442515, y: -0.42213318, z: -0.4782025, w: 0.42197865}
- {x: 0.00606425, y: 0.24834661, z: -0.35047767, w: 0.9030242}
- {x: 0.09014884, y: 0.0032834404, z: -0.25925645, w: 0.9615865}
- {x: 0.15233769, y: 0.07087883, z: -0.65908307, w: 0.7330614}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.14996958, y: 0.12346764, z: -0.36211357, w: 0.91166806}
- {x: 0.02906435, y: 0.0064662024, z: -0.22261, w: 0.9744528}
- {x: 0.056492135, y: 0.09368075, z: -0.6719658, w: 0.7324579}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.05655826, y: 0.06914409, z: -0.27685812, w: 0.9567497}
- {x: 0.020306498, y: 0.003399315, z: -0.21817043, w: 0.97569346}
- {x: 0.06143664, y: 0.025121657, z: -0.51098967, w: 0.85702044}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: 0.03457126, y: 0.0052378178, z: -0.26807892, w: 0.96276224}
- {x: 0.0064143357, y: 0.0054336884, z: -0.16960272, w: 0.98547673}
- {x: 0.021030385, y: 0.06744477, z: -0.11755604, w: 0.99055016}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
rightHand:
inputSource: 2
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.009199754, y: -0.082850955, z: -0.16851862}
rotation: {x: -0.5660312, y: 0.7596644, z: -0.26363766, w: -0.18169731}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.0120830145, y: 0.028069109, z: 0.025048245}
- {x: 0.0404056, y: -0.00000064529013, z: 0.00000021234155}
- {x: 0.03251674, y: -0.00000056566205, z: 0.0000002788147}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.074203216, y: 0.0050035976, z: -0.00023521483}
- {x: 0.04393112, y: -0.00000043399632, z: -0.00000075018033}
- {x: 0.028703194, y: 0.00000030640513, z: -0.000003366731}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095189, y: -0.0007774839, z: -0.0010002851}
- {x: 0.043108515, y: 0.000000059604645, z: -0.000002885703}
- {x: 0.03326688, y: -0.0000009444775, z: -0.000004336529}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587441, y: -0.0017844317, z: -0.00069537014}
- {x: 0.040696263, y: -0.00000020256266, z: -0.0000010356307}
- {x: 0.02874725, y: -0.00000009709038, z: -0.0000006786431}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.06287831, y: -0.002844044, z: -0.00033168495}
- {x: 0.030219277, y: 0.000000043277396, z: -0.0000014103716}
- {x: 0.018186918, y: -0.00000044805347, z: -0.0000010880249}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: 0.13241564, y: 0.81801784, z: 0.07090429, w: -0.5552347}
- {x: 0.09558897, y: 0.06837717, z: -0.05742094, w: 0.9914082}
- {x: 0.01137593, y: 0.023362055, z: 0.21656506, w: 0.9759224}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6442515, y: -0.42213318, z: -0.4782025, w: 0.42197865}
- {x: 0.00606425, y: 0.24834661, z: -0.35047767, w: 0.9030242}
- {x: 0.09014884, y: 0.0032834404, z: -0.25925645, w: 0.9615865}
- {x: 0.15233769, y: 0.07087883, z: -0.65908307, w: 0.7330614}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.14996958, y: 0.12346764, z: -0.36211357, w: 0.91166806}
- {x: 0.02906435, y: 0.0064662024, z: -0.22261, w: 0.9744528}
- {x: 0.056492135, y: 0.09368075, z: -0.6719658, w: 0.7324579}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.05655826, y: 0.06914409, z: -0.27685812, w: 0.9567497}
- {x: 0.020306498, y: 0.003399315, z: -0.21817043, w: 0.97569346}
- {x: 0.06143664, y: 0.025121657, z: -0.51098967, w: 0.85702044}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: 0.03457126, y: 0.0052378178, z: -0.26807892, w: 0.96276224}
- {x: 0.0064143357, y: 0.0054336884, z: -0.16960272, w: 0.98547673}
- {x: 0.021030385, y: 0.06744477, z: -0.11755604, w: 0.99055016}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
applyToSkeletonRoot: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6ab30d9290ee9ef429794473765f9019
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,165 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e90911e410742a1498a167540c7865bf, type: 3}
m_Name: Screwdriver
m_EditorClassIdentifier:
leftHand:
inputSource: 1
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: -0.004484795, y: 0.012143306, z: -0.083399035}
rotation: {x: 0.14066415, y: -0.57823956, z: 0.16194159, w: -0.78716433}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083244, y: 0.028070226, z: 0.025049739}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.03251677, y: -0.000000012849341, z: -0.00000003760215}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324444, y: 0.026866123, z: 0.015001992}
- {x: 0.07420437, y: 0.0050021894, z: -0.00023376197}
- {x: 0.043931086, y: -0.00000020861626, z: 0.0000002697343}
- {x: 0.028707178, y: 0.000009397976, z: 0.000004061032}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.0709529, y: -0.00077883806, z: -0.0009971783}
- {x: 0.043108486, y: -0.00000016391277, z: -0.00000003632158}
- {x: 0.033266064, y: -0.00000002142042, z: 0.0000000057043508}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587585, y: -0.0017857035, z: -0.0006935075}
- {x: 0.040696725, y: -0.00000010430813, z: -0.000000012572855}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.18950997, y: -0.6374684, z: 0.4164121, w: 0.61993635}
- {x: 0.08293856, y: -0.019454371, z: -0.055129882, w: 0.9948384}
- {x: -0.021359714, y: -0.109867334, z: -0.31620473, w: 0.9420656}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6421176, y: -0.42537224, z: -0.48032144, w: 0.41956502}
- {x: -0.01715277, y: 0.035854317, z: -0.6525061, w: 0.75674045}
- {x: -0.093831636, y: 0.06018018, z: -0.5368041, w: 0.83631057}
- {x: -0.013054608, y: 0.01876289, z: -0.62512726, w: 0.78018814}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.18054408, y: -0.04018306, z: -0.655872, w: 0.7318614}
- {x: 0.02198509, y: -0.0057156556, z: -0.41243857, w: 0.9107022}
- {x: -0.020126276, y: 0.020066496, z: -0.566995, w: 0.82323086}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.16991985, y: -0.024578962, z: -0.6475567, w: 0.742424}
- {x: -0.0021721872, y: -0.00054622075, z: -0.27126583, w: 0.9625019}
- {x: -0.0053352825, y: 0.011539477, z: -0.40475273, w: 0.9143378}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.46377313, y: -0.41148093, z: -0.664522, w: 0.41714326}
- {x: -0.06519281, y: -0.023940766, z: -0.6081194, w: 0.7908018}
- {x: 0.0018932968, y: 0.00016677193, z: -0.12502545, w: 0.99215174}
- {x: -0.026576133, y: 0.044832904, z: -0.4097755, w: 0.9106963}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
rightHand:
inputSource: 2
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.0028161276, y: 0.011834038, z: -0.079255}
rotation: {x: -0.16754662, y: 0.7629121, z: -0.13393852, w: 0.6098801}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083244, y: 0.028070226, z: 0.025049739}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.03251677, y: -0.000000012849341, z: -0.00000003760215}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324444, y: 0.026866123, z: 0.015001992}
- {x: 0.07420437, y: 0.0050021894, z: -0.00023376197}
- {x: 0.043931086, y: -0.00000020861626, z: 0.0000002697343}
- {x: 0.028707178, y: 0.000009397976, z: 0.000004061032}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.0709529, y: -0.00077883806, z: -0.0009971783}
- {x: 0.043108486, y: -0.00000016391277, z: -0.00000003632158}
- {x: 0.033266064, y: -0.00000002142042, z: 0.0000000057043508}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587585, y: -0.0017857035, z: -0.0006935075}
- {x: 0.040696725, y: -0.00000010430813, z: -0.000000012572855}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.18950997, y: -0.6374684, z: 0.4164121, w: 0.61993635}
- {x: 0.08293856, y: -0.019454371, z: -0.055129882, w: 0.9948384}
- {x: -0.021359714, y: -0.109867334, z: -0.31620473, w: 0.9420656}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6421176, y: -0.42537224, z: -0.48032144, w: 0.41956502}
- {x: -0.01715277, y: 0.035854317, z: -0.6525061, w: 0.75674045}
- {x: -0.093831636, y: 0.06018018, z: -0.5368041, w: 0.83631057}
- {x: -0.013054608, y: 0.01876289, z: -0.62512726, w: 0.78018814}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.18054408, y: -0.04018306, z: -0.655872, w: 0.7318614}
- {x: 0.02198509, y: -0.0057156556, z: -0.41243857, w: 0.9107022}
- {x: -0.020126276, y: 0.020066496, z: -0.566995, w: 0.82323086}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.16991985, y: -0.024578962, z: -0.6475567, w: 0.742424}
- {x: -0.0021721872, y: -0.00054622075, z: -0.27126583, w: 0.9625019}
- {x: -0.0053352825, y: 0.011539477, z: -0.40475273, w: 0.9143378}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.46377313, y: -0.41148093, z: -0.664522, w: 0.41714326}
- {x: -0.06519281, y: -0.023940766, z: -0.6081194, w: 0.7908018}
- {x: 0.0018932968, y: 0.00016677193, z: -0.12502545, w: 0.99215174}
- {x: -0.026576133, y: 0.044832904, z: -0.4097755, w: 0.9106963}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
applyToSkeletonRoot: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b70bd50f52391f24ca4f813618eba453
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,165 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e90911e410742a1498a167540c7865bf, type: 3}
m_Name: circuitBoard
m_EditorClassIdentifier:
leftHand:
inputSource: 1
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.11578988, y: -0.011355867, z: 0.054800924}
rotation: {x: 0.009937813, y: -0.9225651, z: -0.3400633, w: -0.18202135}
bonePositions:
- {x: 0, y: 0, z: 0}
- {x: 0.00015978733, y: -0.000031924497, z: -0.00062570866}
- {x: -0.017913919, y: 0.029178156, z: 0.025298472}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: -0.001557163, y: 0.021073194, z: 0.014786819}
- {x: 0.07379764, y: -0.00000012665987, z: -0.00000013411045}
- {x: 0.04328662, y: -0.000000020489097, z: 0.00000017567072}
- {x: 0.028275194, y: -0.00000003048054, z: -0.00000012984884}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.002177331, y: 0.00711955, z: 0.016318671}
- {x: 0.07088565, y: 0.00000009639189, z: 0}
- {x: 0.04310849, y: -0.000000129195, z: 0.000000021561931}
- {x: 0.03326598, y: 0.000000032656022, z: -0.00000001536071}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06597491, y: -0.0000001094304, z: -0.000000007450581}
- {x: 0.040331203, y: -9.808473e-10, z: -9.0967783e-10}
- {x: 0.02848878, y: 0.0000000034877343, z: 0.00000007339703}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.062855676, y: 0.000000039115548, z: -0.000000033527613}
- {x: 0.029874247, y: -0.00000003982057, z: 0.00000008708328}
- {x: 0.017978692, y: 0.00000010086095, z: -0.00000009401077}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.03928085, y: 0.06008116, z: 0.0844918}
- {x: -0.018232813, y: 0.037278313, z: 0.14895566}
- {x: -0.012560685, y: 0.007871133, z: 0.1546902}
- {x: -0.017869227, y: -0.023237694, z: 0.14223532}
- {x: -0.016008036, y: -0.045651924, z: 0.11928007}
boneRotations:
- {x: -0, y: -0, z: -0, w: 1}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.31419826, y: -0.7837789, z: 0.15768887, w: 0.5119612}
- {x: 0.000060980376, y: 0.0013718528, z: -0.24637747, w: 0.96917295}
- {x: 0.000097572745, y: -0.0014028269, z: -0.15333512, w: 0.98817325}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5573379, y: -0.5447597, z: -0.38589123, w: 0.49365914}
- {x: -0.018657671, y: 0.049513172, z: -0.5925216, w: 0.803815}
- {x: -0.0007049199, y: -0.0049927197, z: -0.06255362, w: 0.99802893}
- {x: 0.00003136136, y: 0.0011659226, z: -0.076457635, w: 0.99707216}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.49155095, y: -0.5163676, z: -0.46570116, w: 0.5242754}
- {x: -0.00007313489, y: 0.00017046182, z: -0.59423995, w: 0.8042878}
- {x: 0.0000932807, y: 0.003688209, z: -0.15739559, w: 0.9875288}
- {x: -0.00010739729, y: -0.0041253637, z: -0.14127655, w: 0.98996156}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: 0.016290288, y: 0.08617597, z: -0.7012743, w: 0.7074763}
- {x: -0.00007313708, y: -0.002531439, z: -0.13382986, w: 0.99100107}
- {x: 0.00019865863, y: 0.004263068, z: -0.13535492, w: 0.990788}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.48575756, y: -0.34674636, z: -0.6150161, w: 0.51532686}
- {x: 0.15132935, y: 0.09972996, z: -0.79680043, w: 0.57642215}
- {x: 0.00038264412, y: 0.01145603, z: -0.13252294, w: 0.99111366}
- {x: -0.0005384765, y: -0.0127024595, z: -0.10858105, w: 0.9940063}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.04861431, y: -0.81958884, z: -0.045037255, w: 0.5691067}
- {x: 0.20955543, y: 0.7084193, z: 0.59722805, w: -0.3123255}
- {x: 0.22114079, y: 0.67740285, z: 0.6470612, w: -0.27117142}
- {x: 0.23741451, y: 0.5950273, z: 0.7216289, w: -0.262352}
- {x: 0.34899986, y: 0.5114209, z: 0.7390305, w: -0.2654839}
rightHand:
inputSource: 2
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: -0.30429325, y: -0.032650914, z: 0.123982325}
rotation: {x: -0.009937813, y: -0.9225651, z: -0.3400633, w: 0.18202135}
bonePositions:
- {x: 0, y: 0, z: 0}
- {x: 0.00015978733, y: -0.000031924497, z: -0.00062570866}
- {x: -0.017913919, y: 0.029178156, z: 0.025298472}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: -0.001557163, y: 0.021073194, z: 0.014786819}
- {x: 0.07379764, y: -0.00000012665987, z: -0.00000013411045}
- {x: 0.04328662, y: -0.000000020489097, z: 0.00000017567072}
- {x: 0.028275194, y: -0.00000003048054, z: -0.00000012984884}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.002177331, y: 0.00711955, z: 0.016318671}
- {x: 0.07088565, y: 0.00000009639189, z: 0}
- {x: 0.04310849, y: -0.000000129195, z: 0.000000021561931}
- {x: 0.03326598, y: 0.000000032656022, z: -0.00000001536071}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06597491, y: -0.0000001094304, z: -0.000000007450581}
- {x: 0.040331203, y: -9.808473e-10, z: -9.0967783e-10}
- {x: 0.02848878, y: 0.0000000034877343, z: 0.00000007339703}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.062855676, y: 0.000000039115548, z: -0.000000033527613}
- {x: 0.029874247, y: -0.00000003982057, z: 0.00000008708328}
- {x: 0.017978692, y: 0.00000010086095, z: -0.00000009401077}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.03928085, y: 0.06008116, z: 0.0844918}
- {x: -0.018232813, y: 0.037278313, z: 0.14895566}
- {x: -0.012560685, y: 0.007871133, z: 0.1546902}
- {x: -0.017869227, y: -0.023237694, z: 0.14223532}
- {x: -0.016008036, y: -0.045651924, z: 0.11928007}
boneRotations:
- {x: -0, y: -0, z: -0, w: 1}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.31419826, y: -0.7837789, z: 0.15768887, w: 0.5119612}
- {x: 0.000060980376, y: 0.0013718528, z: -0.24637747, w: 0.96917295}
- {x: 0.000097572745, y: -0.0014028269, z: -0.15333512, w: 0.98817325}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5573379, y: -0.5447597, z: -0.38589123, w: 0.49365914}
- {x: -0.018657671, y: 0.049513172, z: -0.5925216, w: 0.803815}
- {x: -0.0007049199, y: -0.0049927197, z: -0.06255362, w: 0.99802893}
- {x: 0.00003136136, y: 0.0011659226, z: -0.076457635, w: 0.99707216}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.49155095, y: -0.5163676, z: -0.46570116, w: 0.5242754}
- {x: -0.00007313489, y: 0.00017046182, z: -0.59423995, w: 0.8042878}
- {x: 0.0000932807, y: 0.003688209, z: -0.15739559, w: 0.9875288}
- {x: -0.00010739729, y: -0.0041253637, z: -0.14127655, w: 0.98996156}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: 0.016290288, y: 0.08617597, z: -0.7012743, w: 0.7074763}
- {x: -0.00007313708, y: -0.002531439, z: -0.13382986, w: 0.99100107}
- {x: 0.00019865863, y: 0.004263068, z: -0.13535492, w: 0.990788}
- {x: 0, y: -0, z: -0, w: 1}
- {x: -0.48575756, y: -0.34674636, z: -0.6150161, w: 0.51532686}
- {x: 0.15132935, y: 0.09972996, z: -0.79680043, w: 0.57642215}
- {x: 0.00038264412, y: 0.01145603, z: -0.13252294, w: 0.99111366}
- {x: -0.0005384765, y: -0.0127024595, z: -0.10858105, w: 0.9940063}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.04861431, y: -0.81958884, z: -0.045037255, w: 0.5691067}
- {x: 0.20955543, y: 0.7084193, z: 0.59722805, w: -0.3123255}
- {x: 0.22114079, y: 0.67740285, z: 0.6470612, w: -0.27117142}
- {x: 0.23741451, y: 0.5950273, z: 0.7216289, w: -0.262352}
- {x: 0.34899986, y: 0.5114209, z: 0.7390305, w: -0.2654839}
applyToSkeletonRoot: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a796cb24d8f897f4ba19d9f73f93594d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

165
Assets/Poses/monitor.asset Normal file
View File

@ -0,0 +1,165 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e90911e410742a1498a167540c7865bf, type: 3}
m_Name: monitor
m_EditorClassIdentifier:
leftHand:
inputSource: 1
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: 0.42722815, y: -0.24149546, z: -0.2592415}
rotation: {x: 0.30957335, y: -0.6966828, z: -0.40863353, w: 0.5018128}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083233, y: 0.028070247, z: 0.025049694}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.074204385, y: 0.005002201, z: -0.00023377323}
- {x: 0.043930072, y: 0.000000059567498, z: 0.00000018367103}
- {x: 0.02869547, y: -0.00000009398158, z: -0.00000012649753}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095288, y: -0.00077883265, z: -0.000997186}
- {x: 0.043108486, y: -0.00000009950596, z: -0.0000000067041825}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587581, y: -0.0017857892, z: -0.00069344096}
- {x: 0.04069671, y: -0.000000095347104, z: -0.000000022934731}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.16017556, y: -0.7477241, z: 0.4047044, w: 0.5014647}
- {x: 0.08325569, y: -0.018048879, z: -0.07194734, w: 0.99376374}
- {x: -0.0042863493, y: 0.02168196, z: 0.11684818, w: -0.9929038}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6432175, y: -0.42370707, z: -0.47923276, w: 0.42080832}
- {x: -0.007896512, y: 0.038953897, z: -0.44838217, w: 0.8929578}
- {x: 0.042377517, y: 0.017525606, z: -0.38243443, w: 0.92284393}
- {x: 0.0018504566, y: 0.022782495, z: 0.013409463, w: 0.9996488}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.18475734, y: -0.008692199, z: -0.52094555, w: 0.83330965}
- {x: 0.020892695, y: -0.008916615, z: -0.27264443, w: 0.9618467}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.14857078, y: -0.011423618, z: -0.593308, w: 0.7910637}
- {x: -0.0022344817, y: -0.00015133436, z: -0.09582144, w: 0.995396}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: 0.09047278, y: -0.14763568, z: -0.45723635, w: 0.8723264}
- {x: 0.0018961236, y: 0.00013150928, z: -0.10644623, w: 0.99431664}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
rightHand:
inputSource: 2
thumbFingerMovementType: 0
indexFingerMovementType: 0
middleFingerMovementType: 0
ringFingerMovementType: 0
pinkyFingerMovementType: 0
ignoreRootPoseData: 1
ignoreWristPoseData: 1
position: {x: -0.4180193, y: -0.24997228, z: -0.26360965}
rotation: {x: 0.41123158, y: -0.49591604, z: -0.3061153, w: 0.7008918}
bonePositions:
- {x: -0, y: 0, z: 0}
- {x: -0.034037687, y: 0.03650266, z: 0.16472164}
- {x: -0.012083233, y: 0.028070247, z: 0.025049694}
- {x: 0.040405963, y: -0.000000051561553, z: 0.000000045447194}
- {x: 0.032516792, y: -0.000000051137583, z: -0.000000012933195}
- {x: 0.030463902, y: 0.00000016269207, z: 0.0000000792839}
- {x: 0.0006324522, y: 0.026866155, z: 0.015001948}
- {x: 0.074204385, y: 0.005002201, z: -0.00023377323}
- {x: 0.043930072, y: 0.000000059567498, z: 0.00000018367103}
- {x: 0.02869547, y: -0.00000009398158, z: -0.00000012649753}
- {x: 0.022821384, y: -0.00000014365155, z: 0.00000007651614}
- {x: 0.0021773134, y: 0.007119544, z: 0.016318738}
- {x: 0.07095288, y: -0.00077883265, z: -0.000997186}
- {x: 0.043108486, y: -0.00000009950596, z: -0.0000000067041825}
- {x: 0.033266045, y: -0.00000001320567, z: -0.000000021670374}
- {x: 0.025892371, y: 0.00000009984198, z: -0.0000000020352908}
- {x: 0.0005134356, y: -0.0065451227, z: 0.016347693}
- {x: 0.06587581, y: -0.0017857892, z: -0.00069344096}
- {x: 0.04069671, y: -0.000000095347104, z: -0.000000022934731}
- {x: 0.028746964, y: 0.00000010089892, z: 0.000000045306827}
- {x: 0.022430236, y: 0.00000010846127, z: -0.000000017428562}
- {x: -0.002478151, y: -0.01898137, z: 0.015213584}
- {x: 0.0628784, y: -0.0028440945, z: -0.0003315112}
- {x: 0.030219711, y: -0.00000003418319, z: -0.00000009332872}
- {x: 0.018186597, y: -0.0000000050220166, z: -0.00000020934549}
- {x: 0.01801794, y: -0.0000000200012, z: 0.0000000659746}
- {x: -0.0060591106, y: 0.05628522, z: 0.060063843}
- {x: -0.04041555, y: -0.043017667, z: 0.019344581}
- {x: -0.03935372, y: -0.07567404, z: 0.047048334}
- {x: -0.038340144, y: -0.09098663, z: 0.08257892}
- {x: -0.031805996, y: -0.08721431, z: 0.12101539}
boneRotations:
- {x: -6.123234e-17, y: 1, z: 6.123234e-17, w: -0.00000004371139}
- {x: -0.078608155, y: -0.92027926, z: 0.3792963, w: -0.055146642}
- {x: -0.16017556, y: -0.7477241, z: 0.4047044, w: 0.5014647}
- {x: 0.08325569, y: -0.018048879, z: -0.07194734, w: 0.99376374}
- {x: -0.0042863493, y: 0.02168196, z: 0.11684818, w: -0.9929038}
- {x: -1.3877788e-17, y: -1.3877788e-17, z: -5.551115e-17, w: 1}
- {x: -0.6432175, y: -0.42370707, z: -0.47923276, w: 0.42080832}
- {x: -0.007896512, y: 0.038953897, z: -0.44838217, w: 0.8929578}
- {x: 0.042377517, y: 0.017525606, z: -0.38243443, w: 0.92284393}
- {x: 0.0018504566, y: 0.022782495, z: 0.013409463, w: 0.9996488}
- {x: 6.938894e-18, y: 1.9428903e-16, z: -1.348151e-33, w: 1}
- {x: -0.546723, y: -0.46074906, z: -0.44252017, w: 0.54127645}
- {x: -0.18475734, y: -0.008692199, z: -0.52094555, w: 0.83330965}
- {x: 0.020892693, y: -0.008916614, z: -0.2726444, w: 0.96184665}
- {x: -0.003327809, y: 0.028225154, z: 0.066315144, w: 0.9973939}
- {x: 1.1639192e-17, y: -5.602331e-17, z: -0.040125635, w: 0.9991947}
- {x: -0.5166922, y: -0.4298879, z: -0.49554786, w: 0.5501435}
- {x: -0.14857078, y: -0.011423618, z: -0.593308, w: 0.7910637}
- {x: -0.0022344817, y: -0.00015133436, z: -0.09582144, w: 0.995396}
- {x: -0.00072132144, y: 0.012692659, z: -0.040420394, w: 0.9991019}
- {x: 6.938894e-18, y: -9.62965e-35, z: -1.3877788e-17, w: 1}
- {x: -0.5269183, y: -0.32674035, z: -0.5840246, w: 0.52394}
- {x: 0.09047278, y: -0.14763568, z: -0.45723635, w: 0.8723264}
- {x: 0.0018961236, y: 0.00013150928, z: -0.10644623, w: 0.99431664}
- {x: -0.00201019, y: 0.052079126, z: 0.073525675, w: 0.99593055}
- {x: 0, y: 0, z: 1.9081958e-17, w: 1}
- {x: 0.20274544, y: 0.59426665, z: 0.2494411, w: 0.73723847}
- {x: 0.6235274, y: -0.66380864, z: -0.29373443, w: -0.29033053}
- {x: 0.6780625, y: -0.6592852, z: -0.26568344, w: -0.18704711}
- {x: 0.7367927, y: -0.6347571, z: -0.14393571, w: -0.18303718}
- {x: 0.7584072, y: -0.6393418, z: -0.12667806, w: -0.0036594148}
applyToSkeletonRoot: 1

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ac3246a4a9ba7544382304d07f641347
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -113,6 +113,18 @@ TextureImporter:
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
@ -125,6 +137,18 @@ TextureImporter:
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Windows Store Apps
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []

View File

@ -0,0 +1,245 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &1527984575184472642
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1527984575184472644}
- component: {fileID: 1527984575184472645}
m_Layer: 0
m_Name: Catalog
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1527984575184472644
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1527984575184472642}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 2.0397532, y: 1.6641229, z: -1.5216272}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 6652929519105104434}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &1527984575184472645
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1527984575184472642}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 6e448cbb02ada1545b6c4c79341232fc, type: 3}
m_Name:
m_EditorClassIdentifier:
maxShownObjects: 6
angle: 130
distance: 0.17
objectScale: 0.04
--- !u!1 &6275806258134515848
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 6652929519105104434}
- component: {fileID: 3102087200456469538}
- component: {fileID: 3086371222807627863}
- component: {fileID: 7945404223398940130}
- component: {fileID: 5004594542533833549}
- component: {fileID: 1321968106976948543}
- component: {fileID: 3556194868201819980}
m_Layer: 0
m_Name: Sphere
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &6652929519105104434
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6275806258134515848}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 0.04, y: 0.04, z: 0.04}
m_ConstrainProportionsScale: 1
m_Children: []
m_Father: {fileID: 1527984575184472644}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!114 &3102087200456469538
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6275806258134515848}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: b93b6a877adcbf94c89a9d6e0c0e844d, type: 3}
m_Name:
m_EditorClassIdentifier:
activateActionSetOnAttach:
actionSetPath:
hideHandOnAttach: 1
hideSkeletonOnAttach: 0
hideControllerOnAttach: 0
handAnimationOnPickup: 0
setRangeOfMotionOnPickup: -1
useHandObjectAttachmentPoint: 1
attachEaseIn: 0
snapAttachEaseInCurve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
snapAttachEaseInTime: 0.15
snapAttachEaseInCompleted: 0
skeletonPoser: {fileID: 0}
handFollowTransform: 1
highlightOnHover: 1
hideHighlight: []
hoverPriority: 0
--- !u!114 &3086371222807627863
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6275806258134515848}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 783750eec4c41da428b7651515146d14, type: 3}
m_Name:
m_EditorClassIdentifier:
velocityAverageFrames: 5
angularVelocityAverageFrames: 11
estimateOnAwake: 0
--- !u!114 &7945404223398940130
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6275806258134515848}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: e7418c7dd8f977d4e969202d3fa7e926, type: 3}
m_Name:
m_EditorClassIdentifier:
poseEditorExpanded: 1
blendEditorExpanded: 1
poseNames:
- sphereSmallPose (MAIN)
overridePreviewLeftHandPrefab: {fileID: 1000013348574242, guid: 638779290bce1af49b356f33dcc6fccf, type: 3}
overridePreviewRightHandPrefab: {fileID: 1000010304998954, guid: 6def53d002137b747aec0b29551e0e25, type: 3}
skeletonMainPose: {fileID: 11400000, guid: ccd16738d1f943640aa2aed1071a3897, type: 2}
skeletonAdditionalPoses: []
showLeftPreview: 0
showRightPreview: 0
previewLeftInstance: {fileID: 0}
previewRightInstance: {fileID: 0}
previewPoseSelection: 0
blendingBehaviours: []
scale: 1
--- !u!33 &5004594542533833549
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6275806258134515848}
m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
--- !u!23 &1321968106976948543
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6275806258134515848}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!135 &3556194868201819980
SphereCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 6275806258134515848}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Radius: 0.5
m_Center: {x: 0, y: 0, z: 0}

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 1805c511e7b7f0e49afb0651e27725b4
PrefabImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -1,10 +1,5 @@
using Oculus.Interaction.PoseDetection;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Unity.VisualScripting;
using UnityEngine;
using UnityEngine.UI;
public class MovableFurniture : MonoBehaviour
{
@ -50,9 +45,9 @@ public class MovableFurniture : MonoBehaviour
}
public void OnPointerClickDown()
{
if(_rigidbody!= null)
if (_rigidbody != null)
{
_rigidbody.useGravity= false;
_rigidbody.useGravity = false;
}
}
@ -79,11 +74,11 @@ public class MovableFurniture : MonoBehaviour
public void SnapTo(Vector3 position, LayerMask layerMask)
{
Vector3 displacement = Vector3.zero;
this.transform.position = position+centerOffset;
this.transform.position = position + centerOffset;
Vector3[] directions = { Vector3.right, Vector3.left, Vector3.up, Vector3.down, Vector3.forward, Vector3.back };
int[] extents = { 0,0,1,1,2,2 };
int[] extents = { 0, 0, 1, 1, 2, 2 };
for (int i = 0; i<6; i++ )
for (int i = 0; i < 6; i++)
{
Ray raycast = new Ray(transform.position - centerOffset - (directions[i] * combinedBounds.extents[extents[i]]), (directions[i] * combinedBounds.size[extents[i]]));
RaycastHit hit;
@ -113,7 +108,7 @@ public class MovableFurniture : MonoBehaviour
// Draw a yellow sphere at the transform's position
Gizmos.color = Color.red;
Gizmos.DrawWireCube(transform.position - centerOffset, combinedBounds.size);
Gizmos.DrawRay((transform.position - centerOffset) - (new Vector3(0,0,combinedBounds.extents.z)), (new Vector3(0, 0, combinedBounds.size.z)));
Gizmos.DrawRay((transform.position - centerOffset) - (new Vector3(0, 0, combinedBounds.extents.z)), (new Vector3(0, 0, combinedBounds.size.z)));
}
private void CalculateBounds()
@ -142,7 +137,6 @@ public class MovableFurniture : MonoBehaviour
}
}
//combinedBounds = renderers[0].bounds;
Debug.Log(combinedBounds.center);
centerOffset = transform.position - combinedBounds.center;
}
}

View File

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEditor;
using UnityEditor;
using UnityEngine;
namespace Valve.VR
@ -404,9 +399,16 @@ namespace Valve.VR
dest.rightHand.position = source.rightHand.position;
dest.rightHand.rotation = source.rightHand.rotation;
for (int boneIndex = 0; boneIndex < boneNum; boneIndex++)
{
if (boneIndex < dest.rightHand.bonePositions.Length && boneIndex < source.rightHand.bonePositions.Length)
{
dest.rightHand.bonePositions[boneIndex] = source.rightHand.bonePositions[boneIndex];
}
if (boneIndex < dest.rightHand.boneRotations.Length && boneIndex < source.rightHand.boneRotations.Length)
{
dest.rightHand.boneRotations[boneIndex] = source.rightHand.boneRotations[boneIndex];
}
EditorUtility.DisplayProgressBar("Copying...", "Copying right hand pose", (float)boneIndex / (float)boneNum / 2f);
}
dest.rightHand.thumbFingerMovementType = source.rightHand.thumbFingerMovementType;
@ -421,8 +423,14 @@ namespace Valve.VR
dest.leftHand.rotation = source.leftHand.rotation;
for (int boneIndex = 0; boneIndex < boneNum; boneIndex++)
{
dest.leftHand.bonePositions[boneIndex] = source.leftHand.bonePositions[boneIndex];
dest.leftHand.boneRotations[boneIndex] = source.leftHand.boneRotations[boneIndex];
if (boneIndex < dest.rightHand.bonePositions.Length && boneIndex < source.rightHand.bonePositions.Length)
{
dest.rightHand.bonePositions[boneIndex] = source.rightHand.bonePositions[boneIndex];
}
if (boneIndex < dest.rightHand.boneRotations.Length && boneIndex < source.rightHand.boneRotations.Length)
{
dest.rightHand.boneRotations[boneIndex] = source.rightHand.boneRotations[boneIndex];
}
EditorUtility.DisplayProgressBar("Copying...", "Copying left hand pose", (float)boneIndex / (float)boneNum / 2f);
}
dest.leftHand.thumbFingerMovementType = source.leftHand.thumbFingerMovementType;

View File

@ -12,29 +12,26 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 5
version: 1
--- !u!21 &2100000
Material:
serializedVersion: 8
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: URPControllerButtonHints
m_Shader: {fileID: 4800000, guid: 650dd9526735d5b46b79224bc6e94025, type: 3}
m_ValidKeywords:
- _SURFACE_TYPE_TRANSPARENT
m_InvalidKeywords: []
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 1
m_DoubleSidedGI: 1
m_CustomRenderQueue: 3000
m_CustomRenderQueue: 3050
stringTagMap:
OriginalShader: Unlit/Texture
RenderType: Transparent
disabledShaderPasses:
- SHADOWCASTER
- DepthOnly
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
@ -86,12 +83,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- PixelSnap: 0
- _AlphaClip: 0
- _Blend: 0
- _BlendOp: 0
- _BumpScale: 1
- _ColorMask: 15
- _Cull: 0
@ -140,4 +135,3 @@ Material:
- g_vWorldAlignedTextureNormal: {r: 0, g: 1, b: 0, a: 0}
- g_vWorldAlignedTexturePosition: {r: 0, g: 0, b: 0, a: 0}
- g_vWorldAlignedTextureSize: {r: 1, g: 1, b: 1, a: 0}
m_BuildTextureStacks: []

View File

@ -12,28 +12,25 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 5
version: 1
--- !u!21 &2100000
Material:
serializedVersion: 8
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: URPControllerTextHintAnchor
m_Shader: {fileID: 4800000, guid: 650dd9526735d5b46b79224bc6e94025, type: 3}
m_ValidKeywords:
- _SURFACE_TYPE_TRANSPARENT
m_InvalidKeywords: []
m_ShaderKeywords:
m_LightmapFlags: 6
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000
m_CustomRenderQueue: 3050
stringTagMap:
RenderType: Transparent
disabledShaderPasses:
- SHADOWCASTER
- DepthOnly
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
@ -85,11 +82,9 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaClip: 0
- _Blend: 0
- _BlendOp: 0
- _BumpScale: 1
- _Cull: 2
- _Cutoff: 0.5
@ -139,4 +134,3 @@ Material:
- g_vWorldAlignedTextureNormal: {r: 0, g: 1, b: 0, a: 0}
- g_vWorldAlignedTexturePosition: {r: 0, g: 0, b: 0, a: 0}
- g_vWorldAlignedTextureSize: {r: 1, g: 1, b: 1, a: 0}
m_BuildTextureStacks: []

View File

@ -12,28 +12,25 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 5
version: 1
--- !u!21 &2100000
Material:
serializedVersion: 8
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: URPControllerTextHintLine
m_Shader: {fileID: 4800000, guid: 650dd9526735d5b46b79224bc6e94025, type: 3}
m_ValidKeywords:
- _SURFACE_TYPE_TRANSPARENT
m_InvalidKeywords: []
m_ShaderKeywords:
m_LightmapFlags: 6
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000
m_CustomRenderQueue: 3050
stringTagMap:
RenderType: Transparent
disabledShaderPasses:
- SHADOWCASTER
- DepthOnly
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
@ -85,12 +82,10 @@ Material:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- PixelSnap: 0
- _AlphaClip: 0
- _Blend: 0
- _BlendOp: 0
- _BumpScale: 1
- _Cull: 2
- _Cutoff: 0.5
@ -140,4 +135,3 @@ Material:
- g_vWorldAlignedTextureNormal: {r: 0, g: 1, b: 0, a: 0}
- g_vWorldAlignedTexturePosition: {r: 0, g: 0, b: 0, a: 0}
- g_vWorldAlignedTextureSize: {r: 1, g: 1, b: 1, a: 0}
m_BuildTextureStacks: []

View File

@ -101,18 +101,6 @@ TextureImporter:
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048

Some files were not shown because too many files have changed in this diff Show More