mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 01:07:38 +02:00
JSL-Related Improvements (#679)
* *don't* cause a stack overflow when polling split controller * update JSL (DualSense Edge support) add ability to update controller bindings * (temporarily) get rid of everything joy-con pair related * prepare the new controller update JSL * implementation of joycon pair * properly do the material * finish implementation
This commit is contained in:
@ -38,6 +38,8 @@ public partial class ControllerLoaderGenerator
|
||||
false
|
||||
))
|
||||
.ToList();
|
||||
// sort by load order attribute (lower is first)
|
||||
loadRunners.Sort((x, y) => x.Method.GetCustomAttribute<LoadOrder>().Order.CompareTo(y.Method.GetCustomAttribute<LoadOrder>().Order));
|
||||
|
||||
// USG: static classes are IsAbstract is set.
|
||||
if (!context.TargetClass.IsClass)
|
||||
|
@ -83,7 +83,6 @@ namespace {context.TargetClass.Namespace}
|
||||
string fullMethodLabel = $"{callingClass}.{method}";
|
||||
|
||||
sb.Append($@"
|
||||
Debug.Log(""Running game loader {callingClass}"");
|
||||
game = {fullMethodLabel}(eventCaller);
|
||||
if (game != null)
|
||||
{{
|
||||
|
Reference in New Issue
Block a user