You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model: {{ platform.model }} # This is set only in platforms where we want non-default model to use (more information in project.metafile)
60
30
{% endif %}
31
+
32
+
variables:
33
+
# When UNIFIED_TESTS is set, only integration tests that opt in via overriding NetcodeIntegrationTest.UseUnifiedTests and returning true will run during this job.
34
+
# NetcodeIntegrationTest.UseUnifiedTests defaults to returning false (for now) making this an opt-in mode.
35
+
# Note: If USE_CMB_SERVICE is set along with UNIFIED_TESTS, then UNIFIED_TESTS is ignored until distributed authority is supported.
36
+
UNIFIED_TESTS: "true"
37
+
61
38
commands:
62
-
# Swap in the manifest that pulls in com.unity.netcode (N4E). This is what causes UNIFIED_NETCODE
63
-
#to be defined and therefore what makes the unified tests compile at all.
39
+
# Swap in the manifest that has the unified packages and versions required.
40
+
#Without the N4E package, UNIFIED_NETCODE is undefined and the unified API excluded.
Log.Error(newContext(LogLevel.Error,"You must create a {nameof(NetCodeConfig)} and set it to a single world in order to run in hybrid mode!").AddTag("Unified"));
1456
+
Log.Error(newContext(LogLevel.Error,$"You must create a {nameof(NetCodeConfig)} and set it to a single world in order to run in hybrid mode!").AddTag("Unified"));
Log.Error(newContext(LogLevel.Error,"You must configure {nameof(NetCodeConfig)} to only use a single world in order to run in hybrid mode!").AddTag("Unified"));
1461
+
Log.Error(newContext(LogLevel.Error,$"You must configure {nameof(NetCodeConfig)} to only use a single world in order to run in hybrid mode!").AddTag("Unified"));
0 commit comments