Browse Source

ADDED:

+ Script: PlayerSounds
+ Texture: Magnet Rods (Pull & Push)
+ GUI Image: Game Logo (not yet implemented in UI)
+ Unity Scene: Title Screen
+ SFX: Footsteps (sand), test beep, switch-player sound, wind ambience
+ BGM: Just Dessert (2nd Part) (This was cut from previous facebook mp3 upload)
       Purely for testing purposes.
+ Audio Source for wind ambience sounds

CHANGED:
> A duplicate of "Cycle Run" was made so that sound events can be keyframed into the
  running animation (FBX-animations were initially read-only)
> Added "PlayFootstep" sound event to running animation.
> Changed invisible wall positions near the starting point area
> Slightly lowered the first concrete platform's position near the long metal beam and small crates
> Slightly increased the height of the first fences
> Added small bits of terrain hills to create "distant cliff illusion"
> SceneController script now has connection with PlayerSound script to allow switch-player sound
> MagnetGun script (Player 1) now has connection with PlayerSound script to allow object-rotation sound
> Added an Audio Source to the Player 1 Avatar object. All player sounds are assigned to this component.

NOTE:
> Only Player 1 has some sounds. Player 2 will have sounds once Player 1 has 100% sounds.
> Cutscene management will need to be discussed. Unsure whether single-scene camera changes are possible
  and easy to implement due to script structure. Having a cutscene in a seperate scene will be demanding,
  processor-wise, but can be done.
> Still have not received updated movable object textures at this time. Way past its deadline.

KNOWN ISSUES:
- On my Gaming PC, playing the game for an extended amount of time can cause the frame rate to
  flacuate from 30 to 60fps at set intervals of approximatelly every 5sec.
- The above issue can be mitigated via restarting your PC. FPS issues could possibly be caused by junk metadata build-up.
- The above issue has also been found in week #8 playtest build.
master
Simon Tran 8 years ago
parent
commit
4dbf67945a
48 changed files with 528 additions and 3 deletions
  1. BIN
      unity_Project/Assets/0bjects/Materials/txtr_magnet_rod_PULL.mat
  2. +8
    -0
      unity_Project/Assets/0bjects/Materials/txtr_magnet_rod_PULL.mat.meta
  3. BIN
      unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PULL.png
  4. +55
    -0
      unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PULL.png.meta
  5. BIN
      unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PUSH.png
  6. +55
    -0
      unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PUSH.png.meta
  7. BIN
      unity_Project/Assets/0bjects/Tracks/pfb_Track_End.prefab
  8. BIN
      unity_Project/Assets/Character/Character_Animation.controller
  9. BIN
      unity_Project/Assets/Character/Cycle_Run EVENT TEST.anim
  10. +8
    -0
      unity_Project/Assets/Character/Cycle_Run EVENT TEST.anim.meta
  11. BIN
      unity_Project/Assets/GUI Assets/PROJECT JUNKER Logo.png
  12. +55
    -0
      unity_Project/Assets/GUI Assets/PROJECT JUNKER Logo.png.meta
  13. BIN
      unity_Project/Assets/New Terrain.asset
  14. +63
    -0
      unity_Project/Assets/Scripts/PlayerSounds.cs
  15. +12
    -0
      unity_Project/Assets/Scripts/PlayerSounds.cs.meta
  16. +16
    -0
      unity_Project/Assets/Scripts/magnetGun.cs
  17. +12
    -3
      unity_Project/Assets/Scripts/sceneController.cs
  18. BIN
      unity_Project/Assets/Sound/Music/Just-Deserts3 - PART 2 ONLY.mp3
  19. +22
    -0
      unity_Project/Assets/Sound/Music/Just-Deserts3 - PART 2 ONLY.mp3.meta
  20. BIN
      unity_Project/Assets/Sound/Production Element Title Transition Hit Impact Ping 09.wav
  21. +22
    -0
      unity_Project/Assets/Sound/Production Element Title Transition Hit Impact Ping 09.wav.meta
  22. BIN
      unity_Project/Assets/Sound/sfx_ambience_wind_gusts_low.wav
  23. +22
    -0
      unity_Project/Assets/Sound/sfx_ambience_wind_gusts_low.wav.meta
  24. BIN
      unity_Project/Assets/Sound/sfx_foostep_ground_light.wav
  25. +22
    -0
      unity_Project/Assets/Sound/sfx_foostep_ground_light.wav.meta
  26. BIN
      unity_Project/Assets/Sound/sfx_foot_sand_heavy.wav
  27. +22
    -0
      unity_Project/Assets/Sound/sfx_foot_sand_heavy.wav.meta
  28. BIN
      unity_Project/Assets/Sound/sfx_foot_sand_heavy_02.wav
  29. +22
    -0
      unity_Project/Assets/Sound/sfx_foot_sand_heavy_02.wav.meta
  30. BIN
      unity_Project/Assets/Sound/sfx_foot_sand_light.wav
  31. +22
    -0
      unity_Project/Assets/Sound/sfx_foot_sand_light.wav.meta
  32. BIN
      unity_Project/Assets/Sound/sfx_foot_sand_light_02.wav
  33. +22
    -0
      unity_Project/Assets/Sound/sfx_foot_sand_light_02.wav.meta
  34. BIN
      unity_Project/Assets/Sound/sfx_foot_sand_medium.wav
  35. +22
    -0
      unity_Project/Assets/Sound/sfx_foot_sand_medium.wav.meta
  36. BIN
      unity_Project/Assets/Sound/sfx_switch_player.wav
  37. +22
    -0
      unity_Project/Assets/Sound/sfx_switch_player.wav.meta
  38. BIN
      unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PULL.mat
  39. +8
    -0
      unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PULL.mat.meta
  40. BIN
      unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PUSH.mat
  41. +8
    -0
      unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PUSH.mat.meta
  42. BIN
      unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Walls (Invisible).mat
  43. BIN
      unity_Project/Assets/Terrain/New Terrain.asset
  44. BIN
      unity_Project/Assets/_Scenes/MainLevel.unity
  45. BIN
      unity_Project/Assets/_Scenes/TitleScreen.unity
  46. +8
    -0
      unity_Project/Assets/_Scenes/TitleScreen.unity.meta
  47. BIN
      unity_Project/Assets/prefabs/Scaffold Stack.prefab
  48. BIN
      unity_Project/Assets/prefabs/scaffold.prefab

BIN
unity_Project/Assets/0bjects/Materials/txtr_magnet_rod_PULL.mat View File


+ 8
- 0
unity_Project/Assets/0bjects/Materials/txtr_magnet_rod_PULL.mat.meta View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 794e5291b687469438fd82f19bb2c3e4
timeCreated: 1443680165
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PULL.png View File

Before After
Width: 1024  |  Height: 1024  |  Size: 470 KiB

+ 55
- 0
unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PULL.png.meta View File

@ -0,0 +1,55 @@
fileFormatVersion: 2
guid: 86fb2499c89b53d4fbea1995de38b202
timeCreated: 1443680099
licenseType: Free
TextureImporter:
fileIDToRecycleName: {}
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
cubemapConvolution: 0
cubemapConvolutionSteps: 8
cubemapConvolutionExponent: 1.5
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
filterMode: -1
aniso: -1
mipBias: -1
wrapMode: -1
nPOTScale: 1
lightmap: 0
rGBM: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 0
textureType: -1
buildTargetSettings: []
spriteSheet:
sprites: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PUSH.png View File

Before After
Width: 1024  |  Height: 1024  |  Size: 454 KiB

+ 55
- 0
unity_Project/Assets/0bjects/Textures/txtr_magnet_rod_PUSH.png.meta View File

@ -0,0 +1,55 @@
fileFormatVersion: 2
guid: e0b41874ed43b034cb5aca1e57f3a09f
timeCreated: 1443682196
licenseType: Free
TextureImporter:
fileIDToRecycleName: {}
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
cubemapConvolution: 0
cubemapConvolutionSteps: 8
cubemapConvolutionExponent: 1.5
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
filterMode: -1
aniso: -1
mipBias: -1
wrapMode: -1
nPOTScale: 1
lightmap: 0
rGBM: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 0
textureType: -1
buildTargetSettings: []
spriteSheet:
sprites: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/0bjects/Tracks/pfb_Track_End.prefab View File


BIN
unity_Project/Assets/Character/Character_Animation.controller View File


BIN
unity_Project/Assets/Character/Cycle_Run EVENT TEST.anim View File


+ 8
- 0
unity_Project/Assets/Character/Cycle_Run EVENT TEST.anim.meta View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ebb6ee44d0d62934992c348561169d61
timeCreated: 1443767439
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/GUI Assets/PROJECT JUNKER Logo.png View File

Before After
Width: 1599  |  Height: 257  |  Size: 431 KiB

+ 55
- 0
unity_Project/Assets/GUI Assets/PROJECT JUNKER Logo.png.meta View File

@ -0,0 +1,55 @@
fileFormatVersion: 2
guid: 3d275e9bb1faa044db42ae68349001aa
timeCreated: 1443786647
licenseType: Free
TextureImporter:
fileIDToRecycleName: {}
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
cubemapConvolution: 0
cubemapConvolutionSteps: 8
cubemapConvolutionExponent: 1.5
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
filterMode: -1
aniso: 16
mipBias: -1
wrapMode: 1
nPOTScale: 0
lightmap: 0
rGBM: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 1
textureType: 8
buildTargetSettings: []
spriteSheet:
sprites: []
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/New Terrain.asset View File


+ 63
- 0
unity_Project/Assets/Scripts/PlayerSounds.cs View File

@ -0,0 +1,63 @@
using UnityEngine;
using System.Collections;
public class PlayerSounds : MonoBehaviour {
private AudioSource source;
private float volLowRange = 0.5f; // Volume Low Range
private float volHighRange = 1.0f; // Volume High Range
private float pitchLowRange = 0.90f; // Pitch Low Range
private float pitchHighRange = 1.5f; // Pitch High Range
private float pitchDefault = 1.0f; // Pitch Default Value
// AUDIO CLIPS
// All sound effects are listed here.
public AudioClip sfxFootstep;
public AudioClip sfxFootstepTEST;
public AudioClip sfxSwitch;
public AudioClip sfxRotate;
// FUNCTION: Find Audio Source component (attached to Player Avatar Object)
void Awake(){
source = GetComponent<AudioSource> ();
}
// FUNCTIONS: Play Sound Effects (SFX)
// NOTE: Must add the events to the relevant keyframe within animation clips.
void PlayFootstep(){
float volRandom = Random.Range (volLowRange, volHighRange);
source.pitch = Random.Range (pitchLowRange, pitchHighRange);
source.PlayOneShot (sfxFootstep,volRandom);
}
void PlayFootstepTEST(){
float volRandom = Random.Range (volLowRange, volHighRange);
source.pitch = Random.Range (pitchLowRange, pitchHighRange);
source.PlayOneShot (sfxFootstepTEST,volRandom);
}
public void PlaySwitch(){
source.pitch = pitchDefault;
source.PlayOneShot (sfxSwitch,0.7f);
}
public void PlayRotate(){
source.pitch = pitchDefault;
source.PlayOneShot (sfxRotate);
}
// END BRACKET BELLOW:
}

+ 12
- 0
unity_Project/Assets/Scripts/PlayerSounds.cs.meta View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: 6ed61f910a1a91c468bbcb5ef31a04bd
timeCreated: 1443688566
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

+ 16
- 0
unity_Project/Assets/Scripts/magnetGun.cs View File

@ -39,6 +39,17 @@ public class magnetGun : MonoBehaviour {
private float normGrip;
private Renderer lastTargetRenderer;
private Color lastTargetColour;
//-----------------------
// Use PlayerSound script
// (specifically for object-rotation sounds for this MagnetGun script)
public PlayerSounds _playerSoundScript;
// Use this for initialization
void Start () {
if (topScreen)
@ -225,11 +236,16 @@ public class magnetGun : MonoBehaviour {
if (item != null) {
if (Input.GetButtonDown(L_BUTTON_INPUT))
StartCoroutine (rotateItem(item,new Vector3 (0,90,0),0.3f));
// _playerSoundScript.PlayRotate(); // Rotate-Object Sound. ERROR: Causes multiple sounds when object is held.
if (Input.GetButtonDown(R_BUTTON_INPUT))
StartCoroutine (rotateItem(item,new Vector3 (90,0,0),0.3f));
}
}
IEnumerator rotateItem (Collider item, Vector3 byAngles, float inTime){
Quaternion startAngle = item.transform.rotation;

+ 12
- 3
unity_Project/Assets/Scripts/sceneController.cs View File

@ -22,6 +22,15 @@ public class sceneController : MonoBehaviour {
private string playerSwapInput = "playerSwap";
// Call PlayerSound script to allow sounds upon button presses
// NOTE: Make sure the SceneController's inspector has the PlayerAvatar
// attached as an element under its script component.
public PlayerSounds _playerSoundScript;
// Use this for initialization
void Start () {
@ -46,8 +55,6 @@ public class sceneController : MonoBehaviour {
}
}
@ -56,7 +63,7 @@ public class sceneController : MonoBehaviour {
swapCharacters ();
pointAtOther ();
if (Input.GetKeyDown(KeyCode.R))
if (Input.GetKeyDown (KeyCode.R))
Application.LoadLevel(Application.loadedLevel);
}
@ -70,6 +77,8 @@ public class sceneController : MonoBehaviour {
Debug.Log("swappy Swap");
activeP1 = !activeP1;
activeP2 = !activeP2;
_playerSoundScript.PlaySwitch(); //Play "Switch Character" sound function
if (activeP1){
newCamera = cameraPlayer1;

BIN
unity_Project/Assets/Sound/Music/Just-Deserts3 - PART 2 ONLY.mp3 View File


+ 22
- 0
unity_Project/Assets/Sound/Music/Just-Deserts3 - PART 2 ONLY.mp3.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 437c8662aaf28154b84c436918a7ec0e
timeCreated: 1443706907
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/Production Element Title Transition Hit Impact Ping 09.wav View File


+ 22
- 0
unity_Project/Assets/Sound/Production Element Title Transition Hit Impact Ping 09.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: a72d12d8942fa5e4dbf7d80277162f4a
timeCreated: 1443700815
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_ambience_wind_gusts_low.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_ambience_wind_gusts_low.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: d13479f22c96e42468bd5a5f14806972
timeCreated: 1443706431
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_foostep_ground_light.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_foostep_ground_light.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: f0e67f663979d3a4d8dea36ad94537f7
timeCreated: 1443704144
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_foot_sand_heavy.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_foot_sand_heavy.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 0d1088b99e1c24d4a94f01f19ace0df3
timeCreated: 1443704143
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_foot_sand_heavy_02.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_foot_sand_heavy_02.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 17bb4f550a370694599fba1ee544490a
timeCreated: 1443705771
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_foot_sand_light.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_foot_sand_light.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 1ea8dc6673a63ec439437b6f591cdf4a
timeCreated: 1443703888
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_foot_sand_light_02.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_foot_sand_light_02.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 547fc8a765ffcac4aab6f2e7b67ca0c3
timeCreated: 1443705642
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_foot_sand_medium.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_foot_sand_medium.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: ff6b1204dbc42244f9f836bbc04c0b21
timeCreated: 1443703888
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Sound/sfx_switch_player.wav View File


+ 22
- 0
unity_Project/Assets/Sound/sfx_switch_player.wav.meta View File

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 4446f8b5e50e93a49ac164b2c1e91d41
timeCreated: 1443788284
licenseType: Free
AudioImporter:
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PULL.mat View File


+ 8
- 0
unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PULL.mat.meta View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4f74f064759cc4847bd4b6305ec6f2ea
timeCreated: 1443680224
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PUSH.mat View File


+ 8
- 0
unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Magnet PUSH.mat.meta View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 37429d2f1b00def44867a8e1974f4274
timeCreated: 1443682217
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/Standard Assets/Effects/ToonShading/Materials/TLO - Walls (Invisible).mat View File


BIN
unity_Project/Assets/Terrain/New Terrain.asset View File


BIN
unity_Project/Assets/_Scenes/MainLevel.unity View File


BIN
unity_Project/Assets/_Scenes/TitleScreen.unity View File


+ 8
- 0
unity_Project/Assets/_Scenes/TitleScreen.unity.meta View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 042a72806c1f9f94c9a5754b56542d97
timeCreated: 1443771970
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
unity_Project/Assets/prefabs/Scaffold Stack.prefab View File


BIN
unity_Project/Assets/prefabs/scaffold.prefab View File


Loading…
Cancel
Save