Skip to content

Instantly share code, notes, and snippets.

@Jeremi360
Jeremi360 / InvetorySystem.gd
Created June 6, 2024 06:39
to help some one on the intenet with InvetorySystem
# In Player script
var stats := {
healt = 0,
mana = 0,
}
var healt := 0: # change to 0.0 if you want float
set(value):
stats.healt = value
get: return stats.healt
@Jeremi360
Jeremi360 / black_hole.gd
Created April 16, 2019 07:46
black hole for my friend
extends Area
# I write this with out godot - it can have small errors
export var suck_speed = 5
var objects_in = []
func _ready():
connect("body_entered", self, "on_body_enter")
@Jeremi360
Jeremi360 / editor_layouts.cfg
Created March 11, 2019 05:37
My Godot UI Layout / Mój układ ui Godot
[JebStyle]
dock_3="Scene,FileSystem"
dock_5="Inspector,Node,Import"
dock_filesystem_split=-46
dock_split_2=0
dock_split_3=0
dock_hsplit_1=0
dock_hsplit_2=27
dock_hsplit_3=-51