top of page

About the game

This is my third year personnal project where I wanted to try out an inventory and craft feature based game.

So i went and did a survival game like the forest and tested out all those features.

​

It was made on Unity

 

 

 

This code is the picked up feature.

​

It's available on the player and works with a raycast, allowing you to pick  up various item for multiple uses.

PickupGif.gif

This code is the mine / chop feature.

​

Some of the ressources need to be taken down with specifics tool.

They will drop a certain amount of ressources that is defined in the engine (drop rate)

​

You'll have 100% chance to drop one item

You'll have 60% chance to drop two items

You'll have 30% chance to drop three items

MineChopGif.gif

This code is the Inventory feature.

​

There's a tooltip system that allow you when you over your cursor to a slot to know what item is it.

Else it's mostly a basic inventory that can store items.

​

Actions can be made with the item when you're in the inventory Interface. Allow you to select an item and to either Equip, Drop or destroy it.

This code is the thirst / hunger feature.

​

This system will automatically decrease as time past by your hunger and thirst bar.

It would dealt damage to the player if one of those reach 0%

HungerThirst.gif

This code is the craft feature.

​

What it does it add custom recipes to the game. 

There's also the tooltip on it.

It works by checking what's on the inventory and some button allow the craft and gives the desired item to the player.

CraftGif.gif

This code is the AI feature.

​

This is a basic AI, that will wander arround when no player is detected.

If there's a player near, the AI will follow you until you're out of range.

If you got even closer, the AI will proceed to attack you.

AIGif.gif
bottom of page