Skip to content

Commit dc459a7

Browse files
committed
add AsyncMixin plugin
1 parent 2ed0beb commit dc459a7

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "Plugins/GameplayMessageRouter"]
22
path = Plugins/GameplayMessageRouter
33
url = https://github.com/kovanci/GameplayMessageRouter.git
4+
[submodule "Plugins/AsyncMixin"]
5+
path = Plugins/AsyncMixin
6+
url = https://github.com/kovanci/AsyncMixin.git

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Unreal Engine template project(C++) for prototyping. Some plugins have been deac
77
### 🔨 Activated Plugins
88
- [CommonUI][3]
99
- [GameplayMessageRouter][4]
10+
- [AsyncMixin][5]
1011

1112
### 💿 Installation
1213
- Put project folder in
@@ -46,3 +47,4 @@ Unreal Engine template project(C++) for prototyping. Some plugins have been deac
4647
[2]: https://www.youtube.com/watch?v=94FvzO1HVzY
4748
[3]: https://docs.unrealengine.com/5.3/en-US/common-ui-plugin-for-advanced-user-interfaces-in-unreal-engine/
4849
[4]: https://github.com/kovanci/GameplayMessageRouter
50+
[5]: https://github.com/kovanci/AsyncMixin

Source/TP_ChimpGame/TP_ChimpGame.Build.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ public TP_ChimpGame(ReadOnlyTargetRules Target) : base(Target)
2121
"NavigationSystem",
2222
"AIModule",
2323
"Niagara",
24-
"GameplayTags"
24+
"GameplayTags",
25+
"AsyncMixin"
2526
});
2627

2728
PrivateDependencyModuleNames.AddRange(new string[] {

TP_Chimp.uproject

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,17 @@
272272
"Name": "OpenImageDenoise",
273273
"Enabled": false
274274
},
275+
{
276+
"Name": "GameplayMessageRouter",
277+
"Enabled": true
278+
},
275279
{
276280
"Name": "CommonUI",
277281
"Enabled": true
278-
}
282+
},
283+
{
284+
"Name": "AsyncMixin",
285+
"Enabled": true
286+
}
279287
]
280288
}

0 commit comments

Comments
 (0)