added inventory plugin
authorEduardo <[email protected]>
Fri, 2 Aug 2024 13:36:14 +0000 (15:36 +0200)
committerEduardo <[email protected]>
Fri, 2 Aug 2024 13:36:14 +0000 (15:36 +0200)
commit4d7c75522fdf616b27b1f014bf7120bc8f23352d
tree7ca3a63b8737f1929c6d9e6fabe66e9ec86f4ad0
parent3ed4631fcaee08d5de95467c4e296db5c08ca1b2
added inventory plugin
87 files changed:
addons/gloot/LICENSE [new file with mode: 0644]
addons/gloot/core/constraints/constraint_manager.gd [new file with mode: 0644]
addons/gloot/core/constraints/grid_constraint.gd [new file with mode: 0644]
addons/gloot/core/constraints/inventory_constraint.gd [new file with mode: 0644]
addons/gloot/core/constraints/item_map.gd [new file with mode: 0644]
addons/gloot/core/constraints/quadtree.gd [new file with mode: 0644]
addons/gloot/core/constraints/stacks_constraint.gd [new file with mode: 0644]
addons/gloot/core/constraints/weight_constraint.gd [new file with mode: 0644]
addons/gloot/core/inventory.gd [new file with mode: 0644]
addons/gloot/core/inventory_grid.gd [new file with mode: 0644]
addons/gloot/core/inventory_grid_stacked.gd [new file with mode: 0644]
addons/gloot/core/inventory_item.gd [new file with mode: 0644]
addons/gloot/core/inventory_stacked.gd [new file with mode: 0644]
addons/gloot/core/item_count.gd [new file with mode: 0644]
addons/gloot/core/item_protoset.gd [new file with mode: 0644]
addons/gloot/core/item_ref_slot.gd [new file with mode: 0644]
addons/gloot/core/item_slot.gd [new file with mode: 0644]
addons/gloot/core/item_slot_base.gd [new file with mode: 0644]
addons/gloot/core/utils.gd [new file with mode: 0644]
addons/gloot/core/verify.gd [new file with mode: 0644]
addons/gloot/editor/common/choice_filter.gd [new file with mode: 0644]
addons/gloot/editor/common/choice_filter.tscn [new file with mode: 0644]
addons/gloot/editor/common/choice_filter_test.tscn [new file with mode: 0644]
addons/gloot/editor/common/dict_editor.gd [new file with mode: 0644]
addons/gloot/editor/common/dict_editor.tscn [new file with mode: 0644]
addons/gloot/editor/common/dict_editor_test.tscn [new file with mode: 0644]
addons/gloot/editor/common/editor_icons.gd [new file with mode: 0644]
addons/gloot/editor/common/multivalue_editor.gd [new file with mode: 0644]
addons/gloot/editor/common/value_editor.gd [new file with mode: 0644]
addons/gloot/editor/gloot_undo_redo.gd [new file with mode: 0644]
addons/gloot/editor/inventory_editor/inventory_editor.gd [new file with mode: 0644]
addons/gloot/editor/inventory_editor/inventory_editor.tscn [new file with mode: 0644]
addons/gloot/editor/inventory_editor/inventory_inspector.gd [new file with mode: 0644]
addons/gloot/editor/inventory_editor/inventory_inspector.tscn [new file with mode: 0644]
addons/gloot/editor/inventory_inspector_plugin.gd [new file with mode: 0644]
addons/gloot/editor/item_editor/edit_properties_button.gd [new file with mode: 0644]
addons/gloot/editor/item_editor/edit_prototype_id_button.gd [new file with mode: 0644]
addons/gloot/editor/item_editor/properties_editor.gd [new file with mode: 0644]
addons/gloot/editor/item_editor/properties_editor.tscn [new file with mode: 0644]
addons/gloot/editor/item_editor/prototype_id_editor.gd [new file with mode: 0644]
addons/gloot/editor/item_editor/prototype_id_editor.tscn [new file with mode: 0644]
addons/gloot/editor/item_slot_editor/item_ref_slot_button.gd [new file with mode: 0644]
addons/gloot/editor/item_slot_editor/item_slot_editor.gd [new file with mode: 0644]
addons/gloot/editor/item_slot_editor/item_slot_editor.tscn [new file with mode: 0644]
addons/gloot/editor/item_slot_editor/item_slot_inspector.gd [new file with mode: 0644]
addons/gloot/editor/item_slot_editor/item_slot_inspector.tscn [new file with mode: 0644]
addons/gloot/editor/protoset_editor/edit_protoset_button.gd [new file with mode: 0644]
addons/gloot/editor/protoset_editor/edit_protoset_button.tscn [new file with mode: 0644]
addons/gloot/editor/protoset_editor/protoset_editor.gd [new file with mode: 0644]
addons/gloot/editor/protoset_editor/protoset_editor.tscn [new file with mode: 0644]
addons/gloot/gloot.gd [new file with mode: 0644]
addons/gloot/images/icon_ctrl_inventory.svg [new file with mode: 0644]
addons/gloot/images/icon_ctrl_inventory.svg.import [new file with mode: 0644]
addons/gloot/images/icon_ctrl_inventory_grid.svg [new file with mode: 0644]
addons/gloot/images/icon_ctrl_inventory_grid.svg.import [new file with mode: 0644]
addons/gloot/images/icon_ctrl_inventory_stacked.svg [new file with mode: 0644]
addons/gloot/images/icon_ctrl_inventory_stacked.svg.import [new file with mode: 0644]
addons/gloot/images/icon_ctrl_item_slot.svg [new file with mode: 0644]
addons/gloot/images/icon_ctrl_item_slot.svg.import [new file with mode: 0644]
addons/gloot/images/icon_inventory.svg [new file with mode: 0644]
addons/gloot/images/icon_inventory.svg.import [new file with mode: 0644]
addons/gloot/images/icon_inventory_grid.svg [new file with mode: 0644]
addons/gloot/images/icon_inventory_grid.svg.import [new file with mode: 0644]
addons/gloot/images/icon_inventory_grid_stacked.svg [new file with mode: 0644]
addons/gloot/images/icon_inventory_grid_stacked.svg.import [new file with mode: 0644]
addons/gloot/images/icon_inventory_stacked.svg [new file with mode: 0644]
addons/gloot/images/icon_inventory_stacked.svg.import [new file with mode: 0644]
addons/gloot/images/icon_item.svg [new file with mode: 0644]
addons/gloot/images/icon_item.svg.import [new file with mode: 0644]
addons/gloot/images/icon_item_protoset.svg [new file with mode: 0644]
addons/gloot/images/icon_item_protoset.svg.import [new file with mode: 0644]
addons/gloot/images/icon_item_ref_slot.svg [new file with mode: 0644]
addons/gloot/images/icon_item_ref_slot.svg.import [new file with mode: 0644]
addons/gloot/images/icon_item_slot.svg [new file with mode: 0644]
addons/gloot/images/icon_item_slot.svg.import [new file with mode: 0644]
addons/gloot/plugin.cfg [new file with mode: 0644]
addons/gloot/ui/ctrl_dragable.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_drop_zone.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_inventory.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_inventory_grid.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_inventory_grid_basic.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_inventory_grid_ex.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_inventory_item_rect.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_inventory_stacked.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_item_slot.gd [new file with mode: 0644]
addons/gloot/ui/ctrl_item_slot_ex.gd [new file with mode: 0644]
project.godot