This commit is contained in:
2025-05-26 17:04:33 +02:00
parent f0536f4129
commit 6bda371baa
303 changed files with 1361 additions and 1372 deletions

3
Runtime/FPPKit/Code/FPPPlayerControllerAsset.cs Normal file → Executable file
View File

@@ -6,9 +6,8 @@ namespace RebootKit.FPPKit {
public class FPPPlayerControllerAsset : ControllerAsset {
[SerializeField] FPPPlayerController.Config m_Config;
public override IController Create(DIContext context) {
public override IController Create() {
FPPPlayerController instance = new(m_Config);
context.Inject(instance);
return instance;
}
}