Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Treasure Trove Entertainment

42
Posts
5
Topics
7
Followers
93
Following
A member registered May 22, 2019 · View creator page →

Creator of

Recent community posts

To add a manual save mechanic in Unity, you'll need to create a system to save and load game data, typically using C# scripting. Here’s a step-by-step guide to help you implement this feature:

1. Create a SaveData Class:

   Define a class that represents the data you want to save. This class should be serializable.

   csharp

   [System.Serializable]

   public class SaveData

   {

       public int playerScore;

       public Vector3 playerPosition;

       // Add more fields as needed

   }

   ```

2. Serialize the Data:

   Use JSON or another serialization method to convert the SaveData object into a string format that can be saved to a file.

   ```csharp

   using UnityEngine;

   using System.IO;

   public static class SaveSystem

   {

       public static void SaveGame(SaveData data)

       {

           string json = JsonUtility.ToJson(data);

           File.WriteAllText(Application.persistentDataPath + "/savefile.json", json);

       }

       public static SaveData LoadGame()

       {

           string path = Application.persistentDataPath + "/savefile.json";

           if (File.Exists(path))

           {

               string json = File.ReadAllText(path);

               return JsonUtility.FromJson<SaveData>(json);

           }

           else

           {

               Debug.LogError("Save file not found in " + path);

               return null;

           }

       }

   }

   ```

3. Save and Load Methods:

   Create methods to save and load the game state. You can call these methods from your game’s UI (e.g., a save button).

   ```csharp

   public class GameManager : MonoBehaviour

   {

       public SaveData currentData;

       public void SaveGame()

       {

           currentData = new SaveData();

           currentData.playerScore = // get player score;

           currentData.playerPosition = // get player position;

           SaveSystem.SaveGame(currentData);

       }

       public void LoadGame()

       {

           SaveData loadedData = SaveSystem.LoadGame();

           if (loadedData != null)

           {

               // Set player score and position from loaded data

               currentData = loadedData;

           }

       }

   }

   ```

4. Handling Player Data:

   When saving, you’ll need to collect the necessary data from your game objects (like the player's position and score) and when loading, you’ll need to apply the loaded data back to your game objects.

By following these steps, you can implement a manual save and load system in Unity that allows players to save their progress and resume later. For more detailed guidance, you can refer to Unity's official documentation on saving and loading game data.

The pop up that comes from right clicking will be oversized and not fit the screen

I asked GPT.

To address the issue of objects going through walls and off the map in Unity, there are several steps your friend can take to resolve this problem:

  1. Use Continuous Collision Detection: When objects move very quickly, Unity can sometimes miss collisions, causing them to pass through walls. Switching the Rigidbody's collision detection mode from "Discrete" to "Continuous" can help ensure collisions are detected more accurately. This is especially useful for fast-moving objects.
  2. Avoid Directly Modifying Transform: Instead of modifying the object's transform position directly, use Rigidbody methods like MovePosition or AddForce. Directly modifying the transform can cause the object to "teleport" past colliders. Using Rigidbody methods ensures that physics calculations are taken into account.
  3. Increase Physics Timesteps: Ensure that physics updates are frequent enough to catch all collisions. This can be done by adjusting the Fixed Timestep in the Time settings of Unity's project settings. A smaller timestep means more frequent physics updates, which can help with collision detection.
  4. Adjust Depenetration Settings: Increasing the maximum depenetration velocity in Unity’s Physics settings can help with objects getting stuck or passing through other objects. This setting controls how quickly Unity resolves collisions when objects penetrate each other.
  5. Ensure Proper Collider Setup: Make sure that the objects have appropriate colliders attached. For example, if the object is spherical, use a Sphere Collider. Ensure that colliders are not set as triggers unless specifically needed for trigger events, as triggers do not detect collisions in the same way as regular colliders.
  6. Layer and Physics Interaction Settings: Verify that the objects and walls are on layers that are set to interact correctly in the Physics settings. Misconfigured layer interactions can result in missed collisions.

By implementing these fixes, your friend should see a significant improvement in how the objects behave in the game, reducing or eliminating the issue of objects passing through walls and falling off the map.

No, that's not what I meant I mean open something like a notepad or type the word "Lol" in the search on google, and then after that, copy the "lol" you typed then try to paste it in the name tag section int he game,

This has how to get the love ending.

There is a glitch, to find it, go to the name section and then go to Google, type anything in the search bar, and then copy what you typed in, and then right-click on the naming panel to paste it. If the menu to click "paste"  shows up, it will be gigantic, and most of it will be off-screen.

Made a let's play. When I upload it, I'll share it here.

Anyways, here's GrayStillplays [not me] playing your game:

Enjoy your game's fame.

This is how I found out about your game and decided to play it.

Gray has found your game. I am not Gray.

Let the chaos begin:

I'm gonna play it in the future.

You... Might wanna lower the mouse sensitivity.

Yeah.

UPDATE: The Let's Play may become a Game Review instead. I may not upload it. My PC usually is able to run Unity games, the game is super laggy on my PC. With no settings bar to lower resolution, I can't fix it.

(1 edit)

Hi, Rye. I'll award you a let's play video. Please Give me a shoutout if you want it to be seen by others as I am a small YouTuber, though on Webnovel.com I  am a well-known writer and you can access those stories on https://www.treasurettv.com/general-6 I will post my Let's Play once I get the Camera Booted up and it will be on my Channel GameyPieTTV GamerGames which is located at the bottom of my website on this page: https://www.treasurettv.com/team-4

This channel also contains Cut Scenes from Games I tried to develop as well as my tutorials.

Bijuu Mike played this game: 

Is this an ARG?

You could also use a screen recorder to record animated scenes as mp4 videos and put that into REn'Py as well if possible.

(1 edit)

Have you ever tried screenshotting the scenes in your game, cropping it to the scene instead of it being a full screenshot, and then importing that into Ren'py? Basically, you take pictures of what is already made and put them into software since Kocho games are usually made up of still images instead of animated ones. Do you have a script? A script is important.

When I tried to import it after updating blue stacks up to level 10, it said that "either your file is not a novel it became corrupted."

Yes

I can't play the game. My computer keeps saying the zip files are corrupted when I try to extract it.

Discover the captivating essence of this well-crafted game that promises hidden depths. As the narrative unfolds, there's a sense that there's more to explore beneath the surface. Join me as I venture back into the game, aiming to unlock the secrets behind the fifth door – an intriguing connection to the game's logo. Immerse yourself in this gaming experience that's bound to leave you curious and excited for what lies ahead.

WE WERE CHATBOTS?

Use a website called Virus Total to check and see if Project Uroboros is has malware, trojan or a virus, my guardio software detected a virus and malware: virustotal.com

(1 edit)

Use a website called Virus Total to check and see if Project Uroboros is has malware, trojan or a virus, my guardio software detected a virus and malware: virustotal.com

I paid 8 dollars for this to use the Project, only to be told this. I saw let's players play it, but it's new so I'm not even sure.

Cool book!

So, um, I played your game.

Link to mine: CLICK TO DOWNLOAD MODEL  -- 

Michael The Archangel


Another: CLICK TO DOWNLOAD MODEL -- 

Treasure Marie Denise Jackson

(1 edit)

Numbers 5:11-29 isn't talking about abortion: CLICK HERE

Here is the scripture: https://www.biblegateway.com/passage/?search=Numbers

Name of System: Quest for Windows

Number of Players: 1

Approximate Session Length: 3 minutes

Testing Period: Not Long

Other Details: I need someone to test my Game "Baby Go" because in the software I made it in, the sound wouldn't work but I did everything the software needs me to do. So, to see if it works on Other people's computers, I need beta testers. You also need to test out a timer function.

How To Contact:

My Twitter: HumansRPeeps2

Name of System: Quest for Windows

Number of Players: 1

Approximate Session Length: 3 minutes

Testing Period: Not Long

Other Details: I need someone to test my Game "Baby Go" because in the software I made it in, the sound wouldn't work but I did everything the software needs me to do. So, to see if it works on Other people's computers, I need beta testers. You also need to test out a timer function.

How To Contact:

My Twitter: HumansRPeeps2

(2 edits)

GIFs, Music, Videos, Art, ALL HERE

Images can enhance the experience of your Game and story amazingly.

I can also improve your spelling and grammar mistakes.

Now, video files can also heavily enhance the quality of your game.

This can make your video game even better.

I will make art, GIFs, Video files, and voice overs for you only for pay.

I will edit your grammar for free.

I'll also make you 3D Models for Unity, Maya and Unreal Engine.

Here's where you can pay for that:

https://www.fiverr.com/share/26LXmQ

You can buy 3D models here:

3D Models cheap with two men, one female

two 3d models professionally made

6-8 3D Male Models

Blue Voxel Art Cat

Princess A Egyptian WITH RIG

Where to pay for voice over services:

https://www.fiverr.com/share/NkgZgy

Where to pay for Art Services:

https://www.fiverr.com/share/PdgZoo

Where to pay for Video-Making Services:

https://www.fiverr.com/share/AE2ZxQ

i can write a bit for you. It'll cost money.

I'll do it for pay:

https://www.fiverr.com/share/BWrVBd

Don't call people morons. Why would you be so rude? Don't act like a troll.

???

Does it have an ending or does it just loop?

the appearance of the screenshots reminds me of little nightmares 2