Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
spoerri reto - rspoerri
NetXr
Commits
592bfc02
Commit
592bfc02
authored
Jun 01, 2018
by
Reto Spoerri - WorkPC
Browse files
fix networked hand position transmission and inverse kinematics ifor 02_Beta/Example
parent
b82e0583
Changes
35
Expand all
Hide whitespace changes
Inline
Side-by-side
NetXr-UnityProject/Assets/NetXr-Examples/01_Stable/01_MinSample/NetXr-MinSample-Backup.unity
View file @
592bfc02
...
...
@@ -13,7 +13,7 @@ OcclusionCullingSettings:
---
!u!104
&2
RenderSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
8
serializedVersion
:
9
m_Fog
:
0
m_FogColor
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
1
}
m_FogMode
:
3
...
...
@@ -39,6 +39,7 @@ RenderSettings:
m_CustomReflection
:
{
fileID
:
0
}
m_Sun
:
{
fileID
:
0
}
m_IndirectSpecularColor
:
{
r
:
0.07746715
,
g
:
0.08162211
,
b
:
0.07367143
,
a
:
0.7
}
m_UseRadianceAmbientProbe
:
0
---
!u!157
&3
LightmapSettings
:
m_ObjectHideFlags
:
0
...
...
@@ -54,11 +55,10 @@ LightmapSettings:
m_EnableBakedLightmaps
:
0
m_EnableRealtimeLightmaps
:
0
m_LightmapEditorSettings
:
serializedVersion
:
9
serializedVersion
:
10
m_Resolution
:
2
m_BakeResolution
:
40
m_TextureWidth
:
1024
m_TextureHeight
:
1024
m_AtlasSize
:
1024
m_AO
:
0
m_AOMaxDistance
:
1
m_CompAOExponent
:
1
...
...
@@ -239,7 +239,7 @@ MonoBehaviour:
m_ScriptCRCCheck
:
1
m_MaxDelay
:
0.01
m_LogLevel
:
2
m_PlayerPrefab
:
{
fileID
:
1000010390323862
,
guid
:
1dac7db7e88ab3147826bd5057eec1aa
,
m_PlayerPrefab
:
{
fileID
:
1000010390323862
,
guid
:
2d07042552a10ee47b80baac8646c853
,
type
:
2
}
m_AutoCreatePlayer
:
0
m_PlayerSpawnMethod
:
0
...
...
NetXr-UnityProject/Assets/NetXr-Examples/01_Stable/02_DragObject/NetXr-DragObject.unity
View file @
592bfc02
This diff is collapsed.
Click to expand it.
NetXr-UnityProject/Assets/NetXr-Examples/02_Beta/LargeSample/Scenes/NetXr-Example-v2.unity
View file @
592bfc02
This diff is collapsed.
Click to expand it.
NetXr-UnityProject/Assets/NetXr-Examples/03_WIP/Navmesh-Teleportation/NetXr-MinSample.unity
View file @
592bfc02
...
...
@@ -13,7 +13,7 @@ OcclusionCullingSettings:
---
!u!104
&2
RenderSettings
:
m_ObjectHideFlags
:
0
serializedVersion
:
8
serializedVersion
:
9
m_Fog
:
0
m_FogColor
:
{
r
:
0.5
,
g
:
0.5
,
b
:
0.5
,
a
:
1
}
m_FogMode
:
3
...
...
@@ -39,6 +39,7 @@ RenderSettings:
m_CustomReflection
:
{
fileID
:
0
}
m_Sun
:
{
fileID
:
0
}
m_IndirectSpecularColor
:
{
r
:
0.07746715
,
g
:
0.08162211
,
b
:
0.07367143
,
a
:
0.7
}
m_UseRadianceAmbientProbe
:
0
---
!u!157
&3
LightmapSettings
:
m_ObjectHideFlags
:
0
...
...
@@ -54,11 +55,10 @@ LightmapSettings:
m_EnableBakedLightmaps
:
0
m_EnableRealtimeLightmaps
:
0
m_LightmapEditorSettings
:
serializedVersion
:
9
serializedVersion
:
10
m_Resolution
:
2
m_BakeResolution
:
40
m_TextureWidth
:
1024
m_TextureHeight
:
1024
m_AtlasSize
:
1024
m_AO
:
0
m_AOMaxDistance
:
1
m_CompAOExponent
:
1
...
...
@@ -225,7 +225,7 @@ MonoBehaviour:
m_ScriptCRCCheck
:
1
m_MaxDelay
:
0.01
m_LogLevel
:
2
m_PlayerPrefab
:
{
fileID
:
1000010390323862
,
guid
:
d67f75b8ecc3a4966b8f9dfe49038e12
,
m_PlayerPrefab
:
{
fileID
:
1000010390323862
,
guid
:
2d07042552a10ee47b80baac8646c853
,
type
:
2
}
m_AutoCreatePlayer
:
0
m_PlayerSpawnMethod
:
0
...
...
@@ -485,6 +485,7 @@ Camera:
m_TargetEye
:
3
m_HDR
:
0
m_AllowMSAA
:
1
m_AllowDynamicResolution
:
0
m_ForceIntoRT
:
0
m_OcclusionCulling
:
1
m_StereoConvergence
:
10
...
...
@@ -582,9 +583,9 @@ MeshCollider:
m_Material
:
{
fileID
:
0
}
m_IsTrigger
:
0
m_Enabled
:
1
serializedVersion
:
2
serializedVersion
:
3
m_Convex
:
0
m_
InflateMesh
:
0
m_
CookingOptions
:
14
m_SkinWidth
:
0.01
m_Mesh
:
{
fileID
:
4300000
,
guid
:
75e893a9a97bb8e4ebef94e5bb196239
,
type
:
3
}
---
!u!1001
&1886986021
...
...
NetXr-UnityProject/Assets/NetXr-Examples/Scripts/VrHandController.cs
View file @
592bfc02
...
...
@@ -210,6 +210,7 @@ public class VrHandController : NetworkBehaviour {
ApplyAngles
();
}
else
{
UpdateTarget
();
ApplyAngles
();
}
}
...
...
@@ -303,7 +304,8 @@ public class VrHandController : NetworkBehaviour {
void
UpdateTarget
()
{
// read position of Hand from NetworkPlayerController
foreach
(
NetworkInputDevice
netInputDev
in
NetworkPlayerController
.
LocalInstance
.
addedInputDevices
)
{
// foreach (NetworkInputDevice netInputDev in NetworkPlayerController.LocalInstance.addedInputDevices) {
foreach
(
NetworkInputDevice
netInputDev
in
gameObject
.
GetComponent
<
NetworkPlayerController
>().
addedInputDevices
)
{
if
(
netInputDev
!=
null
)
{
if
(
netInputDev
.
deviceHand
==
handedness
)
{
handTarget
.
position
=
netInputDev
.
transform
.
position
+
netInputDev
.
transform
.
forward
*
handOffset
.
z
+
netInputDev
.
transform
.
up
*
handOffset
.
y
+
netInputDev
.
transform
.
right
*
handOffset
.
x
;
...
...
NetXr-UnityProject/Assets/NetXr-ThirdParty.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: 165027188c11f2c4ca4d34b2792fa142
folderAsset: yes
timeCreated: 1520939379
licenseType: Pro
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: 39ab1341ae25554419248c118d51510f
folderAsset: yes
timeCreated: 1520939386
licenseType: Pro
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: a6f1f532e390a034cbd66fb91be6b2fa
folderAsset: yes
timeCreated: 1499788554
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Arm.FBX
deleted
100644 → 0
View file @
b82e0583
File deleted
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Arm.FBX.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: 419339190ddd8b14baeff0b4f9307a55
timeCreated: 1499788733
licenseType: Store
ModelImporter:
serializedVersion: 19
fileIDToRecycleName:
100000: //RootNode
100002: Arm
100004: Clavicle
100006: Forearm
100008: Hand
100010: Torso
100012: Upper Arm
400000: //RootNode
400002: Arm
400004: Clavicle
400006: Forearm
400008: Hand
400010: Torso
400012: Upper Arm
2300000: //RootNode
3300000: //RootNode
4300000: Arm
7400000: Take 001
9500000: //RootNode
13700000: Arm
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
importBlendShapes: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
importAnimation: 0
copyAvatar: 0
humanDescription:
serializedVersion: 2
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1}
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 2
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Materials.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: 9557c06cb29c63d48a1d56e8869c54fe
folderAsset: yes
timeCreated: 1499788733
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Materials/Arm.mat
deleted
100644 → 0
View file @
b82e0583
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!21
&2100000
Material
:
serializedVersion
:
6
m_ObjectHideFlags
:
0
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
0
}
m_Name
:
Arm
m_Shader
:
{
fileID
:
45
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
m_ShaderKeywords
:
_EMISSION _METALLICGLOSSMAP _NORMALMAP _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A
_SPECGLOSSMAP
m_LightmapFlags
:
1
m_EnableInstancingVariants
:
0
m_DoubleSidedGI
:
0
m_CustomRenderQueue
:
-1
stringTagMap
:
{}
disabledShaderPasses
:
[]
m_SavedProperties
:
serializedVersion
:
3
m_TexEnvs
:
-
_BumpMap
:
m_Texture
:
{
fileID
:
2800000
,
guid
:
f3b8a1b2025a2b14da282ba7b5b7e9a1
,
type
:
3
}
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
:
2800000
,
guid
:
291ee55cb45c2d34ebebbe622a511da0
,
type
:
3
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Offset
:
{
x
:
0
,
y
:
0
}
-
_MainTex
:
m_Texture
:
{
fileID
:
2800000
,
guid
:
291ee55cb45c2d34ebebbe622a511da0
,
type
:
3
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Offset
:
{
x
:
0
,
y
:
0
}
-
_MetallicGlossMap
:
m_Texture
:
{
fileID
:
2800000
,
guid
:
291ee55cb45c2d34ebebbe622a511da0
,
type
:
3
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Offset
:
{
x
:
0
,
y
:
0
}
-
_OcclusionMap
:
m_Texture
:
{
fileID
:
2800000
,
guid
:
291ee55cb45c2d34ebebbe622a511da0
,
type
:
3
}
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
:
2800000
,
guid
:
291ee55cb45c2d34ebebbe622a511da0
,
type
:
3
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Offset
:
{
x
:
0
,
y
:
0
}
m_Floats
:
-
_BumpScale
:
1
-
_Cutoff
:
0.5
-
_DetailNormalMapScale
:
1
-
_DstBlend
:
0
-
_GlossMapScale
:
0.42
-
_Glossiness
:
0.5
-
_GlossyReflections
:
1
-
_Metallic
:
0
-
_Mode
:
0
-
_OcclusionStrength
:
0.344
-
_Parallax
:
0.02
-
_Shininess
:
0.09
-
_SmoothnessTextureChannel
:
1
-
_SpecularHighlights
:
1
-
_SrcBlend
:
1
-
_UVSec
:
0
-
_ZWrite
:
1
m_Colors
:
-
_Color
:
{
r
:
0.72794116
,
g
:
0.53229773
,
b
:
0.44425818
,
a
:
1
}
-
_EmissionColor
:
{
r
:
0.11764705
,
g
:
0.089965396
,
b
:
0.089965396
,
a
:
1
}
-
_SpecColor
:
{
r
:
1
,
g
:
0.9396552
,
b
:
0.74264705
,
a
:
1
}
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Materials/Arm.mat.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: 16630cbf543d03d42b4dde7d0d66b32a
timeCreated: 1499788733
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Materials/Blue.mat
deleted
100644 → 0
View file @
b82e0583
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!21
&2100000
Material
:
serializedVersion
:
6
m_ObjectHideFlags
:
0
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
0
}
m_Name
:
Blue
m_Shader
:
{
fileID
:
46
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
m_ShaderKeywords
:
_EMISSION
m_LightmapFlags
:
1
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
:
0
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Offset
:
{
x
:
0
,
y
:
0
}
-
_MetallicGlossMap
:
m_Texture
:
{
fileID
:
0
}
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_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
:
0
,
g
:
0.21379304
,
b
:
1
,
a
:
1
}
-
_EmissionColor
:
{
r
:
0
,
g
:
0
,
b
:
0
,
a
:
1
}
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Materials/Blue.mat.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: ee47bd4f706831b4daa5d4c5a3a5be77
timeCreated: 1499803716
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Materials/Red.mat
deleted
100644 → 0
View file @
b82e0583
%YAML
1.1
%TAG
!u!
tag:unity3d.com,2011:
---
!u!21
&2100000
Material
:
serializedVersion
:
6
m_ObjectHideFlags
:
0
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
0
}
m_Name
:
Red
m_Shader
:
{
fileID
:
46
,
guid
:
0000000000000000f000000000000000
,
type
:
0
}
m_ShaderKeywords
:
_EMISSION
m_LightmapFlags
:
1
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
:
0
}
m_Scale
:
{
x
:
1
,
y
:
1
}
m_Offset
:
{
x
:
0
,
y
:
0
}
-
_MetallicGlossMap
:
m_Texture
:
{
fileID
:
0
}
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_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
:
0
,
b
:
0
,
a
:
1
}
-
_EmissionColor
:
{
r
:
0
,
g
:
0
,
b
:
0
,
a
:
1
}
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/3D/Materials/Red.mat.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: be56296645a02094988c7cfe77fc94e6
timeCreated: 1499803716
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/Inverse Kinematics.pdf
deleted
100644 → 0
View file @
b82e0583
File deleted
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/Inverse Kinematics.pdf.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: ed8ab5107299d0b4f9fcfabb717aee5c
timeCreated: 1499813316
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
NetXr-UnityProject/Assets/NetXr-ThirdParty/Inverse Kinematics/Scenes.meta
deleted
100644 → 0
View file @
b82e0583
fileFormatVersion: 2
guid: eac06716687d88841972672bb447b67b
folderAsset: yes
timeCreated: 1499788572
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment