added some stuff

This commit is contained in:
Wong Sui Bin 2023-01-24 21:51:46 +08:00
parent 9b69003715
commit 3dbf2f9010
520 changed files with 176780 additions and 2 deletions

View file

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

View file

@ -0,0 +1,30 @@
Shader "Custom/2dUnlitWithFade" {
Properties
{
_Color ("Color Tint", Color) = (1,1,1,1)
_MainTex ("Base (RGB) Alpha (A)", 2D) = "white"
}
Category
{
Lighting Off
ZWrite Off
//ZWrite On // uncomment if you have problems like the sprite disappear in some rotations.
Cull back
Blend SrcAlpha OneMinusSrcAlpha
//AlphaTest Greater 0.001 // uncomment if you have problems like the sprites or 3d text have white quads instead of alpha pixels.
Tags {Queue=Transparent}
SubShader
{
Pass
{
SetTexture [_MainTex]
{
ConstantColor [_Color]
Combine Texture * constant
}
}
}
}
}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 8bce9282b1bfd475284fd2e72b37403c

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View file

@ -0,0 +1,33 @@
fileFormatVersion: 2
guid: 6a9d1d221a3c94d83b614d921df0402e
TextureImporter:
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 0
linearTexture: 1
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
textureFormat: -1
maxTextureSize: 1024
textureSettings:
filterMode: -1
aniso: 1
mipBias: -1
wrapMode: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
textureType: 5
buildTargetSettings: []

View file

@ -0,0 +1,84 @@
using UnityEngine;
using System.Collections;
using DentedPixel;
public class OldGUIExamplesCS : MonoBehaviour {
public Texture2D grumpy;
public Texture2D beauty;
private float w;
private float h;
private LTRect buttonRect1;
private LTRect buttonRect2;
private LTRect buttonRect3;
private LTRect buttonRect4;
private LTRect grumpyRect;
private LTRect beautyTileRect;
// Use this for initialization
void Start () {
w = Screen.width;
h = Screen.height;
buttonRect1 = new LTRect(0.10f*w, 0.8f*h, 0.2f*w, 0.14f*h );
buttonRect2 = new LTRect(1.2f*w, 0.8f*h, 0.2f*w, 0.14f*h );
buttonRect3 = new LTRect(0.35f*w, 0.0f*h, 0.3f*w, 0.2f*h, 0f );
buttonRect4 = new LTRect(0.0f*w, 0.4f*h, 0.3f*w, 0.2f*h, 1.0f, 15.0f );
grumpyRect = new LTRect(0.5f*w - grumpy.width*0.5f, 0.5f*h - grumpy.height*0.5f, grumpy.width, grumpy.height );
beautyTileRect = new LTRect(0.0f,0.0f,1.0f,1.0f );
LeanTween.move( buttonRect2, new Vector2(0.55f*w, buttonRect2.rect.y), 0.7f ).setEase(LeanTweenType.easeOutQuad);
}
public void catMoved(){
Debug.Log("cat moved...");
}
// Update is called once per frame
void OnGUI () {
GUI.DrawTexture( grumpyRect.rect, grumpy);
Rect staticRect = new Rect(0.0f*w, 0.0f*h, 0.2f*w, 0.14f*h);
if(GUI.Button( staticRect, "Move Cat")){
if(LeanTween.isTweening(grumpyRect)==false){ // Check to see if the cat is already tweening, so it doesn't freak out
Vector2 orig = new Vector2( grumpyRect.rect.x, grumpyRect.rect.y );
LeanTween.move( grumpyRect, new Vector2( 1.0f*Screen.width - grumpy.width, 0.0f*Screen.height ), 1.0f).setEase(LeanTweenType.easeOutBounce).setOnComplete(catMoved);
LeanTween.move( grumpyRect, orig, 1.0f ).setDelay(1.0f).setEase( LeanTweenType.easeOutBounce);
}
}
if(GUI.Button(buttonRect1.rect, "Scale Centered")){
LeanTween.scale( buttonRect1, new Vector2(buttonRect1.rect.width, buttonRect1.rect.height) * 1.2f, 0.25f ).setEase( LeanTweenType.easeOutQuad );
LeanTween.move( buttonRect1, new Vector2(buttonRect1.rect.x-buttonRect1.rect.width*0.1f, buttonRect1.rect.y-buttonRect1.rect.height*0.1f), 0.25f ).setEase(LeanTweenType.easeOutQuad);
}
if(GUI.Button(buttonRect2.rect, "Scale")){
LeanTween.scale( buttonRect2, new Vector2(buttonRect2.rect.width, buttonRect2.rect.height) * 1.2f, 0.25f ).setEase(LeanTweenType.easeOutBounce);
}
staticRect = new Rect(0.76f*w, 0.53f*h, 0.2f*w, 0.14f*h);
if(GUI.Button( staticRect, "Flip Tile")){
LeanTween.move( beautyTileRect, new Vector2( 0f, beautyTileRect.rect.y + 1.0f ), 1.0f ).setEase(LeanTweenType.easeOutBounce);
}
GUI.DrawTextureWithTexCoords( new Rect(0.8f*w, 0.5f*h - beauty.height*0.5f, beauty.width*0.5f, beauty.height*0.5f), beauty, beautyTileRect.rect);
if(GUI.Button(buttonRect3.rect, "Alpha")){
LeanTween.alpha( buttonRect3, 0.0f, 1.0f).setEase(LeanTweenType.easeOutQuad);
LeanTween.alpha( buttonRect3, 1.0f, 1.0f).setDelay(1.0f).setEase( LeanTweenType.easeInQuad);
LeanTween.alpha( grumpyRect, 0.0f, 1.0f).setEase(LeanTweenType.easeOutQuad);
LeanTween.alpha( grumpyRect, 1.0f, 1.0f).setDelay(1.0f).setEase(LeanTweenType.easeInQuad);
}
GUI.color = new Color(1.0f,1.0f,1.0f,1.0f); // Reset to normal alpha, otherwise other gui elements will be effected
if(GUI.Button(buttonRect4.rect, "Rotate")){
LeanTween.rotate( buttonRect4, 150.0f, 1.0f ).setEase(LeanTweenType.easeOutElastic);
LeanTween.rotate( buttonRect4, 0.0f, 1.0f ).setDelay(1.0f).setEase(LeanTweenType.easeOutElastic);
}
GUI.matrix = Matrix4x4.identity;
}
}

View file

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 876bfcaf53a664f29a628faa9fa332fc
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}

View file

@ -0,0 +1,230 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!29 &1
OcclusionCullingSettings:
m_ObjectHideFlags: 0
serializedVersion: 2
m_OcclusionBakeSettings:
smallestOccluder: 5
smallestHole: 0.25
backfaceThreshold: 100
m_SceneGUID: 00000000000000000000000000000000
m_OcclusionCullingData: {fileID: 0}
--- !u!104 &2
RenderSettings:
m_ObjectHideFlags: 0
serializedVersion: 9
m_Fog: 0
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
m_FogMode: 3
m_FogDensity: 0.01
m_LinearFogStart: 0
m_LinearFogEnd: 300
m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_AmbientEquatorColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_AmbientIntensity: 1
m_AmbientMode: 3
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
m_SkyboxMaterial: {fileID: 0}
m_HaloStrength: 0.5
m_FlareStrength: 1
m_FlareFadeSpeed: 3
m_HaloTexture: {fileID: 0}
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
m_DefaultReflectionMode: 0
m_DefaultReflectionResolution: 128
m_ReflectionBounces: 1
m_ReflectionIntensity: 1
m_CustomReflection: {fileID: 0}
m_Sun: {fileID: 0}
m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
m_UseRadianceAmbientProbe: 0
--- !u!157 &4
LightmapSettings:
m_ObjectHideFlags: 0
serializedVersion: 11
m_GIWorkflowMode: 1
m_GISettings:
serializedVersion: 2
m_BounceScale: 1
m_IndirectOutputScale: 1
m_AlbedoBoost: 1
m_EnvironmentLightingMode: 0
m_EnableBakedLightmaps: 1
m_EnableRealtimeLightmaps: 0
m_LightmapEditorSettings:
serializedVersion: 12
m_Resolution: 1
m_BakeResolution: 50
m_AtlasSize: 1024
m_AO: 1
m_AOMaxDistance: 1
m_CompAOExponent: 1
m_CompAOExponentDirect: 0
m_ExtractAmbientOcclusion: 0
m_Padding: 2
m_LightmapParameters: {fileID: 0}
m_LightmapsBakeMode: 1
m_TextureCompression: 0
m_FinalGather: 0
m_FinalGatherFiltering: 1
m_FinalGatherRayCount: 256
m_ReflectionCompression: 2
m_MixedBakeMode: 1
m_BakeBackend: 0
m_PVRSampling: 1
m_PVRDirectSampleCount: 32
m_PVRSampleCount: 512
m_PVRBounces: 2
m_PVREnvironmentSampleCount: 512
m_PVREnvironmentReferencePointCount: 2048
m_PVRFilteringMode: 0
m_PVRDenoiserTypeDirect: 0
m_PVRDenoiserTypeIndirect: 0
m_PVRDenoiserTypeAO: 0
m_PVRFilterTypeDirect: 0
m_PVRFilterTypeIndirect: 0
m_PVRFilterTypeAO: 0
m_PVREnvironmentMIS: 0
m_PVRCulling: 1
m_PVRFilteringGaussRadiusDirect: 1
m_PVRFilteringGaussRadiusIndirect: 5
m_PVRFilteringGaussRadiusAO: 2
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
m_PVRFilteringAtrousPositionSigmaIndirect: 2
m_PVRFilteringAtrousPositionSigmaAO: 1
m_ExportTrainingData: 0
m_TrainingDataDestination: TrainingData
m_LightProbeSampleCountMultiplier: 4
m_LightingDataAsset: {fileID: 0}
m_UseShadowmask: 0
--- !u!196 &5
NavMeshSettings:
serializedVersion: 2
m_ObjectHideFlags: 0
m_BuildSettings:
serializedVersion: 2
agentTypeID: 0
agentRadius: 0.5
agentHeight: 2
agentSlope: 45
agentClimb: 0.4
ledgeDropHeight: 0
maxJumpAcrossDistance: 0
minRegionArea: 2
manualCellSize: 0
cellSize: 0.16666666
manualTileSize: 0
tileSize: 256
accuratePlacement: 0
debug:
m_Flags: 0
m_NavMeshData: {fileID: 0}
--- !u!1 &1713412972
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1713412973}
- component: {fileID: 1713412974}
- component: {fileID: 1713412977}
- component: {fileID: 1713412975}
- component: {fileID: 1713412978}
m_Layer: 0
m_Name: Main Camera
m_TagString: MainCamera
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &1713412973
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1713412972}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 1, z: -10}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!20 &1713412974
Camera:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1713412972}
m_Enabled: 1
serializedVersion: 2
m_ClearFlags: 1
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844}
m_projectionMatrixMode: 1
m_GateFitMode: 2
m_FOVAxisMode: 0
m_SensorSize: {x: 36, y: 24}
m_LensShift: {x: 0, y: 0}
m_FocalLength: 50
m_NormalizedViewPortRect:
serializedVersion: 2
x: 0
y: 0
width: 1
height: 1
near clip plane: 0.3
far clip plane: 1000
field of view: 60
orthographic: 0
orthographic size: 100
m_Depth: -1
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingPath: -1
m_TargetTexture: {fileID: 0}
m_TargetDisplay: 0
m_TargetEye: 3
m_HDR: 0
m_AllowMSAA: 1
m_AllowDynamicResolution: 0
m_ForceIntoRT: 0
m_OcclusionCulling: 1
m_StereoConvergence: 10
m_StereoSeparation: 0.022
--- !u!81 &1713412975
AudioListener:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1713412972}
m_Enabled: 1
--- !u!124 &1713412977
Behaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1713412972}
m_Enabled: 1
--- !u!114 &1713412978
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1713412972}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 876bfcaf53a664f29a628faa9fa332fc, type: 3}
m_Name:
m_EditorClassIdentifier:
grumpy: {fileID: 2800000, guid: 6a9d1d221a3c94d83b614d921df0402e, type: 3}
beauty: {fileID: 2800000, guid: 78e9e608c3c9d47a3b312c2908d10f46, type: 3}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: ec27881ee9cf54018ac9bd5706c2fdab

Binary file not shown.

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,33 @@
fileFormatVersion: 2
guid: 78e9e608c3c9d47a3b312c2908d10f46
TextureImporter:
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 1
linearTexture: 0
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
textureFormat: -1
maxTextureSize: 1024
textureSettings:
filterMode: -1
aniso: -1
mipBias: -1
wrapMode: -1
nPOTScale: 1
lightmap: 0
compressionQuality: 50
textureType: -1
buildTargetSettings: []

View file

@ -0,0 +1,182 @@
using UnityEngine;
using System.Collections;
using DentedPixel;
public class TestingPunch : MonoBehaviour {
public AnimationCurve exportCurve;
public float overShootValue = 1f;
private LTDescr descr;
void Start () {
//LeanTween.rotateAround(gameObject, gameObject.transform.rotation.eulerAngles, 360f, 5f).setDelay(1f).setEase(LeanTweenType.easeOutBounce);
Debug.Log( "exported curve:" + curveToString(exportCurve) );
}
void Update ()
{
LeanTween.dtManual = Time.deltaTime;
if (Input.GetKeyDown(KeyCode.Q))
{
//LeanTween.scale(this.gameObject, Vector3.one*3f, 1.0f).setEase(LeanTweenType.easeSpring).setUseManualTime(true);
//print("scale punch time independent!");
LeanTween.moveLocalX(gameObject, 5, 1).setOnComplete( () => {
Debug.Log("on complete move local X");
}).setOnCompleteOnStart(true);
GameObject light = GameObject.Find("DirectionalLight");
Light lt = light.GetComponent<Light>();
LeanTween.value(lt.gameObject, lt.intensity, 0.0f, 1.5f)
.setEase(LeanTweenType.linear)
.setLoopPingPong()
.setRepeat(-1)
.setOnUpdate((float val)=>{
lt.intensity = val;
});
}
if (Input.GetKeyDown(KeyCode.S))
{
print("scale punch!");
tweenStatically( this.gameObject );
LeanTween.scale(this.gameObject, new Vector3(1.15f, 1.15f, 1.15f), 0.6f);
LeanTween.rotateAround(this.gameObject, Vector3.forward, -360f, 0.3f).setOnComplete(() =>
{
LeanTween.rotateAround(this.gameObject, Vector3.forward, -360f, 0.4f).setOnComplete(() =>
{
LeanTween.scale(this.gameObject, new Vector3(1f, 1f, 1f), 0.1f);
LeanTween.value(this.gameObject, (v) =>
{
}, 0, 1, 0.3f).setDelay(1);
});
});
}
if (Input.GetKeyDown(KeyCode.T))
{
Vector3[] pts = new Vector3[] {new Vector3(-1f,0f,0f), new Vector3(0f,0f,0f), new Vector3(4f,0f,0f), new Vector3(20f,0f,0f)};
descr = LeanTween.move(gameObject, pts, 15f).setOrientToPath(true).setDirection(1f).setOnComplete( ()=>{
Debug.Log("move path finished");
});
}
if (Input.GetKeyDown(KeyCode.Y)) // Reverse the move path
{
descr.setDirection(-descr.direction);
}
if (Input.GetKeyDown(KeyCode.R))
{
// LeanTween.rotate(this.gameObject, Vector3.one, 1.0f).setEase(LeanTweenType.punch);
LeanTween.rotateAroundLocal(this.gameObject, this.transform.forward, -80f, 5.0f).setPoint(new Vector3(1.25f, 0f, 0f));
print("rotate punch!");
}
if (Input.GetKeyDown(KeyCode.M))
{
// LeanTween.move(this.gameObject, new Vector3(0f,0f,1f), 1.0f).setEase(LeanTweenType.punch);
print("move punch!");
Time.timeScale = 0.25f;
float start = Time.realtimeSinceStartup;
LeanTween.moveX( this.gameObject, 1f, 1f).setOnComplete( destroyOnComp ).setOnCompleteParam( this.gameObject ).setOnComplete( ()=>{
float end = Time.realtimeSinceStartup;
float diff = end - start;
Debug.Log("start:"+start+" end:"+end+" diff:"+diff+" x:"+this.gameObject.transform.position.x);
}).setEase(LeanTweenType.easeInBack).setOvershoot( overShootValue ).setPeriod(0.3f);
}
if (Input.GetKeyDown(KeyCode.C))
{
LeanTween.color( this.gameObject, new Color(1f, 0f, 0f, 0.5f), 1f);
Color to = new Color(Random.Range(0f,1f),0f,Random.Range(0f,1f),0.0f);
GameObject l = GameObject.Find("LCharacter");
LeanTween.color( l, to, 4.0f ).setLoopPingPong(1).setEase(LeanTweenType.easeOutBounce);
}
if (Input.GetKeyDown(KeyCode.E))
{
LeanTween.delayedCall(gameObject,0.3f, delayedMethod).setRepeat(4).setOnCompleteOnRepeat(true).setOnCompleteParam( "hi" );
}
if (Input.GetKeyDown(KeyCode.V))
{
LeanTween.value( gameObject, updateColor, new Color(1.0f,0.0f,0.0f,1.0f), Color.blue, 4.0f );//.setRepeat(2).setLoopPingPong().setEase(LeanTweenType.easeOutBounce);
}
if (Input.GetKeyDown(KeyCode.P))
{
LeanTween.delayedCall(0.05f, enterMiniGameStart).setOnCompleteParam( new object[]{""+5} );
}
if(Input.GetKeyDown(KeyCode.U)){
#if !UNITY_FLASH
LeanTween.value(gameObject, (Vector2 val)=>{
// Debug.Log("tweening vec2 val:"+val);
transform.position = new Vector3(val.x, transform.position.y, transform.position.z);
}, new Vector2(0f,0f), new Vector2(5f,100f), 1f ).setEase(LeanTweenType.easeOutBounce);
GameObject l = GameObject.Find("LCharacter");
Debug.Log("x:"+l.transform.position.x+" y:"+l.transform.position.y);
LeanTween.value(l, new Vector2( l.transform.position.x, l.transform.position.y), new Vector2( l.transform.position.x, l.transform.position.y+5), 1f ).setOnUpdate(
(Vector2 val)=>{
Debug.Log("tweening vec2 val:"+val);
l.transform.position = new Vector3(val.x, val.y, transform.position.z);
}
);
#endif
}
}
static void tweenStatically( GameObject gameObject ){
Debug.Log("Starting to tween...");
LeanTween.value(gameObject, (val)=>{
Debug.Log("tweening val:"+val);
}, 0f, 1f, 1f);
}
void enterMiniGameStart( object val ){
object[] arr = (object [])val;
int lvl = int.Parse((string)arr[0]);
Debug.Log("level:"+lvl);
}
void updateColor( Color c ){
GameObject l = GameObject.Find("LCharacter");
// Debug.Log("new col:"+c);
l.GetComponent<Renderer>().material.color = c;
}
void delayedMethod( object myVal ){
string castBack = myVal as string;
Debug.Log("delayed call:"+Time.time +" myVal:"+castBack);
}
void destroyOnComp( object p ){
GameObject g = (GameObject)p;
Destroy( g );
}
string curveToString( AnimationCurve curve) {
string str = "";
for(int i = 0; i < curve.length; i++){
str += "new Keyframe("+curve[i].time+"f, "+curve[i].value+"f)";
if(i<curve.length-1)
str += ", ";
}
return "new AnimationCurve( "+str+" )";
}
}

View file

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: b8abaf57a262a44a994d8e7bcbc035e0
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 6cd53863374404f7b8e101f758cc46e7

View file

@ -0,0 +1,21 @@
using UnityEngine;
using System.Collections;
using DentedPixel;
public class TestingRigidbodyCS : MonoBehaviour {
private GameObject ball1;
// Use this for initialization
void Start () {
ball1 = GameObject.Find("Sphere1");
LeanTween.rotateAround( ball1, Vector3.forward, -90f, 1.0f);
LeanTween.move( ball1, new Vector3(2f,0f,7f), 1.0f).setDelay(1.0f).setRepeat(-1);
}
// Update is called once per frame
void Update () {
}
}

View file

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 1172f23ac87274d9f941c26abca49be5
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 85c5a0f0e397a4579b42c67c6dce87ef

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 3a8596587ab4843d2ad8706c4d9c173b

View file

@ -0,0 +1,32 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AlphBumps
m_Shader: {fileID: 31, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
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}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats: []
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 12c720f1dd5674502bc1185ff99b70f9

View file

@ -0,0 +1,33 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AlphaReadyMaterial
m_Shader: {fileID: 30, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: ETC1_EXTERNAL_ALPHA
m_LightmapFlags: 5
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}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _Cutoff: 0.5
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 61731bf38a6fa4d66b536bc03fc8eb3f

View file

@ -0,0 +1,28 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: DirectionalArrowMaterial
m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats: []
m_Colors:
- _Color: {r: 0.044998895, g: 0.6050462, b: 0.75373137, a: 1}

View file

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 79809b4fc57ad41b982c1dd5ceb812b2
timeCreated: 1535222686
licenseType: Store
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,14 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!134 &13400000
PhysicMaterial:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: FrictionLess
dynamicFriction: 0
staticFriction: 0
bounciness: 1
frictionCombine: 0
bounceCombine: 0

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 1560575207a7b4f27bcd4ab2aeb2e3a1

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View file

@ -0,0 +1,188 @@
fileFormatVersion: 2
guid: cea2c9bf87b0c4dfdafb697a3ff00959
TextureImporter:
internalIDToNameTable:
- first:
213: 21300000
second: WingPersonSprites_0
- first:
213: 21300002
second: WingPersonSprites_1
- first:
213: 21300004
second: WingPersonSprites_2
- first:
213: 21300006
second: WingPersonSprites_3
externalObjects: {}
serializedVersion: 11
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 1024
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 16
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
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: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 1
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
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: WingPersonSprites_0
rect:
serializedVersion: 2
x: 0
y: 128
width: 128
height: 128
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 02305410000000000800000000000000
internalID: 21300000
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: WingPersonSprites_1
rect:
serializedVersion: 2
x: 128
y: 128
width: 128
height: 128
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 22305410000000000800000000000000
internalID: 21300002
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: WingPersonSprites_2
rect:
serializedVersion: 2
x: 0
y: 0
width: 128
height: 128
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 42305410000000000800000000000000
internalID: 21300004
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: WingPersonSprites_3
rect:
serializedVersion: 2
x: 128
y: 0
width: 128
height: 128
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 62305410000000000800000000000000
internalID: 21300006
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,44 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Futoro_PlanetMaterial
m_Shader: {fileID: 22, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
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}
- _Cube:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _Illum:
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}
m_Floats:
- _EmissionLM: 0
- _Shininess: 0.059286643
m_Colors:
- _Color: {r: 0.014705896, g: 0.002595158, b: 0.002595158, a: 1}
- _ReflectColor: {r: 0, g: 0, b: 0, a: 0.5019608}
- _SpecColor: {r: 0.05799573, g: 0.04163062, b: 0.25735295, a: 1}

View file

@ -0,0 +1,4 @@
fileFormatVersion: 2
guid: 6b98784ec692b4e00a86fa1044ad8998
NativeFormatImporter:
userData:

Binary file not shown.

View file

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: ef31bc3f46d6047b29ff513e55daf05b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 256
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
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: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 1
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 256
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: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 1
pSDShowRemoveMatteOption: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,34 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Futoro_SineWave
m_Shader: {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 2800000, guid: d835741a3c4a14a0aa5f7536c46456c4, type: 3}
m_Scale: {x: 4, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _ColorMask: 15
- _Stencil: 0
- _StencilComp: 8
- _StencilOp: 0
- _StencilReadMask: 255
- _StencilWriteMask: 255
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}

View file

@ -0,0 +1,4 @@
fileFormatVersion: 2
guid: d2eed51ebc4ee4089986bb1639255f0e
NativeFormatImporter:
userData:

Binary file not shown.

View file

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: 492b9988436bd45049a9a6bc52ac8fb0
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 1024
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 16
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 24, y: 31, z: 25, w: 31}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 1
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
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 1
pSDShowRemoveMatteOption: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: b3abce7efa3854a4cb1dd6b47f553027
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 1024
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 16
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 33, y: 32, z: 31, w: 32}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 1
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
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 1
pSDShowRemoveMatteOption: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,121 @@
fileFormatVersion: 2
guid: b8aaa707027cc4f79af3439c5dbc9652
TextureImporter:
fileIDToRecycleName: {}
externalObjects: {}
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 0
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: -1
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 33, y: 32, z: 31, w: 32}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: iPhone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 7e7a10660494241ccb5c8b6dc7dc9fc0
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View file

@ -0,0 +1,116 @@
fileFormatVersion: 2
guid: d835741a3c4a14a0aa5f7536c46456c4
TextureImporter:
internalIDToNameTable:
- first:
213: 21300000
second: Futuro_SineWave_0
externalObjects: {}
serializedVersion: 11
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 64
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 16
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 1
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 50
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 1
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 64
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: Futuro_SineWave_0
rect:
serializedVersion: 2
x: 0
y: 0
width: 64
height: 64
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 02305410000000000800000000000000
internalID: 21300000
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 1
pSDShowRemoveMatteOption: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,92 @@
fileFormatVersion: 2
guid: 678c92572cc724845a460c87117f5353
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 11
mipmaps:
mipMapMode: 0
enableMipMap: 0
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
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 1024
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 120, y: 120, z: 120, w: 120}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
applyGammaDecoding: 1
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
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spritePackingTag:
pSDRemoveMatte: 1
pSDShowRemoveMatteOption: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,29 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Graph
m_Shader: {fileID: 10703, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2000
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _InvFade: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: a8a5e544bfa0d416892e87b12e93911b

View file

@ -0,0 +1,38 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: GridLines
m_Shader: {fileID: 10, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 1
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _Illum:
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}
m_Floats:
- _Emission: 1
- _EmissionLM: 0
- _InvFade: 1
- _Shininess: 0.7
m_Colors:
- _Color: {r: 0, g: 0.20586912, b: 0.3134328, a: 1}
- _Emission: {r: 0, g: 0, b: 0, a: 0}
- _SpecColor: {r: 1, g: 1, b: 1, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 9a06e258e3bf640e885048b32fdf51b7

View file

@ -0,0 +1,28 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Ground
m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats: []
m_Colors:
- _Color: {r: 0.66445756, g: 0.8647385, b: 0.91791046, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: c6784005974824c55b2b59b5bda24153

View file

@ -0,0 +1,34 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: LineGlowMaterial
m_Shader: {fileID: 10703, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2000
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}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 547f51a8eea214bd7a5863356fd25619, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _InvFade: 1
m_Colors:
- _Color: {r: 0, g: 0.95804214, b: 1, a: 1}
- _TintColor: {r: 0.41106036, g: 0.75850374, b: 0.9029851, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 658f4eba50cce41098da6ed347d8d270

View file

@ -0,0 +1,28 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Mock2d
m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 2800000, guid: 6a9d1d221a3c94d83b614d921df0402e, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats: []
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: ab11516f0780f4d438844432fc7e8070

View file

@ -0,0 +1,73 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ParticleGlow
m_Shader: {fileID: 10720, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000
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: eabba395643bb4e388d633c8d9a4f1e8, 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}
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _Glossiness: 0.5
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}

View file

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

View file

@ -0,0 +1,28 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: PointMark
m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats: []
m_Colors:
- _Color: {r: 0.044998895, g: 0.6050462, b: 0.75373137, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: e77db49bc9fb6499290655245ce9bc95

View file

@ -0,0 +1,34 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: SpaceLineGlowMaterial
m_Shader: {fileID: 200, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
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}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 547f51a8eea214bd7a5863356fd25619, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _InvFade: 1
m_Colors:
- _Color: {r: 0, g: 0.95804214, b: 1, a: 1}
- _TintColor: {r: 0.41106036, g: 0.75850374, b: 0.9029851, a: 1}

View file

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 4d170a8aa584240f4b18ce6a5e58ef2e
timeCreated: 1535294217
licenseType: Store
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,73 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: TrackCar
m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 2000
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _Glossiness: 0.5
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 0, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}

View file

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3e55a11a05aa141af9f3be5e921cc003
timeCreated: 1460231732
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,30 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: TrackFollowMaterial
m_Shader: {fileID: 201, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 2800000, guid: eabba395643bb4e388d633c8d9a4f1e8, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _InvFade: 1
m_Colors:
- _Color: {r: 0, g: 0.7902098, b: 1, a: 1}
- _TintColor: {r: 1, g: 0.125, b: 0.25172395, a: 0.5019608}

View file

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9efbdb862990242178d5b47a40b48e80
timeCreated: 1460232167
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,34 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: TrackGlowMaterial
m_Shader: {fileID: 203, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
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}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 547f51a8eea214bd7a5863356fd25619, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _InvFade: 1
m_Colors:
- _Color: {r: 0, g: 0.95804214, b: 1, a: 1}
- _TintColor: {r: 1, g: 0, b: 0, a: 1}

View file

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

View file

@ -0,0 +1,74 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: TrackLines
m_Shader: {fileID: 202, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000
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: eabba395643bb4e388d633c8d9a4f1e8, 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}
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _Glossiness: 0.5
- _InvFade: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}

View file

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 54538213a935248b8ac1ce7b42140cad
timeCreated: 1460233706
licenseType: Store
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,30 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: TrailFollowMaterial
m_Shader: {fileID: 201, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 5
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 2800000, guid: eabba395643bb4e388d633c8d9a4f1e8, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats:
- _InvFade: 1
m_Colors:
- _Color: {r: 0, g: 0.7902098, b: 1, a: 1}
- _TintColor: {r: 0.2, g: 0.9647059, b: 1, a: 0.5019608}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: ff16fb4a90fe84bec9c8f29698aa0eed

View file

@ -0,0 +1,28 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 6
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: WalkingStick
m_Shader: {fileID: 10703, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords:
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _MainTex:
m_Texture: {fileID: 2800000, guid: 3f3412b4ab34a4ea09e7bd063d55e0c3, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Floats: []
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 3285d6d0bc506494b8fecba4d7aada26

View file

@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 59b55a9208dd7467b964ad4ead1ef272

Binary file not shown.

View file

@ -0,0 +1,75 @@
fileFormatVersion: 2
guid: c0f35ff1d23074af5bcd82d9caa31ebe
ModelImporter:
serializedVersion: 19
fileIDToRecycleName:
100002: //RootNode
400002: //RootNode
2300000: //RootNode
3300000: //RootNode
4300000: Text.002
11100000: //RootNode
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 3
bakeSimulation: 0
resampleRotations: 1
optimizeGameObjects: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
importBlendShapes: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 4
importAnimation: 1
copyAvatar: 0
humanDescription:
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 1
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,91 @@
fileFormatVersion: 2
guid: 47a7c1f40f5df413fbc8bf1c01c011a2
timeCreated: 1464353277
licenseType: Store
ModelImporter:
serializedVersion: 18
fileIDToRecycleName:
100000: //RootNode
100002: Camera
100004: Lamp
100006: Text2
100008: Text3
100010: Text4
100012: TextRecursion
400000: //RootNode
400002: Camera
400004: Lamp
400006: Text2
400008: Text3
400010: Text4
400012: TextRecursion
2300000: Text2
2300002: Text3
2300004: Text4
2300006: TextRecursion
3300000: Text2
3300002: Text3
3300004: Text4
3300006: TextRecursion
4300000: Text4
4300002: Text3
4300004: TextRecursion
4300006: Text2
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
optimizeGameObjects: 0
motionNodeName:
animationCompression: 1
animationRotationError: .5
animationPositionError: .5
animationScaleError: .5
animationWrapMode: 0
extraExposedTransformPaths: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
importBlendShapes: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
splitTangentsAcrossUV: 1
normalImportMode: 0
tangentImportMode: 1
importAnimation: 1
copyAvatar: 0
humanDescription:
human: []
skeleton: []
armTwist: .5
foreArmTwist: .5
upperLegTwist: .5
legTwist: .5
armStretch: .0500000007
legStretch: .0500000007
feetSpacing: 0
rootMotionBoneName:
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View file

@ -0,0 +1,104 @@
fileFormatVersion: 2
guid: 803bfbdea65eb4ebe96e481875403860
ModelImporter:
fileIDToRecycleName:
4300000: TextAndMore
4300002: TextMove
4300004: TextRotate
4300006: TextScale
serializedVersion: 10
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
generateAnimations: 3
bakeSimulation: 0
splitAnimations: 1
animationCompression: 1
animationRotationError: .5
animationPositionError: .5
animationScaleError: .5
animationWrapMode: 0
clipAnimations: []
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMesh: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
tangentSpace:
normalSmoothAngle: 60
splitTangentsAcrossUV: 1
normalImportMode: 0
tangentImportMode: 1
textMetaNamesToFileIDs:
//RootNode:
data:
first: 1
second: a0860100
data:
first: 4
second: 801a0600
data:
first: 111
second: 605fa900
TextAndMore:
data:
first: 1
second: a8860100
data:
first: 4
second: 881a0600
data:
first: 23
second: 66182300
data:
first: 33
second: a65a3200
TextMove:
data:
first: 1
second: a6860100
data:
first: 4
second: 861a0600
data:
first: 23
second: 64182300
data:
first: 33
second: a45a3200
TextRotate:
data:
first: 1
second: a4860100
data:
first: 4
second: 841a0600
data:
first: 23
second: 62182300
data:
first: 33
second: a25a3200
TextScale:
data:
first: 1
second: a2860100
data:
first: 4
second: 821a0600
data:
first: 23
second: 60182300
data:
first: 33
second: a05a3200

Binary file not shown.

View file

@ -0,0 +1,55 @@
fileFormatVersion: 2
guid: f4d8d07c107904cdfb54156450f020f3
ModelImporter:
fileIDToRecycleName:
4300000: Text.002
serializedVersion: 10
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
generateAnimations: 3
bakeSimulation: 0
splitAnimations: 1
animationCompression: 1
animationRotationError: .5
animationPositionError: .5
animationScaleError: .5
animationWrapMode: 0
clipAnimations: []
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMesh: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
tangentSpace:
normalSmoothAngle: 60
splitTangentsAcrossUV: 1
normalImportMode: 0
tangentImportMode: 1
textMetaNamesToFileIDs:
//RootNode:
data:
first: 1
second: a0860100
data:
first: 4
second: 801a0600
data:
first: 23
second: 60182300
data:
first: 33
second: a05a3200
data:
first: 111
second: 605fa900

Binary file not shown.

View file

@ -0,0 +1,55 @@
fileFormatVersion: 2
guid: 9256e250ab62647109679d3cbbaf6f04
ModelImporter:
fileIDToRecycleName:
4300000: Text.001
serializedVersion: 10
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
generateAnimations: 3
bakeSimulation: 0
splitAnimations: 1
animationCompression: 1
animationRotationError: .5
animationPositionError: .5
animationScaleError: .5
animationWrapMode: 0
clipAnimations: []
meshes:
lODScreenPercentages: []
globalScale: .00999999978
meshCompression: 0
addColliders: 0
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMesh: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
tangentSpace:
normalSmoothAngle: 60
splitTangentsAcrossUV: 1
normalImportMode: 0
tangentImportMode: 1
textMetaNamesToFileIDs:
//RootNode:
data:
first: 1
second: a0860100
data:
first: 4
second: 801a0600
data:
first: 23
second: 60182300
data:
first: 33
second: a05a3200
data:
first: 111
second: 605fa900

Binary file not shown.

View file

@ -0,0 +1,107 @@
fileFormatVersion: 2
guid: d47ae0396110840289d47476d8289fbf
timeCreated: 1535208206
licenseType: Store
ModelImporter:
serializedVersion: 22
fileIDToRecycleName:
100000: Camera
100002: Cube
100004: //RootNode
100006: Lamp
100008: Lamp.001
400000: Camera
400002: Cube
400004: //RootNode
400006: Lamp
400008: Lamp.001
2000000: Camera
2100000: Material
2300000: Cube
2300002: //RootNode
3300000: Cube
3300002: //RootNode
4300000: Cube
4300002: Arrow
10800000: Lamp
10800002: Lamp.001
externalObjects: {}
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 100
meshCompression: 0
addColliders: 0
importVisibility: 1
importBlendShapes: 0
importCameras: 1
importLights: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
preserveHierarchy: 0
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 1
tangentImportMode: 3
normalCalculationMode: 4
importAnimation: 1
copyAvatar: 0
humanDescription:
serializedVersion: 2
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1}
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 0
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,76 @@
fileFormatVersion: 2
guid: 6311d891eea1c406c941c23f9dfa5265
timeCreated: 1464348535
licenseType: Store
ModelImporter:
serializedVersion: 19
fileIDToRecycleName:
100000: //RootNode
400000: //RootNode
2300000: //RootNode
3300000: //RootNode
4300000: EndlessDrivingText
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleRotations: 1
optimizeGameObjects: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
importBlendShapes: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
importAnimation: 1
copyAvatar: 0
humanDescription:
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 0
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View file

@ -0,0 +1,76 @@
fileFormatVersion: 2
guid: 00046df2e01964c4cbb764131f0c85e1
timeCreated: 1460308602
licenseType: Store
ModelImporter:
serializedVersion: 19
fileIDToRecycleName:
100000: //RootNode
400000: //RootNode
2300000: //RootNode
3300000: //RootNode
4300000: ExampleCar
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleRotations: 1
optimizeGameObjects: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 250
meshCompression: 0
addColliders: 0
importBlendShapes: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
importAnimation: 1
copyAvatar: 0
humanDescription:
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 0
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View file

@ -0,0 +1,84 @@
fileFormatVersion: 2
guid: 26daae648a43e4db88d0a47a293d545c
timeCreated: 1460373324
licenseType: Store
ModelImporter:
serializedVersion: 19
fileIDToRecycleName:
100000: Camera
100002: Cone
100004: //RootNode
100006: Lamp
400000: Camera
400002: Cone
400004: //RootNode
400006: Lamp
2300000: Cone
2300002: //RootNode
3300000: Cone
3300002: //RootNode
4300000: Cone
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleRotations: 1
optimizeGameObjects: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 600
meshCompression: 0
addColliders: 0
importBlendShapes: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 1
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
importAnimation: 1
copyAvatar: 0
humanDescription:
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 0
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View file

@ -0,0 +1,75 @@
fileFormatVersion: 2
guid: cf8dd6c08e9ac4507bbbd1468b530d48
ModelImporter:
serializedVersion: 19
fileIDToRecycleName:
100000: //RootNode
400000: //RootNode
2300000: //RootNode
3300000: //RootNode
4300000: Cube
11100000: //RootNode
materials:
importMaterials: 0
materialName: 0
materialSearch: 1
animations:
legacyGenerateAnimations: 0
bakeSimulation: 0
resampleRotations: 1
optimizeGameObjects: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 40
meshCompression: 0
addColliders: 0
importBlendShapes: 1
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMeshForGPU: 1
keepQuads: 0
weldVertices: 1
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
useFileScale: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 4
importAnimation: 1
copyAvatar: 0
humanDescription:
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
rootMotionBoneName:
hasTranslationDoF: 0
lastHumanDescriptionAvatarSource: {instanceID: 0}
animationType: 1
humanoidOversampling: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View file

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

View file

@ -0,0 +1,584 @@
; FBX 6.1.0 project file
; Created by Blender FBX Exporter
; for support mail: ideasman42@gmail.com
; ----------------------------------------------------
FBXHeaderExtension: {
FBXHeaderVersion: 1003
FBXVersion: 6100
CreationTimeStamp: {
Version: 1000
Year: 2013
Month: 07
Day: 25
Hour: 08
Minute: 39
Second: 22
Millisecond: 0
}
Creator: "FBX SDK/FBX Plugins build 20070228"
OtherFlags: {
FlagPLE: 0
}
}
CreationTime: "2013-07-25 08:39:22:000"
Creator: "Blender version 2.67 (sub 0)"
; Object definitions
;------------------------------------------------------------------
Definitions: {
Version: 100
Count: 5
ObjectType: "Model" {
Count: 2
}
ObjectType: "Geometry" {
Count: 2
}
ObjectType: "Material" {
Count: 2
}
ObjectType: "Pose" {
Count: 1
}
ObjectType: "GlobalSettings" {
Count: 1
}
}
; Object properties
;------------------------------------------------------------------
Objects: {
Model: "Model::LCharacter", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-0.303313821554184,-1.417393445968628,-0.501498937606812
Property: "Lcl Rotation", "Lcl Rotation", "A+",-51.553697534386473,89.507088242517256,-51.535317495329998
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000119209290,1.000000119209290,1.000000119209290
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: -0.986730,1.411967,0.000000,-3.377655,1.396805,-0.000000,-1.736707,3.998653,-0.000000,-2.274831,3.886860,0.000000,-2.433387,2.149948,-0.000000,-0.734946,2.172715,-0.000000,-0.986730,1.411967,0.580159
,-3.377655,1.396805,0.580159,-1.736707,3.998653,0.580159,-2.274831,3.886860,0.580159,-2.433387,2.149948,0.580141,-0.734946,2.172715,0.580141
PolygonVertexIndex: 3,2,-5,1,3,-5,5,0,-5,4,0,-2,10,8,-10,10,9,-8,6,11,-11,6,10,-8,5,4,10,-12,1,0,6,-8,2,3,9,-9,0,5,11,-7,3,1,7,-10
,4,2,8,-11
Edges:
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByVertice"
ReferenceInformationType: "Direct"
Normals: 0.415875732898712,-0.571855843067169,-0.707083344459534,-0.591418206691742,-0.387554556131363,-0.707083344459534
,0.537308871746063,0.459608763456345,-0.707083344459534,-0.444257944822311,0.550096154212952,-0.707083344459534
,0.578814029693604,0.406170845031738,-0.707083344459534,0.570390939712524,0.417889952659607,-0.707083344459534
,0.415875732898712,-0.571855843067169,0.707083344459534,-0.591418206691742,-0.387554556131363,0.707083344459534
,0.537308871746063,0.459608763456345,0.707083344459534,-0.444257944822311,0.550096154212952,0.707083344459534
,0.578814029693604,0.406170845031738,0.707083344459534,0.570390939712524,0.417889952659607,0.707083344459534
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: 0
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
}
}
Model: "Model::eanTween", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",-0.303313821554184,-1.417393445968628,-0.501498937606812
Property: "Lcl Rotation", "Lcl Rotation", "A+",-51.553697534386473,89.507088242517256,-51.535317495329998
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000119209290,1.000000119209290,1.000000119209290
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: -1.972260,2.266327,-0.000000,-1.667038,2.266327,-0.000000,-1.626799,2.397635,-0.000000,-1.785639,2.397635,-0.000000,-1.763401,2.464348,-0.000000,-1.606679,2.465407,-0.000000,-1.563262,2.596715,-0.000000
,-1.721044,2.597774,-0.000000,-1.703042,2.654956,-0.000000,-1.544201,2.654956,-0.000000,-1.501844,2.785205,-0.000000,-1.801523,2.785205,-0.000000,-1.061255,3.438221,-0.000000,-0.681842,4.016826,-0.000000
,1.665298,4.331526,-0.000000,1.448942,3.689013,-0.000000,0.596628,3.610338,-0.000000,-0.268798,1.431038,-0.000000,-0.725113,1.423171,-0.000000,-0.009406,3.553904,-0.000000,-1.289955,2.785205,-0.000000
,-1.121593,2.785940,-0.000000,-1.174102,2.266916,-0.000000,-1.308248,2.266916,-0.000000,-1.305199,2.343135,-0.000000,-1.381418,2.343135,-0.000000,-1.434771,2.266916,-0.000000,-1.568917,2.266916,-0.000000
,-0.918007,2.785205,-0.000000,-0.768617,2.785205,-0.000000,-0.744227,2.600755,-0.000000,-0.681728,2.785205,-0.000000,-0.546058,2.785205,-0.000000,-0.712215,2.266916,-0.000000,-0.867702,2.266916,-0.000000
,-0.887519,2.462037,-0.000000,-0.953067,2.266916,-0.000000,-1.085688,2.266916,-0.000000,-1.292497,2.478622,-0.000000,-1.287205,2.532605,-0.000000,-1.315784,2.478622,-0.000000,0.097127,1.425959,-0.000000
,0.179940,2.091504,-0.000000,0.364083,2.091504,-0.000000,0.334874,1.822273,-0.000000,0.482189,2.090234,-0.000000,0.638394,2.090234,-0.000000,0.611725,1.823543,-0.000000,0.757770,2.091504,-0.000000
,0.941914,2.091504,-0.000000,0.593946,1.424776,-0.000000,0.405992,1.426046,-0.000000,0.422501,1.662258,-0.000000,0.284076,1.423506,-0.000000,0.832048,1.418620,-0.000000,1.230446,1.418620,-0.000000
,1.282970,1.590012,-0.000000,1.075640,1.590012,-0.000000,1.104666,1.677091,-0.000000,1.309232,1.678473,-0.000000,1.365902,1.849866,-0.000000,1.159954,1.851248,-0.000000,1.183452,1.925887,-0.000000
,1.390782,1.925887,-0.000000,1.446070,2.095897,-0.000000,1.054907,2.095897,-0.000000,1.350797,1.418620,-0.000000,1.749196,1.418620,-0.000000,1.801719,1.590012,-0.000000,1.594389,1.590012,-0.000000
,1.623416,1.677091,-0.000000,1.827981,1.678473,-0.000000,1.884651,1.849866,-0.000000,1.678704,1.851248,-0.000000,1.702201,1.925887,-0.000000,1.909531,1.925887,-0.000000,1.964819,2.095897,-0.000000
,1.573657,2.095897,-0.000000,2.094232,2.089210,0.000000,2.286366,2.089210,0.000000,2.317735,1.851983,0.000000,2.398118,2.089210,0.000000,2.572607,2.089210,0.000000,2.358907,1.422622,0.000000
,2.158931,1.422622,0.000000,2.133443,1.673573,0.000000,2.049140,1.422622,0.000000,1.878572,1.422622,0.000000,-1.972260,2.266327,0.580159,-1.667038,2.266327,0.580159,-1.626799,2.397635,0.580159
,-1.785639,2.397635,0.580159,-1.763401,2.464348,0.580159,-1.606679,2.465407,0.580159,-1.563262,2.596715,0.580159,-1.721044,2.597774,0.580159,-1.703042,2.654956,0.580159,-1.544201,2.654956,0.580159
,-1.501844,2.785205,0.580159,-1.801523,2.785205,0.580159,-1.061255,3.438221,0.580159,-0.681842,4.016826,0.580159,1.665298,4.331526,0.580159,1.448942,3.689013,0.580159,0.596628,3.610338,0.580159
,-0.268798,1.431038,0.580141,-0.725113,1.423171,0.580159,-0.009406,3.553904,0.580159,-1.289955,2.785205,0.580159,-1.121593,2.785940,0.580159,-1.174102,2.266916,0.580159,-1.308248,2.266916,0.580159
,-1.305199,2.343135,0.580159,-1.381418,2.343135,0.580159,-1.434771,2.266916,0.580159,-1.568917,2.266916,0.580159,-0.918007,2.785205,0.580159,-0.768617,2.785205,0.580159,-0.744227,2.600755,0.580159
,-0.681728,2.785205,0.580159,-0.546058,2.785205,0.580159,-0.712215,2.266916,0.580159,-0.867702,2.266916,0.580159,-0.887519,2.462037,0.580141,-0.953067,2.266916,0.580159,-1.085688,2.266916,0.580159
,-1.292497,2.478622,0.580159,-1.287205,2.532605,0.580159,-1.315784,2.478622,0.580159,0.097127,1.425959,0.580159,0.179940,2.091504,0.580159,0.364083,2.091504,0.580159,0.334874,1.822273,0.580159
,0.482189,2.090234,0.580159,0.638394,2.090234,0.580159,0.611725,1.823543,0.580159,0.757770,2.091504,0.580159,0.941914,2.091504,0.580159,0.593946,1.424776,0.580159,0.405992,1.426046,0.580159
,0.422501,1.662258,0.580159,0.284076,1.423506,0.580159,0.832048,1.418620,0.580159,1.230446,1.418620,0.580141,1.282970,1.590012,0.580159,1.075640,1.590012,0.580159,1.104666,1.677091,0.580159
,1.309232,1.678473,0.580141,1.365902,1.849866,0.580159,1.159954,1.851248,0.580159,1.183452,1.925887,0.580159,1.390782,1.925887,0.580159,1.446070,2.095897,0.580159,1.054907,2.095897,0.580159
,1.350797,1.418620,0.580159,1.749196,1.418620,0.580141,1.801719,1.590012,0.580159,1.594389,1.590012,0.580159,1.623416,1.677091,0.580159,1.827981,1.678473,0.580141,1.884651,1.849866,0.580159
,1.678704,1.851248,0.580159,1.702201,1.925887,0.580159,1.909531,1.925887,0.580159,1.964819,2.095897,0.580159,1.573657,2.095897,0.580159,2.094232,2.089210,0.580159,2.286366,2.089210,0.580141
,2.317735,1.851983,0.580159,2.398118,2.089210,0.580159,2.572607,2.089210,0.580159,2.358907,1.422622,0.580159,2.158931,1.422622,0.580159,2.133443,1.673573,0.580141,2.049140,1.422622,0.580141
,1.878572,1.422622,0.580159
PolygonVertexIndex: 7,6,-6,8,11,-11,8,10,-10,4,0,-12,7,4,-12,4,7,-6,3,2,-2,0,4,-4,0,3,-2,11,8,-8,13,14,-17,12,13,-20,19,13,-17
,19,16,-18,18,19,-18,14,15,-17,38,24,25,-41,27,25,-27,25,27,-41,27,39,-41,20,39,-28,39,20,-22,39,21,-23,24,22,-24,22,24,-39,22,38,-40
,37,28,-36,30,35,-29,29,30,-29,30,31,-33,30,32,-34,35,30,-34,37,35,-37,34,35,-34,61,60,-60,62,65,-65,62,64,-64,58,54,-66,61,58,-66
,58,61,-60,57,56,-56,54,58,-58,54,57,-56,65,62,-62,73,72,-72,74,77,-77,74,76,-76,70,66,-78,73,70,-78,70,73,-72,69,68,-68,66,70,-70
,66,69,-68,77,74,-74,87,78,-86,80,85,-79,79,80,-79,80,81,-83,80,82,-84,85,80,-84,87,85,-87,84,85,-84,41,42,-45,45,46,-48,47,48,-50
,47,49,-51,44,45,-48,47,50,-53,44,47,-53,41,44,-53,41,52,-54,51,52,-51,42,43,-45,93,94,-96,98,99,-97,97,98,-97,99,88,-93,99,92,-96
,93,95,-93,89,90,-92,91,92,-89,89,91,-89,95,96,-100,104,102,-102,107,101,-101,104,101,-108,105,104,-108,105,107,-107,104,103,-103,128,113,112,-127,114,113,-116
,128,115,-114,128,127,-116,115,127,-109,109,108,-128,110,109,-128,111,110,-113,126,112,-111,127,126,-111,123,116,-126,116,123,-119,116,118,-118,120,119,-119,121,120,-119
,121,118,-124,124,123,-126,121,123,-123,147,148,-150,152,153,-151,151,152,-151,153,142,-147,153,146,-150,147,149,-147,143,144,-146,145,146,-143,143,145,-143,149,150,-154
,159,160,-162,164,165,-163,163,164,-163,165,154,-159,165,158,-162,159,161,-159,155,156,-158,157,158,-155,155,157,-155,161,162,-166,173,166,-176,166,173,-169,166,168,-168
,170,169,-169,171,170,-169,171,168,-174,174,173,-176,171,173,-173,132,130,-130,135,134,-134,137,136,-136,138,137,-136,135,133,-133,140,138,-136,140,135,-133,140,132,-130
,141,140,-130,138,140,-140,132,131,-131,23,22,110,-112,55,56,144,-144,13,12,100,-102,42,41,129,-131,32,31,119,-121,59,60,148,-148,20,27,115,-109,14,13,101,-103,38,40,128,-127,15,14,102,-104
,11,0,88,-100,35,34,122,-124,4,5,93,-93,22,21,109,-111,3,4,92,-92,56,57,145,-145,10,11,99,-99,34,33,121,-123,86,85,173,-175,71,72,160,-160,33,32,120,-122,16,15,103,-105,41,53,141,-130
,2,3,91,-91,7,8,96,-96,47,46,134,-136,72,73,161,-161,79,78,166,-168,48,47,135,-137,69,70,158,-158,1,2,90,-90,24,23,111,-113,70,71,159,-159,78,87,175,-167,45,44,132,-134,40,39,127,-129
,0,1,89,-89,26,25,113,-115,51,50,138,-140,61,62,150,-150,49,48,136,-138,39,38,126,-128,60,61,149,-149,46,45,133,-135,9,10,98,-98,76,77,165,-165,25,24,112,-114,19,18,106,-108,50,49,137,-139
,83,82,170,-172,62,63,151,-151,27,26,114,-116,54,55,143,-143,44,43,131,-133,8,9,97,-97,43,42,130,-132,29,28,116,-118,65,54,142,-154,12,19,107,-101,30,29,117,-119,68,69,157,-157,6,7,95,-95
,18,17,105,-107,67,68,156,-156,5,6,94,-94,63,64,152,-152,21,20,108,-110,53,52,140,-142,57,58,146,-146,77,66,154,-166,82,81,169,-171,80,79,167,-169,52,51,139,-141,74,75,163,-163,17,16,104,-106
,81,80,168,-170,66,67,155,-155,37,36,124,-126,87,86,174,-176,85,84,172,-174,73,74,162,-162,28,37,125,-117,58,59,147,-147,64,65,153,-153,36,35,123,-125,84,83,171,-173,75,76,164,-164,31,30,118,-120
Edges:
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByVertice"
ReferenceInformationType: "Direct"
Normals: -0.572832405567169,-0.414532899856567,-0.707083344459534,0.420392453670502,-0.568529307842255,-0.707083344459534
,0.568529307842255,0.420392453670502,-0.707083344459534,0.573625922203064,0.413434237241745,-0.707083344459534
,0.415387421846390,-0.572222054004669,-0.707083344459534,0.416058838367462,-0.571703255176544,-0.707083344459534
,0.574510931968689,0.412213504314423,-0.707083344459534,0.571520149707794,0.416302978992462,-0.707083344459534
,0.418225646018982,-0.570146799087524,-0.707083344459534,0.415540039539337,-0.572099983692169,-0.707083344459534
,0.572099983692169,0.415540039539337,-0.707083344459534,-0.414532899856567,0.572832405567169,-0.707083344459534
,-0.602832138538361,-0.369548618793488,-0.707083344459534,-0.376689970493317,0.598406910896301,-0.707083344459534
,0.545487821102142,0.449873358011246,-0.707083344459534,0.438550978899002,-0.554673910140991,-0.707083344459534
,0.423627436161041,-0.566118359565735,-0.707083344459534,0.402172923088074,-0.581591248512268,-0.707083344459534
,-0.570513010025024,-0.417706847190857,-0.707083344459534,-0.550645470619202,-0.443586528301239,-0.707083344459534
,-0.363963752985001,0.606219649314880,-0.707083344459534,0.523514509201050,0.475295275449753,-0.707083344459534
,0.474166095256805,-0.524552166461945,-0.707083344459534,-0.509872734546661,-0.489883124828339,-0.707083344459534
,-0.509872734546661,-0.489883124828339,-0.707083344459534,0.326548039913177,-0.627185881137848,-0.707083344459534
,0.326548039913177,-0.627185881137848,-0.707083344459534,-0.607013165950775,-0.362620919942856,-0.707083344459534
,-0.415967285633087,0.571794807910919,-0.707083344459534,0.466048151254654,0.531754493713379,-0.707083344459534
,0.068910792469978,0.703726291656494,-0.707083344459534,-0.412030398845673,0.574633002281189,-0.707083344459534
,0.571214914321899,0.416730254888535,-0.707083344459534,0.416730254888535,-0.571214914321899,-0.707083344459534
,-0.474043995141983,-0.524643719196320,-0.707083344459534,-0.078615680336952,-0.702719211578369,-0.707083344459534
,0.412762850522995,-0.574114203453064,-0.707083344459534,-0.571794807910919,-0.415967285633087,-0.707083344459534
,-0.474959552288055,0.523819684982300,-0.707083344459534,-0.203741565346718,-0.677083671092987,-0.707083344459534
,0.605761885643005,0.364726692438126,-0.707083344459534,-0.533005774021149,-0.464613795280457,-0.707083344459534
,-0.468092888593674,0.529953896999359,-0.707083344459534,0.526261150836945,0.472243428230286,-0.707083344459534
,0.212561413645744,0.674367487430573,-0.707083344459534,-0.359935313463211,0.608630657196045,-0.707083344459534
,0.524277448654175,0.474471271038055,-0.707083344459534,0.208502456545830,0.675649285316467,-0.707083344459534
,-0.361033976078033,0.607959210872650,-0.707083344459534,0.604693770408630,0.366496771574020,-0.707083344459534
,0.364452034235001,-0.605914473533630,-0.707083344459534,-0.518753647804260,-0.480483412742615,-0.707083344459534
,-0.207342758774757,-0.676015496253967,-0.707083344459534,0.348948627710342,-0.614978492259979,-0.707083344459534
,-0.572832405567169,-0.414532899856567,-0.707083344459534,0.420392453670502,-0.568559825420380,-0.707083344459534
,0.568529307842255,0.420392453670502,-0.707083344459534,0.573625922203064,0.413434237241745,-0.707083344459534
,0.415387421846390,-0.572222054004669,-0.707083344459534,0.416058838367462,-0.571733772754669,-0.707083344459534
,0.574510931968689,0.412213504314423,-0.707083344459534,0.571520149707794,0.416302978992462,-0.707083344459534
,0.418225646018982,-0.570146799087524,-0.707083344459534,0.415540039539337,-0.572099983692169,-0.707083344459534
,0.572099983692169,0.415540039539337,-0.707083344459534,-0.414532899856567,0.572832405567169,-0.707083344459534
,-0.572832405567169,-0.414532899856567,-0.707083344459534,0.420392453670502,-0.568559825420380,-0.707083344459534
,0.568529307842255,0.420392453670502,-0.707083344459534,0.573625922203064,0.413434237241745,-0.707083344459534
,0.415387421846390,-0.572222054004669,-0.707083344459534,0.416058838367462,-0.571733772754669,-0.707083344459534
,0.574510931968689,0.412213504314423,-0.707083344459534,0.571520149707794,0.416302978992462,-0.707083344459534
,0.418225646018982,-0.570146799087524,-0.707083344459534,0.415540039539337,-0.572099983692169,-0.707083344459534
,0.572099983692169,0.415540039539337,-0.707083344459534,-0.414532899856567,0.572832405567169,-0.707083344459534
,-0.415967285633087,0.571794807910919,-0.707083344459534,0.466078668832779,0.531754493713379,-0.707083344459534
,0.068910792469978,0.703726291656494,-0.707083344459534,-0.412030398845673,0.574633002281189,-0.707083344459534
,0.571214914321899,0.416730254888535,-0.707083344459534,0.416730254888535,-0.571214914321899,-0.707083344459534
,-0.474043995141983,-0.524643719196320,-0.707083344459534,-0.078615680336952,-0.702719211578369,-0.707083344459534
,0.412762850522995,-0.574114203453064,-0.707083344459534,-0.571794807910919,-0.415967285633087,-0.707083344459534
,-0.572832405567169,-0.414532899856567,0.707083344459534,0.420392453670502,-0.568529307842255,0.707083344459534
,0.568529307842255,0.420392453670502,0.707083344459534,0.573625922203064,0.413434237241745,0.707083344459534
,0.415387421846390,-0.572222054004669,0.707083344459534,0.416058838367462,-0.571703255176544,0.707083344459534
,0.574510931968689,0.412213504314423,0.707083344459534,0.571520149707794,0.416302978992462,0.707083344459534
,0.418225646018982,-0.570146799087524,0.707083344459534,0.415540039539337,-0.572099983692169,0.707083344459534
,0.572099983692169,0.415540039539337,0.707083344459534,-0.414532899856567,0.572832405567169,0.707083344459534
,-0.602832138538361,-0.369548618793488,0.707083344459534,-0.376689970493317,0.598406910896301,0.707083344459534
,0.545487821102142,0.449873358011246,0.707083344459534,0.438550978899002,-0.554673910140991,0.707083344459534
,0.423627436161041,-0.566118359565735,0.707083344459534,0.402172923088074,-0.581591248512268,0.707083344459534
,-0.570513010025024,-0.417706847190857,0.707083344459534,-0.550645470619202,-0.443586528301239,0.707083344459534
,-0.363963752985001,0.606219649314880,0.707083344459534,0.523514509201050,0.475295275449753,0.707083344459534
,0.474166095256805,-0.524552166461945,0.707083344459534,-0.509872734546661,-0.489883124828339,0.707083344459534
,-0.509872734546661,-0.489883124828339,0.707083344459534,0.326548039913177,-0.627185881137848,0.707083344459534
,0.326548039913177,-0.627185881137848,0.707083344459534,-0.607013165950775,-0.362620919942856,0.707083344459534
,-0.415967285633087,0.571794807910919,0.707083344459534,0.466048151254654,0.531754493713379,0.707083344459534
,0.068910792469978,0.703726291656494,0.707083344459534,-0.412030398845673,0.574633002281189,0.707083344459534
,0.571214914321899,0.416730254888535,0.707083344459534,0.416730254888535,-0.571214914321899,0.707083344459534
,-0.474043995141983,-0.524643719196320,0.707083344459534,-0.078615680336952,-0.702719211578369,0.707083344459534
,0.412762850522995,-0.574114203453064,0.707083344459534,-0.571794807910919,-0.415967285633087,0.707083344459534
,-0.474959552288055,0.523819684982300,0.707083344459534,-0.203741565346718,-0.677083671092987,0.707083344459534
,0.605761885643005,0.364726692438126,0.707083344459534,-0.533005774021149,-0.464613795280457,0.707083344459534
,-0.468092888593674,0.529953896999359,0.707083344459534,0.526261150836945,0.472243428230286,0.707083344459534
,0.212561413645744,0.674367487430573,0.707083344459534,-0.359935313463211,0.608630657196045,0.707083344459534
,0.524277448654175,0.474471271038055,0.707083344459534,0.208502456545830,0.675649285316467,0.707083344459534
,-0.361033976078033,0.607959210872650,0.707083344459534,0.604693770408630,0.366496771574020,0.707083344459534
,0.364452034235001,-0.605914473533630,0.707083344459534,-0.518753647804260,-0.480483412742615,0.707083344459534
,-0.207342758774757,-0.676015496253967,0.707083344459534,0.348948627710342,-0.614978492259979,0.707083344459534
,-0.572832405567169,-0.414532899856567,0.707083344459534,0.420392453670502,-0.568559825420380,0.707083344459534
,0.568529307842255,0.420392453670502,0.707083344459534,0.573625922203064,0.413434237241745,0.707083344459534
,0.415387421846390,-0.572222054004669,0.707083344459534,0.416058838367462,-0.571733772754669,0.707083344459534
,0.574510931968689,0.412213504314423,0.707083344459534,0.571520149707794,0.416302978992462,0.707083344459534
,0.418225646018982,-0.570146799087524,0.707083344459534,0.415540039539337,-0.572099983692169,0.707083344459534
,0.572099983692169,0.415540039539337,0.707083344459534,-0.414532899856567,0.572832405567169,0.707083344459534
,-0.572832405567169,-0.414532899856567,0.707083344459534,0.420392453670502,-0.568559825420380,0.707083344459534
,0.568529307842255,0.420392453670502,0.707083344459534,0.573625922203064,0.413434237241745,0.707083344459534
,0.415387421846390,-0.572222054004669,0.707083344459534,0.416058838367462,-0.571733772754669,0.707083344459534
,0.574510931968689,0.412213504314423,0.707083344459534,0.571520149707794,0.416302978992462,0.707083344459534
,0.418225646018982,-0.570146799087524,0.707083344459534,0.415540039539337,-0.572099983692169,0.707083344459534
,0.572099983692169,0.415540039539337,0.707083344459534,-0.414532899856567,0.572832405567169,0.707083344459534
,-0.415967285633087,0.571794807910919,0.707083344459534,0.466078668832779,0.531754493713379,0.707083344459534
,0.068910792469978,0.703726291656494,0.707083344459534,-0.412030398845673,0.574633002281189,0.707083344459534
,0.571214914321899,0.416730254888535,0.707083344459534,0.416730254888535,-0.571214914321899,0.707083344459534
,-0.474043995141983,-0.524643719196320,0.707083344459534,-0.078615680336952,-0.702719211578369,0.707083344459534
,0.412762850522995,-0.574114203453064,0.707083344459534,-0.571794807910919,-0.415967285633087,0.707083344459534
}
LayerElementSmoothing: 0 {
Version: 102
Name: ""
MappingInformationType: "ByPolygon"
ReferenceInformationType: "Direct"
Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementSmoothing"
TypedIndex: 0
}
}
}
Material: "Material::LMaterial", "" {
Version: 102
ShadingModel: "lambert"
MultiLayer: 0
Properties60: {
Property: "ShadingModel", "KString", "", "Lambert"
Property: "MultiLayer", "bool", "",0
Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "EmissiveFactor", "double", "",0.0000
Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000
Property: "AmbientFactor", "double", "",1.0000
Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "DiffuseFactor", "double", "",0.8000
Property: "Bump", "Vector3D", "",0,0,0
Property: "TransparentColor", "ColorRGB", "",1,1,1
Property: "TransparencyFactor", "double", "",0.0000
Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000
Property: "SpecularFactor", "double", "",0.2500
Property: "ShininessExponent", "double", "",80.0
Property: "ReflectionColor", "ColorRGB", "",0,0,0
Property: "ReflectionFactor", "double", "",1
Property: "Emissive", "ColorRGB", "",0,0,0
Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0
Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
Property: "Specular", "ColorRGB", "",1.0,1.0,1.0
Property: "Shininess", "double", "",9.6
Property: "Opacity", "double", "",1.0
Property: "Reflectivity", "double", "",0
}
}
Material: "Material::unnamed", "" {
Version: 102
ShadingModel: "phong"
MultiLayer: 0
Properties60: {
Property: "ShadingModel", "KString", "", "Phong"
Property: "MultiLayer", "bool", "",0
Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "EmissiveFactor", "double", "",0.0000
Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000
Property: "AmbientFactor", "double", "",0.5000
Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "DiffuseFactor", "double", "",1.0000
Property: "Bump", "Vector3D", "",0,0,0
Property: "TransparentColor", "ColorRGB", "",1,1,1
Property: "TransparencyFactor", "double", "",0.0000
Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "SpecularFactor", "double", "",0.2000
Property: "ShininessExponent", "double", "",80.0
Property: "ReflectionColor", "ColorRGB", "",0,0,0
Property: "ReflectionFactor", "double", "",1
Property: "Emissive", "ColorRGB", "",0,0,0
Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0
Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
Property: "Specular", "ColorRGB", "",0.8,0.8,0.8
Property: "Shininess", "double", "",20.0
Property: "Opacity", "double", "",1.0
Property: "Reflectivity", "double", "",0
}
}
Pose: "Pose::BIND_POSES", "BindPose" {
Type: "BindPose"
Version: 100
Properties60: {
}
NbPoseNodes: 2
PoseNode: {
Node: "Model::LCharacter"
Matrix: -0.000302785250824,0.999977231025696,-0.006737693678588,0.000000000000000,-0.005351201631129,0.006735977251083,0.999962985515594,0.000000000000000,0.999985635280609,0.000338828831445,0.005349040497094,0.000000000000000,-0.303313821554184,-1.417393445968628,-0.501498937606812,1.000000000000000
}
PoseNode: {
Node: "Model::eanTween"
Matrix: -0.000302785250824,0.999977231025696,-0.006737693678588,0.000000000000000,-0.005351201631129,0.006735977251083,0.999962985515594,0.000000000000000,0.999985635280609,0.000338828831445,0.005349040497094,0.000000000000000,-0.303313821554184,-1.417393445968628,-0.501498937606812,1.000000000000000
}
}
GlobalSettings: {
Version: 1000
Properties60: {
Property: "UpAxis", "int", "",1
Property: "UpAxisSign", "int", "",1
Property: "FrontAxis", "int", "",2
Property: "FrontAxisSign", "int", "",1
Property: "CoordAxis", "int", "",0
Property: "CoordAxisSign", "int", "",1
Property: "UnitScaleFactor", "double", "",1
}
}
}
; Object relations
;------------------------------------------------------------------
Relations: {
Model: "Model::LCharacter", "Mesh" {
}
Model: "Model::eanTween", "Mesh" {
}
Model: "Model::Producer Perspective", "Camera" {
}
Model: "Model::Producer Top", "Camera" {
}
Model: "Model::Producer Bottom", "Camera" {
}
Model: "Model::Producer Front", "Camera" {
}
Model: "Model::Producer Back", "Camera" {
}
Model: "Model::Producer Right", "Camera" {
}
Model: "Model::Producer Left", "Camera" {
}
Model: "Model::Camera Switcher", "CameraSwitcher" {
}
Material: "Material::LMaterial", "" {
}
Material: "Material::unnamed", "" {
}
}
; Object connections
;------------------------------------------------------------------
Connections: {
Connect: "OO", "Model::LCharacter", "Model::Scene"
Connect: "OO", "Model::eanTween", "Model::Scene"
Connect: "OO", "Material::LMaterial", "Model::LCharacter"
}
;Takes and animation section
;----------------------------------------------------
Takes: {
Current: ""
}
;Version 5 settings
;------------------------------------------------------------------
Version5: {
AmbientRenderSettings: {
Version: 101
AmbientLightColor: 0.0,0.0,0.0,0
}
FogOptions: {
FogEnable: 0
FogMode: 0
FogDensity: 0.000
FogStart: 5.000
FogEnd: 25.000
FogColor: 0.1,0.1,0.1,1
}
Settings: {
FrameRate: "24"
TimeFormat: 1
SnapOnFrames: 0
ReferenceTimeIndex: -1
TimeLineStartTime: 0
TimeLineStopTime: 0
}
RendererSetting: {
DefaultCamera: "Producer Perspective"
DefaultViewingMode: 0
}
}

View file

@ -0,0 +1,77 @@
fileFormatVersion: 2
guid: 6fc4240da91ab4747a411a8313faed53
ModelImporter:
fileIDToRecycleName:
4300000: LCharacter
4300002: eanTween
7400000: Default Take //// LeanTween-Icon
serializedVersion: 10
materials:
importMaterials: 1
materialName: 0
materialSearch: 1
animations:
generateAnimations: 0
bakeSimulation: 0
splitAnimations: 0
animationCompression: 1
animationRotationError: .5
animationPositionError: .5
animationScaleError: .5
animationWrapMode: 0
clipAnimations: []
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
optimizeMesh: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVPackMargin: 4
tangentSpace:
normalSmoothAngle: 60
splitTangentsAcrossUV: 1
normalImportMode: 1
tangentImportMode: 1
textMetaNamesToFileIDs:
//RootNode:
data:
first: 1
second: a2860100
data:
first: 4
second: 821a0600
data:
first: 111
second: 605fa900
LCharacter:
data:
first: 1
second: a0860100
data:
first: 4
second: 801a0600
data:
first: 23
second: 60182300
data:
first: 33
second: a05a3200
eanTween:
data:
first: 1
second: a4860100
data:
first: 4
second: 841a0600
data:
first: 23
second: 62182300
data:
first: 33
second: a25a3200

View file

@ -0,0 +1,192 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1 &100000
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 400000}
- component: {fileID: 3300000}
- component: {fileID: 2300000}
m_Layer: 0
m_Name: eanTween
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &400000
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 100000}
m_LocalRotation: {x: -0.002495257, y: -0.70520866, z: 0.0022684247, w: 0.7089918}
m_LocalPosition: {x: 0.30331382, y: -1.4173934, z: -0.50149894}
m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
m_Children: []
m_Father: {fileID: 400004}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &3300000
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 100000}
m_Mesh: {fileID: 4300002, guid: 6fc4240da91ab4747a411a8313faed53, type: 3}
--- !u!23 &2300000
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 100000}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: f619dcfcfb4564405b5fe5ea207c9199, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
--- !u!1 &100002
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 400002}
- component: {fileID: 3300002}
- component: {fileID: 2300002}
m_Layer: 0
m_Name: LCharacter
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &400002
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 100002}
m_LocalRotation: {x: -0.002495257, y: -0.70520866, z: 0.0022684247, w: 0.7089918}
m_LocalPosition: {x: 0.30331382, y: -1.4173934, z: -0.50149894}
m_LocalScale: {x: 1.0000001, y: 1.0000001, z: 1.0000001}
m_Children: []
m_Father: {fileID: 400004}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &3300002
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 100002}
m_Mesh: {fileID: 4300000, guid: 6fc4240da91ab4747a411a8313faed53, type: 3}
--- !u!23 &2300002
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 100002}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 02a8bb137b3dc465e834a60da68b0faa, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
--- !u!1 &100004
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 400004}
m_Layer: 0
m_Name: LeanTween
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &400004
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 100004}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 3.8407803, y: 4.1741314, z: -2.6395469}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children:
- {fileID: 400000}
- {fileID: 400002}
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}

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