Background work
Incomplete scripts but the tiles are in vertical alignment. Need to push before bed so I can work on it tomorrow. Will be testing if my laptop can run unity well enough.
This commit is contained in:
parent
3a91e4feb2
commit
f326d22dc1
8 changed files with 1889 additions and 26658 deletions
Binary file not shown.
File diff suppressed because it is too large
Load diff
18
Game 1/Assets/Scripts/BackgroundScroll.cs
Normal file
18
Game 1/Assets/Scripts/BackgroundScroll.cs
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
public class BackgroundScroll : MonoBehaviour {
|
||||||
|
|
||||||
|
private Rigidbody2D lowerBod;
|
||||||
|
|
||||||
|
// Use this for initialization
|
||||||
|
void Start () {
|
||||||
|
lowerBod = GetComponent<Rigidbody2D>(Background1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update is called once per frame
|
||||||
|
void Update () {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: f28195fa4d074eb468c3116e5a6d1cd9
|
guid: 34dec7ae938abb94c9c6218ed64b7b0b
|
||||||
timeCreated: 1504473098
|
timeCreated: 1504490311
|
||||||
licenseType: Free
|
licenseType: Free
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
|
@ -1,21 +0,0 @@
|
||||||
using System.Collections;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
public class ScrollingObject : MonoBehaviour {
|
|
||||||
|
|
||||||
private Rigidbody2D body;
|
|
||||||
public float scrollSpeed = -1.5f;
|
|
||||||
|
|
||||||
// Use this for initialization
|
|
||||||
void Start () {
|
|
||||||
body = GetComponent<Rigidbody2D>();
|
|
||||||
body.velocity = new Vector2(scrollSpeed, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update is called once per frame
|
|
||||||
void Update () {
|
|
||||||
// Maybe add something that stops scrolling when gameover?
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -3,7 +3,7 @@
|
||||||
--- !u!129 &1
|
--- !u!129 &1
|
||||||
PlayerSettings:
|
PlayerSettings:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
serializedVersion: 11
|
serializedVersion: 12
|
||||||
productGUID: cc76d4947ab639b49a8d8f40277d3747
|
productGUID: cc76d4947ab639b49a8d8f40277d3747
|
||||||
AndroidProfiler: 0
|
AndroidProfiler: 0
|
||||||
defaultScreenOrientation: 4
|
defaultScreenOrientation: 4
|
||||||
|
@ -14,7 +14,7 @@ PlayerSettings:
|
||||||
productName: Game 1
|
productName: Game 1
|
||||||
defaultCursor: {fileID: 0}
|
defaultCursor: {fileID: 0}
|
||||||
cursorHotspot: {x: 0, y: 0}
|
cursorHotspot: {x: 0, y: 0}
|
||||||
m_SplashScreenBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21176471, a: 1}
|
m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
|
||||||
m_ShowUnitySplashScreen: 1
|
m_ShowUnitySplashScreen: 1
|
||||||
m_ShowUnitySplashLogo: 1
|
m_ShowUnitySplashLogo: 1
|
||||||
m_SplashScreenOverlayOpacity: 1
|
m_SplashScreenOverlayOpacity: 1
|
||||||
|
@ -70,6 +70,7 @@ PlayerSettings:
|
||||||
captureSingleScreen: 0
|
captureSingleScreen: 0
|
||||||
muteOtherAudioSources: 0
|
muteOtherAudioSources: 0
|
||||||
Prepare IOS For Recording: 0
|
Prepare IOS For Recording: 0
|
||||||
|
Force IOS Speakers When Recording: 0
|
||||||
submitAnalytics: 1
|
submitAnalytics: 1
|
||||||
usePlayerLog: 1
|
usePlayerLog: 1
|
||||||
bakeCollisionMeshes: 0
|
bakeCollisionMeshes: 0
|
||||||
|
@ -101,6 +102,7 @@ PlayerSettings:
|
||||||
xboxOneResolution: 0
|
xboxOneResolution: 0
|
||||||
xboxOneMonoLoggingLevel: 0
|
xboxOneMonoLoggingLevel: 0
|
||||||
xboxOneLoggingLevel: 1
|
xboxOneLoggingLevel: 1
|
||||||
|
xboxOneDisableEsram: 0
|
||||||
videoMemoryForVertexBuffers: 0
|
videoMemoryForVertexBuffers: 0
|
||||||
psp2PowerMode: 0
|
psp2PowerMode: 0
|
||||||
psp2AcquireBGM: 1
|
psp2AcquireBGM: 1
|
||||||
|
@ -136,8 +138,16 @@ PlayerSettings:
|
||||||
depthFormat: 1
|
depthFormat: 1
|
||||||
protectGraphicsMemory: 0
|
protectGraphicsMemory: 0
|
||||||
useHDRDisplay: 0
|
useHDRDisplay: 0
|
||||||
applicationIdentifier: {}
|
targetPixelDensity: 0
|
||||||
buildNumber: {}
|
resolutionScalingMode: 0
|
||||||
|
applicationIdentifier:
|
||||||
|
Android: com.Company.ProductName
|
||||||
|
Standalone: unity.DefaultCompany.Game 1
|
||||||
|
Tizen: com.Company.ProductName
|
||||||
|
iOS: com.Company.ProductName
|
||||||
|
tvOS: com.Company.ProductName
|
||||||
|
buildNumber:
|
||||||
|
iOS: 0
|
||||||
AndroidBundleVersionCode: 1
|
AndroidBundleVersionCode: 1
|
||||||
AndroidMinSdkVersion: 16
|
AndroidMinSdkVersion: 16
|
||||||
AndroidTargetSdkVersion: 0
|
AndroidTargetSdkVersion: 0
|
||||||
|
@ -156,7 +166,7 @@ PlayerSettings:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_Bits: 238
|
m_Bits: 238
|
||||||
iPhoneSdkVersion: 988
|
iPhoneSdkVersion: 988
|
||||||
iOSTargetOSVersionString:
|
iOSTargetOSVersionString: 6.0
|
||||||
tvOSSdkVersion: 0
|
tvOSSdkVersion: 0
|
||||||
tvOSRequireExtendedGameController: 0
|
tvOSRequireExtendedGameController: 0
|
||||||
tvOSTargetOSVersionString:
|
tvOSTargetOSVersionString:
|
||||||
|
@ -204,7 +214,7 @@ PlayerSettings:
|
||||||
iOSMetalForceHardShadows: 0
|
iOSMetalForceHardShadows: 0
|
||||||
metalEditorSupport: 1
|
metalEditorSupport: 1
|
||||||
metalAPIValidation: 1
|
metalAPIValidation: 1
|
||||||
iOSRenderExtraFrameOnPause: 0
|
iOSRenderExtraFrameOnPause: 1
|
||||||
appleDeveloperTeamID:
|
appleDeveloperTeamID:
|
||||||
iOSManualSigningProvisioningProfileID:
|
iOSManualSigningProvisioningProfileID:
|
||||||
tvOSManualSigningProvisioningProfileID:
|
tvOSManualSigningProvisioningProfileID:
|
||||||
|
@ -317,7 +327,7 @@ PlayerSettings:
|
||||||
switchAccessibleURLs:
|
switchAccessibleURLs:
|
||||||
switchLegalInformation:
|
switchLegalInformation:
|
||||||
switchMainThreadStackSize: 1048576
|
switchMainThreadStackSize: 1048576
|
||||||
switchPresenceGroupId:
|
switchPresenceGroupId: 0x01004b9000490000
|
||||||
switchLogoHandling: 0
|
switchLogoHandling: 0
|
||||||
switchReleaseVersion: 0
|
switchReleaseVersion: 0
|
||||||
switchDisplayVersion: 1.0.0
|
switchDisplayVersion: 1.0.0
|
||||||
|
@ -329,8 +339,8 @@ PlayerSettings:
|
||||||
switchUserAccountSaveDataSize: 0
|
switchUserAccountSaveDataSize: 0
|
||||||
switchUserAccountSaveDataJournalSize: 0
|
switchUserAccountSaveDataJournalSize: 0
|
||||||
switchApplicationAttribute: 0
|
switchApplicationAttribute: 0
|
||||||
switchCardSpecSize: -1
|
switchCardSpecSize: 4
|
||||||
switchCardSpecClock: -1
|
switchCardSpecClock: 25
|
||||||
switchRatingsMask: 0
|
switchRatingsMask: 0
|
||||||
switchRatingsInt_0: 0
|
switchRatingsInt_0: 0
|
||||||
switchRatingsInt_1: 0
|
switchRatingsInt_1: 0
|
||||||
|
@ -344,7 +354,7 @@ PlayerSettings:
|
||||||
switchRatingsInt_9: 0
|
switchRatingsInt_9: 0
|
||||||
switchRatingsInt_10: 0
|
switchRatingsInt_10: 0
|
||||||
switchRatingsInt_11: 0
|
switchRatingsInt_11: 0
|
||||||
switchLocalCommunicationIds_0:
|
switchLocalCommunicationIds_0: 0x01004b9000490000
|
||||||
switchLocalCommunicationIds_1:
|
switchLocalCommunicationIds_1:
|
||||||
switchLocalCommunicationIds_2:
|
switchLocalCommunicationIds_2:
|
||||||
switchLocalCommunicationIds_3:
|
switchLocalCommunicationIds_3:
|
||||||
|
@ -401,7 +411,6 @@ PlayerSettings:
|
||||||
ps4GarlicHeapSize: 2048
|
ps4GarlicHeapSize: 2048
|
||||||
ps4ProGarlicHeapSize: 2560
|
ps4ProGarlicHeapSize: 2560
|
||||||
ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
|
ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
|
||||||
ps4UseDebugIl2cppLibs: 0
|
|
||||||
ps4pnSessions: 1
|
ps4pnSessions: 1
|
||||||
ps4pnPresence: 1
|
ps4pnPresence: 1
|
||||||
ps4pnFriends: 1
|
ps4pnFriends: 1
|
||||||
|
@ -412,7 +421,7 @@ PlayerSettings:
|
||||||
ps4ReprojectionSupport: 0
|
ps4ReprojectionSupport: 0
|
||||||
ps4UseAudio3dBackend: 0
|
ps4UseAudio3dBackend: 0
|
||||||
ps4SocialScreenEnabled: 0
|
ps4SocialScreenEnabled: 0
|
||||||
ps4ScriptOptimizationLevel: 3
|
ps4ScriptOptimizationLevel: 0
|
||||||
ps4Audio3dVirtualSpeakerCount: 14
|
ps4Audio3dVirtualSpeakerCount: 14
|
||||||
ps4attribCpuUsage: 0
|
ps4attribCpuUsage: 0
|
||||||
ps4PatchPkgPath:
|
ps4PatchPkgPath:
|
||||||
|
@ -476,7 +485,7 @@ PlayerSettings:
|
||||||
psp2UseLibLocation: 0
|
psp2UseLibLocation: 0
|
||||||
psp2InfoBarOnStartup: 0
|
psp2InfoBarOnStartup: 0
|
||||||
psp2InfoBarColor: 0
|
psp2InfoBarColor: 0
|
||||||
psp2UseDebugIl2cppLibs: 0
|
psp2ScriptOptimizationLevel: 0
|
||||||
psmSplashimage: {fileID: 0}
|
psmSplashimage: {fileID: 0}
|
||||||
splashScreenBackgroundSourceLandscape: {fileID: 0}
|
splashScreenBackgroundSourceLandscape: {fileID: 0}
|
||||||
splashScreenBackgroundSourcePortrait: {fileID: 0}
|
splashScreenBackgroundSourcePortrait: {fileID: 0}
|
||||||
|
@ -495,9 +504,12 @@ PlayerSettings:
|
||||||
webGLCompressionFormat: 1
|
webGLCompressionFormat: 1
|
||||||
scriptingDefineSymbols: {}
|
scriptingDefineSymbols: {}
|
||||||
platformArchitecture: {}
|
platformArchitecture: {}
|
||||||
scriptingBackend: {}
|
scriptingBackend:
|
||||||
|
Android: 0
|
||||||
|
Standalone: 0
|
||||||
incrementalIl2cppBuild: {}
|
incrementalIl2cppBuild: {}
|
||||||
additionalIl2CppArgs:
|
additionalIl2CppArgs:
|
||||||
|
scriptingRuntimeVersion: 0
|
||||||
apiCompatibilityLevelPerPlatform: {}
|
apiCompatibilityLevelPerPlatform: {}
|
||||||
m_RenderingPath: 1
|
m_RenderingPath: 1
|
||||||
m_MobileRenderingPath: 1
|
m_MobileRenderingPath: 1
|
||||||
|
@ -580,10 +592,11 @@ PlayerSettings:
|
||||||
daydreamIconForeground: {fileID: 0}
|
daydreamIconForeground: {fileID: 0}
|
||||||
daydreamIconBackground: {fileID: 0}
|
daydreamIconBackground: {fileID: 0}
|
||||||
cloudServicesEnabled: {}
|
cloudServicesEnabled: {}
|
||||||
facebookSdkVersion: 7.9.1
|
facebookSdkVersion: 7.9.4
|
||||||
apiCompatibilityLevel: 2
|
apiCompatibilityLevel: 2
|
||||||
cloudProjectId:
|
cloudProjectId:
|
||||||
projectName:
|
projectName:
|
||||||
organizationId:
|
organizationId:
|
||||||
cloudEnabled: 0
|
cloudEnabled: 0
|
||||||
enableNewInputSystem: 0
|
enableNativePlatformBackendsForNewInputSystem: 0
|
||||||
|
disableOldInputManagerSupport: 0
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
m_EditorVersion: 5.6.2f1
|
m_EditorVersion: 2017.1.0f3
|
||||||
|
|
|
@ -28,5 +28,7 @@ UnityConnectSettings:
|
||||||
m_EnabledPlatforms: 4294967295
|
m_EnabledPlatforms: 4294967295
|
||||||
m_IosGameId:
|
m_IosGameId:
|
||||||
m_AndroidGameId:
|
m_AndroidGameId:
|
||||||
|
m_GameIds: {}
|
||||||
|
m_GameId:
|
||||||
PerformanceReportingSettings:
|
PerformanceReportingSettings:
|
||||||
m_Enabled: 0
|
m_Enabled: 0
|
||||||
|
|
Reference in a new issue