File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 17
17
- uses : actions/checkout@v4
18
18
- uses : greut/eclint-action@v0
19
19
-
uses :
jidicula/[email protected]
20
- with : { clang-format-version: "18 " }
20
+ with : { clang-format-version: "19 " }
Original file line number Diff line number Diff line change @@ -151,7 +151,8 @@ void DrawEventSummaryMessage(EventSummaryReportMessage summary) {
151
151
void OnGUI ( ) {
152
152
var runtimeSettings = EcsactRuntimeSettings . Get ( ) ;
153
153
154
- if ( runtimeSettings . systemImplSource != Ecsact . SystemImplSource . WebAssembly ) {
154
+ if ( runtimeSettings . systemImplSource !=
155
+ Ecsact . SystemImplSource . WebAssembly ) {
155
156
EditorGUILayout . HelpBox (
156
157
"Ecsact benchmark only supports WebAssembly system implementations." ,
157
158
MessageType . Info
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ class EcsactMethodUIBindings : ScriptableObject {
85
85
}
86
86
87
87
class EcsactSettingsSettingsProvider : SettingsProvider {
88
- private static bool showMissingMethods ;
88
+ private static bool showMissingMethods ;
89
89
private static List < string > cachedRecipeList = new ( ) ;
90
90
91
91
Editor ? runtimeSettingsEditor = null ;
@@ -367,7 +367,7 @@ private VisualElement MakeRecipeElement() {
367
367
368
368
private void BindRecipeElement ( VisualElement element , int index ) {
369
369
var toggle = element as Toggle ;
370
- var recipe = cachedRecipeList [ index ] ;
370
+ var recipe = cachedRecipeList [ index ] ;
371
371
if ( recipe != null ) {
372
372
toggle . text = recipe ;
373
373
toggle . SetValueWithoutNotify ( IsUsingRecipe ( recipe ) ) ;
Original file line number Diff line number Diff line change @@ -11,13 +11,11 @@ static public class Defaults {
11
11
internal static EcsactRuntime ? _Runtime ;
12
12
public static EcsactRuntime Runtime => _Runtime ??
13
13
throw new Exception ( "Runtime is null, if you want to access it as early " +
14
- "as possible " +
15
- "use Ecsact.Defaults.WhenReady" ) ;
14
+ "as possible " + "use Ecsact.Defaults.WhenReady" ) ;
16
15
internal static Ecsact . Registry ? _Registry ;
17
16
public static Ecsact . Registry Registry => _Registry ??
18
17
throw new Exception ( "Registry is null, if you want to access it as early " +
19
- "as possible " +
20
- "use Ecsact.Defaults.WhenReady" ) ;
18
+ "as possible " + "use Ecsact.Defaults.WhenReady" ) ;
21
19
public static Ecsact . UnitySync . EntityGameObjectPool ? Pool ;
22
20
public static EcsactRunner ? Runner ;
23
21
You can’t perform that action at this time.
0 commit comments