initial upload
76
vrcharades-unity/vrcharades-master/.gitignore
vendored
Normal file
@ -0,0 +1,76 @@
|
||||
# This .gitignore file should be placed at the root of your Unity project directory
|
||||
#
|
||||
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
|
||||
#
|
||||
.utmp/
|
||||
/[Ll]ibrary/
|
||||
/[Tt]emp/
|
||||
/[Oo]bj/
|
||||
/[Bb]uild/
|
||||
/[Bb]uilds/
|
||||
/[Ll]ogs/
|
||||
/[Uu]ser[Ss]ettings/
|
||||
*.log
|
||||
|
||||
# MemoryCaptures can get excessive in size.
|
||||
# They also could contain extremely sensitive data
|
||||
/[Mm]emoryCaptures/
|
||||
|
||||
# Recordings can get excessive in size
|
||||
/[Rr]ecordings/
|
||||
|
||||
# Uncomment this line if you wish to ignore the asset store tools plugin
|
||||
# /[Aa]ssets/AssetStoreTools*
|
||||
|
||||
# Autogenerated Jetbrains Rider plugin
|
||||
/[Aa]ssets/Plugins/Editor/JetBrains*
|
||||
|
||||
# Visual Studio cache directory
|
||||
.vs/
|
||||
|
||||
# Gradle cache directory
|
||||
.gradle/
|
||||
|
||||
# Autogenerated VS/MD/Consulo solution and project files
|
||||
ExportedObj/
|
||||
.consulo/
|
||||
*.csproj
|
||||
*.unityproj
|
||||
*.sln
|
||||
*.suo
|
||||
*.tmp
|
||||
*.user
|
||||
*.userprefs
|
||||
*.pidb
|
||||
*.booproj
|
||||
*.svd
|
||||
*.pdb
|
||||
*.mdb
|
||||
*.opendb
|
||||
*.VC.db
|
||||
|
||||
# Unity3D generated meta files
|
||||
*.pidb.meta
|
||||
*.pdb.meta
|
||||
*.mdb.meta
|
||||
|
||||
# Unity3D generated file on crash reports
|
||||
sysinfo.txt
|
||||
|
||||
# Builds
|
||||
*.apk
|
||||
*.aab
|
||||
*.unitypackage
|
||||
*.unitypackage.meta
|
||||
*.app
|
||||
|
||||
# Crashlytics generated file
|
||||
crashlytics-build.properties
|
||||
|
||||
# Packed Addressables
|
||||
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
|
||||
|
||||
# Temporary auto-generated Android Assets
|
||||
/[Aa]ssets/[Ss]treamingAssets/aa.meta
|
||||
/[Aa]ssets/[Ss]treamingAssets/aa/*
|
||||
output/
|
||||
5
vrcharades-unity/vrcharades-master/.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"visualstudiotoolsforunity.vstuc"
|
||||
]
|
||||
}
|
||||
10
vrcharades-unity/vrcharades-master/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Attach to Unity",
|
||||
"type": "vstuc",
|
||||
"request": "attach"
|
||||
}
|
||||
]
|
||||
}
|
||||
70
vrcharades-unity/vrcharades-master/.vscode/settings.json
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
{
|
||||
"files.exclude": {
|
||||
"**/.DS_Store": true,
|
||||
"**/.git": true,
|
||||
"**/.vs": true,
|
||||
"**/.gitmodules": true,
|
||||
"**/.vsconfig": true,
|
||||
"**/*.booproj": true,
|
||||
"**/*.pidb": true,
|
||||
"**/*.suo": true,
|
||||
"**/*.user": true,
|
||||
"**/*.userprefs": true,
|
||||
"**/*.unityproj": true,
|
||||
"**/*.dll": true,
|
||||
"**/*.exe": true,
|
||||
"**/*.pdf": true,
|
||||
"**/*.mid": true,
|
||||
"**/*.midi": true,
|
||||
"**/*.wav": true,
|
||||
"**/*.gif": true,
|
||||
"**/*.ico": true,
|
||||
"**/*.jpg": true,
|
||||
"**/*.jpeg": true,
|
||||
"**/*.png": true,
|
||||
"**/*.psd": true,
|
||||
"**/*.tga": true,
|
||||
"**/*.tif": true,
|
||||
"**/*.tiff": true,
|
||||
"**/*.3ds": true,
|
||||
"**/*.3DS": true,
|
||||
"**/*.fbx": true,
|
||||
"**/*.FBX": true,
|
||||
"**/*.lxo": true,
|
||||
"**/*.LXO": true,
|
||||
"**/*.ma": true,
|
||||
"**/*.MA": true,
|
||||
"**/*.obj": true,
|
||||
"**/*.OBJ": true,
|
||||
"**/*.asset": true,
|
||||
"**/*.cubemap": true,
|
||||
"**/*.flare": true,
|
||||
"**/*.mat": true,
|
||||
"**/*.meta": true,
|
||||
"**/*.prefab": true,
|
||||
"**/*.unity": true,
|
||||
"build/": true,
|
||||
"Build/": true,
|
||||
"Library/": true,
|
||||
"library/": true,
|
||||
"obj/": true,
|
||||
"Obj/": true,
|
||||
"Logs/": true,
|
||||
"logs/": true,
|
||||
"ProjectSettings/": true,
|
||||
"UserSettings/": true,
|
||||
"temp/": true,
|
||||
"Temp/": true
|
||||
},
|
||||
"files.associations": {
|
||||
"*.asset": "yaml",
|
||||
"*.meta": "yaml",
|
||||
"*.prefab": "yaml",
|
||||
"*.unity": "yaml",
|
||||
},
|
||||
"explorer.fileNesting.enabled": true,
|
||||
"explorer.fileNesting.patterns": {
|
||||
"*.sln": "*.csproj",
|
||||
},
|
||||
"dotnet.defaultSolution": "facetracking.sln"
|
||||
}
|
||||
6
vrcharades-unity/vrcharades-master/.vsconfig
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"components": [
|
||||
"Microsoft.VisualStudio.Workload.ManagedGame"
|
||||
]
|
||||
}
|
||||
8
vrcharades-unity/vrcharades-master/Assets/Audio.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f664aa3fcaad1e04bb702f2a2d0395da
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f301a4a9f00181547b10a7558cc4ed2e
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ffd9d4a6c6d4b764391c7b21981a7224
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
vrcharades-unity/vrcharades-master/Assets/Audio/wrong-47985.mp3
Normal file
@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dc9dc1cc8ea3e254c98b031fca347fab
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 8
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,792 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &-7421096243121189777
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 81180773991d8724ab7f2d216912b564, type: 3}
|
||||
m_Name: ChromaticAberration
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
intensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
--- !u!114 &-7418140390737849241
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 29fa0085f50d5e54f8144f766051a691, type: 3}
|
||||
m_Name: FilmGrain
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
type:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
intensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
response:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.8
|
||||
texture:
|
||||
m_OverrideState: 1
|
||||
m_Value: {fileID: 0}
|
||||
--- !u!114 &-6787609107417152939
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: fb60a22f311433c4c962b888d1393f88, type: 3}
|
||||
m_Name: PaniniProjection
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
distance:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
cropToFit:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
--- !u!114 &-5954177847976826866
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 558a8e2b6826cf840aae193990ba9f2e, type: 3}
|
||||
m_Name: ShadowsMidtonesHighlights
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
shadows:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 1, y: 1, z: 1, w: 0}
|
||||
midtones:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 1, y: 1, z: 1, w: 0}
|
||||
highlights:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 1, y: 1, z: 1, w: 0}
|
||||
shadowsStart:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
shadowsEnd:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.3
|
||||
highlightsStart:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.55
|
||||
highlightsEnd:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
--- !u!114 &-5844943586150005936
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: e021b4c809a781e468c2988c016ebbea, type: 3}
|
||||
m_Name: ColorLookup
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
texture:
|
||||
m_OverrideState: 1
|
||||
m_Value: {fileID: 0}
|
||||
dimension: 1
|
||||
contribution:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
--- !u!114 &-5386571787587349074
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 0b2db86121404754db890f4c8dfe81b2, type: 3}
|
||||
m_Name: Bloom
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
skipIterations:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
threshold:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.9
|
||||
intensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
scatter:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.7
|
||||
clamp:
|
||||
m_OverrideState: 1
|
||||
m_Value: 65472
|
||||
tint:
|
||||
m_OverrideState: 1
|
||||
m_Value: {r: 1, g: 1, b: 1, a: 1}
|
||||
highQualityFiltering:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
downscale:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
maxIterations:
|
||||
m_OverrideState: 1
|
||||
m_Value: 6
|
||||
dirtTexture:
|
||||
m_OverrideState: 1
|
||||
m_Value: {fileID: 0}
|
||||
dimension: 1
|
||||
dirtIntensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
--- !u!114 &-1377927621367197308
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 221518ef91623a7438a71fef23660601, type: 3}
|
||||
m_Name: WhiteBalance
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
temperature:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
tint:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
--- !u!114 &-1316422313757601441
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 899c54efeace73346a0a16faa3afe726, type: 3}
|
||||
m_Name: Vignette
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
color:
|
||||
m_OverrideState: 1
|
||||
m_Value: {r: 0, g: 0, b: 0, a: 1}
|
||||
center:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 0.5, y: 0.5}
|
||||
intensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
smoothness:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.2
|
||||
rounded:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
--- !u!114 &-324871269950643110
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 06437c1ff663d574d9447842ba0a72e4, type: 3}
|
||||
m_Name: ScreenSpaceLensFlare
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
intensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
tintColor:
|
||||
m_OverrideState: 1
|
||||
m_Value: {r: 1, g: 1, b: 1, a: 1}
|
||||
bloomMip:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
firstFlareIntensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
secondaryFlareIntensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
warpedFlareIntensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
warpedFlareScale:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 1, y: 1}
|
||||
samples:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
sampleDimmer:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.5
|
||||
vignetteEffect:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
startingPosition:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1.25
|
||||
scale:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1.5
|
||||
streaksIntensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
streaksLength:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.5
|
||||
streaksOrientation:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
streaksThreshold:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.25
|
||||
resolution:
|
||||
m_OverrideState: 1
|
||||
m_Value: 4
|
||||
chromaticAbberationIntensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.5
|
||||
--- !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: d7fd9488000d3734a9e00ee676215985, type: 3}
|
||||
m_Name: DefaultVolumeProfile
|
||||
m_EditorClassIdentifier:
|
||||
components:
|
||||
- {fileID: 6058122952597297739}
|
||||
- {fileID: 740159920569565729}
|
||||
- {fileID: -1377927621367197308}
|
||||
- {fileID: 620222539856011564}
|
||||
- {fileID: -7421096243121189777}
|
||||
- {fileID: 4128515664278618566}
|
||||
- {fileID: -324871269950643110}
|
||||
- {fileID: 919598218924102584}
|
||||
- {fileID: 14229295411216620}
|
||||
- {fileID: -6787609107417152939}
|
||||
- {fileID: 9026691863995123148}
|
||||
- {fileID: -5844943586150005936}
|
||||
- {fileID: 3598312518371328039}
|
||||
- {fileID: -5954177847976826866}
|
||||
- {fileID: -1316422313757601441}
|
||||
- {fileID: -7418140390737849241}
|
||||
- {fileID: 1563326871748030085}
|
||||
- {fileID: -5386571787587349074}
|
||||
- {fileID: 2609520313565454508}
|
||||
--- !u!114 &14229295411216620
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 5485954d14dfb9a4c8ead8edb0ded5b1, type: 3}
|
||||
m_Name: LiftGammaGain
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
lift:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 1, y: 1, z: 1, w: 0}
|
||||
gamma:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 1, y: 1, z: 1, w: 0}
|
||||
gain:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 1, y: 1, z: 1, w: 0}
|
||||
--- !u!114 &620222539856011564
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: c5e1dc532bcb41949b58bc4f2abfbb7e, type: 3}
|
||||
m_Name: LensDistortion
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
intensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
xMultiplier:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
yMultiplier:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
center:
|
||||
m_OverrideState: 1
|
||||
m_Value: {x: 0.5, y: 0.5}
|
||||
scale:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
--- !u!114 &740159920569565729
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: ccf1aba9553839d41ae37dd52e9ebcce, type: 3}
|
||||
m_Name: MotionBlur
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
mode:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
quality:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
intensity:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
clamp:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.05
|
||||
--- !u!114 &919598218924102584
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: c01700fd266d6914ababb731e09af2eb, type: 3}
|
||||
m_Name: DepthOfField
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
mode:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
gaussianStart:
|
||||
m_OverrideState: 1
|
||||
m_Value: 10
|
||||
gaussianEnd:
|
||||
m_OverrideState: 1
|
||||
m_Value: 30
|
||||
gaussianMaxRadius:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
highQualitySampling:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
focusDistance:
|
||||
m_OverrideState: 1
|
||||
m_Value: 10
|
||||
aperture:
|
||||
m_OverrideState: 1
|
||||
m_Value: 5.6
|
||||
focalLength:
|
||||
m_OverrideState: 1
|
||||
m_Value: 50
|
||||
bladeCount:
|
||||
m_OverrideState: 1
|
||||
m_Value: 5
|
||||
bladeCurvature:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
bladeRotation:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
--- !u!114 &1563326871748030085
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 3eb4b772797da9440885e8bd939e9560, type: 3}
|
||||
m_Name: ColorCurves
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
master:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 2
|
||||
m_Loop: 0
|
||||
m_ZeroValue: 0
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve:
|
||||
- serializedVersion: 3
|
||||
time: 0
|
||||
value: 0
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
- serializedVersion: 3
|
||||
time: 1
|
||||
value: 1
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
red:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 2
|
||||
m_Loop: 0
|
||||
m_ZeroValue: 0
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve:
|
||||
- serializedVersion: 3
|
||||
time: 0
|
||||
value: 0
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
- serializedVersion: 3
|
||||
time: 1
|
||||
value: 1
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
green:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 2
|
||||
m_Loop: 0
|
||||
m_ZeroValue: 0
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve:
|
||||
- serializedVersion: 3
|
||||
time: 0
|
||||
value: 0
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
- serializedVersion: 3
|
||||
time: 1
|
||||
value: 1
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
blue:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 2
|
||||
m_Loop: 0
|
||||
m_ZeroValue: 0
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve:
|
||||
- serializedVersion: 3
|
||||
time: 0
|
||||
value: 0
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
- serializedVersion: 3
|
||||
time: 1
|
||||
value: 1
|
||||
inSlope: 1
|
||||
outSlope: 1
|
||||
tangentMode: 0
|
||||
weightedMode: 0
|
||||
inWeight: 0
|
||||
outWeight: 0
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
hueVsHue:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 0
|
||||
m_Loop: 1
|
||||
m_ZeroValue: 0.5
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve: []
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
hueVsSat:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 0
|
||||
m_Loop: 1
|
||||
m_ZeroValue: 0.5
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve: []
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
satVsSat:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 0
|
||||
m_Loop: 0
|
||||
m_ZeroValue: 0.5
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve: []
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
lumVsSat:
|
||||
m_OverrideState: 1
|
||||
m_Value:
|
||||
<length>k__BackingField: 0
|
||||
m_Loop: 0
|
||||
m_ZeroValue: 0.5
|
||||
m_Range: 1
|
||||
m_Curve:
|
||||
serializedVersion: 2
|
||||
m_Curve: []
|
||||
m_PreInfinity: 2
|
||||
m_PostInfinity: 2
|
||||
m_RotationOrder: 4
|
||||
--- !u!114 &2609520313565454508
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 6bd486065ce11414fa40e631affc4900, type: 3}
|
||||
m_Name: ProbeVolumesOptions
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
normalBias:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.33
|
||||
viewBias:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
scaleBiasWithMinProbeDistance:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
samplingNoise:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.1
|
||||
animateSamplingNoise:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
leakReductionMode:
|
||||
m_OverrideState: 1
|
||||
m_Value: 2
|
||||
minValidDotProductValue:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.1
|
||||
occlusionOnlyReflectionNormalization:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
intensityMultiplier:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
skyOcclusionIntensityMultiplier:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
--- !u!114 &3598312518371328039
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: cdfbdbb87d3286943a057f7791b43141, type: 3}
|
||||
m_Name: ChannelMixer
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
redOutRedIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 100
|
||||
redOutGreenIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
redOutBlueIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
greenOutRedIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
greenOutGreenIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 100
|
||||
greenOutBlueIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
blueOutRedIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
blueOutGreenIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
blueOutBlueIn:
|
||||
m_OverrideState: 1
|
||||
m_Value: 100
|
||||
--- !u!114 &4128515664278618566
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 66f335fb1ffd8684294ad653bf1c7564, type: 3}
|
||||
m_Name: ColorAdjustments
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
postExposure:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
contrast:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
colorFilter:
|
||||
m_OverrideState: 1
|
||||
m_Value: {r: 1, g: 1, b: 1, a: 1}
|
||||
hueShift:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
saturation:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
--- !u!114 &6058122952597297739
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 97c23e3b12dc18c42a140437e53d3951, type: 3}
|
||||
m_Name: Tonemapping
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
mode:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
neutralHDRRangeReductionMode:
|
||||
m_OverrideState: 1
|
||||
m_Value: 2
|
||||
acesPreset:
|
||||
m_OverrideState: 1
|
||||
m_Value: 3
|
||||
hueShiftAmount:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
detectPaperWhite:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
paperWhite:
|
||||
m_OverrideState: 1
|
||||
m_Value: 300
|
||||
detectBrightnessLimits:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1
|
||||
minNits:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0.005
|
||||
maxNits:
|
||||
m_OverrideState: 1
|
||||
m_Value: 1000
|
||||
--- !u!114 &9026691863995123148
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 3
|
||||
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: 70afe9e12c7a7ed47911bb608a23a8ff, type: 3}
|
||||
m_Name: SplitToning
|
||||
m_EditorClassIdentifier:
|
||||
active: 1
|
||||
shadows:
|
||||
m_OverrideState: 1
|
||||
m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
highlights:
|
||||
m_OverrideState: 1
|
||||
m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
|
||||
balance:
|
||||
m_OverrideState: 1
|
||||
m_Value: 0
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b6d8050cecbe75e4c8b3445d5ccd33ff
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
vrcharades-unity/vrcharades-master/Assets/MetaXR.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 77be17f3651d2764893300a8db4da170
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,22 @@
|
||||
%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: 0bfde92e0a2190c4ca32f6fb0a0c73ce, type: 3}
|
||||
m_Name: MetaXRProjectSettings
|
||||
m_EditorClassIdentifier:
|
||||
boolProperties:
|
||||
keys:
|
||||
- Meta.XR.SDK.UsageSettings.UsesBuildingBlocks
|
||||
- Meta.XR.SDK.UsageSettings.UsesProjectSetupTool
|
||||
values: 0101
|
||||
intProperties:
|
||||
keys: []
|
||||
values:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1e8a360a51cd09748a95fd6f2eade5a0
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
vrcharades-unity/vrcharades-master/Assets/Oculus.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e3472abd18f85cd4bbe8efd43bc0dbcf
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,48 @@
|
||||
%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: 05d394ae2a81edd4cbc3c51917e766e3, type: 3}
|
||||
m_Name: OculusProjectConfig
|
||||
m_EditorClassIdentifier:
|
||||
targetDeviceTypes: 02000000030000000400000005000000
|
||||
allowOptional3DofHeadTracking: 0
|
||||
handTrackingSupport: 1
|
||||
handTrackingFrequency: 0
|
||||
handTrackingVersion: 2
|
||||
anchorSupport: 0
|
||||
sharedAnchorSupport: 0
|
||||
renderModelSupport: 0
|
||||
trackedKeyboardSupport: 0
|
||||
bodyTrackingSupport: 1
|
||||
faceTrackingSupport: 1
|
||||
eyeTrackingSupport: 1
|
||||
virtualKeyboardSupport: 0
|
||||
colocationSessionSupport: 0
|
||||
sceneSupport: 0
|
||||
boundaryVisibilitySupport: 0
|
||||
disableBackups: 1
|
||||
enableNSCConfig: 1
|
||||
securityXmlPath:
|
||||
horizonOsSdkEnabled: 0
|
||||
minHorizonOsSdkVersion: 68
|
||||
targetHorizonOsSdkVersion: 74
|
||||
skipUnneededShaders: 0
|
||||
enableIL2CPPLTO: 0
|
||||
removeGradleManifest: 1
|
||||
focusAware: 1
|
||||
requiresSystemKeyboard: 0
|
||||
experimentalFeaturesEnabled: 0
|
||||
insightPassthroughEnabled: 0
|
||||
_insightPassthroughSupport: 0
|
||||
_processorFavor: 0
|
||||
systemSplashScreen: {fileID: 0}
|
||||
systemSplashScreenType: 0
|
||||
_systemLoadingScreenBackground: 0
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8b4e63ee0ddae6e4988d0ee061e9a42f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
vrcharades-unity/vrcharades-master/Assets/Plugins.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9eb18a587cd401043ba88f291d0b3c54
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 737a88dc59ee28e44a589ccfd6ab52db
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:installLocation="auto">
|
||||
<application android:label="@string/app_name" android:icon="@mipmap/app_icon" android:allowBackup="false">
|
||||
<activity android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:launchMode="singleTask" android:name="com.unity3d.player.UnityPlayerGameActivity" android:excludeFromRecents="true" android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="com.oculus.intent.category.VR" />
|
||||
</intent-filter>
|
||||
<meta-data android:name="com.oculus.vr.focusaware" android:value="true" />
|
||||
</activity>
|
||||
<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="false" />
|
||||
<meta-data android:name="com.oculus.ossplash.background" android:value="black" />
|
||||
<meta-data android:name="com.oculus.telemetry.project_guid" android:value="f0c6f352-2b95-4f2c-b59b-2ade63f29459" />
|
||||
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2|questpro|quest3|quest3s" tools:replace="android:value" />
|
||||
</application>
|
||||
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
</manifest>
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: be0f4c6b9ee04364e9aa7f09f4b039ff
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
vrcharades-unity/vrcharades-master/Assets/Resources.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 119e0a16f43e0a949bcdeec0b7bfcdeb
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,42 @@
|
||||
%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: a7d75bea1662418ab5f9e0c22110bc09, type: 3}
|
||||
m_Name: ImmersiveDebuggerSettings
|
||||
m_EditorClassIdentifier:
|
||||
debugTypes: []
|
||||
immersiveDebuggerEnabled: 0
|
||||
immersiveDebuggerDisplayAtStartup: 0
|
||||
showInspectors: 0
|
||||
showConsole: 0
|
||||
followOverride: 1
|
||||
rotateOverride: 0
|
||||
showInfoLog: 0
|
||||
showWarningLog: 1
|
||||
showErrorLog: 1
|
||||
collapsedIdenticalLogEntries: 0
|
||||
maximumNumberOfLogEntries: 1000
|
||||
panelDistance: 1
|
||||
createEventSystem: 1
|
||||
automaticLayerCullingUpdate: 1
|
||||
panelLayer: 20
|
||||
meshRendererLayer: 21
|
||||
overlayDepth: 10
|
||||
useOverlay: 1
|
||||
inspectedDataEnabled:
|
||||
inspectedDataAssets: []
|
||||
useCustomIntegrationConfig: 0
|
||||
customIntegrationConfigClassName:
|
||||
hierarchyViewShowsPrivateMembers: 0
|
||||
clickButton: 8193
|
||||
toggleFollowTranslationButton: 0
|
||||
toggleFollowRotationButton: 0
|
||||
immersiveDebuggerToggleDisplayButton: 2
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 993041f4b42a2b441ae32ba177e35cc5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,16 @@
|
||||
%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: 8922a6ca86889d84f8371a29d37b6dc8, type: 3}
|
||||
m_Name: InputActions
|
||||
m_EditorClassIdentifier:
|
||||
InputActionDefinitions: []
|
||||
InputActionSets: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4069bb7c14583174b9852d55a2cc86df
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,14 @@
|
||||
%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: 20553fac56ec59645857c0732b787431, type: 3}
|
||||
m_Name: OVRBuildConfig
|
||||
m_EditorClassIdentifier:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5b023ec2da59b7542aba8a189cde93c2
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,19 @@
|
||||
%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: efa1458c2bc55e04b872c61942be2866, type: 3}
|
||||
m_Name: OVROverlayCanvasSettings
|
||||
m_EditorClassIdentifier:
|
||||
_transparentImposterShader: {fileID: 0}
|
||||
_opaqueImposterShader: {fileID: 0}
|
||||
MaxSimultaneousCanvases: 1
|
||||
CanvasRenderLayer: 31
|
||||
CanvasLayer: -1
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e5252a105a22b754787de57cdb072041
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,22 @@
|
||||
%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: cd7bb81df5b74b34dadbf531f381a26b, type: 3}
|
||||
m_Name: OVRPlatformToolSettings
|
||||
m_EditorClassIdentifier:
|
||||
riftRedistPackages: []
|
||||
languagePackDirectory:
|
||||
assetConfigs:
|
||||
- configList: []
|
||||
- configList: []
|
||||
- configList: []
|
||||
targetPlatform: 3
|
||||
runOvrLint: 1
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8caa9b702f068584a8e8830b886d2fc8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,24 @@
|
||||
%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: 3863570e7e6387a40ae4f323d83291e5, type: 3}
|
||||
m_Name: OculusRuntimeSettings
|
||||
m_EditorClassIdentifier:
|
||||
handSkeletonVersion: 1
|
||||
colorSpace: 7
|
||||
requestsVisualFaceTracking: 1
|
||||
requestsAudioFaceTracking: 1
|
||||
enableFaceTrackingVisemesOutput: 0
|
||||
telemetryProjectGuid: f0c6f352-2b95-4f2c-b59b-2ade63f29459
|
||||
bodyTrackingFidelity: 2
|
||||
bodyTrackingJointSet: 1
|
||||
allowVisibilityMesh: 1
|
||||
QuestVisibilityMeshOverriden: 0
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3bedc34bf7805fb4cae0685fd8062c74
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
8
vrcharades-unity/vrcharades-master/Assets/Samples.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f17e771607346bb4ea2d7cdc50a90cbf
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 33b46aded8fb99343a3707eff72faff4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b066a6970d168054aa15d2ce5a500ea0
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 63689fbd29ab3374d82e998b3d646cea
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2f6dd235a7ad5984792c3d0d36837442
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 67a2b572861f066408febcf4690fb548
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,99 @@
|
||||
%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: BlendshapeMappingExampleBrows
|
||||
m_Shader: {fileID: 4800000, guid: 525663d260145d9458ce774a4fa0f04b, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _DIFFUSE_WRAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: faa00f909c9bd18428ebae8eb9d1969f, type: 3}
|
||||
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}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 1
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ce02ad3d90b8aed40a29857bbc7aa501
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,100 @@
|
||||
%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: BlendshapeMappingExampleEyes
|
||||
m_Shader: {fileID: 4800000, guid: 525663d260145d9458ce774a4fa0f04b, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _METALLICGLOSSMAP
|
||||
- _NORMALMAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: 2800000, guid: ca362d06d3ceaf64bbb54e04e99d4b83, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: c45dcc2b9f0e5334e9aba676000b3bc9, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: fd723a8fd7fa15142918d81ec625de65, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 2800000, guid: b02b60d325933174abea5a6b77678ed5, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 0
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 0.666
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 0.8, g: 0.8, b: 0.8, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e88c1c6d93413254ab36e53cebc1f111
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,102 @@
|
||||
%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: BlendshapeMappingExampleHands
|
||||
m_Shader: {fileID: 4800000, guid: 525663d260145d9458ce774a4fa0f04b, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _AREA_LIGHT_SPECULAR
|
||||
- _DIFFUSE_WRAP
|
||||
- _METALLICGLOSSMAP
|
||||
- _NORMALMAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: 2800000, guid: f8b090677d8fc8e4ba5e6b384675e712, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 82e067904f4f774469b6f95555bb9291, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: b7346bef4c8210e47a3942765c0801f6, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 2800000, guid: 7430f837c24f6a24ebfa763b12a10c03, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 1
|
||||
- _BumpScale: 0.55
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 1
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 0.291
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 0.7
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9de73d053d6bedb459b332ec735e8bbf
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,102 @@
|
||||
%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: BlendshapeMappingExampleHead
|
||||
m_Shader: {fileID: 4800000, guid: 525663d260145d9458ce774a4fa0f04b, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _AREA_LIGHT_SPECULAR
|
||||
- _DIFFUSE_WRAP
|
||||
- _METALLICGLOSSMAP
|
||||
- _NORMALMAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: 2800000, guid: 1a4a234960828f54a9e1b1416fd2c546, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: cc581de4c8097c44faf4bd53e910f13d, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: 1349d133f191ef5468d97d6a949aa98b, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 2800000, guid: 8cf157e0c80c00846bf9cd2ae4c29c29, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 1
|
||||
- _BumpScale: 0.55
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 1
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 0.291
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 0.7
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c3014a5e564804947bb4d79688e15bfa
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,100 @@
|
||||
%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: BlendshapeMappingExampleMouth
|
||||
m_Shader: {fileID: 4800000, guid: 525663d260145d9458ce774a4fa0f04b, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _METALLICGLOSSMAP
|
||||
- _NORMALMAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: 2800000, guid: 2273fa3c07cf0f941850c753c237d2ad, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 903a1aa42efcfd64bb1da17995e92d37, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: bff5393a9e9f6b1409d93bd0a9acb75f, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 2800000, guid: d7599930d69567b41aa0887054660400, 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: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 0
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.5
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5b53d82759915e044a2e962e29f8f3f7
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,98 @@
|
||||
%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: LinaEye
|
||||
m_Shader: {fileID: 4800000, guid: 525663d260145d9458ce774a4fa0f04b, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: b4f406ba4692d9548854e4fd35d10b33, type: 3}
|
||||
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}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 0
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.82538605
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c1a2276962647004ca723003ce43ab2f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,98 @@
|
||||
%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: LinaHair
|
||||
m_Shader: {fileID: 4800000, guid: 2fbcc86ab1452f94a919d19a83abf926, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: 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}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 0
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.4
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 0.24528301, g: 0.20648703, b: 0.18604484, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.11320752, g: 0.11320752, b: 0.11320752, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f1e72d27dda36a74b94d3c7f6ce88ec1
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,99 @@
|
||||
%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: LinaHand
|
||||
m_Shader: {fileID: 4800000, guid: 2fbcc86ab1452f94a919d19a83abf926, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _DIFFUSE_WRAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: 1ebfd546cf2032e4795a91d2ffc8e91d, type: 3}
|
||||
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}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 1
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.461
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 0.8773585, g: 0.80783194, b: 0.80783194, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2c2a48ff025180245b97ee53033577af
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,99 @@
|
||||
%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: LinaHead
|
||||
m_Shader: {fileID: 4800000, guid: 2fbcc86ab1452f94a919d19a83abf926, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _DIFFUSE_WRAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: b9c12b198ab5dca4cb7f6d193103da7c, type: 3}
|
||||
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}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 1
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 1
|
||||
- _Glossiness: 0.461
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ed1e275c3f6141046a3c8d124e924674
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,99 @@
|
||||
%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: LinaMouth
|
||||
m_Shader: {fileID: 4800000, guid: 2fbcc86ab1452f94a919d19a83abf926, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _SPECGLOSSMAP
|
||||
- _SPECULAR_AFFECT_BY_NDOTL
|
||||
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: ed4dfd58fb2769141ab28422c4650959, type: 3}
|
||||
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}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 2800000, guid: 7dc0fe3a6b30b0e4380e6def367fa179, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AreaLightSampleDistance: 0.5
|
||||
- _AreaLightSampleToggle: 0
|
||||
- _BumpScale: 1
|
||||
- _Cutoff: 0.5
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DiffuseWrapColorMult: 2
|
||||
- _DiffuseWrapDist: 0.3
|
||||
- _DiffuseWrapEnabled: 0
|
||||
- _DstBlend: 0
|
||||
- _EmissionStrength: 1
|
||||
- _GlossMapScale: 0.4
|
||||
- _Glossiness: 0.6919474
|
||||
- _GlossyReflections: 1
|
||||
- _Metallic: 0
|
||||
- _Mode: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _Parallax: 0.02
|
||||
- _RecalculateNormalsToggle: 0
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SpecularityNDotL: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilComp: 3
|
||||
- _StencilValue: 0
|
||||
- _UVSec: 0
|
||||
- _VertexDisplShadows: 0
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _DiffuseWrapColor: {r: 1, g: 0.29999998, b: 0.19999996, 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: []
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 51b2e787ca70fce4397464e0966fa8af
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f132a039e92e9304aac2911ca95ef43f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,797 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aff2ae892ac69124eb8000bd96c5a64e
|
||||
ModelImporter:
|
||||
serializedVersion: 21300
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
materials:
|
||||
materialImportMode: 2
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
removeConstantScaleCurves: 1
|
||||
motionNodeName:
|
||||
rigImportErrors: "Invalid Avatar Rig Configuration. Missing or invalid transform:\n\tRequired
|
||||
human bone 'LeftUpperLeg' not found\n"
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 3
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
nodeNameCollisionStrategy: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
optimizeBones: 0
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton:
|
||||
- name: Toon_Tony_ARKIT(Clone)
|
||||
parentName:
|
||||
position: {x: 0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Root
|
||||
parentName: Toon_Tony_ARKIT(Clone)
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Hips
|
||||
parentName: Root
|
||||
position: {x: -0, y: 0.84180284, z: 0.033585858}
|
||||
rotation: {x: 0.50000006, y: -0.49999997, z: -0.49999997, w: 0.50000006}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegUpper
|
||||
parentName: Hips
|
||||
position: {x: 0.023989804, y: 0.01839244, z: 0.10261942}
|
||||
rotation: {x: -0.040842324, y: -0.00049673347, z: 0.9990916, w: 0.012151176}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegLower
|
||||
parentName: LeftLegUpper
|
||||
position: {x: -0.38870856, y: -0.000000023432369, z: 0.00000006591218}
|
||||
rotation: {x: 0.000060602873, y: -0.0023031447, z: -0.0019893646, w: 0.9999954}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftFootTwist
|
||||
parentName: LeftLegLower
|
||||
position: {x: -0.32386437, y: 0.0027495185, z: 0.0006910853}
|
||||
rotation: {x: -0.11836032, y: 1.0413553e-16, z: -3.3909568e-17, w: 0.9929707}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftFoot
|
||||
parentName: LeftFootTwist
|
||||
position: {x: 7.105427e-17, y: 8.881784e-18, z: 3.5527136e-17}
|
||||
rotation: {x: 0.19681357, y: 0.14399087, z: -0.66498166, w: 0.7059253}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftTaloCrural
|
||||
parentName: LeftFootTwist
|
||||
position: {x: 1.0658141e-16, y: -8.881784e-18, z: 1.0658141e-16}
|
||||
rotation: {x: 0.11791922, y: -0.0393814, z: 0.032060422, w: 0.9917239}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftSubtalar
|
||||
parentName: LeftTaloCrural
|
||||
position: {x: -0.04799477, y: 0.0005735346, z: 0.0034897646}
|
||||
rotation: {x: -0.010237003, y: 0.027455883, z: 0.7103257, w: 0.703263}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftTransversetarsal
|
||||
parentName: LeftSubtalar
|
||||
position: {x: -0.1009869, y: -0.000000051693007, z: -0.00000029362448}
|
||||
rotation: {x: 0.00982602, y: -0.007118121, z: -0.18722107, w: 0.9822429}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftFootBall
|
||||
parentName: LeftTransversetarsal
|
||||
position: {x: -0.103109956, y: -0.00000012544024, z: -0.00000016392491}
|
||||
rotation: {x: 0.0055354387, y: 0.049020924, z: 0.988716, w: -0.14144604}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegLowerTwist0
|
||||
parentName: LeftLegLower
|
||||
position: {x: 0.00006676868, y: -0.011881961, z: -0.0008828414}
|
||||
rotation: {x: -0.03229433, y: 0.0005923146, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegLowerTwist1
|
||||
parentName: LeftLegLower
|
||||
position: {x: -0.080898225, y: -0.008910983, z: -0.00088284136}
|
||||
rotation: {x: -0.03229431, y: 0.00059231377, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegLowerTwist2
|
||||
parentName: LeftLegLower
|
||||
position: {x: -0.16186322, y: -0.005940007, z: -0.00088284124}
|
||||
rotation: {x: -0.032294326, y: 0.00059231406, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegLowerTwist3
|
||||
parentName: LeftLegLower
|
||||
position: {x: -0.24282824, y: -0.00296903, z: -0.0008828412}
|
||||
rotation: {x: -0.032294307, y: 0.0005923137, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegLowerTwist4
|
||||
parentName: LeftLegLower
|
||||
position: {x: -0.3237932, y: 0.0000019465826, z: -0.0008828411}
|
||||
rotation: {x: -0.032294307, y: 0.0005923137, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegUpperTwist0
|
||||
parentName: LeftLegUpper
|
||||
position: {x: 0.000072273986, y: 0.0000017558998, z: -0.0008824602}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegUpperTwist1
|
||||
parentName: LeftLegUpper
|
||||
position: {x: -0.097117044, y: -0.0029691972, z: -0.0008828476}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegUpperTwist2
|
||||
parentName: LeftLegUpper
|
||||
position: {x: -0.19430637, y: -0.0059401505, z: -0.000883235}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegUpperTwist3
|
||||
parentName: LeftLegUpper
|
||||
position: {x: -0.29149568, y: -0.008911103, z: -0.0008836224}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftLegUpperTwist4
|
||||
parentName: LeftLegUpper
|
||||
position: {x: -0.388685, y: -0.0118820565, z: -0.0008840098}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegUpper
|
||||
parentName: Hips
|
||||
position: {x: 0.02398984, y: 0.01839244, z: -0.102619}
|
||||
rotation: {x: -0.00049673184, y: 0.040842187, z: -0.012151176, w: 0.9990916}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegLower
|
||||
parentName: RightLegUpper
|
||||
position: {x: 0.3887086, y: 0.00000002345517, z: -0.000000066218576}
|
||||
rotation: {x: 0.000060615766, y: -0.0023031451, z: -0.0019893644, w: 0.9999954}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightFootTwist
|
||||
parentName: RightLegLower
|
||||
position: {x: 0.32386437, y: -0.0027495185, z: -0.00069108495}
|
||||
rotation: {x: -0.11836033, y: -3.7442777e-17, z: -1.334276e-16, w: 0.9929707}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightFoot
|
||||
parentName: RightFootTwist
|
||||
position: {x: 1.7763568e-17, y: 0, z: 1.4210854e-16}
|
||||
rotation: {x: 0.19681357, y: 0.14399087, z: -0.66498166, w: 0.7059253}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightTaloCrural
|
||||
parentName: RightFootTwist
|
||||
position: {x: -5.3290704e-17, y: 2.6645352e-17, z: 5.3290704e-17}
|
||||
rotation: {x: 0.11791922, y: -0.0393814, z: 0.032060422, w: 0.9917239}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightSubtalar
|
||||
parentName: RightTaloCrural
|
||||
position: {x: 0.04799477, y: -0.0005735346, z: -0.0034897646}
|
||||
rotation: {x: -0.010237003, y: 0.027455883, z: 0.7103257, w: 0.703263}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightTransversetarsal
|
||||
parentName: RightSubtalar
|
||||
position: {x: 0.1009869, y: 0.000000051693007, z: 0.00000029362448}
|
||||
rotation: {x: 0.00982602, y: -0.007118121, z: -0.18722107, w: 0.9822429}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightFootBall
|
||||
parentName: RightTransversetarsal
|
||||
position: {x: 0.103109956, y: 0.00000012544024, z: 0.00000016392491}
|
||||
rotation: {x: 0.0055354387, y: 0.049020924, z: 0.988716, w: -0.14144604}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegLowerTwist0
|
||||
parentName: RightLegLower
|
||||
position: {x: -0.000066765584, y: 0.011881961, z: 0.00088242616}
|
||||
rotation: {x: -0.03229433, y: 0.0005923141, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegLowerTwist1
|
||||
parentName: RightLegLower
|
||||
position: {x: 0.08089823, y: 0.008910984, z: 0.00088242616}
|
||||
rotation: {x: -0.03229433, y: 0.0005923141, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegLowerTwist2
|
||||
parentName: RightLegLower
|
||||
position: {x: 0.16186322, y: 0.005940007, z: 0.00088242616}
|
||||
rotation: {x: -0.03229433, y: 0.0005923141, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegLowerTwist3
|
||||
parentName: RightLegLower
|
||||
position: {x: 0.24282824, y: 0.0029690303, z: 0.00088242616}
|
||||
rotation: {x: -0.03229433, y: 0.0005923141, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegLowerTwist4
|
||||
parentName: RightLegLower
|
||||
position: {x: 0.3237932, y: -0.0000019463785, z: 0.00088242616}
|
||||
rotation: {x: -0.03229433, y: 0.0005923141, z: -0.018328467, w: 0.9993102}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegUpperTwist0
|
||||
parentName: RightLegUpper
|
||||
position: {x: -0.00007224848, y: -0.0000017556617, z: 0.000882045}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegUpperTwist1
|
||||
parentName: RightLegUpper
|
||||
position: {x: 0.09711707, y: 0.0029691975, z: 0.0008824324}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegUpperTwist2
|
||||
parentName: RightLegUpper
|
||||
position: {x: 0.19430639, y: 0.0059401505, z: 0.0008828198}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegUpperTwist3
|
||||
parentName: RightLegUpper
|
||||
position: {x: 0.2914957, y: 0.008911103, z: 0.00088320713}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightLegUpperTwist4
|
||||
parentName: RightLegUpper
|
||||
position: {x: 0.38868502, y: 0.0118820565, z: 0.00088359456}
|
||||
rotation: {x: -0.032228366, y: -0.0004944662, z: 0.015271004, w: 0.9993637}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: SpineLower
|
||||
parentName: Hips
|
||||
position: {x: -0.02021996, y: -0.022279676, z: 1.284949e-19}
|
||||
rotation: {x: 2.6389175e-25, y: -1.3232259e-23, z: 0.019939097, w: 0.9998012}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: SpineMiddle
|
||||
parentName: SpineLower
|
||||
position: {x: -0.14563946, y: 0.015431437, z: -9.446111e-20}
|
||||
rotation: {x: 0, y: -1.323489e-23, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: SpineUpper
|
||||
parentName: SpineMiddle
|
||||
position: {x: -0.15928134, y: -0.021571849, z: -6.7762634e-23}
|
||||
rotation: {x: 6.123234e-17, y: 6.123234e-17, z: 2.8327693e-16, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Chest
|
||||
parentName: SpineUpper
|
||||
position: {x: -0.17052087, y: 0.0053131715, z: 0.0000000025532512}
|
||||
rotation: {x: 6.123234e-17, y: 6.123233e-17, z: 2.879641e-16, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftShoulder
|
||||
parentName: Chest
|
||||
position: {x: -0.052945074, y: 0.10743795, z: 0.030362543}
|
||||
rotation: {x: 0.13710062, y: 0.6520469, z: 0.09540691, w: 0.7395511}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftDelt
|
||||
parentName: LeftShoulder
|
||||
position: {x: -0.2035144, y: -0.045157526, z: -0.026237316}
|
||||
rotation: {x: 0.018626647, y: 0.40837696, z: -0.17901905, w: 0.894893}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftScap
|
||||
parentName: LeftShoulder
|
||||
position: {x: -0.24040556, y: 0.000000097047575, z: -0.0000066830257}
|
||||
rotation: {x: 0.06920563, y: 0.5471503, z: -0.1369439, w: 0.8228509}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmUpper
|
||||
parentName: LeftScap
|
||||
position: {x: -0.093242645, y: 0.00000006889123, z: 0.00000089157044}
|
||||
rotation: {x: -0.118352786, y: -0.47610772, z: -0.08903944, w: 0.8668253}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmLower
|
||||
parentName: LeftArmUpper
|
||||
position: {x: -0.30839503, y: 0.00048720752, z: 0.00021145486}
|
||||
rotation: {x: 0.038987476, y: -0.022513442, z: -0.026453221, w: 0.99863577}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmLowerTwist0
|
||||
parentName: LeftArmLower
|
||||
position: {x: 0.0007320658, y: -0.00012896456, z: 0.0004312243}
|
||||
rotation: {x: -0.041719615, y: 0.002496424, z: -0.022975797, w: 0.998862}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmLowerTwist1
|
||||
parentName: LeftArmLower
|
||||
position: {x: -0.048227564, y: 0.0021308605, z: 0.0005816952}
|
||||
rotation: {x: -0.041719608, y: 0.0024964237, z: -0.022975797, w: 0.998862}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmLowerTwist2
|
||||
parentName: LeftArmLower
|
||||
position: {x: -0.09718719, y: 0.0043906854, z: 0.000732166}
|
||||
rotation: {x: -0.041719608, y: 0.0024964237, z: -0.022975797, w: 0.998862}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmLowerTwist3
|
||||
parentName: LeftArmLower
|
||||
position: {x: -0.14614682, y: 0.0066505102, z: 0.0008826369}
|
||||
rotation: {x: -0.041719608, y: 0.0024964237, z: -0.022975797, w: 0.998862}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmLowerTwist4
|
||||
parentName: LeftArmLower
|
||||
position: {x: -0.19510645, y: 0.008910336, z: 0.0010331078}
|
||||
rotation: {x: -0.041719753, y: 0.002496583, z: -0.022975648, w: 0.998862}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmLowerTwist5
|
||||
parentName: LeftArmLower
|
||||
position: {x: -0.24406606, y: 0.011170146, z: 0.0011835945}
|
||||
rotation: {x: -0.041719753, y: 0.002496583, z: -0.022975648, w: 0.998862}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftWristTwist
|
||||
parentName: LeftArmLower
|
||||
position: {x: -0.21875438, y: 0.0019990297, z: 0.0010599216}
|
||||
rotation: {x: 0.048491295, y: 0.058305502, z: 0.035367087, w: 0.996493}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandWrist
|
||||
parentName: LeftWristTwist
|
||||
position: {x: -0.025741147, y: 0.011224138, z: -0.0020605675}
|
||||
rotation: {x: 0.7401596, y: 0.08319687, z: 0.047618806, w: 0.66556334}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandIndexProximal
|
||||
parentName: LeftHandWrist
|
||||
position: {x: -0.09918717, y: 0.0034882673, z: -0.03820552}
|
||||
rotation: {x: 0.13567796, y: -0.06297835, z: 0.0070940354, w: 0.9887239}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandIndexIntermediate
|
||||
parentName: LeftHandIndexProximal
|
||||
position: {x: -0.045990646, y: 0.00000040488408, z: 0.00000016368229}
|
||||
rotation: {x: 0.00069557107, y: -0.00020790838, z: 0.038117956, w: 0.99927306}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandIndexDistal
|
||||
parentName: LeftHandIndexIntermediate
|
||||
position: {x: -0.028787907, y: -0.000000670477, z: -0.0000007003902}
|
||||
rotation: {x: 0.0011037986, y: -0.0013420255, z: 0.03967081, w: 0.9992113}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandIndexTip
|
||||
parentName: LeftHandIndexDistal
|
||||
position: {x: -0.028276846, y: 2.842171e-16, z: 1.7763568e-17}
|
||||
rotation: {x: -0.03485478, y: -0.023428213, z: 0.00087228994, w: 0.9991174}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandMiddleProximal
|
||||
parentName: LeftHandWrist
|
||||
position: {x: -0.10655965, y: -0.0110222455, z: -0.014187168}
|
||||
rotation: {x: 0.05986868, y: -0.047386553, z: 0.019511959, w: 0.99688995}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandMiddleIntermediate
|
||||
parentName: LeftHandMiddleProximal
|
||||
position: {x: -0.047392733, y: 0.000000324527, z: 0.00000049130836}
|
||||
rotation: {x: 0.022572948, y: -0.010224901, z: 0.038343273, w: 0.9989573}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandMiddleDistal
|
||||
parentName: LeftHandMiddleIntermediate
|
||||
position: {x: -0.0338437, y: -0.0000003163058, z: -0.0000008217312}
|
||||
rotation: {x: 0.009554984, y: -0.006595787, z: 0.039584197, w: 0.9991488}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandMiddleTip
|
||||
parentName: LeftHandMiddleDistal
|
||||
position: {x: -0.031484935, y: -0.00000059936053, z: 0.00000031033602}
|
||||
rotation: {x: 0.039105788, y: -0.029149247, z: -0.0007067918, w: 0.9988096}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandPinkyMeta
|
||||
parentName: LeftHandWrist
|
||||
position: {x: -0.043863166, y: -0.015515579, z: 0.025112554}
|
||||
rotation: {x: 0.15582615, y: -0.037079647, z: 0.038317848, w: 0.98634434}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandPinkyProximal
|
||||
parentName: LeftHandPinkyMeta
|
||||
position: {x: -0.053348765, y: 2.131628e-15, z: -8.171241e-16}
|
||||
rotation: {x: -1.6653345e-16, y: -2.9143354e-16, z: 1.4571677e-16, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandPinkyIntermediate
|
||||
parentName: LeftHandPinkyProximal
|
||||
position: {x: -0.030530028, y: 0.00000024421055, z: 0.00000023132408}
|
||||
rotation: {x: 0.013328963, y: 0.0031851549, z: 0.040876172, w: 0.9990702}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandPinkyDistal
|
||||
parentName: LeftHandPinkyIntermediate
|
||||
position: {x: -0.025587237, y: 0.000000048678483, z: 0.0000003551311}
|
||||
rotation: {x: -0.0057280925, y: 0.00073774037, z: -0.016182102, w: 0.9998524}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandPinkyTip
|
||||
parentName: LeftHandPinkyDistal
|
||||
position: {x: -0.027665226, y: -0.0000005163408, z: 0.000000021426509}
|
||||
rotation: {x: -0.18976371, y: 0.043328296, z: -0.036367346, w: 0.98019886}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandRingProximal
|
||||
parentName: LeftHandWrist
|
||||
position: {x: -0.10271886, y: -0.013384004, z: 0.012779168}
|
||||
rotation: {x: 0.13103136, y: -0.042854454, z: 0.028896203, w: 0.99003}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandRingIntermediate
|
||||
parentName: LeftHandRingProximal
|
||||
position: {x: -0.0395483, y: 0.00000014216198, z: 0.00000025547973}
|
||||
rotation: {x: 0.013944662, y: -0.00031581876, z: 0.04103116, w: 0.9990606}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandRingDistal
|
||||
parentName: LeftHandRingIntermediate
|
||||
position: {x: -0.029697573, y: -0.00000033498463, z: -0.00000008731673}
|
||||
rotation: {x: -0.0025761544, y: 0.011538058, z: 0.039737143, w: 0.9991403}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandRingTip
|
||||
parentName: LeftHandRingDistal
|
||||
position: {x: -0.030375868, y: 0.0000008843472, z: -0.00000004167784}
|
||||
rotation: {x: 0.38638023, y: -0.016691614, z: -0.0460402, w: 0.92103857}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandThumbTrapezium
|
||||
parentName: LeftHandWrist
|
||||
position: {x: -0.0057515376, y: 0.00089617365, z: -0.010012873}
|
||||
rotation: {x: 0.56460226, y: -0.38912228, z: 0.2916557, w: 0.6668921}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandThumbMeta
|
||||
parentName: LeftHandThumbTrapezium
|
||||
position: {x: -0.044208277, y: -0.0000024464537, z: 0.000000429433}
|
||||
rotation: {x: -0.12088448, y: 0.024102617, z: -0.004191501, w: 0.9923651}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandThumbProximal
|
||||
parentName: LeftHandThumbMeta
|
||||
position: {x: -0.0404128, y: 0.00000011784661, z: -0.00000041376023}
|
||||
rotation: {x: -0.108481035, y: 0.016365124, z: -0.03319581, w: 0.9934093}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandThumbDistal
|
||||
parentName: LeftHandThumbProximal
|
||||
position: {x: -0.044066515, y: -0.00000070322614, z: -0.00000011380426}
|
||||
rotation: {x: 0.0037389987, y: -0.0017514839, z: 0.003524172, w: 0.9999853}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftHandThumbTip
|
||||
parentName: LeftHandThumbDistal
|
||||
position: {x: -0.03442506, y: 0.0000003367801, z: 0.00000040938616}
|
||||
rotation: {x: 0.87125117, y: 0.07199231, z: -0.15796646, w: 0.45911345}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmUpperTwist0
|
||||
parentName: LeftArmUpper
|
||||
position: {x: 0.0006236401, y: 0.00005820733, z: 0.0006258319}
|
||||
rotation: {x: -0.000000010536712, y: 6.3837824e-16, z: 5.2735594e-16, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmUpperTwist1
|
||||
parentName: LeftArmUpper
|
||||
position: {x: -0.07647636, y: 0.00005820733, z: 0.0006258319}
|
||||
rotation: {x: 0.000000012904785, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmUpperTwist2
|
||||
parentName: LeftArmUpper
|
||||
position: {x: -0.15357636, y: 0.00005820733, z: 0.0006258319}
|
||||
rotation: {x: 1.6653345e-16, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmUpperTwist3
|
||||
parentName: LeftArmUpper
|
||||
position: {x: -0.23067635, y: 0.00005820733, z: 0.0006258319}
|
||||
rotation: {x: 2.220446e-16, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftArmUpperTwist4
|
||||
parentName: LeftArmUpper
|
||||
position: {x: -0.30777636, y: 0.00005820733, z: 0.0006258319}
|
||||
rotation: {x: 2.220446e-16, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Neck
|
||||
parentName: Chest
|
||||
position: {x: -0.15057018, y: 0.01078453, z: -6.011169e-10}
|
||||
rotation: {x: 5.026303e-17, y: 7.0515447e-17, z: -0.16537341, w: 0.986231}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Head
|
||||
parentName: Neck
|
||||
position: {x: -0.08877015, y: 0.0054037822, z: -0.0000000047994955}
|
||||
rotation: {x: 4.8847024e-17, y: 7.150363e-17, z: 0.145676, w: 0.9893324}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Jaw
|
||||
parentName: Head
|
||||
position: {x: -0.015081412, y: 0.0128993485, z: 0.0000000043529256}
|
||||
rotation: {x: 0.9999532, y: 0.00967538, z: 4.2292422e-10, w: 0.00000004370934}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Tongue
|
||||
parentName: Jaw
|
||||
position: {x: 0.013676789, y: -0.090574, z: -0.0005735453}
|
||||
rotation: {x: 0.49362484, y: -0.5062949, z: 0.49362478, w: 0.50629497}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LeftEye
|
||||
parentName: Head
|
||||
position: {x: -0.075450025, y: 0.075707465, z: 0.04001609}
|
||||
rotation: {x: 0.7052617, y: -0.7052617, z: -0.05104871, w: -0.05104871}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightEye
|
||||
parentName: Head
|
||||
position: {x: -0.075430356, y: 0.07656593, z: -0.040611077}
|
||||
rotation: {x: 0.7059301, y: 0.7059178, z: -0.040882923, w: 0.040882207}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Viewpoint
|
||||
parentName: Head
|
||||
position: {x: -0.08172914, y: 0.12748168, z: -0.0002336954}
|
||||
rotation: {x: -0.5, y: 0.49999997, z: 0.49999997, w: 0.50000006}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightShoulder
|
||||
parentName: Chest
|
||||
position: {x: -0.052945063, y: 0.10743794, z: -0.030362574}
|
||||
rotation: {x: -0.652047, y: 0.13710062, z: 0.739551, w: -0.09540689}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightDelt
|
||||
parentName: RightShoulder
|
||||
position: {x: 0.20351413, y: 0.045157623, z: 0.026237348}
|
||||
rotation: {x: 0.018626647, y: 0.40837696, z: -0.17901905, w: 0.894893}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightScap
|
||||
parentName: RightShoulder
|
||||
position: {x: 0.24040526, y: 0.0000000011140288, z: 0.0000067166484}
|
||||
rotation: {x: 0.007720468, y: 0.20445381, z: -0.16166824, w: 0.9654028}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmUpper
|
||||
parentName: RightScap
|
||||
position: {x: 0.093242645, y: -0.00000006890348, z: -0.0000008915683}
|
||||
rotation: {x: -0.077620134, y: -0.14407891, z: -0.051810235, w: 0.98515594}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmLower
|
||||
parentName: RightArmUpper
|
||||
position: {x: 0.30839503, y: -0.00048720752, z: -0.00021145487}
|
||||
rotation: {x: 0.043322105, y: -0.010463502, z: 0.027472526, w: 0.9986285}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmLowerTwist0
|
||||
parentName: RightArmLower
|
||||
position: {x: -0.00073331344, y: 0.00012802683, z: -0.00042889087}
|
||||
rotation: {x: -0.041719474, y: 0.0025059802, z: -0.02296907, w: 0.99886215}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmLowerTwist1
|
||||
parentName: RightArmLower
|
||||
position: {x: 0.048227, y: -0.0021312092, z: -0.00058032735}
|
||||
rotation: {x: -0.041719463, y: 0.00250598, z: -0.02296907, w: 0.99886215}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmLowerTwist2
|
||||
parentName: RightArmLower
|
||||
position: {x: 0.09718732, y: -0.0043904455, z: -0.00073176384}
|
||||
rotation: {x: -0.041719485, y: 0.0025059804, z: -0.02296907, w: 0.99886215}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmLowerTwist3
|
||||
parentName: RightArmLower
|
||||
position: {x: 0.14614762, y: -0.006649682, z: -0.0008832003}
|
||||
rotation: {x: -0.041719463, y: 0.00250598, z: -0.02296907, w: 0.99886215}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmLowerTwist4
|
||||
parentName: RightArmLower
|
||||
position: {x: 0.19510795, y: -0.008908918, z: -0.0010346367}
|
||||
rotation: {x: -0.041719485, y: 0.0025059804, z: -0.02296907, w: 0.99886215}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmLowerTwist5
|
||||
parentName: RightArmLower
|
||||
position: {x: 0.24406825, y: -0.011168154, z: -0.0011860732}
|
||||
rotation: {x: -0.041719485, y: 0.0025059804, z: -0.02296907, w: 0.99886215}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightWristTwist
|
||||
parentName: RightArmLower
|
||||
position: {x: 0.21875438, y: -0.0019990297, z: -0.0010599216}
|
||||
rotation: {x: 0.048491295, y: 0.058305502, z: 0.035367087, w: 0.996493}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandWrist
|
||||
parentName: RightWristTwist
|
||||
position: {x: 0.025741147, y: -0.011224138, z: 0.0020605675}
|
||||
rotation: {x: 0.7401596, y: 0.08319687, z: 0.047618806, w: 0.66556334}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandIndexProximal
|
||||
parentName: RightHandWrist
|
||||
position: {x: 0.09918717, y: -0.0034882673, z: 0.03820552}
|
||||
rotation: {x: 0.13880615, y: -0.031467535, z: -0.014767202, w: 0.9897093}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandIndexIntermediate
|
||||
parentName: RightHandIndexProximal
|
||||
position: {x: 0.045990646, y: -0.00000040488408, z: -0.00000016368227}
|
||||
rotation: {x: 0.0006956009, y: -0.00020761222, z: 0.03811662, w: 0.9992731}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandIndexDistal
|
||||
parentName: RightHandIndexIntermediate
|
||||
position: {x: 0.028787907, y: 0.000000670477, z: 0.0000007003902}
|
||||
rotation: {x: 0.0011037986, y: -0.0013420255, z: 0.03967081, w: 0.9992113}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandIndexTip
|
||||
parentName: RightHandIndexDistal
|
||||
position: {x: 0.028276954, y: -0.00000027086992, z: -0.00000044436564}
|
||||
rotation: {x: -0.03485478, y: -0.023428213, z: 0.00087228994, w: 0.9991174}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandMiddleProximal
|
||||
parentName: RightHandWrist
|
||||
position: {x: 0.10655965, y: 0.0110222455, z: 0.014187168}
|
||||
rotation: {x: 0.06150026, y: -0.0058638877, z: 0.00110013, w: 0.99808925}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandMiddleIntermediate
|
||||
parentName: RightHandMiddleProximal
|
||||
position: {x: 0.047392733, y: -0.00000032452698, z: -0.0000004913083}
|
||||
rotation: {x: 0.02257315, y: -0.010224125, z: 0.038342476, w: 0.9989574}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandMiddleDistal
|
||||
parentName: RightHandMiddleIntermediate
|
||||
position: {x: 0.033843696, y: 0.0000003163058, z: 0.0000008217312}
|
||||
rotation: {x: 0.009555159, y: -0.006598122, z: 0.03958936, w: 0.9991486}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandMiddleTip
|
||||
parentName: RightHandMiddleDistal
|
||||
position: {x: 0.031484935, y: 0.00000059936053, z: -0.00000031033602}
|
||||
rotation: {x: 0.039105788, y: -0.029149247, z: -0.0007067918, w: 0.9988096}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandPinkyMeta
|
||||
parentName: RightHandWrist
|
||||
position: {x: 0.04386294, y: 0.015515872, z: -0.025112718}
|
||||
rotation: {x: 0.1561158, y: 0.007100194, z: 0.019026875, w: 0.98752993}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandPinkyProximal
|
||||
parentName: RightHandPinkyMeta
|
||||
position: {x: 0.05334897, y: -0.00000019758431, z: 0.0000002930413}
|
||||
rotation: {x: -1.5257258e-16, y: -2.4286129e-16, z: 1.2490009e-16, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandPinkyIntermediate
|
||||
parentName: RightHandPinkyProximal
|
||||
position: {x: 0.030530028, y: -0.00000024421055, z: -0.00000023132408}
|
||||
rotation: {x: 0.013328835, y: 0.0031846534, z: 0.040875554, w: 0.99907035}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandPinkyDistal
|
||||
parentName: RightHandPinkyIntermediate
|
||||
position: {x: 0.025587238, y: -0.000000048678483, z: -0.0000003551311}
|
||||
rotation: {x: -0.0057280925, y: 0.00073774037, z: -0.016182102, w: 0.9998524}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandPinkyTip
|
||||
parentName: RightHandPinkyDistal
|
||||
position: {x: 0.027665226, y: 0.0000005163408, z: -0.000000021426509}
|
||||
rotation: {x: -0.18976371, y: 0.043328296, z: -0.036367346, w: 0.98019886}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandRingProximal
|
||||
parentName: RightHandWrist
|
||||
position: {x: 0.10271886, y: 0.013384004, z: -0.012779168}
|
||||
rotation: {x: 0.13242222, y: -0.0002665258, z: 0.009067335, w: 0.991152}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandRingIntermediate
|
||||
parentName: RightHandRingProximal
|
||||
position: {x: 0.0395483, y: -0.00000014216198, z: -0.00000025547973}
|
||||
rotation: {x: 0.013944674, y: -0.0003155765, z: 0.041029382, w: 0.9990606}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandRingDistal
|
||||
parentName: RightHandRingIntermediate
|
||||
position: {x: 0.029697573, y: 0.00000033498463, z: 0.00000008731673}
|
||||
rotation: {x: -0.0025761267, y: 0.011538306, z: 0.039736804, w: 0.9991403}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandRingTip
|
||||
parentName: RightHandRingDistal
|
||||
position: {x: 0.030375868, y: -0.0000008843472, z: 0.00000004167784}
|
||||
rotation: {x: 0.38638023, y: -0.016691614, z: -0.0460402, w: 0.92103857}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandThumbTrapezium
|
||||
parentName: RightHandWrist
|
||||
position: {x: 0.0057515376, y: -0.00089617365, z: 0.010012873}
|
||||
rotation: {x: 0.5780391, y: -0.32836834, z: 0.30619797, w: 0.6813868}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandThumbMeta
|
||||
parentName: RightHandThumbTrapezium
|
||||
position: {x: 0.044208277, y: 0.0000024464537, z: -0.000000429433}
|
||||
rotation: {x: -0.12088388, y: 0.024104223, z: -0.004190651, w: 0.9923652}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandThumbProximal
|
||||
parentName: RightHandThumbMeta
|
||||
position: {x: 0.0404128, y: -0.000000117846604, z: 0.00000041376023}
|
||||
rotation: {x: -0.108481, y: 0.016364988, z: -0.033197958, w: 0.9934093}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandThumbDistal
|
||||
parentName: RightHandThumbProximal
|
||||
position: {x: 0.044066515, y: 0.00000070322614, z: 0.00000011380425}
|
||||
rotation: {x: 0.0037389987, y: -0.0017514839, z: 0.003524172, w: 0.9999853}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightHandThumbTip
|
||||
parentName: RightHandThumbDistal
|
||||
position: {x: 0.03442506, y: -0.00000033678012, z: -0.00000040938616}
|
||||
rotation: {x: 0.87125117, y: 0.07199231, z: -0.15796646, w: 0.45911345}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmUpperTwist0
|
||||
parentName: RightArmUpper
|
||||
position: {x: -0.0006233471, y: -0.000058180703, z: -0.0006255327}
|
||||
rotation: {x: -3.0651454e-12, y: -0.0000031367804, z: -0.0000009772052, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmUpperTwist1
|
||||
parentName: RightArmUpper
|
||||
position: {x: 0.07647619, y: -0.000058331385, z: -0.000625049}
|
||||
rotation: {x: -3.0649927e-12, y: -0.0000031367804, z: -0.0000009772052, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmUpperTwist2
|
||||
parentName: RightArmUpper
|
||||
position: {x: 0.15357572, y: -0.00005848207, z: -0.0006245653}
|
||||
rotation: {x: -3.0649927e-12, y: -0.0000031367804, z: -0.0000009772052, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmUpperTwist3
|
||||
parentName: RightArmUpper
|
||||
position: {x: 0.23067525, y: -0.00005863276, z: -0.00062408164}
|
||||
rotation: {x: -3.0649927e-12, y: -0.0000031367804, z: -0.0000009772052, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: RightArmUpperTwist4
|
||||
parentName: RightArmUpper
|
||||
position: {x: 0.30777478, y: -0.00005878344, z: -0.00062359794}
|
||||
rotation: {x: -3.0649927e-12, y: -0.0000031367804, z: -0.0000009772052, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Sternum
|
||||
parentName: SpineUpper
|
||||
position: {x: -0.02332369, y: 0.1900959, z: 1.6940659e-23}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: Navel
|
||||
parentName: Sternum
|
||||
position: {x: 0.13297336, y: -0.005, z: -1.6940659e-23}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: TOON_Tony_grp
|
||||
parentName: Toon_Tony_ARKIT(Clone)
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: body_geo
|
||||
parentName: TOON_Tony_grp
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: head_ply
|
||||
parentName: TOON_Tony_grp
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LP_eyeball_L_geo
|
||||
parentName: TOON_Tony_grp
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: LP_eyeball_R_geo
|
||||
parentName: TOON_Tony_grp
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
- name: mouth_ply
|
||||
parentName: TOON_Tony_grp
|
||||
position: {x: -0, y: 0, z: 0}
|
||||
rotation: {x: 0, y: -0, z: -0, w: 1}
|
||||
scale: {x: 1, y: 1, z: 1}
|
||||
armTwist: 0.5
|
||||
foreArmTwist: 0.5
|
||||
upperLegTwist: 0.5
|
||||
legTwist: 0.5
|
||||
armStretch: 0.05
|
||||
legStretch: 0.05
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 0
|
||||
hasExtraRoot: 1
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 1
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
||||
remapMaterialsIfMaterialImportModeIsNone: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,121 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 979c359199d8d3c4095ae3c05ad730c6
|
||||
ModelImporter:
|
||||
serializedVersion: 21300
|
||||
internalIDToNameTable: []
|
||||
externalObjects:
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: eye_mat
|
||||
second: {fileID: 2100000, guid: c1a2276962647004ca723003ce43ab2f, type: 2}
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: head_mat
|
||||
second: {fileID: 2100000, guid: 443870d30b72bd9408ceb5390eb5f065, type: 2}
|
||||
- first:
|
||||
type: UnityEngine:Material
|
||||
assembly: UnityEngine.CoreModule
|
||||
name: mouth_mat
|
||||
second: {fileID: 2100000, guid: 9c74f04fbed1e9a4cbb749508a70f9cf, type: 2}
|
||||
materials:
|
||||
materialImportMode: 2
|
||||
materialName: 0
|
||||
materialSearch: 1
|
||||
materialLocation: 1
|
||||
animations:
|
||||
legacyGenerateAnimations: 4
|
||||
bakeSimulation: 0
|
||||
resampleCurves: 1
|
||||
optimizeGameObjects: 0
|
||||
removeConstantScaleCurves: 1
|
||||
motionNodeName:
|
||||
rigImportErrors:
|
||||
rigImportWarnings:
|
||||
animationImportErrors:
|
||||
animationImportWarnings:
|
||||
animationRetargetingWarnings:
|
||||
animationDoRetargetingWarnings: 0
|
||||
importAnimatedCustomProperties: 0
|
||||
importConstraints: 0
|
||||
animationCompression: 1
|
||||
animationRotationError: 0.5
|
||||
animationPositionError: 0.5
|
||||
animationScaleError: 0.5
|
||||
animationWrapMode: 0
|
||||
extraExposedTransformPaths: []
|
||||
extraUserProperties: []
|
||||
clipAnimations: []
|
||||
isReadable: 0
|
||||
meshes:
|
||||
lODScreenPercentages: []
|
||||
globalScale: 1
|
||||
meshCompression: 0
|
||||
addColliders: 0
|
||||
useSRGBMaterialColor: 1
|
||||
sortHierarchyByName: 1
|
||||
importVisibility: 1
|
||||
importBlendShapes: 1
|
||||
importCameras: 1
|
||||
importLights: 1
|
||||
nodeNameCollisionStrategy: 1
|
||||
fileIdsGeneration: 2
|
||||
swapUVChannels: 0
|
||||
generateSecondaryUV: 0
|
||||
useFileUnits: 1
|
||||
keepQuads: 0
|
||||
weldVertices: 1
|
||||
bakeAxisConversion: 0
|
||||
preserveHierarchy: 0
|
||||
skinWeightsMode: 0
|
||||
maxBonesPerVertex: 4
|
||||
minBoneWeight: 0.001
|
||||
optimizeBones: 1
|
||||
meshOptimizationFlags: -1
|
||||
indexFormat: 0
|
||||
secondaryUVAngleDistortion: 8
|
||||
secondaryUVAreaDistortion: 15.000001
|
||||
secondaryUVHardAngle: 88
|
||||
secondaryUVMarginMethod: 1
|
||||
secondaryUVMinLightmapResolution: 40
|
||||
secondaryUVMinObjectScale: 1
|
||||
secondaryUVPackMargin: 4
|
||||
useFileScale: 1
|
||||
tangentSpace:
|
||||
normalSmoothAngle: 60
|
||||
normalImportMode: 0
|
||||
tangentImportMode: 3
|
||||
normalCalculationMode: 4
|
||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||
blendShapeNormalImportMode: 1
|
||||
normalSmoothingSource: 0
|
||||
referencedClips: []
|
||||
importAnimation: 1
|
||||
humanDescription:
|
||||
serializedVersion: 3
|
||||
human: []
|
||||
skeleton: []
|
||||
armTwist: 0.5
|
||||
foreArmTwist: 0.5
|
||||
upperLegTwist: 0.5
|
||||
legTwist: 0.5
|
||||
armStretch: 0.05
|
||||
legStretch: 0.05
|
||||
feetSpacing: 0
|
||||
globalScale: 1
|
||||
rootMotionBoneName:
|
||||
hasTranslationDoF: 0
|
||||
hasExtraRoot: 0
|
||||
skeletonHasParents: 1
|
||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||
autoGenerateAvatarMappingIfUnspecified: 1
|
||||
animationType: 2
|
||||
humanoidOversampling: 1
|
||||
avatarSetup: 0
|
||||
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
||||
remapMaterialsIfMaterialImportModeIsNone: 0
|
||||
additionalBone: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9c0223ffc9450ed44b47236d8546db3b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,97 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1001 &2125373871612790102
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
m_TransformParent: {fileID: 0}
|
||||
m_Modifications:
|
||||
- target: {fileID: 796226053086756778, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: weightsProvider
|
||||
value:
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1156696345783973286, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: ConfidenceThreshold
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1258859224998902645, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_Name
|
||||
value: BlendshapeMappingExampleARKIT_A2E - FirstPerson
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_RootOrder
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 1888008143308857807, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2435389222492771222, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3153908646968323567, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3211354906280187307, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 3562817660980814538, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4835690301236350030, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5396937770668092856, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: m_UpdateWhenOffscreen
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 8837640998242550367, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
propertyPath: ConfidenceThreshold
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents:
|
||||
- {fileID: 266432098576399784, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
- {fileID: 5832106572316426083, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 6f0d6ce7e57c4ca4e82bf006367c1e82, type: 3}
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 20817fece1805944aaffc3faaf7cfeba
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4688eb7f1f866254b8e3f43b7704f477
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6f0d6ce7e57c4ca4e82bf006367c1e82
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,128 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1001 &3392566104894108353
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
m_TransformParent: {fileID: 0}
|
||||
m_Modifications:
|
||||
- target: {fileID: 915142221874465456, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4637462914897473403, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_Name
|
||||
value: LinaA2E - FirstPerson
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4788829253364421858, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 4948031141700637067, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_RootOrder
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 1
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 5408897232054433217, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7509050666944999654, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
propertyPath: m_IsActive
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents:
|
||||
- {fileID: 322347311560785757, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
- {fileID: 8627623451868931981, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
m_SourcePrefab: {fileID: 100100000, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
--- !u!1 &3501528118819487451 stripped
|
||||
GameObject:
|
||||
m_CorrespondingSourceObject: {fileID: 2270726396583644186, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
m_PrefabInstance: {fileID: 3392566104894108353}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!114 &7450897853666589864
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 3501528118819487451}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 28dd40a6d175d01498e0477360d6c070, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
Eye: 0
|
||||
ConfidenceThreshold: 0
|
||||
ApplyPosition: 0
|
||||
ApplyRotation: 1
|
||||
ReferenceFrame: {fileID: 8654950014605416986}
|
||||
TrackingMode: 0
|
||||
--- !u!1 &5108729094089857018 stripped
|
||||
GameObject:
|
||||
m_CorrespondingSourceObject: {fileID: 7633894864678266171, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
m_PrefabInstance: {fileID: 3392566104894108353}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!114 &8607585864213158483
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 5108729094089857018}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 28dd40a6d175d01498e0477360d6c070, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
Eye: 1
|
||||
ConfidenceThreshold: 0
|
||||
ApplyPosition: 0
|
||||
ApplyRotation: 1
|
||||
ReferenceFrame: {fileID: 8654950014605416986}
|
||||
TrackingMode: 0
|
||||
--- !u!4 &8654950014605416986 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 6271367808314976475, guid: e1d43a0992403a546b83d4ce09940b5e, type: 3}
|
||||
m_PrefabInstance: {fileID: 3392566104894108353}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fca277a053d06f047a3cfba9eaf126b9
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ac9cc3687745eea499d8b24def228f27
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e1d43a0992403a546b83d4ce09940b5e
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02a62763f1cfd4f40b494536725fd6b4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 2.0 MiB |
@ -0,0 +1,147 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b4f406ba4692d9548854e4fd35d10b33
|
||||
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: 2
|
||||
aniso: 16
|
||||
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: 1024
|
||||
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: 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: 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: Server
|
||||
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:
|
||||
|
After Width: | Height: | Size: 142 B |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: faa00f909c9bd18428ebae8eb9d1969f
|
||||
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: 2
|
||||
aniso: 16
|
||||
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: 1024
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 2.7 MiB |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7430f837c24f6a24ebfa763b12a10c03
|
||||
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: 2
|
||||
aniso: 16
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 3.3 MiB |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 82e067904f4f774469b6f95555bb9291
|
||||
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: 2
|
||||
aniso: 16
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b7346bef4c8210e47a3942765c0801f6
|
||||
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: 2
|
||||
aniso: 16
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 2.6 MiB |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f8b090677d8fc8e4ba5e6b384675e712
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 1
|
||||
sRGBTexture: 0
|
||||
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: 2
|
||||
aniso: 16
|
||||
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: 1
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 4.0 MiB |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8cf157e0c80c00846bf9cd2ae4c29c29
|
||||
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: 2
|
||||
aniso: 16
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 3.7 MiB |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f8685aecc96e43b4e98e4ad1a0a861a5
|
||||
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: 2
|
||||
aniso: 16
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
After Width: | Height: | Size: 3.6 MiB |
@ -0,0 +1,135 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cc581de4c8097c44faf4bd53e910f13d
|
||||
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: 2
|
||||
aniso: 16
|
||||
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
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||