Skip to content

Commit

Permalink
feat: clean some files, update engine version
Browse files Browse the repository at this point in the history
  • Loading branch information
PottierLoic committed Aug 13, 2024
1 parent acc98c0 commit 797e3a9
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 194 deletions.
5 changes: 0 additions & 5 deletions .vscode/extensions.json

This file was deleted.

10 changes: 0 additions & 10 deletions .vscode/launch.json

This file was deleted.

60 changes: 0 additions & 60 deletions .vscode/settings.json

This file was deleted.

6 changes: 0 additions & 6 deletions .vsconfig

This file was deleted.

10 changes: 1 addition & 9 deletions Assets/Scripts/Camera/CameraFollow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ public class CameraFollow : MonoBehaviour {
private Vector3 _offset = new Vector3(0f, 0f, -10f);
private float _smoothSpeed = 0.4f;
private Vector3 _velocity = Vector3.zero;
private Transform oldTarget;

void Start() {
Target = GameObject.Find("Character").transform;
Expand All @@ -18,14 +17,7 @@ void Update() {
transform.position = Vector3.SmoothDamp(transform.position, targetPosition, ref _velocity, _smoothSpeed);
}

public void SetFocus(Transform newTarget, float duration) {
oldTarget = Target;
public void SetFocus(Transform newTarget) {
Target = newTarget;
StartCoroutine(ResetTargetAfterDuration(duration));
}

private IEnumerator ResetTargetAfterDuration(float duration) {
yield return new WaitForSeconds(duration);
Target = oldTarget;
}
}
2 changes: 1 addition & 1 deletion Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"dependencies": {
"com.unity.collab-proxy": "2.3.1",
"com.unity.collab-proxy": "2.4.3",
"com.unity.feature.2d": "2.0.1",
"com.unity.ide.rider": "3.0.28",
"com.unity.inputsystem": "1.7.0",
Expand Down
4 changes: 2 additions & 2 deletions Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"url": "https://packages.unity.com"
},
"com.unity.burst": {
"version": "1.8.15",
"version": "1.8.16",
"depth": 1,
"source": "registry",
"dependencies": {
Expand All @@ -105,7 +105,7 @@
"url": "https://packages.unity.com"
},
"com.unity.collab-proxy": {
"version": "2.3.1",
"version": "2.4.3",
"depth": 0,
"source": "registry",
"dependencies": {},
Expand Down
4 changes: 2 additions & 2 deletions ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
m_EditorVersion: 2022.3.32f1
m_EditorVersionWithRevision: 2022.3.32f1 (c8300dc0a3fa)
m_EditorVersion: 2022.3.37f1
m_EditorVersionWithRevision: 2022.3.37f1 (340ba89e4c23)
30 changes: 5 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,38 +8,18 @@ The resources are brought back by boat to the main island where they will be use
The goal of the game is to produce as much money as possible by improving the fields and the livestock.
Only calm piano music.

# Assets :
# Objectives:

World : https://cupnooble.itch.io/sprout-lands-asset-pack
Farm : https://shubibubi.itch.io/cozy-farm
Food 1 : https://ghostpixxells.itch.io/pixelfood
Food 2 : https://henrysoftware.itch.io/pixel-food
Fish : https://shubibubi.itch.io/cozy-fishing
UI : https://cupnooble.itch.io/sprout-lands-ui-pack
Gamepad UI : https://greatdocbrown.itch.io/gamepad-ui

## Possible assets :

food and kitchenware : https://piiixl.itch.io/food

# Features:

Harvest improvement (size and production)
Boat improvement
Cooks (Cooking speed)
Fertilizer (production speed)
Treats (harvesting speed)
Missions
Automatic harvest (little cats)
Main story (nothing too fancy).
Missions and side quests.
Automatic harvest (little cats).
Expandable islands.

# Ideas:

Player character
Implement shops
Implement a city?
Different regions with completely different resources.
Prestige, with complete reset and give a permanent bonus.
Incremental music.
Housing.
Expandable islands.
Merchant ship.
74 changes: 0 additions & 74 deletions ROADMAP.md

This file was deleted.

Binary file removed UpgradeLog.htm
Binary file not shown.

0 comments on commit 797e3a9

Please sign in to comment.