PolarBearClan / Making-Games

0 stars 0 forks source link

IInteractable Interface #11

Closed Nickromancer closed 1 week ago

Nickromancer commented 2 weeks ago

Overview Create a system for interacting with objects, where you can pick up items e.g. keys or interact with items such as doors.

User story As a Player, I want to interact with items, so that I can either collect them or trigger their functionality e.g. open door.

Acceptance criteria

Full task description Raycasting is advised and making the interactable a interface with other interfaces for specific purposes such as a pickable and triggerable is also recommended.

IInteractable could have the following properties:

A list of diffrent kinds of interfaces that could inherit from the main one are:

Nickromancer commented 2 weeks ago

Implement interactable/pickable interface