├── .gitignore ├── Content └── InteractionSystem │ ├── Enums │ ├── EInteractionNetMode.uasset │ ├── EInteractionResult.uasset │ └── EInteractionType.uasset │ ├── InteractionComponents │ ├── InteractionBaseComponent.uasset │ ├── InteractionHoldComponent.uasset │ └── InteractionInstantComponent.uasset │ ├── InteractorComponent │ └── InteractorComponent.uasset │ ├── Interfaces │ └── Interaction_BPI.uasset │ ├── Libraries │ └── BFL_InteractionSystem.uasset │ └── Widgets │ ├── WB_Interaction_Hold.uasset │ └── WB_Interaction_Instant.uasset ├── InteractionSystem.uplugin ├── LICENSE ├── README.md └── Resources ├── Icon128.png ├── Readme_Content_1.png └── interaction-system.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/InteractionSystem/Enums/EInteractionNetMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/Enums/EInteractionNetMode.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/Enums/EInteractionResult.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/Enums/EInteractionResult.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/Enums/EInteractionType.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/Enums/EInteractionType.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/InteractionComponents/InteractionBaseComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/InteractionComponents/InteractionBaseComponent.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/InteractionComponents/InteractionHoldComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/InteractionComponents/InteractionHoldComponent.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/InteractionComponents/InteractionInstantComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/InteractionComponents/InteractionInstantComponent.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/InteractorComponent/InteractorComponent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/InteractorComponent/InteractorComponent.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/Interfaces/Interaction_BPI.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/Interfaces/Interaction_BPI.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/Libraries/BFL_InteractionSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/Libraries/BFL_InteractionSystem.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/Widgets/WB_Interaction_Hold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/Widgets/WB_Interaction_Hold.uasset -------------------------------------------------------------------------------- /Content/InteractionSystem/Widgets/WB_Interaction_Instant.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Content/InteractionSystem/Widgets/WB_Interaction_Instant.uasset -------------------------------------------------------------------------------- /InteractionSystem.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/InteractionSystem.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/Readme_Content_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Resources/Readme_Content_1.png -------------------------------------------------------------------------------- /Resources/interaction-system.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupalemdar/InteractionSystem/HEAD/Resources/interaction-system.gif --------------------------------------------------------------------------------