Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
thquinn committed May 1, 2023
1 parent 36ecdd3 commit 0080fba
Show file tree
Hide file tree
Showing 9 changed files with 289 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Assets/Materials/Clock.mat
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Material:
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _Revealed: 0.74706334
- _Revealed: 0.9412786
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scenes/SampleScene.unity
Original file line number Diff line number Diff line change
Expand Up @@ -7706,7 +7706,7 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
wind: {fileID: 2054771478}
targetVolume: 0.5
targetVolume: 0.4
fadeSpeed: 0.1
--- !u!1 &2070261215
GameObject:
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/GameHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void Deliver(OminoScript omino) {
paused = false;
int size = omino.Size();
float seconds = size * 5;
float timeMultiplier = 100 / (100 + timePassed * .1f);
float timeMultiplier = 66 / (66 + timePassed * .1f);
float missingTime = 1 - timer.x / timer.y;
timeMultiplier = Mathf.Lerp(timeMultiplier, 1, missingTime);
seconds *= timeMultiplier;
Expand Down
4 changes: 2 additions & 2 deletions Assets/Scripts/SpawnerScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void TrySpawnZone() {
if ((position - playerPosition).magnitude < GameHelper.instance.arenaRadius * .33f) {
return;
}
float maxSize = 4.5f + Mathf.Pow(GameHelper.instance.timePassed / 30, .6f);
float maxSize = 4.5f + Mathf.Pow(GameHelper.instance.timePassed / 40, .6f);
int size = Mathf.RoundToInt(Random.Range(4, maxSize));
List<Vector2Int> coors = GetRandomOmino(size);
Vector2Int dimensions = Util.GetCoorsDimensions(coors);
Expand All @@ -105,7 +105,7 @@ void TrySpawnOmino() {
}
Vector2 position = Util.GetRandomPointWithinRadius(GameHelper.instance.arenaRadius);
int size = -1;
float max = 8;
float max = 9;
while (size <= 0) {
size = Mathf.RoundToInt(Random.Range(-max, max) + Random.Range(-max, max));
}
Expand Down
Binary file added Assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
135 changes: 135 additions & 0 deletions Assets/icon.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
135 changes: 135 additions & 0 deletions Assets/splash.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 14 additions & 5 deletions ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ PlayerSettings:
targetDevice: 2
useOnDemandResources: 0
accelerometerFrequency: 60
companyName: DefaultCompany
productName: Delivery
companyName: Tom Quinn
productName: Snapdash
defaultCursor: {fileID: 0}
cursorHotspot: {x: 0, y: 0}
m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
Expand All @@ -39,7 +39,9 @@ PlayerSettings:
y: 0
width: 1
height: 1
m_SplashScreenLogos: []
m_SplashScreenLogos:
- logo: {fileID: 21300000, guid: 336bb44862612b04aaf0a070051ca085, type: 3}
duration: 2
m_VirtualRealitySplashScreen: {fileID: 0}
m_HolographicTrackingLossScreen: {fileID: 0}
defaultScreenWidth: 1920
Expand Down Expand Up @@ -134,7 +136,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 1.0
bundleVersion: 0.1
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down Expand Up @@ -269,7 +271,14 @@ PlayerSettings:
AndroidMinifyDebug: 0
AndroidValidateAppBundleSize: 1
AndroidAppBundleSizeToValidate: 150
m_BuildTargetIcons: []
m_BuildTargetIcons:
- m_BuildTarget:
m_Icons:
- serializedVersion: 2
m_Icon: {fileID: 2800000, guid: d17a4679ca09bed4d8a466affa6d75e9, type: 3}
m_Width: 128
m_Height: 128
m_Kind: 0
m_BuildTargetPlatformIcons: []
m_BuildTargetBatching: []
m_BuildTargetShaderSettings: []
Expand Down

0 comments on commit 0080fba

Please sign in to comment.