Updated oculus stuff

This commit is contained in:
Chris Midkiff
2018-10-09 20:59:57 -04:00
parent 1e7362c19f
commit 9b7f63739e
957 changed files with 128988 additions and 588 deletions

View File

@@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: b5f8482295cf23345a0fb48c786a2b00
folderAsset: yes
timeCreated: 1450219319
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,138 @@
%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: Color
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_CustomRenderQueue: -1
stringTagMap: {}
m_SavedProperties:
serializedVersion: 2
m_TexEnvs:
data:
first:
name: _MainTex
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _BumpMap
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _DetailNormalMap
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _ParallaxMap
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _OcclusionMap
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _EmissionMap
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _DetailMask
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _DetailAlbedoMap
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
data:
first:
name: _MetallicGlossMap
second:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
data:
first:
name: _SrcBlend
second: 1
data:
first:
name: _DstBlend
second: 0
data:
first:
name: _Cutoff
second: 0.5
data:
first:
name: _Parallax
second: 0.02
data:
first:
name: _ZWrite
second: 1
data:
first:
name: _Glossiness
second: 0.5
data:
first:
name: _BumpScale
second: 1
data:
first:
name: _OcclusionStrength
second: 1
data:
first:
name: _DetailNormalMapScale
second: 1
data:
first:
name: _UVSec
second: 0
data:
first:
name: _Mode
second: 0
data:
first:
name: _Metallic
second: 0
m_Colors:
data:
first:
name: _EmissionColor
second: {r: 0, g: 0, b: 0, a: 1}
data:
first:
name: _Color
second: {r: 1, g: 0, b: 1, a: 1}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: e92c598ccd7563b408cb22916184a2e9
timeCreated: 1450219331
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: c587b99ce5f86e04696f985f627394f9
folderAsset: yes
timeCreated: 1450124138
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,254 @@
using UnityEngine;
using System.Collections;
public class VoiceModDemo_Logic : MonoBehaviour
{
public OVRVoiceModContext[] contexts;
public Material material;
public Transform[] xfrms;
public EnableSwitch SwitchTarget;
private int targetSet = 0;
// Use this as the init value for the model scale
private Vector3 scale = new Vector3(3.0f, 3.0f, 3.0f);
private float scaleMax = 10.0f;
private int currentPreset = 0;
// Use this for initialization
void Start ()
{
// Add a listener to the OVRMessenger for touch events
OVRMessenger.AddListener<OVRTouchpad.TouchEvent>("Touchpad", LocalTouchEventCallback);
// Initialize the proper target set
targetSet = 0;
SwitchTarget.SetActive(0);
// Set initial color on models
if(material != null)
material.SetColor("_Color", Color.grey);
}
// Update is called once per frame
// Logic for LipSync_Demo
void Update ()
{
// Change preset
int preset = -1;
if(Input.GetKeyDown(KeyCode.Alpha1))
preset = 0;
else
if(Input.GetKeyDown(KeyCode.Alpha2))
preset = 1;
else
if(Input.GetKeyDown(KeyCode.Alpha3))
preset = 2;
else
if(Input.GetKeyDown(KeyCode.Alpha4))
preset = 3;
else
if(Input.GetKeyDown(KeyCode.Alpha5))
preset = 4;
else
if(Input.GetKeyDown(KeyCode.Alpha6))
preset = 5;
else
if(Input.GetKeyDown(KeyCode.Alpha7))
preset = 6;
else
if(Input.GetKeyDown(KeyCode.Alpha8))
preset = 7;
else
if(Input.GetKeyDown(KeyCode.Alpha9))
preset = 8;
else
if(Input.GetKeyDown(KeyCode.Alpha0))
preset = 9;
if(preset != -1)
{
Color c = Color.black;
for (int i = 0; i < contexts.Length; i++)
{
if(contexts[i].SetPreset(preset) == true)
{
// query color from preset and set material color
// of sphere
c = contexts[i].GetPresetColor(preset);
}
}
// Set the material(s) note: each context is sharing a single
// material in this demo :)
if(material != null)
material.SetColor("_Color", c);
}
// Update transforms with context average volume
UpdateModelScale();
// Change visible target context
if (Input.GetKeyDown(KeyCode.Z))
{
targetSet = 0;
SetCurrentTarget();
}
else
if (Input.GetKeyDown(KeyCode.X))
{
targetSet = 1;
SetCurrentTarget();
}
// Close app
if(Input.GetKeyDown (KeyCode.Escape))
Application.Quit();
}
/// <summary>
/// Sets the current target.
/// </summary>
void SetCurrentTarget()
{
switch(targetSet)
{
case(0):
SwitchTarget.SetActive(0);
OVRDebugConsole.Clear();
OVRDebugConsole.Log("MICROPHONE INPUT");
OVRDebugConsole.ClearTimeout(1.5f);
break;
case(1):
SwitchTarget.SetActive(1);
OVRDebugConsole.Clear();
OVRDebugConsole.Log("SAMPLE INPUT");
OVRDebugConsole.ClearTimeout(1.5f);
break;
}
}
/// <summary>
/// Local touch event callback.
/// </summary>
/// <param name="touchEvent">Touch event.</param>
void LocalTouchEventCallback(OVRTouchpad.TouchEvent touchEvent)
{
switch(touchEvent)
{
case(OVRTouchpad.TouchEvent.Left):
targetSet--;
if(targetSet < 0)
targetSet = 1;
SetCurrentTarget();
break;
case(OVRTouchpad.TouchEvent.Right):
targetSet++;
if(targetSet > 1)
targetSet = 0;
SetCurrentTarget();
break;
case(OVRTouchpad.TouchEvent.Up):
if(contexts.Length != 0)
{
if(contexts[0].GetNumPresets() == 0)
{
OVRDebugConsole.Clear();
OVRDebugConsole.Log("NO PRESETS!");
OVRDebugConsole.ClearTimeout(1.5f);
}
else
{
currentPreset++;
if(currentPreset >= contexts[0].GetNumPresets())
currentPreset = 0;
Color c = Color.black;
for (int i = 0; i < contexts.Length; i++)
{
if(contexts[i].SetPreset(currentPreset) == true)
{
// query color from preset and set material color
// of sphere
c = contexts[i].GetPresetColor(currentPreset);
}
}
// Set the material(s) note: each context is sharing a single
// material in this demo :)
if(material != null)
material.SetColor("_Color", c);
}
}
break;
case(OVRTouchpad.TouchEvent.Down):
if(contexts.Length != 0)
{
if(contexts[0].GetNumPresets() == 0)
{
OVRDebugConsole.Clear();
OVRDebugConsole.Log("NO PRESETS!");
OVRDebugConsole.ClearTimeout(1.5f);
}
else
{
currentPreset--;
if(currentPreset < 0)
currentPreset = contexts[0].GetNumPresets() - 1;
Color c = Color.black;
for (int i = 0; i < contexts.Length; i++)
{
if(contexts[i].SetPreset(currentPreset) == true)
{
// query color from preset and set material color
// of sphere
c = contexts[i].GetPresetColor(currentPreset);
}
}
// Set the material(s) note: each context is sharing a single
// material in this demo :)
if(material != null)
material.SetColor("_Color", c);
}
}
break;
}
}
/// <summary>
/// Updates the model scale.
/// </summary>
void UpdateModelScale()
{
for (int i = 0; i < xfrms.Length; i++)
{
if(i < contexts.Length)
{
xfrms[i].localScale = scale * (1.0f + (contexts[i].GetAverageAbsVolume() * scaleMax));
}
}
}
}

View File

@@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: c59da31e1adfd5c40b48ee01f62c1002
timeCreated: 1450135121
licenseType: Store
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,740 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!29 &1
SceneSettings:
m_ObjectHideFlags: 0
m_PVSData:
m_PVSObjectsArray: []
m_PVSPortalsArray: []
m_OcclusionBakeSettings:
smallestOccluder: 5
smallestHole: 0.25
backfaceThreshold: 100
--- !u!104 &2
RenderSettings:
m_ObjectHideFlags: 0
serializedVersion: 6
m_Fog: 0
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
m_FogMode: 3
m_FogDensity: 0.01
m_LinearFogStart: 0
m_LinearFogEnd: 300
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
m_AmbientIntensity: 1
m_AmbientMode: 3
m_SkyboxMaterial: {fileID: 0}
m_HaloStrength: 0.5
m_FlareStrength: 1
m_FlareFadeSpeed: 3
m_HaloTexture: {fileID: 0}
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
m_DefaultReflectionMode: 0
m_DefaultReflectionResolution: 128
m_ReflectionBounces: 1
m_ReflectionIntensity: 1
m_CustomReflection: {fileID: 0}
m_Sun: {fileID: 0}
--- !u!157 &3
LightmapSettings:
m_ObjectHideFlags: 0
serializedVersion: 6
m_GIWorkflowMode: 1
m_LightmapsMode: 1
m_GISettings:
serializedVersion: 2
m_BounceScale: 1
m_IndirectOutputScale: 1
m_AlbedoBoost: 1
m_TemporalCoherenceThreshold: 1
m_EnvironmentLightingMode: 0
m_EnableBakedLightmaps: 0
m_EnableRealtimeLightmaps: 0
m_LightmapEditorSettings:
serializedVersion: 3
m_Resolution: 2
m_BakeResolution: 40
m_TextureWidth: 1024
m_TextureHeight: 1024
m_AOMaxDistance: 1
m_Padding: 2
m_CompAOExponent: 0
m_LightmapParameters: {fileID: 0}
m_TextureCompression: 1
m_FinalGather: 0
m_FinalGatherRayCount: 1024
m_ReflectionCompression: 2
m_LightingDataAsset: {fileID: 0}
m_RuntimeCPUUsage: 25
--- !u!196 &4
NavMeshSettings:
serializedVersion: 2
m_ObjectHideFlags: 0
m_BuildSettings:
serializedVersion: 2
agentRadius: 0.5
agentHeight: 2
agentSlope: 45
agentClimb: 0.4
ledgeDropHeight: 0
maxJumpAcrossDistance: 0
accuratePlacement: 0
minRegionArea: 2
cellSize: 0.16666667
manualCellSize: 0
m_NavMeshData: {fileID: 0}
--- !u!1001 &21197967
Prefab:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_LocalPosition.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 447286, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
propertyPath: m_RootOrder
value: 2
objectReference: {fileID: 0}
m_RemovedComponents: []
m_ParentPrefab: {fileID: 100100000, guid: 013e95e8ef6cafb4b93fe4b6123ca5cb, type: 2}
m_IsPrefabParent: 0
--- !u!1001 &420186774
Prefab:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_LocalPosition.z
value: -10
objectReference: {fileID: 0}
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: 485614, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
propertyPath: m_RootOrder
value: 0
objectReference: {fileID: 0}
m_RemovedComponents: []
m_ParentPrefab: {fileID: 100100000, guid: 4887a8c62805ff24aa5f127600cbbde3, type: 2}
m_IsPrefabParent: 0
--- !u!1 &563670406
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 4
m_Component:
- 4: {fileID: 563670407}
- 82: {fileID: 563670409}
- 114: {fileID: 563670408}
m_Layer: 0
m_Name: SampleInput
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 0
--- !u!4 &563670407
Transform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 563670406}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 1103851422}
m_Father: {fileID: 1783704650}
m_RootOrder: 1
--- !u!114 &563670408
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 563670406}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: beb05abfbdc9f804ab7e1bdd89727bd7, type: 3}
m_Name:
m_EditorClassIdentifier:
audioSource: {fileID: 0}
gain: 1
audioMute: 0
loopback: 108
VM_MixAudio: 1
VM_Pitch: 1
VM_Bands: 32
VM_FormantCorrect: 0
VM_C1_TrackPitch: 0
VM_C1_Type: 0
VM_C1_Gain: 0.5
VM_C1_Freq: 440
VM_C1_Note: 67
VM_C1_PulseWidth: 0.5
VM_C1_CycledNoiseSize: 512
VM_C2_TrackPitch: 0
VM_C2_Type: 0
VM_C2_Gain: 0.5
VM_C2_Freq: 440
VM_C2_Note: 67
VM_C2_PulseWidth: 0.5
VM_C2_CycledNoiseSize: 512
--- !u!82 &563670409
AudioSource:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 563670406}
m_Enabled: 1
serializedVersion: 4
OutputAudioMixerGroup: {fileID: 0}
m_audioClip: {fileID: 8300000, guid: 66cec73d2756bad4387104c24275d8ee, type: 3}
m_PlayOnAwake: 1
m_Volume: 1
m_Pitch: 1
Loop: 1
Mute: 0
Spatialize: 0
Priority: 128
DopplerLevel: 1
MinDistance: 1
MaxDistance: 500
Pan2D: 0
rolloffMode: 0
BypassEffects: 0
BypassListenerEffects: 0
BypassReverbZones: 0
rolloffCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
panLevelCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 0
spreadCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 0
reverbZoneMixCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 0
--- !u!1 &1002608923
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 4
m_Component:
- 4: {fileID: 1002608924}
- 33: {fileID: 1002608927}
- 135: {fileID: 1002608926}
- 23: {fileID: 1002608925}
m_Layer: 0
m_Name: SphereMicInput
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1002608924
Transform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1002608923}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 5, y: 5, z: 5}
m_Children: []
m_Father: {fileID: 1953342594}
m_RootOrder: 0
--- !u!23 &1002608925
MeshRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1002608923}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_Materials:
- {fileID: 2100000, guid: e92c598ccd7563b408cb22916184a2e9, type: 2}
m_SubsetIndices:
m_StaticBatchRoot: {fileID: 0}
m_UseLightProbes: 1
m_ReflectionProbeUsage: 1
m_ProbeAnchor: {fileID: 0}
m_ScaleInLightmap: 1
m_PreserveUVs: 1
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingOrder: 0
--- !u!135 &1002608926
SphereCollider:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1002608923}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Radius: 0.5
m_Center: {x: 0, y: 0, z: 0}
--- !u!33 &1002608927
MeshFilter:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1002608923}
m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
--- !u!1 &1103851421
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 4
m_Component:
- 4: {fileID: 1103851422}
- 33: {fileID: 1103851425}
- 135: {fileID: 1103851424}
- 23: {fileID: 1103851423}
m_Layer: 0
m_Name: SphereSampleInput
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1103851422
Transform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1103851421}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 5, y: 5, z: 5}
m_Children: []
m_Father: {fileID: 563670407}
m_RootOrder: 0
--- !u!23 &1103851423
MeshRenderer:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1103851421}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_Materials:
- {fileID: 2100000, guid: e92c598ccd7563b408cb22916184a2e9, type: 2}
m_SubsetIndices:
m_StaticBatchRoot: {fileID: 0}
m_UseLightProbes: 1
m_ReflectionProbeUsage: 1
m_ProbeAnchor: {fileID: 0}
m_ScaleInLightmap: 1
m_PreserveUVs: 1
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingOrder: 0
--- !u!135 &1103851424
SphereCollider:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1103851421}
m_Material: {fileID: 0}
m_IsTrigger: 0
m_Enabled: 1
serializedVersion: 2
m_Radius: 0.5
m_Center: {x: 0, y: 0, z: 0}
--- !u!33 &1103851425
MeshFilter:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1103851421}
m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0}
--- !u!1 &1783704647
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 4
m_Component:
- 4: {fileID: 1783704650}
- 114: {fileID: 1783704649}
- 114: {fileID: 1783704648}
m_Layer: 0
m_Name: VoiceModInputs
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &1783704648
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1783704647}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: ae0626e0efd05a54f82ac59bc4c3557d, type: 3}
m_Name:
m_EditorClassIdentifier:
SwitchTargets:
- {fileID: 1953342590}
- {fileID: 563670406}
--- !u!114 &1783704649
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1783704647}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: c59da31e1adfd5c40b48ee01f62c1002, type: 3}
m_Name:
m_EditorClassIdentifier:
contexts:
- {fileID: 1953342591}
- {fileID: 563670408}
material: {fileID: 2100000, guid: e92c598ccd7563b408cb22916184a2e9, type: 2}
xfrms:
- {fileID: 1002608924}
- {fileID: 1103851422}
SwitchTarget: {fileID: 1783704648}
--- !u!4 &1783704650
Transform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1783704647}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 1953342594}
- {fileID: 563670407}
m_Father: {fileID: 0}
m_RootOrder: 1
--- !u!1 &1953342590
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 4
m_Component:
- 4: {fileID: 1953342594}
- 82: {fileID: 1953342593}
- 114: {fileID: 1953342592}
- 114: {fileID: 1953342591}
m_Layer: 0
m_Name: MicrophoneInput
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!114 &1953342591
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1953342590}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: beb05abfbdc9f804ab7e1bdd89727bd7, type: 3}
m_Name:
m_EditorClassIdentifier:
audioSource: {fileID: 0}
gain: 1
audioMute: 1
loopback: 108
VM_MixAudio: 1
VM_Pitch: 1
VM_Bands: 32
VM_FormantCorrect: 0
VM_C1_TrackPitch: 0
VM_C1_Type: 0
VM_C1_Gain: 0.5
VM_C1_Freq: 440
VM_C1_Note: 67
VM_C1_PulseWidth: 0.5
VM_C1_CycledNoiseSize: 512
VM_C2_TrackPitch: 0
VM_C2_Type: 0
VM_C2_Gain: 0.5
VM_C2_Freq: 440
VM_C2_Note: 67
VM_C2_PulseWidth: 0.5
VM_C2_CycledNoiseSize: 512
--- !u!114 &1953342592
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1953342590}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 19e8290db1b2e0748a6126d146686a6d, type: 3}
m_Name:
m_EditorClassIdentifier:
audioSource: {fileID: 0}
GuiSelectDevice: 1
sensitivity: 100
sourceVolume: 100
micFrequency: 16000
micControl: 2
selectedDevice:
loudness: 0
--- !u!82 &1953342593
AudioSource:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1953342590}
m_Enabled: 1
serializedVersion: 4
OutputAudioMixerGroup: {fileID: 0}
m_audioClip: {fileID: 0}
m_PlayOnAwake: 1
m_Volume: 1
m_Pitch: 1
Loop: 1
Mute: 0
Spatialize: 0
Priority: 128
DopplerLevel: 1
MinDistance: 1
MaxDistance: 500
Pan2D: 0
rolloffMode: 0
BypassEffects: 0
BypassListenerEffects: 0
BypassReverbZones: 0
rolloffCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
- time: 1
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
panLevelCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 0
spreadCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 0
reverbZoneMixCustomCurve:
serializedVersion: 2
m_Curve:
- time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 0
--- !u!4 &1953342594
Transform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 1953342590}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 1002608924}
m_Father: {fileID: 1783704650}
m_RootOrder: 0
--- !u!1 &2022580288
GameObject:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
serializedVersion: 4
m_Component:
- 4: {fileID: 2022580290}
- 108: {fileID: 2022580289}
m_Layer: 0
m_Name: Directional light
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!108 &2022580289
Light:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 2022580288}
m_Enabled: 1
serializedVersion: 6
m_Type: 1
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Intensity: 1
m_Range: 10
m_SpotAngle: 30
m_CookieSize: 10
m_Shadows:
m_Type: 0
m_Resolution: -1
m_Strength: 1
m_Bias: 0.05
m_NormalBias: 0.4
m_NearPlane: 0.2
m_Cookie: {fileID: 0}
m_DrawHalo: 0
m_Flare: {fileID: 0}
m_RenderMode: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_Lightmapping: 4
m_BounceIntensity: 1
m_ShadowRadius: 0
m_ShadowAngle: 0
m_AreaSize: {x: 1, y: 1}
--- !u!4 &2022580290
Transform:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_GameObject: {fileID: 2022580288}
m_LocalRotation: {x: 0.40821794, y: -0.23456973, z: 0.109381676, w: 0.87542605}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 3

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6b58c6b47668e3b49b538ddc3f3a4c5b
timeCreated: 1450119176
licenseType: Store
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant: