Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Question about adding features, how can i create a weapon, how to reload, and collect ammo, and save count of ammo,items and health between the scenes (levels.)

Take a look at this addon for weapons and reloading:

https://godotengine.org/asset-library/asset/58

Saving data between scenes is usually done with Singletons:

http://docs.godotengine.org/en/stable/learning/step_by_step/singletons_autoload....

The forum for godot exists https://godotdevelopers.org/forum/

Commenting with "how do I do [insert basic stuff]" are kinda not fun to read in general ). It looks like you make fun of game developers (I suppose you are one).

Weapon model is exported from blender, animated with AnimationPlayer, a child of player's rigid body (camera as well). Script on player's rigid body switches the weapon animation.

Crystal have a script that checks if player touches it, then it does +1HP +1AMMO and deletes itself.

"Commenting with "how do I do [insert basic stuff]" are kinda not fun to read in general ). It looks like you make fun of game developers (I suppose you are one)."

That is wrong, i'm new to programming, and was wandering how to do such thing, that's all. Thanks for answer anyway.