From 422f3424aeb88d5e66e6ae032baa7d6bb84176c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Chrobot?= <124174716+michalChrobot@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:36:02 +0100 Subject: [PATCH 01/24] build: NGO CI update and rewrite [2.X] (#3193) * Refactor of CI setup, jobs and triggers * Disabling some tests which failing on mobile devices * Setting up Renovate bot configuration (same as already present in develop branch) * Added pvpExceptions file --------- Co-authored-by: NoelStephensUnity --- .github/renovate.json5 | 3 +- .yamato/_run-all.yml | 220 ++-- .yamato/_triggers.yml | 163 ++- .yamato/code-coverage.yml | 32 +- .yamato/console-standalone-test.yml | 96 ++ .yamato/desktop-standalone-tests.yml | 107 ++ .yamato/disable-burst-if-requested.py | 4 + .yamato/mobile-build-and-test.yml | 157 --- .yamato/mobile-standalone-test.yml | 106 ++ .yamato/multiprocess-project-tests.yml | 44 - .yamato/package-pack.yml | 24 + .yamato/package-tests.yml | 55 +- .yamato/performance-tests.yml | 55 + .yamato/project-pack.yml | 51 +- .yamato/project-promotion.yml | 74 -- .yamato/project-publish.yml | 67 - .yamato/project-standards.yml | 38 +- .yamato/project-tests.yml | 34 +- .yamato/project-updated-dependencies-test.yml | 54 +- .yamato/project.metafile | 230 ++-- .yamato/standalone-project-tests.yml | 42 - .yamato/webgl-build.yml | 66 +- .../NetworkTransformAnticipationTests.cs | 3 + .../Tests/Runtime/NetworkVariableTests.cs | 4 + .../pvpExceptions.json | 1073 +++++++++++++++++ .../pvpExceptions.json.meta | 7 + 26 files changed, 1955 insertions(+), 854 deletions(-) create mode 100644 .yamato/console-standalone-test.yml create mode 100644 .yamato/desktop-standalone-tests.yml delete mode 100644 .yamato/mobile-build-and-test.yml create mode 100644 .yamato/mobile-standalone-test.yml delete mode 100644 .yamato/multiprocess-project-tests.yml create mode 100644 .yamato/package-pack.yml create mode 100644 .yamato/performance-tests.yml delete mode 100644 .yamato/project-promotion.yml delete mode 100644 .yamato/project-publish.yml delete mode 100644 .yamato/standalone-project-tests.yml create mode 100644 com.unity.netcode.gameobjects/pvpExceptions.json create mode 100644 com.unity.netcode.gameobjects/pvpExceptions.json.meta diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 114e0c1436..acab47d6f0 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,7 +1,7 @@ { "baseBranches": ["develop", "develop-2.0.0"], "dependencyDashboard": true, - + "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "local>Unity-Technologies/unity-renovate-config" @@ -15,6 +15,7 @@ "**/*~/**" ], "packageRules": [ + // Run unity-upm-project and unity-upm-package only on weekends to reduce PR noise // Also ensure dependencies won't be downgraded when they don't exist in the public repositories { diff --git a/.yamato/_run-all.yml b/.yamato/_run-all.yml index 8bf0c61968..af4c78b7f0 100644 --- a/.yamato/_run-all.yml +++ b/.yamato/_run-all.yml @@ -1,161 +1,173 @@ {% metadata_file .yamato/project.metafile %} --- -run_all_tests: - name: Run All Package and Project Tests + +# Runs all package tests +run_all_package_tests: + name: Run All Package Tests dependencies: - # Pull in package and validate jobs through the badges job - - .yamato/_triggers.yml#badges_test_trigger - - .yamato/mobile-build-and-test.yml#run_{{ projects.first.name }}_tests_{{ mobile_validation_editor }}_iOS - - .yamato/mobile-build-and-test.yml#run_{{ projects.first.name }}_tests_{{ mobile_validation_editor }}_android - # - .yamato/_run-all.yml#all_project_tests_standalone -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} - - .yamato/webgl-build.yml#build_{{ project.name }}_tests_{{ editor }}_webgl +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} + - .yamato/package-tests.yml#package_test_-_ngo_{{ editor }}_{{ platform.name }} {% endfor -%} -{% endif -%} {% endfor -%} -{% for platform in test_platforms -%} -{% for project in projects -%} -{% for editor in project.test_editors -%} -{% if editor != "trunk" -%} -{% for package in project.packages -%} - - .yamato/package-tests.yml#test_{{ project.name}}_{{ package.name }}_{{ editor }}_{{ platform.name }} + +# Runs all package tests on trunk editor +run_all_package_tests_trunk: + name: Run All Package Tests [Trunk only] + dependencies: +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.default -%} + - .yamato/package-tests.yml#package_test_-_ngo_{{ editor }}_{{ platform.name }} {% endfor -%} - - .yamato/project-tests.yml#test_{{ project.name }}_{{ editor }}_{{ platform.name }} -{% endif -%} {% endfor -%} -## Test minimal project with different versions of dependencies -{% if project.name == "minimalproject" -%} -{% for dependency in dependencies -%} -{% for depeditor in dependency.test_editors -%} -{% if depeditor != "trunk" -%} - - .yamato/package-tests.yml#test_compatibility_{{ project.name }}_{{ project.packages.first.name }}_with_{{ dependency.name }}@{{ dependency.version }}_{{ depeditor }}_{{ platform.name }} -{% endif -%} + +# Runs all projects tests +run_all_project_tests: + name: Run All Project Tests + dependencies: +{% for project in projects.all -%} +{% if project.has_tests == "true" -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} + - .yamato/project-tests.yml#test_{{ project.name }}_{{ platform.name }}_{{ editor }} {% endfor -%} {% endfor -%} {% endif -%} {% endfor -%} -{% endfor -%} -run_all_tests_trunk: - name: Run All Package and Project Tests [Trunk] + +# Runs all projects tests on trunk editor +run_all_project_tests_trunk: + name: Run All Project Tests [Trunk only] dependencies: -{% for platform in test_platforms -%} -{% for project in projects -%} -{% for editor in project.test_editors -%} -{% if editor == "trunk" -%} -{% for package in project.packages -%} - - .yamato/package-tests.yml#test_{{ project.name}}_{{ package.name }}_{{ editor }}_{{ platform.name }} -{% endfor -%} - - .yamato/project-tests.yml#test_{{ project.name }}_{{ editor }}_{{ platform.name }} +{% for project in projects.all -%} +{% if project.has_tests == "true" -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.default -%} + - .yamato/project-tests.yml#test_{{ project.name }}_{{ platform.name }}_{{ editor }} +{% endfor -%} +{% endfor -%} {% endif -%} {% endfor -%} -## Test minimal project with different versions of dependencies on trunk -{% if project.name == "minimalproject" -%} -{% for dependency in dependencies -%} -{% for depeditor in dependency.test_editors -%} -{% if depeditor == "trunk" -%} - - .yamato/package-tests.yml#test_compatibility_{{ project.name }}_{{ project.packages.first.name }}_with_{{ dependency.name }}@{{ dependency.version }}_{{ depeditor }}_{{ platform.name }} -{% endif -%} + +# Runs all project standards check +run_all_projects_standards: + name: Run All Projects Standards + dependencies: +{% for platform in test_platforms.default -%} +{% for project in projects.all -%} +{% for editor in validation_editors.default -%} + - .yamato/project-standards.yml#standards_{{ platform.name }}_{{ project.name }}_{{ editor }} {% endfor -%} {% endfor -%} -{% endif -%} +{% endfor -%} + + +# Runs all WebGL builds +run_all_webgl_builds: + name: Run All WebGl Build + dependencies: +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_{{ editor }} +{% endfor -%} {% endfor -%} {% endfor -%} -all_project_tests: - name: Run All Project Tests + +# Runs all WebGL builds on trunk editor +run_all_webgl_builds_trunk: + name: Run All WebGl Build [Trunk only] dependencies: - - .yamato/_triggers.yml#badges_test_trigger -{% for platform in test_platforms -%} -{% for project in projects -%} -{% for editor in project.test_editors -%} - - .yamato/project-tests.yml#test_{{ projects.first.name }}_{{ editor }}_{{ platform.name }} +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.default -%} + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_{{ editor }} {% endfor -%} {% endfor -%} {% endfor -%} -all_package_tests: - name: Run All Package Tests + +# Runs all Desktop tests +run_all_project_tests_desktop_standalone: + name: Run All Standalone Tests - Desktop dependencies: - - .yamato/_triggers.yml#badges_test_trigger -{% for platform in test_platforms -%} -{% for project in projects -%} -{% for editor in project.test_editors -%} -{% for package in project.packages -%} - - .yamato/package-tests.yml#test_{{ project.name}}_{{ package.name }}_{{ editor }}_{{ platform.name }} +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} +{% for backend in scripting_backends -%} + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ editor }} {% endfor -%} {% endfor -%} {% endfor -%} {% endfor -%} -# Test minimal project with different versions of dependencies -all_compatibility_tests: - name: Run All Compatibility Tests + +# Runs all Desktop tests on trunk editor +run_all_project_tests_desktop_standalone_trunk: + name: Run All Standalone Tests - Desktop [Trunk only] dependencies: -{% for platform in test_platforms -%} -{% for project in projects -%} -{% if project.name == "minimalproject" -%} -{% for dependency in dependencies -%} -{% for editor in dependency.test_editors -%} - - .yamato/package-tests.yml#test_compatibility_{{ project.name }}_{{ project.packages.first.name }}_with_{{ dependency.name }}@{{ dependency.version }}_{{ editor }}_{{ platform.name }} +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.default -%} +{% for backend in scripting_backends -%} + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ editor }} {% endfor -%} {% endfor -%} -{% endif -%} {% endfor -%} {% endfor -%} -all_singlenode_multiprocess_tests: - name: Run All Multiprocess Tests - Single Node +# Runs all Mobile tests +run_all_project_tests_mobile_standalone: + name: Run All Standalone Tests - Mobile dependencies: -{% for platform in test_platforms -%} -{% for project in projects -%} -{% for editor in project.test_editors -%} -{% if editor != "trunk" %} - - .yamato/multiprocess-project-tests.yml#singlenode_multiprocess_test_testproject_{{ editor }}_{{ platform.name }} -{% endif %} +{% for project in projects.default -%} +{% for platform in test_platforms.mobile_test -%} +{% for editor in validation_editors.all -%} + - .yamato/mobile-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_{{ editor }} {% endfor -%} {% endfor -%} {% endfor -%} -all_project_tests_standalone: - name: Run All Project Tests - Standalone + +# Runs all Mobile tests on trunk editor +run_all_project_tests_mobile_standalone_trunk: + name: Run All Standalone Tests - Mobile [Trunk only] dependencies: -{% for platform in test_platforms -%} -{% for project in projects -%} -{% if project.has_tests == "true" -%} -{% for editor in project.test_editors -%} -{% for backend in scripting_backends -%} - - .yamato/standalone-project-tests.yml#standalone_tests_{{ project.name }}_{{ backend }}_{{ editor }}_{{ platform.name }} +{% for project in projects.default -%} +{% for platform in test_platforms.mobile_test -%} +{% for editor in validation_editors.default -%} + - .yamato/mobile-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_{{ editor }} {% endfor -%} {% endfor -%} -{% endif -%} -{% endfor -%} {% endfor -%} -all_project_tests_mobile: - name: Run All Project Tests - Mobile + +# Runs all Console tests +run_all_project_tests_console_standalone: + name: Run All Standalone Tests - Console dependencies: -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} - - .yamato/mobile-build-and-test.yml#run_{{ project.name }}_tests_{{ editor }}_android - - .yamato/mobile-build-and-test.yml#run_{{ project.name }}_tests_{{ editor }}_iOS +{% for project in projects.default -%} +{% for platform in test_platforms.console_test -%} +{% for editor in validation_editors.all -%} + - .yamato/console-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_{{ editor }} +{% endfor -%} {% endfor -%} -{% endif -%} {% endfor -%} -all_project_tests_webgl: - name: Build All Project Tests - WebGL + +# Runs all Console tests on trunk editor +run_all_project_tests_console_standalone_trunk: + name: Run All Standalone Tests - Console [Trunk only] dependencies: -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} - - .yamato/webgl-build.yml#build_{{ project.name }}_tests_{{ editor }}_webgl +{% for project in projects.default -%} +{% for platform in test_platforms.console_test -%} +{% for editor in validation_editors.default -%} + - .yamato/console-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_{{ editor }} +{% endfor -%} {% endfor -%} -{% endif -%} {% endfor -%} diff --git a/.yamato/_triggers.yml b/.yamato/_triggers.yml index 6bafa5ff1b..8abd3622cf 100644 --- a/.yamato/_triggers.yml +++ b/.yamato/_triggers.yml @@ -1,100 +1,85 @@ {% metadata_file .yamato/project.metafile %} --- -develop_nightly: - name: "\U0001F319 [Nightly] Run All Tests" - triggers: - recurring: - - branch: develop - frequency: daily - rerun: always - dependencies: - - .yamato/_run-all.yml#run_all_tests -{% for project in projects -%} -{% if project.has_tests == "true" -%} - - .yamato/code-coverage.yml#code_coverage_win_{{ project.name }}_{{ validation_editor }} -{% endif -%} -{% endfor -%} -develop_weekly_trunk: - name: "\U0001F319 [Weekly] Run All Tests [Trunk]" - triggers: - recurring: - - branch: develop - frequency: weekly - rerun: always +# Run all relevant tasks when a pull request targeting the develop or release branch is created or updated. +pull_request_trigger: + name: Pull Request Trigger (develop, develop-2.0.0, & release branches) dependencies: - - .yamato/_run-all.yml#run_all_tests_trunk + # Run project standards to verify package/default project + - .yamato/project-standards.yml#standards_ubuntu_testproject_trunk + # Run package EditMode and Playmode tests on desktop platforms on trunk + - .yamato/_run-all.yml#run_all_package_tests_trunk + # Run project EditMode and PLaymode tests on desktop platforms on trunk + - .yamato/_run-all.yml#run_all_project_tests_trunk + # Run one standalone test to make sure there are no obvious issues with most common platform (for example --fail-on-assert option is not present with package/project tests) + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_win_il2cpp_trunk + triggers: + cancel_old_ci: true + pull_requests: + - targets: + only: + - "develop" + - "develop-2.0.0" + - "/release\/.*/" + - drafts: false + -multiprocess_nightly: - name: "\U0001F319 [Nightly] Run Multiprocess Tests" +# Run all tests on trunk on nightly basis. +# Same subset as pull_request_trigger with addition of mobile/desktop/console tests and webgl builds +# Those tests are all running on trunk editor (since it's daily and running all of them would add a lot of overhead) +develop_nightly: + name: "\U0001F319 [Nightly] Run All Tests [Trunk]" triggers: recurring: - - branch: develop - frequency: daily - rerun: always + - branch: develop-2.0.0 + frequency: daily + rerun: always dependencies: - - .yamato/_run-all.yml#all_singlenode_multiprocess_tests + # Run project standards to verify package/default project + - .yamato/project-standards.yml#standards_ubuntu_testproject_trunk + # Run APV jobs to make sure the change won't break any dependants + - .yamato/wrench/preview-a-p-v.yml#all_preview_apv_jobs + # Run package EditMode and Playmode tests on desktop platforms on trunk + - .yamato/_run-all.yml#run_all_package_tests_trunk + # Run project EditMode and PLaymode tests on desktop platforms on trunk + - .yamato/_run-all.yml#run_all_project_tests_trunk + # Run Runtime tests on desktop players on trunk + - .yamato/_run-all.yml#run_all_project_tests_desktop_standalone_trunk + # Run Runtime tests on mobile players on trunk + - .yamato/_run-all.yml#run_all_project_tests_mobile_standalone_trunk + # Run Runtime tests on console players on trunk + - .yamato/_run-all.yml#run_all_project_tests_console_standalone_trunk + # Build player for webgl platform on trunk + - .yamato/_run-all.yml#run_all_webgl_builds_trunk + # Build player for webgl platform on trunk + - .yamato/project-updated-dependencies-test.yml#updated-dependencies_testproject_NGO_ubuntu_trunk -# Run all relevant tasks when a pull request targeting the develop -# branch is created or updated. Currently only netcode package tests are -# enabled, since the others are missing test coverage and will fail CI. -pull_request_trigger: - name: Pull Request Trigger (master, develop, & release branches) - dependencies: - - .yamato/project-standards.yml#standards_{{ projects.first.name }} -{% for project in projects -%} -{% for package in project.packages -%} -{% if project.validate == "true" -%} - - .yamato/project-publish.yml#validate_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }} -{% endif -%} -{% endfor -%} -{% for platform in test_platforms -%} -{% for package in project.packages -%} - - .yamato/package-tests.yml#test_{{ project.name }}_{{ package.name }}_{{ project.test_editors.first }}_{{ platform.name }} -{% endfor -%} - - .yamato/project-tests.yml#test_{{ project.name }}_{{ project.test_editors.first }}_{{ platform.name }} -{% endfor -%} -{% endfor -%} + +# Run all tests on weekly bases +# Same subset as develop_nightly but runs per all supported editors as well as executes code coverage test and runs project standards per project +# It's not running wrench jobs since those will run either way in nightly test run +# This in contrast to nightly checks will run tests on all editors (not only trunk). Running those on weekly basis and trunk tests nightly should be a good balance between making sure that tests are passing and overhead of running lots of tests +develop_weekly_trunk: + name: "\U0001F319 [Weekly] Run All Tests" triggers: - cancel_old_ci: true - pull_requests: - - targets: - only: - - "master" - - "develop" - - "develop-2.0.0" - - "/release\/.*/" - -# Currently, we need to have a trigger to updated badges -# Only package badges currently exist -badges_test_trigger: - name: ⚡ Badges Tests Trigger - agent: - type: Unity::VM - image: package-ci/ubuntu-22.04:v4 - flavor: b1.small - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci package izon -t - artifacts: - logs: - paths: - - "upm-ci~/test-results/**/*" - packages: - paths: - - "upm-ci~/packages/**/*" + recurring: + - branch: develop-2.0.0 + frequency: weekly + rerun: always dependencies: -{% for project in projects -%} -{% for package in project.packages -%} -{% if project.validate == "true" -%} - - .yamato/project-publish.yml#validate_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }} -{% endif -%} -{% for editor in project.test_editors -%} -{% if editor != "trunk" -%} -{% for platform in test_platforms -%} - - .yamato/package-tests.yml#test_{{ project.name }}_{{ package.name }}_{{ editor }}_{{ platform.name }} -{% endfor -%} -{% endif -%} -{% endfor -%} -{% endfor -%} -{% endfor -%} + # Run project standards to verify package/default project + - .yamato/_run-all.yml#run_all_projects_standards + # Run package EditMode and Playmode tests on desktop platforms + - .yamato/_run-all.yml#run_all_package_tests + # Run project EditMode and PLaymode tests on desktop platforms + - .yamato/_run-all.yml#run_all_project_tests + # Run Runtime tests on desktop players + - .yamato/_run-all.yml#run_all_project_tests_desktop_standalone + # Run Runtime tests on mobile players + - .yamato/_run-all.yml#run_all_project_tests_mobile_standalone + # Run Runtime tests on console players + - .yamato/_run-all.yml#run_all_project_tests_console_standalone + # Build player for webgl platform on trunk + - .yamato/_run-all.yml#run_all_webgl_builds + # Run code coverage test + - .yamato/code-coverage.yml#code_coverage_ubuntu_trunk \ No newline at end of file diff --git a/.yamato/code-coverage.yml b/.yamato/code-coverage.yml index a56b3525dd..0e2d499f8d 100644 --- a/.yamato/code-coverage.yml +++ b/.yamato/code-coverage.yml @@ -1,25 +1,27 @@ {% metadata_file .yamato/project.metafile %} --- -{% for project in projects -%} -{% if project.has_tests == "true" -%} -code_coverage_win_{{ project.name }}_{{ validation_editor }}: - name: Code Coverage Report - Windows - {{ project.name }} - {{ validation_editor }} + +# Runs package tests in order to determine code coverage of the NGO package. +# In essence it's performing the same task as .yamato/package-test jobs with the overhead being the measured code coverage +# It's ok for code coverage to be performed only on one platform (default) since code coverage won't change much between those. +# Default platform was chosen (ubuntu) since it's the fastest and most resource friendly with default editor. +{% for platform in test_platforms.default -%} +{% for editor in validation_editors.default -%} +code_coverage_{{ platform.name }}_{{ editor }}: + name: Code Coverage - NGO [{{ platform.name }}, {{ editor }}] agent: - type: Unity::VM - image: package-ci/win10:v4 - flavor: b1.large + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} commands: - - pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --upgrade - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - unity-downloader-cli -u {{ validation_editor }} -c editor --wait --fast - - upm-ci package test -u .Editor --package-path com.unity.netcode.gameobjects --enable-code-coverage --code-coverage-options 'enableCyclomaticComplexity;generateAdditionalMetrics;generateHtmlReport;assemblyFilters:+Unity.Netcode.Editor,+Unity.Netcode.Runtime,+Unity.Netcode.Components' + - npm install -g upm-ci-utils@stable --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm + - unity-downloader-cli -u {{ editor }} -c Editor --fast --wait + - {% if platform.name == "ubuntu" %}DISPLAY=:0 {% endif %} upm-ci package test -u {{ editor }} --package-path com.unity.netcode.gameobjects --enable-code-coverage --code-coverage-options 'generateAdditionalMetrics;generateHtmlReport;assemblyFilters:+Unity.Netcode.Editor,+Unity.Netcode.Runtime' --extra-utr-arg="--extra-editor-arg=--burst-disable-compilation --extra-editor-arg=-testCategory --extra-editor-arg=!Performance --timeout=1800 --reruncount=1 --clean-library-on-rerun" artifacts: logs: paths: - "upm-ci~/test-results/**/*" dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} -{% endif -%} + - .yamato/package-pack.yml#package_pack_-_ngo_{{ platform.name }} +{% endfor -%} {% endfor -%} \ No newline at end of file diff --git a/.yamato/console-standalone-test.yml b/.yamato/console-standalone-test.yml new file mode 100644 index 0000000000..2d5ca4861e --- /dev/null +++ b/.yamato/console-standalone-test.yml @@ -0,0 +1,96 @@ +{% metadata_file .yamato/project.metafile %} +--- + +# Builds a player on console standalone platform and executes RuntimeTests (equivalent to PlayMode tests) of the NGO package in the Standalone build. +# Default project (testptoject) in this case is used as a context. +# Builds/Tests are made on each console platform (PS4, PS5, Switch, XboxOne, XboxSeriesX) as in project.metafile declaration +# Builds/Tests are made on each supported editor as in project.metafile declaration + +# For SOME of the console devices it's necessary to split build and run phases so it was split for all +# For all consoles we need to use il2cpp scripting backend (so no testing with mono) +# Switch works only with ARM64 and the rest with x64 architectures +# For now all platforms used for building are windows based + +# Builds are made with x64 architecture machines since those are compatible to run on ARM64 devices +{% for project in projects.default -%} +{% for platform in test_platforms.console_build -%} +{% for editor in validation_editors.all -%} +build_{{ project.name }}_{{ platform.name }}_{{ editor }}: + name: Build {{ project.name }} - [{{ platform.name }}, {{ editor }}, il2cpp{% if platform.name == "switch" %}, arm64{% endif %}] + agent: + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} + commands: + # Installing tools. unity-downloader-cli and utr should be already preinstalled on the image + - sudo pip install unity-downloader-cli + - unity-downloader-cli -u {{ editor }} -c Editor -c il2cpp -c {{ platform.name }} --fast --wait + - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat + + # Platform specific Build + - utr --testproject={{ project.path }} --architecture={% if platform.name == "switch" %}arm64{% else %}x64{% endif %} --scripting-backend=il2cpp --suite=playmode --platform={{ platform.standalone }} --editor-location=.Editor --artifacts-path=artifacts --player-save-path=build/players --testfilter="Unity.Netcode.RuntimeTests.*" --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800 + + variables: +# PS4 related + SCE_ORBIS_SDK_DIR: 'C:\Users\bokken\SCE\ps4_sdk_12_00' +# PS5 related + SCE_PROSPERO_SDK_DIR: 'C:\Program Files (x86)\SCE\Prospero SDKs\9.000' + SHADER_COMPILER_PATH: '${SCE_PROSPERO_SDK_DIR}\target\bins' + SCE_ROOT_DIR: 'C:\Program Files (x86)\SCE' +# Switch related + NINTENDO_SDK_ROOT: 'C:\Nintendo\nx_sdk-18_3_0\NintendoSDK' + UNITY_NINTENDOSDK_CLI_TOOLS: '${NINTENDO_SDK_ROOT}\Tools\CommandLineTools' + artifacts: + players: + paths: + - "build/players/**/*" + logs: + paths: + - "artifacts/**/*" +{% endfor -%} +{% endfor -%} +{% endfor -%} + + + +# Executes RuntimeTests of the NGO package in the Standalone build for consoles +{% for project in projects.default -%} +{% for platform in test_platforms.console_test -%} +{% for editor in validation_editors.all -%} +run_{{ project.name }}_tests_{{ platform.name }}_{{ editor }}: + name: Run {{ project.name }} Tests - [{{ platform.name }}, {{ editor }}, il2cpp] + agent: + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} +{% if platform.model %} + model: {{ platform.model }} +{% endif %} + commands: + # Installing tools. + - sudo pip install unity-downloader-cli + - unity-downloader-cli -u {{ editor }} -c Editor -c il2cpp -c {{ platform.name }} --fast --wait + - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat + + # Platform specific Execution + - utr --suite=playmode --testproject={{ project.path }} --editor-location=.Editor --artifacts-path=test-results --player-load-path=build/players --fail-on-assert --reruncount=1 --clean-library-on-rerun --timeout=1800 + + variables: +# PS4 related + SCE_ORBIS_SDK_DIR: 'C:\Users\bokken\SCE\ps4_sdk_12_00' +# PS5 related + SCE_PROSPERO_SDK_DIR: 'C:\Program Files (x86)\SCE\Prospero SDKs\9.000' + SHADER_COMPILER_PATH: '${SCE_PROSPERO_SDK_DIR}\target\bins' + SCE_ROOT_DIR: 'C:\Program Files (x86)\SCE' +# Switch related + NINTENDO_SDK_ROOT: 'C:\Nintendo\nx_sdk-18_3_0\NintendoSDK' + UNITY_NINTENDOSDK_CLI_TOOLS: '${NINTENDO_SDK_ROOT}\Tools\CommandLineTools' + artifacts: + logs: + paths: + - "test-results/**/*" + dependencies: + - .yamato/console-standalone-test.yml#build_{{ project.name }}_{{ platform.name }}_{{ editor }} +{% endfor -%} +{% endfor -%} +{% endfor -%} \ No newline at end of file diff --git a/.yamato/desktop-standalone-tests.yml b/.yamato/desktop-standalone-tests.yml new file mode 100644 index 0000000000..b12c71f2eb --- /dev/null +++ b/.yamato/desktop-standalone-tests.yml @@ -0,0 +1,107 @@ +{% metadata_file .yamato/project.metafile %} +--- + +# Builds a player on desktop standalone platform and executes RuntimeTests (equivalent to PlayMode tests) of the NGO package in the Standalone build. +# Default project (testptoject) in this case is used as a context. +# Builds are made on each desktop platform as in project.metafile declaration +# Builds are made on each supported editor as in project.metafile declaration +# Builds are made with different scripting backends as in project.metafile declaration +# ARM64 architectures are for now not considered since Windows_arm64 is recommended to use only after builds (would require separation here) and when it comes to macOS_arm64 there is problem with OpenCL not being available + +# Build phase +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} +{% for backend in scripting_backends -%} +desktop_standalone_build_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ editor }}: + name : Standalone Build - NGO {{ project.name }} - [{{ platform.name }}, {{ editor }}, {{ backend }}] + agent: + type: {% if platform.name == "mac" %} {{ platform.type }} {% else %} {{ platform.type }}::GPU {% endif %} + image: {{ platform.image }} + flavor: {{ platform.flavor }} + commands: +# Installing tools +{% if platform.name == "ubuntu" %} + - sudo apt-get update -q + - sudo apt install -qy imagemagick +{% endif %} + - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + +# Platform specific UTR setup + - | +{% if platform.name == "win" %} + curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat +{% else %} + curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr && chmod +x utr +{% endif %} + +# Installing editor + - unity-downloader-cli -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --fast --wait + +# Build Player + - | +{% if platform.name == "win" %} + utr.bat --suite=playmode --platform={{ platform.standalone }} --editor-location=.Editor --testproject={{ project.path }} --scripting-backend={{ backend }} --testfilter="Unity.Netcode.RuntimeTests.*" --player-save-path=build/players --artifacts-path=artifacts --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800 +{% else %} + ./utr --suite=playmode --platform={{ platform.standalone }} --editor-location=.Editor --testproject={{ project.path }} --scripting-backend={{ backend }} --testfilter="Unity.Netcode.RuntimeTests.*" --player-save-path=build/players --artifacts-path=artifacts --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800 +{% endif %} + + artifacts: + players: + paths: + - "build/players/**/*" + logs: + paths: + - "artifacts/**/*" + + dependencies: + - .yamato/project-pack.yml#project_pack_-_{{ project.name }}_{{ platform.name }} +{% endfor -%} +{% endfor -%} +{% endfor -%} +{% endfor -%} + + + + +# Run phase +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} +{% for backend in scripting_backends -%} +desktop_standalone_test_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ editor }}: + name : Standalone Test - NGO {{ project.name }} - [{{ platform.name }}, {{ editor }}, {{ backend }}] + agent: + type: {% if platform.name == "mac" %} {{ platform.type }} {% else %} {{ platform.type }}::GPU {% endif %} + image: {{ platform.image }} + flavor: {{ platform.flavor }} + commands: +# Platform specific UTR setup + - | +{% if platform.name == "win" %} + curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat +{% else %} + curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr && chmod +x utr +{% endif %} + - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + + - unity-downloader-cli -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --fast --wait + +# Run Standalone tests + - | +{% if platform.name == "win" %} + utr.bat --suite=playmode --player-load-path=build/players --artifacts-path=test-results --testproject={{ project.path }} --editor-location=.Editor --playergraphicsapi=Null --fail-on-assert --reruncount=1 --clean-library-on-rerun --timeout=1800 +{% else %} + ./utr --suite=playmode --player-load-path=build/players --artifacts-path=test-results --testproject={{ project.path }} --editor-location=.Editor --playergraphicsapi=Null --fail-on-assert --reruncount=1 --clean-library-on-rerun --timeout=1800 +{% endif %} + + artifacts: + logs: + paths: + - "test-results/**/*" + dependencies: + - .yamato/desktop-standalone-tests.yml#desktop_standalone_build_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ editor }} +{% endfor -%} +{% endfor -%} +{% endfor -%} +{% endfor -%} diff --git a/.yamato/disable-burst-if-requested.py b/.yamato/disable-burst-if-requested.py index fa53669944..edf84d3f26 100644 --- a/.yamato/disable-burst-if-requested.py +++ b/.yamato/disable-burst-if-requested.py @@ -1,3 +1,7 @@ +# This file was used before for mobiles and Webgl but was removed (around end of January 2025). The file itself was left here for now in case we would need to use it. +# This Python script is used to manage Burst AOT (Ahead-Of-Time) compilation settings for Unity builds. +# An example usage would be "- python .yamato/disable-burst-if-requested.py --project-path {{ project.path }} --platform WebGL" + import argparse import json import os diff --git a/.yamato/mobile-build-and-test.yml b/.yamato/mobile-build-and-test.yml deleted file mode 100644 index 3f1fbd80cd..0000000000 --- a/.yamato/mobile-build-and-test.yml +++ /dev/null @@ -1,157 +0,0 @@ -{% metadata_file .yamato/project.metafile %} ---- - -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} -build_{{ project.name }}_tests_{{ editor }}_android: - name: Build {{ project.name }} Tests - {{ editor }} - Android - agent: - type: Unity::VM - image: desktop/android-execution-r19:v0.1.1-860408 - flavor: b1.xlarge - commands: - - pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --upgrade - - curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat - - python .yamato/disable-burst-if-requested.py --project-path testproject --platform Android - - unity-downloader-cli -u {{ editor }} -c editor -c Android -w --fast - - | - set UTR_VERSION=0.12.0 - utr.bat --artifacts_path=artifacts --timeout=1800 --testproject={{ project.name }} --editor-location=.Editor --suite=playmode --platform=android --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --testfilter=Unity.Netcode.RuntimeTests - artifacts: - logs: - paths: - - '*.log' - - '*.xml' - - artifacts/**/* - - testproject/Logs/** - - testproject/Library/*.log - - testproject/*.log - - testproject/Builds/*.log - - build/test-results/** - - artifacts/** - - build/players/** - variables: - CI: true - ENABLE_BURST_COMPILATION: False -{% endfor -%} -{% endif -%} -{% endfor -%} - - -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} -build_{{ project.name }}_tests_{{ editor }}_iOS: - name: Build {{ project.name }} Tests - {{ editor }} - iOS - agent: - type: Unity::VM::osx - image: mobile/ios-macos-11:stable - flavor: b1.large - commands: - - pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --upgrade - - unity-downloader-cli -u {{ editor }} -c editor -c iOS -w --fast - - curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr - - chmod +x ./utr - - export UTR_VERSION=0.12.0 - - ./utr --artifacts_path=artifacts --timeout=1800 --testproject={{ project.name }} --editor-location=.Editor --suite=playmode --platform=iOS --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --testfilter=Unity.Netcode.RuntimeTests - artifacts: - logs: - paths: - - '*.log' - - '*.xml' - - artifacts/**/* - - testproject/Logs/** - - testproject/Library/*.log - - testproject/*.log - - testproject/Builds/*.log - - build/test-results/** - - artifacts/** - - build/players/** -{% endfor -%} -{% endif -%} -{% endfor -%} - - -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} -run_{{ project.name }}_tests_{{ editor }}_iOS: - name: Run {{ project.name }} Tests - {{ editor }} - iOS - agent: - type: Unity::mobile::iPhone - model: SE - image: mobile/ios-macos-11:stable - flavor: b1.medium - # Set a dependency on the build job - dependencies: - - .yamato/mobile-build-and-test.yml#build_{{ project.name }}_tests_{{ editor }}_iOS - commands: - # Download standalone UnityTestRunner - - curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr - # Give UTR execution permissions - - chmod +x ./utr - # Run the test build on the device - - export UTR_VERSION=0.12.0 - - ./utr -artifacts_path=artifacts --testproject={{ project.name }} --editor-location=.Editor --reruncount=2 --suite=playmode --platform=iOS --player-load-path=build/players --testfilter=Unity.Netcode.RuntimeTests - artifacts: - logs: - paths: - - '*.log' - - '*.xml' - - artifacts/**/* - - testproject/Logs/** - - testproject/Library/*.log - - testproject/*.log - - testproject/Builds/*.log - - build/test-results/** - - artifacts/** - - build/players/** -{% endfor -%} -{% endif -%} -{% endfor -%} - - -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} -run_{{ project.name }}_tests_{{ editor }}_android: - name: Run {{ project.name }} Tests - {{ editor }} - Android - agent: - type: Unity::mobile::shield - image: mobile/android-execution-r19:stable - flavor: b1.medium - # Skip repository cloning - skip_checkout: true - # Set a dependency on the build job - dependencies: - - .yamato/mobile-build-and-test.yml#build_{{ project.name }}_tests_{{ editor }}_android - commands: - - curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat - - | - set ANDROID_DEVICE_CONNECTION=%BOKKEN_DEVICE_IP% - start %ANDROID_SDK_ROOT%\platform-tools\adb.exe connect %BOKKEN_DEVICE_IP% - start %ANDROID_SDK_ROOT%\platform-tools\adb.exe devices - set UTR_VERSION=0.12.0 - ./utr --artifacts_path=artifacts --testproject={{ project.name }} --editor-location=.Editor --reruncount=2 --suite=playmode --platform=android --player-connection-ip=%BOKKEN_HOST_IP% --player-load-path=build/players --testfilter=Unity.Netcode.RuntimeTests - # Set uploadable artifact paths - artifacts: - logs: - paths: - - '*.log' - - '*.xml' - - artifacts/**/* - - testproject/Logs/** - - testproject/Library/*.log - - testproject/*.log - - testproject/Builds/*.log - - build/test-results/** - - artifacts/** - - build/players/** -{% endfor -%} -{% endif -%} -{% endfor -%} diff --git a/.yamato/mobile-standalone-test.yml b/.yamato/mobile-standalone-test.yml new file mode 100644 index 0000000000..2ca2444b86 --- /dev/null +++ b/.yamato/mobile-standalone-test.yml @@ -0,0 +1,106 @@ +{% metadata_file .yamato/project.metafile %} +--- + +# Builds a player on mobile standalone platform and executes RuntimeTests (equivalent to PlayMode tests) of the NGO package in the Standalone build. +# Default project (testptoject) in this case is used as a context. +# Builds/Tests are made on each mobile platform (Android and iOS) as in project.metafile declaration +# Builds/Tests are made on each supported editor as in project.metafile declaration + +# For mobile devices it's necessary to split build and run phases +# For iOS we need to use il2cpp. For android we could use both but il2cpp is recommended so for now we will only use il2cpp as scripting backend +# iOS works only with ARM64 and Android is tested with both ARM64 and ARMv7 + +# Builds are made with x64 architecture machines since those are compatible to run on ARM64 devices +{% for project in projects.default -%} +{% for platform in test_platforms.mobile_build -%} +{% for editor in validation_editors.all -%} +build_{{ project.name }}_{{ platform.name }}_{{ editor }}: + name: Build {{ project.name }} - [{{ platform.name }}, {{ editor }}, il2cpp] + agent: + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} + commands: + # Installing tools + - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + + # Installing editor + - unity-downloader-cli -u {{ editor }} -c Editor -c il2cpp {% if platform.base == "mac" %} -c ios {% else %} -c android {% endif %} --fast --wait + + # Platform specific Build +{% if platform.base == "win" %} + - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat + - utr.bat --suite=playmode --platform={{ platform.standalone }} --testproject={{ project.path }} --architecture={{ platform.architecture }} --scripting-backend=il2cpp --editor-location=.Editor --artifacts-path=artifacts --testfilter="Unity.Netcode.RuntimeTests.*" --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800 +{% else %} + - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr + - chmod +x ./utr + - ./utr --suite=playmode --platform={{ platform.standalone }} --testproject={{ project.path }} --architecture={{ platform.architecture }} --scripting-backend=il2cpp --editor-location=.Editor --artifacts-path=artifacts --testfilter="Unity.Netcode.RuntimeTests.*" --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800 +{% endif %} + artifacts: + players: + paths: + - "build/players/**/*" + logs: + paths: + - "artifacts/**/*" + + variables: + CI: true + ENABLE_BURST_COMPILATION: False +{% endfor -%} +{% endfor -%} +{% endfor -%} + + +# Executes RuntimeTests of the NGO package in the Standalone build for mobiles +{% for project in projects.default -%} +{% for platform in test_platforms.mobile_test -%} +{% for editor in validation_editors.all -%} +run_{{ project.name }}_tests_{{ platform.name }}_{{ editor }}: + name: Run {{ project.name }} Tests - [{{ platform.name }}, {{ editor }}, il2cpp] + agent: + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} +{% if platform.model %} + model: {{ platform.model }} +{% endif %} + # Skip repository cloning + skip_checkout: true + commands: + # Installing tools + - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + + # Installing editor. We still need the editor to run tests on standalone build + - unity-downloader-cli -u {{ editor }} -c Editor -c il2cpp {% if platform.base == "mac" %} -c ios {% else %} -c android {% endif %} --fast --wait + +{% if platform.standalone == "Android" %} + # Download standalone UnityTestRunner and ADB setup + - command: curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat + - command: wget http://artifactory-slo.bf.unity3d.com/artifactory/mobile-generic/android/ADBKeys.zip!/adbkey.pub -O %USERPROFILE%/.android/adbkey.pub + - command: wget http://artifactory-slo.bf.unity3d.com/artifactory/mobile-generic/android/ADBKeys.zip!/adbkey -O %USERPROFILE%/.android/adbkey + - command: gsudo NetSh Advfirewall set allprofiles state off + + # Connect to Android device + - command: '"%ANDROID_SDK_ROOT%\platform-tools\adb.exe" connect %BOKKEN_DEVICE_IP%' + + # Run tests + - | + set ANDROID_DEVICE_CONNECTION=%BOKKEN_DEVICE_IP% + utr --suite=playmode --platform={{ platform.standalone }} --artifacts-path=test-results --player-load-path=build/players --testproject={{ project.path }} --editor-location=.Editor --player-connection-ip=%BOKKEN_HOST_IP% --fail-on-assert --reruncount=1 --clean-library-on-rerun --timeout=3600 +{% else %} + # Download standalone UnityTestRunner + - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr && chmod +x utr + + # Run tests + - ./utr --suite=playmode --platform={{ platform.standalone }} --artifacts-path=test-results --player-load-path=build/players --testproject={{ project.path }} --editor-location=.Editor --fail-on-assert --reruncount=1 --clean-library-on-rerun --timeout=3600 +{% endif %} + artifacts: + logs: + paths: + - "test-results/**/*" + dependencies: + - .yamato/mobile-standalone-test.yml#build_{{ project.name }}_{{ platform.name }}_{{ editor }} +{% endfor -%} +{% endfor -%} +{% endfor -%} diff --git a/.yamato/multiprocess-project-tests.yml b/.yamato/multiprocess-project-tests.yml deleted file mode 100644 index df48259914..0000000000 --- a/.yamato/multiprocess-project-tests.yml +++ /dev/null @@ -1,44 +0,0 @@ -{% metadata_file .yamato/project.metafile %} ---- - -{% for project in projects -%} -{% if project.name == "testproject" %} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} -singlenode_multiprocess_test_testproject_{{ editor }}_{{ platform.name }}: - name : Multiprocess Tests - {{ editor }} on {{ platform.name }} - agent: - type: {{ platform.type }} - image: {{ platform.image }} - flavor: {{ platform.flavor}} - commands: - - pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --upgrade -{% if editor != "trunk" %} - - unity-downloader-cli -u {{ editor }} -c editor -w --fast - - curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr{% if platform.name == "win" %}.bat --output utr.bat{% endif %}{% if platform.name != "win" %} --output utr && chmod +x ./utr{% endif %} - - {{ platform.editorpath }} -projectpath testproject -batchmode -quit -nographics -logfile BuildMultiprocessTestPlayer.log -executeMethod Unity.Netcode.MultiprocessRuntimeTests.BuildMultiprocessTestPlayer.BuildRelease -{% if platform.name == "mac" %} - sudo codesign --force --deep --sign - ./testproject/Builds/MultiprocessTests/MultiprocessTestPlayer.app{% endif %} - - {{ platform.utr }} --suite=playmode --testproject=testproject --editor-location=.Editor --testfilter=Unity.Netcode.MultiprocessRuntimeTests --extra-editor-arg=-bypassIgnoreUTR -{% endif %} - after: - - echo "After block" -{% if editor != "trunk" %} -{% if platform.name == "win" %} - copy %USERPROFILE%\.multiprocess\logfile* .{% endif %} -{% if platform.name != "win" %} - cp $HOME/.multiprocess/logfile* .{% endif %} -{% endif %} - artifacts: - logs: - paths: - - "upm-ci~/test-results/**/*" - - BuildMultiprocessTestPlayer.log - - "logfile*" - - "*.log" - - "*.txt" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} -{% endfor -%} -{% endfor -%} -{% endif -%} -{% endfor -%} diff --git a/.yamato/package-pack.yml b/.yamato/package-pack.yml new file mode 100644 index 0000000000..cc85801042 --- /dev/null +++ b/.yamato/package-pack.yml @@ -0,0 +1,24 @@ +{% metadata_file .yamato/project.metafile %} +--- + +# Packs Netcode for GameObjects together with performing initial checks. +# For this job no specific platform support and no running Unity instance is required so small agent (as per project.metafile definition) could be used to save resources and speed up the process. +# If everyone adheres to this rule it can create bottlenecks (since everyone would use this machine) so we decided to pack with the same platform as the given job runs on +{% for platform in test_platforms.desktop -%} +package_pack_-_ngo_{{ platform.name }}: + name: Package Pack (and x-ray) - NGO [{{ platform.name }}] + agent: + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} + timeout: 0.25 + commands: + - npm install -g upm-ci-utils@stable --registry https://artifactory.prd.it.unity3d.com/artifactory/api/npm/upm-npm + - upm-ci package pack --package-path com.unity.netcode.gameobjects + - upm-pvp xray --packages "upm-ci~/packages/*.tgz" --results upm-ci~/xray + - upm-pvp require "supported rme com.unity.netcode.gameobjects/pvpExceptions.json" --allow-missing --results upm-ci~/xray --exemptions upm-ci~/xray/new-exemptions.json + artifacts: + packages: + paths: + - "upm-ci~/**" +{% endfor -%} \ No newline at end of file diff --git a/.yamato/package-tests.yml b/.yamato/package-tests.yml index 1779a7008e..0b3eb31109 100644 --- a/.yamato/package-tests.yml +++ b/.yamato/package-tests.yml @@ -1,57 +1,26 @@ {% metadata_file .yamato/project.metafile %} --- -# Go through all platforms, editors and packages in the metadata -# to generate its independent package tests and validation tests. -# The idea is to only run validation once per package and not mix. -# the results with package tests -{% for project in projects -%} -{% for package in project.packages -%} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} -test_{{project.name}}_{{ package.name }}_{{ editor }}_{{ platform.name }}: - name : {{ project.name }} - {{ package.name }} package tests - {{ editor }} on {{ platform.name }} +# Executes PlayMode and EditMode tests of the NGO package in the Editor context +# Those tests run in the editor so we don't need to consider different scripting backends or architectures +# Tests are executed for all supported editors on each desktop platform as in project.metafile declaration +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} +package_test_-_ngo_{{ editor }}_{{ platform.name }}: + name : Package Test - NGO [{{ platform.name }}, {{ editor }}] agent: type: {{ platform.type }} image: {{ platform.image }} - flavor: {{ platform.flavor}} + flavor: {{ platform.flavor }} commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - {% if platform.name == "ubuntu" %}DISPLAY=:0 {% endif %}upm-ci project test -u {{ editor }} --type package-tests --project-path {{ project.name }} --package-filter {{ package.name }} + - npm install -g upm-ci-utils@stable --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm + - unity-downloader-cli -u {{ editor }} -c Editor --fast --wait + - {% if platform.name == "ubuntu" %}DISPLAY=:0 {% endif %}upm-ci package test -u {{ editor }} --package-path com.unity.netcode.gameobjects --type package-tests --extra-utr-arg="--extra-editor-arg=-testCategory --extra-editor-arg=!Performance --reruncount=1 --clean-library-on-rerun" artifacts: logs: paths: - "upm-ci~/test-results/**/*" dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} + - .yamato/package-pack.yml#package_pack_-_ngo_{{ platform.name }} {% endfor -%} -{% endfor -%} -{% endfor -%} -{% endfor -%} - -# Test minimal project with different versions of dependencies -{% for project in projects -%} -{% if project.name == "minimalproject" -%} -{% for dependency in dependencies -%} -{% for editor in dependency.test_editors -%} -{% for platform in test_platforms -%} -test_compatibility_{{project.name}}_{{ project.packages.first.name }}_with_{{ dependency.name }}@{{ dependency.version }}_{{ editor }}_{{ platform.name }}: - name : {{ project.name }} - {{ project.packages.first.name }} with {{ dependency.name }}@{{ dependency.version }} - {{ editor }} on {{ platform.name }} - agent: - type: {{ platform.type }} - image: {{ platform.image }} - flavor: {{ platform.flavor}} - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - {% if platform.name == "ubuntu" %}DISPLAY=:0 {% endif %}upm-ci project test -u {{ editor }} --type project-tests --project-path {{ project.name }} --package-filter {{ project.packages.first.name }} - artifacts: - logs: - paths: - - "upm-ci~/test-results/**/*" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }}_{{ dependency.name }}@{{ dependency.version }} -{% endfor -%} -{% endfor -%} -{% endfor -%} -{% endif -%} {% endfor -%} \ No newline at end of file diff --git a/.yamato/performance-tests.yml b/.yamato/performance-tests.yml new file mode 100644 index 0000000000..abdbef444e --- /dev/null +++ b/.yamato/performance-tests.yml @@ -0,0 +1,55 @@ +{% metadata_file .yamato/project.metafile %} +--- + +# Performance tests for the `com.unity.netcode.gameobjects` package. No performance data will be reported. +# Performance tests are executed within editor on desktop platforms in context of default project (testproject) +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} +{% for project in projects.default -%} +performance_editor_tests_-_NGO_{{ platform.name }}_{{ editor }}_no_data_reporting: + name : Performance editor Tests - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}] (No Data Reporting) + agent: + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} + commands: + # Installing tools +{% if platform.name == "ubuntu" %} + - sudo apt-get update -q + - sudo apt install -qy imagemagick +{% endif %} + - npm install -g upm-ci-utils@stable --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm + - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + + # Platform specific UTR setup +{% if platform.name == "win" %} + - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat +{% else %} + - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr && chmod +x utr +{% endif %} + + # Installing editor + - unity-downloader-cli -u {{ editor }} -c Editor --fast --wait + + # Build Player + - | +{% if platform.name == "win" %} + utr.bat --suite=editor --suite=playmode --testproject={{ project.path }} --editor-location=.Editor --timeout=3600 --artifacts-path=artifacts --extra-editor-arg=-assemblyNames --extra-editor-arg=Unity.NetCode.* --extra-editor-arg=-testCategory --extra-editor-arg=Performance --extra-editor-arg=-enablePackageManagerTraces --reruncount=1 --clean-library-on-rerun --dontreportperformancedata +{% else %} + ./utr --suite=editor --suite=playmode --testproject={{ project.path }} --editor-location=.Editor --timeout=3600 --artifacts-path=artifacts --extra-editor-arg=-assemblyNames --extra-editor-arg=Unity.NetCode.* --extra-editor-arg=-testCategory --extra-editor-arg=Performance --extra-editor-arg=-enablePackageManagerTraces --reruncount=1 --clean-library-on-rerun --dontreportperformancedata +{% endif %} + + artifacts: + logs: + paths: + - '*.log' + - '*.xml' + - artifacts/**/* + - {{ project.name }}/Logs/** + - {{ project.name }}/Library/*.log + - {{ project.name }}/*.log + - {{ project.name }}/Builds/*.log + - build/test-results/** +{% endfor -%} +{% endfor -%} +{% endfor -%} \ No newline at end of file diff --git a/.yamato/project-pack.yml b/.yamato/project-pack.yml index 30ded64633..0963d99271 100644 --- a/.yamato/project-pack.yml +++ b/.yamato/project-pack.yml @@ -1,50 +1,23 @@ {% metadata_file .yamato/project.metafile %} --- -{% for project in projects -%} -pack_{{ project.name }}: - name: Pack {{ project.name }} - agent: - type: Unity::VM - image: package-ci/ubuntu-22.04:v4 - flavor: b1.small - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci project pack --project-path {{ project.path }} - - upm-pvp xray --packages "upm-ci~/packages/*.tgz" --results upm-ci~/xray - - upm-pvp require "$XRAY_PROFILE" --allow-missing --results upm-ci~/xray --exemptions upm-ci~/xray/new-exemptions.json || true - - upm-pvp require "$XRAY_PROFILE ./pvp-exemptions.json" --results upm-ci~/xray - artifacts: - packages: - paths: - - "upm-ci~/**" -{% endfor -%} -# Pack minimal project with different versions of dependencies -{% for project in projects -%} -{% if project.name == "minimalproject" -%} -{% for dependency in dependencies -%} -pack_{{ project.name }}_{{ dependency.name }}@{{ dependency.version }}: - name: Pack {{ project.name }} with {{ dependency.name }}@{{ dependency.version }} +# Jobs that iterate through and packs all NGO projects listed (to use in different jobs) +# For this job no specific platform support and no running Unity instance is required so small agent (as per project.metafile definition) coul be used to save resources and speed up the process +# If everyone adheres to this rule it can create bottlenecks (since everyone would use this machine) so we decided to pack project with the same platform as the given job runs on +{% for project in projects.all -%} +{% for platform in test_platforms.desktop -%} +project_pack_-_{{ project.name }}_{{ platform.name }}: + name: Project Pack - {{ project.name }} [{{ platform.name }}] agent: - type: Unity::VM - image: package-ci/ubuntu-22.04:v4 - flavor: b1.small + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - curl -L https://artifactory.prd.it.unity3d.com/artifactory/api/gpg/key/public | sudo apt-key add - - - sudo sh -c "echo 'deb https://artifactory.prd.it.unity3d.com/artifactory/unity-apt-local bionic main' > /etc/apt/sources.list.d/unity.list" - - sudo apt update - - sudo apt install -y unity-config - - unity-config settings project-path {{ project.path }} - - unity-config project add dependency {{ dependency.name }}@{{ dependency.version }} + - npm install -g upm-ci-utils@stable --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - upm-ci project pack --project-path {{ project.path }} - - upm-pvp xray --packages "upm-ci~/packages/*.tgz" --results upm-ci~/xray - - upm-pvp require "$XRAY_PROFILE" --allow-missing --results upm-ci~/xray --exemptions upm-ci~/xray/new-exemptions.json || true - - upm-pvp require "$XRAY_PROFILE ./pvp-exemptions.json" --results upm-ci~/xray artifacts: packages: paths: - - "upm-ci~/**" + - "upm-ci~/packages/**/*" {% endfor -%} -{% endif -%} {% endfor -%} \ No newline at end of file diff --git a/.yamato/project-promotion.yml b/.yamato/project-promotion.yml deleted file mode 100644 index 8858dbd382..0000000000 --- a/.yamato/project-promotion.yml +++ /dev/null @@ -1,74 +0,0 @@ -{% metadata_file .yamato/project.metafile %} ---- -{% for project in projects -%} -{% if project.publish == "true" -%} -{% for package in project.packages -%} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} -promotion_validate_{{ project.name }}_{{ package.name }}_{{ platform.name }}_{{ editor }}: - name : Validate (Vetting Tests) Project {{ project.name }} - Package {{ package.name }} - {{ editor }} on {{ platform.name }} - agent: - type: {{ platform.type }} - image: {{ platform.image }} - flavor: {{ platform.flavor}} - variables: - UPMCI_PROMOTION: 1 - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - {% if platform.name == "ubuntu" %}DISPLAY=:0 {% endif %}upm-ci project test -u {{ editor }} --project-path {{ project.path }} --type vetting-tests --project-path {{ project.path }} --package-filter {{ package.name }} - artifacts: - logs: - paths: - - "upm-ci~/test-results/**/*" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} -{% endfor -%} -{% endfor -%} - -promote_{{ project.name }}_{{ package.name }}: - name: Promote Project {{ project.name }} - Package {{ package.name }} to Production - agent: - type: Unity::VM - image: package-ci/win10:v4 - flavor: b1.small - variables: - UPMCI_PROMOTION: 1 - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci package promote --package-path {{ package.path }} - artifacts: - artifacts: - paths: - - "upm-ci~/packages/*.tgz" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} - - .yamato/project-promotion.yml#promotion_validate_{{ project.name }}_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }} - - .yamato/project-promotion.yml#promote_{{ project.name }}_{{ package.name }}_dry_run - -promote_{{ project.name }}_{{ package.name }}_dry_run: - name: Promote Project {{ project.name }} - Package {{ package.name }} to Production (dry-run) - agent: - type: Unity::VM - image: package-ci/win10:v4 - flavor: b1.small - variables: - UPMCI_PROMOTION: 1 - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci package promote --package-path {{ package.path }} --dry-run - artifacts: - artifacts: - paths: - - "upm-ci~/packages/*.tgz" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} - - .yamato/project-publish.yml#publish_{{ project.name }}_{{ package.name }} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} - - .yamato/project-promotion.yml#promotion_validate_{{ project.name }}_{{ package.name }}_{{ platform.name }}_{{ editor }} -{% endfor -%} -{% endfor -%} - -{% endfor -%} -{% endif -%} -{% endfor -%} diff --git a/.yamato/project-publish.yml b/.yamato/project-publish.yml deleted file mode 100644 index 9f114a9ae6..0000000000 --- a/.yamato/project-publish.yml +++ /dev/null @@ -1,67 +0,0 @@ -{% metadata_file .yamato/project.metafile %} ---- -{% for project in projects -%} -{% if project.publish == "true" -%} -{% for package in project.packages -%} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} -validate_{{ package.name }}_{{ platform.name }}_{{ editor }}: - name : Validate (Isolation Tests) Package {{ package.name }} - {{ editor }} on {{ platform.name }} - agent: - type: {{ platform.type }} - image: {{ platform.image }} - flavor: {{ platform.flavor}} - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - {% if platform.name == "ubuntu" %}DISPLAY=:0 {% endif %}upm-ci project test -u {{ editor }} --type isolation-tests --project-path {{ project.path }} --package-filter {{ package.name }} --platform editmode - artifacts: - logs: - paths: - - "upm-ci~/test-results/**/*" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} -{% endfor -%} -{% endfor -%} - -publish_{{ project.name }}_{{ package.name }}: - name: Publish Project {{project.name }} - Package {{ package.name }} to Internal Registry - agent: - type: Unity::VM - image: package-ci/win10:v4 - flavor: b1.large - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci package publish --package-path {{ package.path }} - artifacts: - artifacts: - paths: - - "upm-ci~/packages/*.tgz" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} - - .yamato/project-publish.yml#validate_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }} - - .yamato/project-publish.yml#publish_{{ project.name }}_{{ package.name }}_dry_run - -publish_{{ project.name }}_{{ package.name }}_dry_run: - name: Publish Project {{project.name }} - Package {{ package.name }} to Internal Registry (dry-run) - agent: - type: Unity::VM - image: package-ci/win10:v4 - flavor: b1.large - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci package publish --package-path {{ package.path }} --dry-run - artifacts: - artifacts: - paths: - - "upm-ci~/packages/*.tgz" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} - - .yamato/project-publish.yml#validate_{{ package.name }}_{{ platform.name }}_{{ editor }} -{% endfor -%} -{% endfor -%} - -{% endfor -%} -{% endif -%} -{% endfor -%} diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 64cf1ecb3e..b0a74ad6a6 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -1,20 +1,30 @@ {% metadata_file .yamato/project.metafile %} --- -standards_{{ projects.first.name }}: - name: Standards Check {{ projects.first.name }} + +# Project standards are being checked for package (in project context). +# It should be enough to perform the test on default project (testproject) but to make sure that all projects conform to our standards job for each of them will be available. +# Tests are executed for default editor (trunk) on default platform (ubuntu) as in project.metafile declaration since results would be the same across editors and platforms. +{% for project in projects.all -%} +{% for platform in test_platforms.default -%} +{% for editor in validation_editors.default -%} +standards_{{ platform.name }}_{{ project.name }}_{{ editor }}: + name: Standards Check - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}] agent: - type: Unity::VM - image: desktop/logging-testing-linux:v0.1.2-926285 - flavor: b1.large + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} commands: + # .NET environment setup - dotnet --version - dotnet format --version - - sudo add-apt-repository -y ppa:deadsnakes/ppa - - sudo apt update - - sudo apt install -y python3.9 - - pip3 config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip3 install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip3 install unity-downloader-cli --upgrade - - unity-downloader-cli -u {{ projects.first.test_editors.first }} -c editor --wait --fast - - .Editor/Unity -batchmode -nographics -logFile - -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -projectPath {{ projects.first.path }} -quit - - dotnet run --project dotnet-tools/netcode.standards -- --project={{ projects.first.path }} --check + + # Unity setup + - pip install unity-downloader-cli --upgrade --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + - unity-downloader-cli -u {{ editor }} -c editor --wait --fast + - .Editor/Unity -batchmode -nographics -logFile - -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -projectPath {{ project.path }} -quit + + # Standards check + - dotnet run --project=dotnet-tools/netcode.standards -- --project={{ project.path }} --check +{% endfor -%} +{% endfor -%} +{% endfor -%} \ No newline at end of file diff --git a/.yamato/project-tests.yml b/.yamato/project-tests.yml index 0b03a2d7bb..ec91e04540 100644 --- a/.yamato/project-tests.yml +++ b/.yamato/project-tests.yml @@ -1,33 +1,31 @@ {% metadata_file .yamato/project.metafile %} --- -# For every platform and editor version, run its project tests without -# running package tests too since they are handled on their respective -# jobs -{% for project in projects -%} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} -test_{{ project.name }}_{{ editor }}_{{ platform.name }}: - name : {{ project.name }} project tests - {{ editor }} on {{ platform.name }} +# Executes PlayMode and EditMode tests of the given project (ones that have tests) in the Editor context +# Those tests don't include NGO package tests since they are handled on their respective jobs. +# Those tests run in the editor so we don't need to consider different scripting backends or architectures +# Tests are executed for all supported editors on each desktop platform as in project.metafile declaration +{% for project in projects.all -%} +{% if project.has_tests == "true" -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} +test_{{ project.name }}_{{ platform.name }}_{{ editor }}: + name : Project Test - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}] agent: type: {{ platform.type }} image: {{ platform.image }} - flavor: {{ platform.flavor}} + flavor: {{ platform.flavor }} commands: - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --upgrade - - unity-downloader-cli -u {{ editor }} -c editor -w --fast - - {% if platform.name == "ubuntu" %}DISPLAY=:0 && {% endif %}upm-ci project test -u {{ editor }} --project-path {{ project.path }} --type project-tests + - unity-downloader-cli -u {{ editor }} -c Editor --fast --wait + - {% if platform.name == "ubuntu" %}DISPLAY=:0 && {% endif %}upm-ci project test -u {{ editor }} --project-path {{ project.path }} --type project-tests --extra-utr-arg="--extra-editor-arg=-testCategory --extra-editor-arg=!Performance --reruncount=1 --clean-library-on-rerun" artifacts: logs: paths: - "upm-ci~/test-results/**/*" dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} - -{% endfor -%} + - .yamato/project-pack.yml#project_pack_-_{{ project.name }}_{{ platform.name }} {% endfor -%} {% endfor -%} - +{% endif -%} +{% endfor -%} \ No newline at end of file diff --git a/.yamato/project-updated-dependencies-test.yml b/.yamato/project-updated-dependencies-test.yml index bd39d49db0..513087f3c4 100644 --- a/.yamato/project-updated-dependencies-test.yml +++ b/.yamato/project-updated-dependencies-test.yml @@ -1,59 +1,27 @@ {% metadata_file .yamato/project.metafile %} --- -# Go through all platforms, editors and packages in the metadata -# to generate its independent package tests and validation tests. -# The idea is to only run validation once per package and not mix. -# the results with package tests -{% for package in projects.first.packages -%} -{% for editor in projects.first.test_editors -%} -{% for platform in test_platforms -%} -dependency_{{ projects.first.name }}_{{ package.name }}_{{ platform.name }}_{{ editor }}: - name : Dependency Test of Project {{ projects.first.name }} - Package {{ package.name }} - {{ editor }} on {{ platform.name }} + +# Executes package tests for each package referenced in the project using the newest compatible version of the package dependencies. +# This is just to ensure that no critical change is made. It will be run on a default editor and default platform (it can be discussed if we should run it per all editors and platforms) +{% for project in projects.default -%} +{% for platform in test_platforms.default -%} +{% for editor in validation_editors.default -%} +updated-dependencies_{{ project.name }}_NGO_{{ platform.name }}_{{ editor }}: + name : Updated Dependencies Test - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}] agent: type: {{ platform.type }} image: {{ platform.image }} - flavor: {{ platform.flavor}} + flavor: {{ platform.flavor }} commands: - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci project test -u {{ editor }} --project-path {{ projects.first.path }} --type updated-dependencies-tests --package-filter {{ package.name }} + - upm-ci project test -u {{ editor }} --project-path {{ project.path }} --type updated-dependencies-tests --package-filter com.unity.netcode.gameobjects artifacts: logs: paths: - "upm-ci~/test-results/**/*" - triggers: - recurring: - - branch: master - frequency: 20 * * ? dependencies: - - path: .yamato/project-pack.yml#pack_{{ projects.first.name }} + - path: .yamato/project-pack.yml#project_pack_-_{{ project.name }}_{{ platform.name }} rerun: always - -{% endfor -%} -{% endfor -%} {% endfor -%} - -dependency_test_trigger_{{ projects.first.name }}: - name: Project {{ projects.first.name }} Dependency Tests Trigger - agent: - type: Unity::VM - image: package-ci/ubuntu-22.04:v4 - flavor: b1.small - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - upm-ci project izon -d --project-path {{ projects.first.path }} - artifacts: - logs: - paths: - - "upm-ci~/test-results/**/*" - triggers: - recurring: - - branch: master - frequency: 22 * * ? - dependencies: -{% for package in projects.first.packages -%} -{% for editor in projects.first.test_editors -%} -{% for platform in test_platforms -%} - - .yamato/project-updated-dependencies-test.yml#dependency_{{ projects.first.name }}_{{ package.name }}_{{ platform.name }}_{{ editor }} {% endfor -%} {% endfor -%} -{% endfor -%} \ No newline at end of file diff --git a/.yamato/project.metafile b/.yamato/project.metafile index c0ec992fc0..43c1202c90 100644 --- a/.yamato/project.metafile +++ b/.yamato/project.metafile @@ -1,83 +1,159 @@ -validation_editor: 2021.3 -mobile_validation_editor: 2021.3 +# The small agent was created to handle jobs that don't involve running Unity (for example pack job). +# It uses ubuntu since Linux VMs are faster and cheaper to provision than Mac or Windows Virtual Machines (VMs). +# The b1.small flavour is nearly always sufficient for jobs that don’t involve running Unity Editor. +small_agent_platform: + - name: ubuntu + type: Unity::VM + image: package-ci/ubuntu-22.04:v4 + flavor: b1.small -# Platforms that will be tested. The first entry in this array will also -# be used for validation +# Platforms that project will/can be tested on. test_platforms: - - name: win - type: Unity::VM - image: package-ci/win10:v4 - flavor: b1.large - pathsep: \ - standalone: StandaloneWindows64 - editorpath: .Editor\Unity.exe - utr: .\utr.bat - - name: mac - type: Unity::VM::osx - image: package-ci/macos-13:v4 - pathsep: / - standalone: StandaloneOSX - flavor: b1.large - editorpath: .Editor/Unity.app/Contents/MacOS/Unity - utr: ./utr - - name: ubuntu - type: Unity::VM - image: package-ci/ubuntu-22.04:v4 - flavor: b1.large - pathsep: / - standalone: StandaloneLinux64 - editorpath: .Editor/Unity - utr: ./utr - -# Projects within the repository that will be tested. Name will be used -# for job ids, so it should not contain spaces/non-supported characters -projects: - - name: testproject - path: testproject - validate: true - publish: true - has_tests: true - # Packages within a project that will be tested - packages: - - name: com.unity.netcode.gameobjects - path: com.unity.netcode.gameobjects - test_editors: - - 2021.3 - - 2022.2 - - 2023.1 - - trunk - - name: minimalproject - path: minimalproject - validate: false - publish: false - has_tests: false - packages: - - name: com.unity.netcode.gameobjects - path: com.unity.netcode.gameobjects - test_editors: - - 2021.3 - - name: testproject-tools-integration - path: testproject-tools-integration - validate: false - publish: false - has_tests: true - test_editors: - - 2021.3 - - 2022.2 - - trunk - -# Package dependencies -dependencies: - - name: com.unity.transport - version: 2.0.0-pre.2 - test_editors: - - 2022.2 - - trunk - -# Scripting backends used by Standalone Playmode Tests + # Default platform is used for all basic jobs. Ubuntu was chosen since it's fastest and most available + default: + - name: ubuntu + type: Unity::VM + image: package-ci/ubuntu-22.04:v4 + flavor: b1.large + standalone: StandaloneLinux64 + desktop: + - name: ubuntu + type: Unity::VM + image: package-ci/ubuntu-22.04:v4 + flavor: b1.large + standalone: StandaloneLinux64 + model: rtx2080 + - name: win + type: Unity::VM + image: package-ci/win10:v4 + flavor: b1.large + standalone: StandaloneWindows64 + model: rtx2080 + - name: mac + type: Unity::VM::osx + image: package-ci/macos-13:v4 + flavor: m1.mac + standalone: StandaloneOSX + # For mobile devices there is a split between the build and run phase so there is a need of splitting specification for both + mobile_build: + - name: android + type: Unity::VM + image: package-ci/win10:v4 + flavor: b1.large + standalone: Android + base: win + architecture: armv7 + # iOS modern builds are ARM64-only, thus no testing with armv7 (as in android case) + - name: ios-arm64 + type: Unity::VM::osx + image: package-ci/macos-13:v4 + flavor: m1.mac + standalone: IOS + base: mac + architecture: arm64 + mobile_test: + - name: android + type: Unity::mobile::shield + image: package-ci/win10:v4 + flavor: b1.large + standalone: Android + base: win + architecture: armv7 + - name: ios-arm64 + type: Unity::mobile::iPhone + image: package-ci/macos-13-arm64:v4 + flavor: m1.mac + model: SE + standalone: IOS + base: mac + architecture: arm64 + console_build: + - name: ps4 + type: Unity::VM + image: package-ci/win10-ps4:v4 + flavor: b1.large + standalone: PS4 + - name: ps5 + type: Unity::VM + image: package-ci/win10-ps5:v4 + flavor: b1.large + standalone: PS5 + - name: switch + type: Unity::VM + image: package-ci/win10-switch:v4 + flavor: b1.large + standalone: Switch + - name: GameCoreXboxOne + type: Unity::VM + image: package-ci/win10-xbox:v4 + flavor: b1.large + standalone: GameCoreXboxOne + - name: GameCoreScarlett + type: Unity::VM + image: package-ci/win10-xbox:v4 + flavor: b1.large + standalone: GameCoreScarlett + console_test: + - name: ps4 + type: Unity::console::ps4 + image: package-ci/win10-ps4:v4 + flavor: b1.large + standalone: PS4 + - name: ps5 + type: Unity::console::ps5 + image: package-ci/win10-ps5:v4 + flavor: b1.large + standalone: PS5 + - name: switch + type: Unity::console::switch + image: package-ci/win10-switch:v4 + flavor: b1.large + standalone: Switch + base: win + - name: GameCoreXboxOne + type: Unity::console::xbox + image: package-ci/win10-xbox:v4 + flavor: b1.large + standalone: GameCoreXboxOne + - name: GameCoreScarlett + type: Unity::console::scarlett + image: package-ci/win10-xbox:v4 + flavor: b1.large + standalone: GameCoreScarlett + + +# Editors to be used for testing. +# Since NGOv2 official support started from U6 it means that only those editors should be used for testing +validation_editors: + default: + - trunk + all: + - 6000.0 + - 6000.1 + - trunk + + +# Scripting backends used by Standalone RunTimeTests scripting_backends: - mono - il2cpp -# Images with build-tools installed required for Standalone Tests - IL2CPP -win_il2cpp_test_image: dots-player/windows10:latest + +# Projects within the repository that will be tested. Name will be used +# for job ids, so it should not contain spaces/non-supported characters +# The default project will also be used for validation, code coverage etc. +projects: + default: + - name: testproject + path: testproject + has_tests: true + all: + - name: testproject + path: testproject + has_tests: true + - name: minimalproject + path: minimalproject + has_tests: false + - name: testproject-tools-integration + path: testproject-tools-integration + has_tests: true \ No newline at end of file diff --git a/.yamato/standalone-project-tests.yml b/.yamato/standalone-project-tests.yml deleted file mode 100644 index 578d52be03..0000000000 --- a/.yamato/standalone-project-tests.yml +++ /dev/null @@ -1,42 +0,0 @@ -{% metadata_file .yamato/project.metafile %} ---- - -{% for project in projects -%} -{% if project.has_tests == "true" -%} -{% for editor in project.test_editors -%} -{% for platform in test_platforms -%} -{% for backend in scripting_backends -%} -standalone_tests_{{ project.name }}_{{ backend }}_{{ editor }}_{{ platform.name }}: - name : Standalone Tests - {{ project.name }} - [{{ backend }}, {{ platform.name }}, {{ editor }}] - agent: - type: {{ platform.type }}{% if platform.name == "ubuntu" %}::GPU{% endif %} -{% if platform.name == "ubuntu" %} model: rtx2080{% endif %} - image: {% if platform.name == 'win' and backend == 'il2cpp' %}{{ win_il2cpp_test_image }} {% else %} {{ platform.image }} {% endif %} - flavor: {{ platform.flavor}} - commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm - - pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --upgrade - - curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr{% if platform.name == "win" %}.bat{% endif %} --output utr{% if platform.name == "win" %}.bat{% endif %} -{% if platform.name != "win" %} - - chmod +x ./utr -{% endif %} - - unity-downloader-cli -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp{% endif %} --fast --wait - - {% if platform.name != "win" %}./{% endif %}utr --suite=playmode --platform={{ platform.standalone }} --editor-location=.Editor --testproject=testproject --player-save-path=build/players --artifacts_path=build/logs --scripting-backend={{ backend }} --build-only --testfilter=Unity.Netcode.RuntimeTests --extra-editor-arg=-batchmode --extra-editor-arg=-nographics - - | - {% if platform.name == "win" %}set{% endif %}{% if platform.name != "win" %}export{% endif %} UTR_VERSION=0.12.0 - {% if platform.name != "win" %}./{% endif %}utr --suite=playmode --platform={{ platform.standalone }} --player-load-path=build/players --artifacts_path=build/test-results --scripting-backend={{ backend }} --testfilter=Unity.Netcode.RuntimeTests --playergraphicsapi=Null - artifacts: - logs: - paths: - - "upm-ci~/test-results/**/*" - - "build/test-results/**" - dependencies: - - .yamato/project-pack.yml#pack_{{ project.name }} - -{% endfor -%} -{% endfor -%} -{% endfor -%} -{% endif -%} -{% endfor -%} \ No newline at end of file diff --git a/.yamato/webgl-build.yml b/.yamato/webgl-build.yml index acca422b8f..15db4b16ec 100644 --- a/.yamato/webgl-build.yml +++ b/.yamato/webgl-build.yml @@ -1,41 +1,53 @@ {% metadata_file .yamato/project.metafile %} --- -{% for project in projects -%} -{% if project.name == "testproject" -%} -{% for editor in project.test_editors -%} -build_{{ project.name }}_tests_{{ editor }}_webgl: - name: Build {{ project.name }} Tests - {{ editor }} - WebGL +# Builds a player on WebGl standalone platform without executing any tests. +# This setup performs build-only validation since WebGL runs in browser and for tests to be executed we would need to +# consider having a web server, browser automation and overall complex test setup. +# Default project (testptoject) in this case is used as a context. +# WebGL requires Il2cpp scripting backend so mono is not considered +# ARM64 architectures are not considered since Windows_arm64 is recommended to use only after builds and when it comes to macOS_arm64 there is problem with OpenCL not being available +# Builds are made on each desktop platform as in project.metafile declaration +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for editor in validation_editors.all -%} +webgl_build_{{ project.name }}_{{ platform }}_{{ editor }}: + name: WebGl Build - {{ project.name }} [{{ platform.name }}, {{ editor }}, il2cpp] agent: - type: Unity::VM - image: dots-ci/windows10:v1.493-auto - flavor: b1.xlarge + type: {% if platform.name == "mac" %} {{ platform.type }} {% else %} {{ platform.type }}::GPU {% endif %} + image: {{ platform.image }} + flavor: {{ platform.flavor }} commands: - - pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + # Installing tools - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - - pip install unity-downloader-cli --upgrade - - curl -s https://artifactory-slo.bf.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat - - python .yamato/disable-burst-if-requested.py --project-path testproject --platform WebGL - - unity-downloader-cli -u {{ editor }} -c editor -c webgl -c il2cpp -w --fast + + # Platform specific UTR setup - | - set UTR_VERSION=0.12.0 - utr.bat --artifacts_path=artifacts --timeout=1800 --testproject={{ project.name }} --editor-location=.Editor --suite=playmode --platform=WebGL --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --scripting-backend=il2cpp --extra-editor-arg="-cloudEnvironment staging" +{% if platform.name == "win" %} + curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat +{% else %} + curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr && chmod +x utr +{% endif %} + + # Installing editor + - unity-downloader-cli -u {{ editor }} -c Editor -c webgl -c il2cpp -w --fast + + # Build Player + - | +{% if platform.name == "win" %} + utr.bat --suite=playmode --platform=WebGL --scripting-backend=il2cpp --testproject={{ project.path }} --editor-location=.Editor --artifacts_path=artifacts --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg="-cloudEnvironment staging" --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800 +{% else %} + ./utr --suite=playmode --platform=WebGL --scripting-backend=il2cpp --testproject={{ project.path }} --editor-location=.Editor --artifacts-path=artifacts --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg="-cloudEnvironment staging" --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800 +{% endif %} + artifacts: logs: paths: - - '*.log' - - '*.xml' - - artifacts/**/* - - testproject/Logs/** - - testproject/Library/*.log - - testproject/*.log - - testproject/Builds/*.log - - build/test-results/** - - artifacts/** - - build/players/** + - "artifacts/**/*" + - "build/players/**/*" variables: CI: true ENABLE_BURST_COMPILATION: False {% endfor -%} -{% endif -%} -{% endfor -%} \ No newline at end of file +{% endfor -%} +{% endfor -%} diff --git a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkTransformAnticipationTests.cs b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkTransformAnticipationTests.cs index d554cfc0f2..2203411617 100644 --- a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkTransformAnticipationTests.cs +++ b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkTransformAnticipationTests.cs @@ -5,6 +5,7 @@ using Unity.Netcode.Components; using Unity.Netcode.TestHelpers.Runtime; using UnityEngine; +using UnityEngine.TestTools; using Object = UnityEngine.Object; namespace Unity.Netcode.RuntimeTests @@ -114,6 +115,8 @@ public AnticipatedNetworkTransform GetOtherClientComponent() } [Test] + // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on Android + [UnityPlatform(exclude = new[] { RuntimePlatform.Android })] public void WhenAnticipating_ValueChangesImmediately() { var testComponent = GetTestComponent(); diff --git a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs index 2029fa1e05..d017d04c53 100644 --- a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs +++ b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs @@ -2179,6 +2179,7 @@ public string ArrayStr(NativeArray arr) where T : unmanaged } [Test] + [UnityPlatform(exclude = new[] { RuntimePlatform.Android, RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS [Repeat(5)] public void WhenSerializingAndDeserializingVeryLargeValueTypeNativeArrayNetworkVariables_ValuesAreSerializedCorrectly( @@ -2632,6 +2633,7 @@ public string DictionaryStr(Dictionary list) } [Test] + [UnityPlatform(exclude = new[] { RuntimePlatform.Android, RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS [Repeat(5)] public void WhenSerializingAndDeserializingVeryLargeListNetworkVariables_ValuesAreSerializedCorrectly( @@ -2818,6 +2820,7 @@ public void WhenSerializingAndDeserializingVeryLargeListNetworkVariables_ValuesA } [Test] + [UnityPlatform(exclude = new[] { RuntimePlatform.Android, RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS [Repeat(5)] public void WhenSerializingAndDeserializingVeryLargeHashSetNetworkVariables_ValuesAreSerializedCorrectly( @@ -2973,6 +2976,7 @@ public void WhenSerializingAndDeserializingVeryLargeHashSetNetworkVariables_Valu } [Test] + [UnityPlatform(exclude = new[] { RuntimePlatform.Android, RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is unstable on mobile devices [Repeat(5)] public void WhenSerializingAndDeserializingVeryLargeDictionaryNetworkVariables_ValuesAreSerializedCorrectly( diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json b/com.unity.netcode.gameobjects/pvpExceptions.json new file mode 100644 index 0000000000..988e4d7a6d --- /dev/null +++ b/com.unity.netcode.gameobjects/pvpExceptions.json @@ -0,0 +1,1073 @@ +{ + "exempts": { + "PVP-41-1": { + "errors": [ + "CHANGELOG.md: line 9: Unreleased section is not allowed for public release" + ] + }, + "PVP-150-1": { + "errors": [ + "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", + "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateMove(Vector3): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateRotate(Quaternion): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateScale(Vector3): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateState(TransformState): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void Smooth(TransformState, TransformState, float): empty tag", + "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", + "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", + "Unity.Netcode.AnticipatedNetworkVariable: void Anticipate(T): empty tag", + "Unity.Netcode.AnticipatedNetworkVariable: void Smooth(in T, in T, float, AnticipatedNetworkVariable.SmoothDelegate): empty tag", + "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", + "Unity.Netcode.BufferSerializer: void SerializeValue(ref NativeArray, Allocator): unexpected ", + "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", + "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", + "Unity.Netcode.BytePacker: in block context; use instead", + "Unity.Netcode.ByteUnpacker: in block context; use instead", + "Unity.Netcode.ByteUnpacker: void ReadValuePacked(FastBufferReader, out string): empty tag", + "Unity.Netcode.FastBufferReader: in block context; use instead", + "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T[]): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out NativeArray, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadPartialValue(out T, int, int): empty tag", + "Unity.Netcode.FastBufferReader: void ReadValueSafe(out NativeArray, Allocator): unexpected ", + "Unity.Netcode.FastBufferReader: void ReadValueSafeTemp(out NativeArray): unexpected ", + "Unity.Netcode.FastBufferWriter: in block context; use instead", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: byte[] ToArray(): empty tag", + "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtr(): empty tag", + "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtrAtCurrentPosition(): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(string, bool): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(in T): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteValueSafe(in NativeArray): unexpected ", + "Unity.Netcode.ForceNetworkSerializeByMemcpy: empty tag", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: tag inside ", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): unexpected ", + "Unity.Netcode.InvalidParentException: .ctor(string): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.InvalidParentException: .ctor(string): empty tag", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): empty tag", + "Unity.Netcode.IReaderWriter: void SerializeValue(ref NativeArray, Allocator): unexpected ", + "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", + "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", + "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void VerboseDebug(string): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void CreateServerAndClients(int): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(HostOrServer): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void TimeTravel(double, int): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StartOneClient(NetworkManager): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): unexpected ", + "Unity.Netcode.NetworkBehaviour: NetworkObject: text or XML content outside a top-level tag", + "Unity.Netcode.NetworkBehaviour: void OnGainedOwnership(): mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.NetworkBehaviour: void OnLostOwnership(): mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", + "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", + "Unity.Netcode.NetworkBehaviour: void OnSynchronize(ref BufferSerializer): unexpected ", + "Unity.Netcode.NetworkBehaviourReference: .ctor(NetworkBehaviour): empty tag", + "Unity.Netcode.NetworkConfig: string ToBase64(): empty tag", + "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", + "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", + "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", + "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): empty tag", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Add(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Clear(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: bool Contains(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: bool Remove(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: Count: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: int IndexOf(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Insert(int, T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void RemoveAt(int): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: this[int]: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkManager: OnServerStopped: unexpected ", + "Unity.Netcode.NetworkManager: OnClientStopped: unexpected ", + "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: void RemoveNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: empty tag", + "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: unexpected ", + "Unity.Netcode.NetworkManager: void SetPeerMTU(ulong, int): empty tag", + "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", + "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", + "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: empty tag", + "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: Guid AddGameNetworkObject(string): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: T AddComponentToObject(Guid): empty tag", + "Unity.Netcode.NetworkObject: NetworkTransforms: must use self-closing syntax", + "Unity.Netcode.NetworkObject: bool TryRemoveParent(bool): empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipPermissionsFailureDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestResponseDelegateHandler: empty tag", + "Unity.Netcode.NetworkObjectReference: .ctor(NetworkObject): empty tag", + "Unity.Netcode.NetworkObjectReference: .ctor(GameObject): empty tag", + "Unity.Netcode.INetworkPrefabInstanceHandler: NetworkObject Instantiate(ulong, Vector3, Quaternion): empty tag", + "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(NetworkObject, INetworkPrefabInstanceHandler): empty tag", + "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(uint, INetworkPrefabInstanceHandler): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void RemoveNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabsList: void Add(NetworkPrefab): empty tag", + "Unity.Netcode.NetworkPrefabsList: void Remove(NetworkPrefab): empty tag", + "Unity.Netcode.SceneEvent: in block context; use instead", + "Unity.Netcode.NetworkSceneManager: SceneEventProgressStatus UnloadScene(Scene): empty tag", + "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: empty tag", + "Unity.Netcode.NetworkSceneManager.OnLoadDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnUnloadDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnSynchronizeDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnEventCompletedDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnLoadCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnUnloadCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnSynchronizeCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): empty tag", + "Unity.Netcode.NetworkTimeSystem: bool Advance(double): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): unexpected ", + "Unity.Netcode.Components.NetworkTransform: void OnInitialize(ref NetworkVariable): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): text or XML content outside a top-level tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): text or XML content outside a top-level tag", + "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkTransport: in block context; use instead", + "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): suspicious '///' triple-slash inside XmlDoc comment", + "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): text or XML content outside a top-level tag", + "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): in block context (only allowed in top-level context)", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): empty tag", + "Unity.Netcode.NetworkVariableBase: void SetUpdateTraits(NetworkVariableUpdateTraits): empty tag", + "Unity.Netcode.NetworkVariableBase: bool ExceedsDirtinessThreshold(): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Write(FastBufferWriter, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Read(FastBufferReader, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void ReadDelta(FastBufferReader, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Duplicate(in T, ref T): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", + "Unity.Netcode.SceneEventType: in block context; use instead", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: must use self-closing syntax", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpy(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpyArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_List(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_HashSet(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): unexpected ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializableArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_ManagedINetworkSerializable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedString(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedStringArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedIEquatable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatableArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_List(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_HashSet(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): unexpected ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEquals(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEqualsArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedClassEquals(): empty tag", + "Unity.Netcode.UserNetworkVariableSerialization: empty tag", + "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: unexpected " + ] + }, + "PVP-151-1": { + "errors": [ + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnUpdate(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnDestroy(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnBeforeUpdateTransformState(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnTransformUpdated(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Position: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Rotation: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Scale: undocumented", + "Unity.Netcode.StaleDataHandling: undocumented", + "Unity.Netcode.StaleDataHandling: Ignore: undocumented", + "Unity.Netcode.StaleDataHandling: Reanticipate: undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void OnInitialize(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: .ctor(T, StaleDataHandling): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Update(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Dispose(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Finalize(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: bool IsDirty(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ResetDirty(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void WriteDelta(FastBufferWriter): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void WriteField(FastBufferWriter): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ReadField(FastBufferReader): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ReadDelta(FastBufferReader, bool): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable.OnAuthoritativeValueChangedDelegate: undocumented", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.BaseRpcTarget: undocumented", + "Unity.Netcode.BaseRpcTarget: m_NetworkManager: undocumented", + "Unity.Netcode.BaseRpcTarget: void CheckLockBeforeDispose(): undocumented", + "Unity.Netcode.BaseRpcTarget: void Dispose(): undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_InterpStartValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_CurrentInterpValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_InterpEndValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_Buffer: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: Item: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: TimeSent: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: .ctor(T, double): undocumented", + "Unity.Netcode.BufferedLinearInterpolatorQuaternion: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", + "Unity.Netcode.BufferedLinearInterpolatorVector3: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: TimedOut: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool OnHasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool HasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnStarted(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Started(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnFinished(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Finished(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: bool HasConditionBeenReached(): missing ", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: void Finished(bool): missing ", + "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", + "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: .ctor(HostOrServer, bool): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnServerAndClientsCreated(): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnNewClientCreated(NetworkManager): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: IEnumerator HiddenObjectPromotedSessionOwnerNewClientSynchronizes(): missing ", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: .ctor(int): undocumented", + "Unity.Netcode.GenerateSerializationForTypeAttribute: .ctor(Type): undocumented", + "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): missing ", + "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(ref Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float GetDeltaVarianceThreshold(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float EulerDelta(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 EulerDelta(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector2, Vector2): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Quaternion, Quaternion): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 GetRandomVector3(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(): undocumented", + "Unity.Netcode.InvalidParentException: .ctor(string): missing ", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): missing ", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: AllMessagesReceived: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: NumberOfMessagesReceived: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: string GetHooksStillWaiting(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: bool OnHasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void OnFinished(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void Reset(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: .ctor(List): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Received: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Handled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: m_NetworkManager: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: void Initialize(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: .ctor(NetworkManager, ReceiptType): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: RealTimeSinceStartup: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: DeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: FixedDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticRealTimeSinceStartup: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void TimeTravel(double): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void Reset(): undocumented", + "Unity.Netcode.Editor.NetcodeEditorBase: missing ", + "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): missing ", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: NetworkPrefabsPath: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: TempNetworkPrefabsPath: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: GenerateDefaultNetworkPrefabs: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_TickFrequency: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_GlobalTimeoutHelper: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_DefaultWaitForTick: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetcodeLogAssert: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void RegisterNetworkObject(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(ulong, ulong): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: TotalClients: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_DefaultTickRate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NumberOfClients: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_PlayerPrefab: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ServerNetworkManager: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ClientNetworkManagers: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_UseHost: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_DistributedAuthority: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_NetworkTopologyType: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool UseCMBService(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkTopologyTypes OnGetNetworkTopologyType(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetDistributedAuthorityProperties(NetworkManager): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_TargetFrameRate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_EnableVerboseDebug: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnSetVerboseDebug(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnOneTimeSetup(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeSetup(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnSetup(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator SetUp(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientCreated(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStarted(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStartedAndConnected(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CreateAndStartNewClient(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatency(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedDropRate(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatencyJitter(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanStartServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnStartedServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnServerAndClientsConnected(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void ClientNetworkManagerPostStartInit(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: LogAllMessages: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldCheckForSpawnedPlayers(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StartServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsLoad(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsUnload(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnCanSceneCleanUpUnload(Scene): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CoroutineShutdownAndCleanUp(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnTearDown(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnInlineTearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator TearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeTearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanDestroyNetworkObject(NetworkObject): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(NetworkManager[]): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(NetworkManager[]): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: uint GetTickRate(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: int GetFrameRate(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementEnabled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementDisabled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: PerTest: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: AllTests: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: DoNotCreate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Host: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Server: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: DAHost: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultMinFrames: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultTimeout: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManagerInstances: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManager CreateServer(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetNextGlobalIdHashValue(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IsNetcodeIntegrationTestRunning: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterNetcodeIntegrationTest(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: GameObject CreateNetworkObjectPrefab(string, NetworkManager, params NetworkManager[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void MarkAsSceneObjectRoot(GameObject, NetworkManager, NetworkManager[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetGlobalObjectIdHash(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.MessageHandleCheck: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.BeforeClientStartCallback: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: Result: undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: .ctor(bool, bool): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void AddLog(string, string, LogType): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void OnTearDown(): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Dispose(): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, Regex): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, Regex): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: bool HasLogBeenReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Reset(): undocumented", + "Unity.Netcode.RpcException: undocumented", + "Unity.Netcode.RpcException: .ctor(string): undocumented", + "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkPostSpawn(): undocumented", + "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkSessionSynchronized(): undocumented", + "Unity.Netcode.NetworkBehaviour: void OnReanticipate(double): undocumented", + "Unity.Netcode.NetworkClient: NetworkTopologyType: undocumented", + "Unity.Netcode.NetworkClient: DAHost: undocumented", + "Unity.Netcode.NetworkConfig: Prefabs: undocumented", + "Unity.Netcode.NetworkConfig: NetworkTopology: undocumented", + "Unity.Netcode.NetworkConfig: UseCMBService: undocumented", + "Unity.Netcode.NetworkConfig: AutoSpawnPlayerPrefabClientSide: undocumented", + "Unity.Netcode.ConnectionEventData: EventType: undocumented", + "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetConvertedDelta(): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetDeltaPosition(): missing ", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): missing ", + "Unity.Netcode.NetworkList: void Finalize(): undocumented", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", + "Unity.Netcode.NetworkList: void Add(T): missing ", + "Unity.Netcode.NetworkList: void Add(T): missing ", + "Unity.Netcode.NetworkList: void Clear(): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: Count: missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", + "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", + "Unity.Netcode.NetworkList: this[int]: missing ", + "Unity.Netcode.NetworkList: this[int]: missing ", + "Unity.Netcode.NetworkManager: CurrentSessionOwner: undocumented", + "Unity.Netcode.NetworkManager: void NetworkUpdate(NetworkUpdateStage): undocumented", + "Unity.Netcode.NetworkManager.ReanticipateDelegate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerObject: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerGameObject: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedGameObjects: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedNetworkObjects: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: CurrentNetworkManagerMode: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool StartNetworkManager(out NetworkManager, NetworkManagerOperatingMode, NetworkConfig): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: void ShutdownNetworkManager(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool BuffersMatch(int, long, byte[], byte[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: None: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Host: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Server: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Client: undocumented", + "Unity.Netcode.NetworkObject: void SetSceneObjectStatus(bool): undocumented", + "Unity.Netcode.NetworkObject: ushort GetNetworkBehaviourOrderIndex(NetworkBehaviour): undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: None: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: Distributable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: Transferable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: RequestRequired: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: SessionOwner: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestRequired: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: NotTransferrable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: SessionOwnerOnly: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestSent: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: AlreadyOwner: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestRequiredNotSet: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: SessionOwnerOnly: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Approved: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: CannotRequest: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Denied: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: None: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndLock: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndUnlock: undocumented", + "Unity.Netcode.NetworkObject.VisibilityDelegate: missing ", + "Unity.Netcode.NetworkObject.SpawnDelegate: missing ", + "Unity.Netcode.NetworkPrefab: bool Equals(NetworkPrefab): undocumented", + "Unity.Netcode.NetworkPrefab: SourcePrefabGlobalObjectIdHash: undocumented", + "Unity.Netcode.NetworkPrefab: TargetPrefabGlobalObjectIdHash: undocumented", + "Unity.Netcode.NetworkPrefab: bool Validate(int): undocumented", + "Unity.Netcode.NetworkPrefab: string ToString(): undocumented", + "Unity.Netcode.Editor.Configuration.NetworkPrefabProcessor: DefaultNetworkPrefabsPath: undocumented", + "Unity.Netcode.NetworkPrefabs: Prefabs: undocumented", + "Unity.Netcode.NetworkPrefabs: void Finalize(): undocumented", + "Unity.Netcode.NetworkPrefabs: void Initialize(bool): missing ", + "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: void Remove(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: void Remove(GameObject): missing ", + "Unity.Netcode.Editor.NetworkPrefabsEditor: undocumented", + "Unity.Netcode.Editor.NetworkPrefabsEditor: void OnInspectorGUI(): undocumented", + "Unity.Netcode.NetworkSceneManager: List GetSceneMapping(MapTypes): undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: ServerToClient: undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: ClientToServer: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: MapType: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: Scene: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: ScenePresent: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: SceneName: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: ServerHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: MappedLocalHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: LocalHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: void NetworkSerialize(BufferSerializer): undocumented", + "Unity.Netcode.NetworkSpawnManager: List GetConnectedPlayers(): undocumented", + "Unity.Netcode.NetworkSpawnManager: void InternalOnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): missing ", + "Unity.Netcode.Components.NetworkTransform: AuthorityMode: undocumented", + "Unity.Netcode.Components.NetworkTransform: PositionInLocalSpace: undocumented", + "Unity.Netcode.Components.NetworkTransform: RotationInLocalSpace: undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnTransformUpdated(): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnBeforeUpdateTransformState(): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): missing ", + "Unity.Netcode.Components.NetworkTransform: float GetTickLatency(): missing ", + "Unity.Netcode.Components.NetworkTransform: float GetTickLatencyInSeconds(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsUnreliableFrameSync(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsReliableStateUpdate(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: undocumented", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Server: undocumented", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Owner: undocumented", + "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", + "Unity.Netcode.NetworkTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTopologyTypes: undocumented", + "Unity.Netcode.NetworkTopologyTypes: ClientServer: undocumented", + "Unity.Netcode.NetworkTopologyTypes: DistributedAuthority: undocumented", + "Unity.Netcode.NetworkVariable: CheckExceedsDirtinessThreshold: undocumented", + "Unity.Netcode.NetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", + "Unity.Netcode.NetworkVariable: void OnInitialize(): undocumented", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): missing ", + "Unity.Netcode.NetworkVariable: void Dispose(): undocumented", + "Unity.Netcode.NetworkVariable: void Finalize(): undocumented", + "Unity.Netcode.NetworkVariable.CheckExceedsDirtinessThresholdDelegate: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: MinSecondsBetweenUpdates: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: MaxSecondsBetweenUpdates: undocumented", + "Unity.Netcode.NetworkVariableBase: NetworkBehaviour GetBehaviour(): undocumented", + "Unity.Netcode.NetworkVariableBase: void MarkNetworkBehaviourDirty(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: .ctor(HostOrServer): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: bool OnSetVerboseDebug(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator OnSetup(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: void OnCreatePlayerPrefab(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListBuiltInTypeCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListSerializableObjectCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryNestedCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestHashSetBuiltInTypeCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: .ctor(HostOrServer, CollectionTypes): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: void OnServerAndClientsCreated(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: IEnumerator CollectionAndOwnershipChangingTest(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: Dictionary: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: List: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: VerboseMode: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: HelperState: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void SetState(HelperStates): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool ValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Clear(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Log(string): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Stop: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Start: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Pause: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ClearToChangeOwner: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ChangingOwner: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet GetHashSetValues(int): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Add(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void AddRange(HashSet, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void FullSet(HashSet, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void TrackChanges(Targets, HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnServerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> GetNestedDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool UpdateValue((int, Dictionary), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Add((int, Dictionary), Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void FullSet(Dictionary>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void TrackChanges(Targets, Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnServerListValuesChanged(Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool UpdateValue((int, SerializableObject), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Add((int, SerializableObject), Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void FullSet(Dictionary, Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void InitValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: SerializableObject GetRandomObject(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: List GetListOfRandomObjects(int): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: List> GetListOfListOfRandomObjects(int, int): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: IntValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: LongValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: FloatValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: string ToString(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: void NetworkSerialize(BufferSerializer): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: bool Equals(SerializableObject): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void UpdateValue(List, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Add(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void AddRange(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Insert(List, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Remove(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void FullSet(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void TrackChanges(Targets, List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnServerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnOwnerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void UpdateValue(SerializableObject, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Add(SerializableObject, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Insert(SerializableObject, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Remove(SerializableObject, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void UpdateValue(List, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Add(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void AddRange(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Insert(List, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Remove(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void FullSet(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void TrackChanges(Targets, List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnServerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnOwnerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void UpdateValue(int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Add(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Insert(int, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: IsDebugMode: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: string GetLog(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogMessage(string): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogStart(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void SetDebugMode(bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Server: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Owner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Added: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Removed: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Changed: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: UnChanged: undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void UpdateValue(T, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Add(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Insert(T, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Remove(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool UpdateValue((TKey, TValue), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Add((TKey, TValue), Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Remove(TKey, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void FullSet(Dictionary, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Add(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Remove(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void TrackChanges(Targets, HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnServerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: OnValueChanged: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: .ctor(NetworkVariableBase): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper.OnMyValueChangedDelegateHandler: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableBaseHelper: .ctor(NetworkVariableBase): undocumented", + "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.RuntimeTests.ByteEnum: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: C: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void RegisterAndLabelNetworkObject(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void DeRegisterNetworkObject(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnLostOwnership(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnGainedOwnership(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnDestroy(): undocumented", + "Unity.Netcode.RpcAttribute: RequireOwnership: undocumented", + "Unity.Netcode.RpcAttribute: DeferLocal: undocumented", + "Unity.Netcode.RpcAttribute: AllowTargetOverride: undocumented", + "Unity.Netcode.RpcAttribute: .ctor(SendTo): undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: Delivery: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: RequireOwnership: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: DeferLocal: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: AllowTargetOverride: undocumented", + "Unity.Netcode.ServerRpcAttribute: RequireOwnership: undocumented", + "Unity.Netcode.ServerRpcAttribute: .ctor(): undocumented", + "Unity.Netcode.ClientRpcAttribute: .ctor(): undocumented", + "Unity.Netcode.LocalDeferMode: undocumented", + "Unity.Netcode.LocalDeferMode: Default: undocumented", + "Unity.Netcode.LocalDeferMode: Defer: undocumented", + "Unity.Netcode.LocalDeferMode: SendImmediate: undocumented", + "Unity.Netcode.RpcSendParams: Target: undocumented", + "Unity.Netcode.RpcSendParams: LocalDeferMode: undocumented", + "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(BaseRpcTarget): undocumented", + "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(LocalDeferMode): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcSendParams): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(BaseRpcTarget): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(LocalDeferMode): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcReceiveParams): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: .ctor(HostOrServer): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator OnSetup(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: void OnCreatePlayerPrefab(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator ProxyDoesNotInvokeOnSender(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: ReceivedRpc: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: void SendToEveryOneButMe(): undocumented", + "Unity.Netcode.RpcTarget: void Dispose(): undocumented", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): missing ", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): missing ", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnServerRpcAction: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnClientRpcAction: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyServerRpc(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyClientRpc(ClientRpcParams): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: k_DefaultTimeOutWaitPeriod: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: m_IsStarted: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: TimedOut: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: float GetTimeElapsed(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStart(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Start(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Stop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool OnHasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool HasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: .ctor(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: int GetFrameCount(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: bool OnHasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStart(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: .ctor(float, uint): undocumented", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", + "Unity.Netcode.Transports.UTP.UnityTransport: m_Driver: undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport: NetworkConnection Connect(NetworkEndPoint): undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport.ConnectionAddressData: IsIpv6: undocumented", + "Unity.Netcode.UserNetworkVariableSerialization.WriteDeltaDelegate: missing ", + "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: missing " + ] + } + }, + "extends": [ + "rme", + "supported" + ] +} diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json.meta b/com.unity.netcode.gameobjects/pvpExceptions.json.meta new file mode 100644 index 0000000000..897531988f --- /dev/null +++ b/com.unity.netcode.gameobjects/pvpExceptions.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3460732dd46332e48acdf417ee62dbd4 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: From 04c08ce15b6d872c0ed7c0e67d575b8586dfe0cb Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Tue, 11 Feb 2025 11:00:26 +0100 Subject: [PATCH 02/24] Updated pvpExceptions file and moved it to proper location --- .../pvpExceptions.json | 1073 ----- .../pvpExceptions.json.meta | 7 - pvp-exemptions.json | 3902 +++++------------ 3 files changed, 1070 insertions(+), 3912 deletions(-) delete mode 100644 com.unity.netcode.gameobjects/pvpExceptions.json delete mode 100644 com.unity.netcode.gameobjects/pvpExceptions.json.meta diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json b/com.unity.netcode.gameobjects/pvpExceptions.json deleted file mode 100644 index 988e4d7a6d..0000000000 --- a/com.unity.netcode.gameobjects/pvpExceptions.json +++ /dev/null @@ -1,1073 +0,0 @@ -{ - "exempts": { - "PVP-41-1": { - "errors": [ - "CHANGELOG.md: line 9: Unreleased section is not allowed for public release" - ] - }, - "PVP-150-1": { - "errors": [ - "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", - "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateMove(Vector3): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateRotate(Quaternion): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateScale(Vector3): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateState(TransformState): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void Smooth(TransformState, TransformState, float): empty tag", - "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", - "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", - "Unity.Netcode.AnticipatedNetworkVariable: void Anticipate(T): empty tag", - "Unity.Netcode.AnticipatedNetworkVariable: void Smooth(in T, in T, float, AnticipatedNetworkVariable.SmoothDelegate): empty tag", - "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", - "Unity.Netcode.BufferSerializer: void SerializeValue(ref NativeArray, Allocator): unexpected ", - "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", - "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", - "Unity.Netcode.BytePacker: in block context; use instead", - "Unity.Netcode.ByteUnpacker: in block context; use instead", - "Unity.Netcode.ByteUnpacker: void ReadValuePacked(FastBufferReader, out string): empty tag", - "Unity.Netcode.FastBufferReader: in block context; use instead", - "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T[]): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out NativeArray, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadPartialValue(out T, int, int): empty tag", - "Unity.Netcode.FastBufferReader: void ReadValueSafe(out NativeArray, Allocator): unexpected ", - "Unity.Netcode.FastBufferReader: void ReadValueSafeTemp(out NativeArray): unexpected ", - "Unity.Netcode.FastBufferWriter: in block context; use instead", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: byte[] ToArray(): empty tag", - "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtr(): empty tag", - "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtrAtCurrentPosition(): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(string, bool): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(in T): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteValueSafe(in NativeArray): unexpected ", - "Unity.Netcode.ForceNetworkSerializeByMemcpy: empty tag", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: tag inside ", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: mixed block and inline content in ; wrap inline content in ", - "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): unexpected ", - "Unity.Netcode.InvalidParentException: .ctor(string): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.InvalidParentException: .ctor(string): empty tag", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): empty tag", - "Unity.Netcode.IReaderWriter: void SerializeValue(ref NativeArray, Allocator): unexpected ", - "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", - "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", - "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void VerboseDebug(string): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void CreateServerAndClients(int): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(HostOrServer): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void TimeTravel(double, int): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StartOneClient(NetworkManager): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): unexpected ", - "Unity.Netcode.NetworkBehaviour: NetworkObject: text or XML content outside a top-level tag", - "Unity.Netcode.NetworkBehaviour: void OnGainedOwnership(): mixed block and inline content in ; wrap inline content in ", - "Unity.Netcode.NetworkBehaviour: void OnLostOwnership(): mixed block and inline content in ; wrap inline content in ", - "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", - "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", - "Unity.Netcode.NetworkBehaviour: void OnSynchronize(ref BufferSerializer): unexpected ", - "Unity.Netcode.NetworkBehaviourReference: .ctor(NetworkBehaviour): empty tag", - "Unity.Netcode.NetworkConfig: string ToBase64(): empty tag", - "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", - "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", - "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", - "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): empty tag", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Add(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Clear(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: bool Contains(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: bool Remove(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: Count: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: int IndexOf(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Insert(int, T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void RemoveAt(int): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: this[int]: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkManager: OnServerStopped: unexpected ", - "Unity.Netcode.NetworkManager: OnClientStopped: unexpected ", - "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: void RemoveNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: empty tag", - "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: unexpected ", - "Unity.Netcode.NetworkManager: void SetPeerMTU(ulong, int): empty tag", - "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", - "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", - "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: empty tag", - "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: Guid AddGameNetworkObject(string): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: T AddComponentToObject(Guid): empty tag", - "Unity.Netcode.NetworkObject: NetworkTransforms: must use self-closing syntax", - "Unity.Netcode.NetworkObject: bool TryRemoveParent(bool): empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipPermissionsFailureDelegateHandler: empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipRequestResponseDelegateHandler: empty tag", - "Unity.Netcode.NetworkObjectReference: .ctor(NetworkObject): empty tag", - "Unity.Netcode.NetworkObjectReference: .ctor(GameObject): empty tag", - "Unity.Netcode.INetworkPrefabInstanceHandler: NetworkObject Instantiate(ulong, Vector3, Quaternion): empty tag", - "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(NetworkObject, INetworkPrefabInstanceHandler): empty tag", - "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(uint, INetworkPrefabInstanceHandler): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void RemoveNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabsList: void Add(NetworkPrefab): empty tag", - "Unity.Netcode.NetworkPrefabsList: void Remove(NetworkPrefab): empty tag", - "Unity.Netcode.SceneEvent: in block context; use instead", - "Unity.Netcode.NetworkSceneManager: SceneEventProgressStatus UnloadScene(Scene): empty tag", - "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: empty tag", - "Unity.Netcode.NetworkSceneManager.OnLoadDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnUnloadDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnSynchronizeDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnEventCompletedDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnLoadCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnUnloadCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnSynchronizeCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): empty tag", - "Unity.Netcode.NetworkTimeSystem: bool Advance(double): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): unexpected ", - "Unity.Netcode.Components.NetworkTransform: void OnInitialize(ref NetworkVariable): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): text or XML content outside a top-level tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): text or XML content outside a top-level tag", - "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkTransport: in block context; use instead", - "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): suspicious '///' triple-slash inside XmlDoc comment", - "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): text or XML content outside a top-level tag", - "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", - "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): in block context (only allowed in top-level context)", - "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): empty tag", - "Unity.Netcode.NetworkVariableBase: void SetUpdateTraits(NetworkVariableUpdateTraits): empty tag", - "Unity.Netcode.NetworkVariableBase: bool ExceedsDirtinessThreshold(): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Write(FastBufferWriter, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Read(FastBufferReader, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void ReadDelta(FastBufferReader, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Duplicate(in T, ref T): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", - "Unity.Netcode.SceneEventType: in block context; use instead", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: must use self-closing syntax", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpy(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpyArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_List(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_HashSet(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): unexpected ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializableArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_ManagedINetworkSerializable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedString(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedStringArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedIEquatable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatableArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_List(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_HashSet(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): unexpected ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEquals(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEqualsArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedClassEquals(): empty tag", - "Unity.Netcode.UserNetworkVariableSerialization: empty tag", - "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: unexpected " - ] - }, - "PVP-151-1": { - "errors": [ - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnUpdate(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnDestroy(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnBeforeUpdateTransformState(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnTransformUpdated(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Position: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Rotation: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Scale: undocumented", - "Unity.Netcode.StaleDataHandling: undocumented", - "Unity.Netcode.StaleDataHandling: Ignore: undocumented", - "Unity.Netcode.StaleDataHandling: Reanticipate: undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void OnInitialize(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: .ctor(T, StaleDataHandling): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Update(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Dispose(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Finalize(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: bool IsDirty(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ResetDirty(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void WriteDelta(FastBufferWriter): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void WriteField(FastBufferWriter): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ReadField(FastBufferReader): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ReadDelta(FastBufferReader, bool): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable.OnAuthoritativeValueChangedDelegate: undocumented", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.BaseRpcTarget: undocumented", - "Unity.Netcode.BaseRpcTarget: m_NetworkManager: undocumented", - "Unity.Netcode.BaseRpcTarget: void CheckLockBeforeDispose(): undocumented", - "Unity.Netcode.BaseRpcTarget: void Dispose(): undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_InterpStartValue: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_CurrentInterpValue: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_InterpEndValue: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_Buffer: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: void OnConvertTransformSpace(Transform, bool): undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: Item: undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: TimeSent: undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: .ctor(T, double): undocumented", - "Unity.Netcode.BufferedLinearInterpolatorQuaternion: void OnConvertTransformSpace(Transform, bool): undocumented", - "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", - "Unity.Netcode.BufferedLinearInterpolatorVector3: void OnConvertTransformSpace(Transform, bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: TimedOut: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool OnHasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool HasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnStarted(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Started(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnFinished(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Finished(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: bool HasConditionBeenReached(): missing ", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: void Finished(bool): missing ", - "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", - "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: .ctor(HostOrServer, bool): undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnNewClientCreated(NetworkManager): undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: IEnumerator HiddenObjectPromotedSessionOwnerNewClientSynchronizes(): missing ", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: .ctor(int): undocumented", - "Unity.Netcode.GenerateSerializationForTypeAttribute: .ctor(Type): undocumented", - "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): missing ", - "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(ref Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float GetDeltaVarianceThreshold(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float EulerDelta(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 EulerDelta(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector2, Vector2): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Quaternion, Quaternion): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 GetRandomVector3(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(HostOrServer): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(): undocumented", - "Unity.Netcode.InvalidParentException: .ctor(string): missing ", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): missing ", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: AllMessagesReceived: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: NumberOfMessagesReceived: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: string GetHooksStillWaiting(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: bool OnHasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void OnFinished(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void Reset(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: .ctor(List): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Received: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Handled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: m_NetworkManager: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: void Initialize(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: .ctor(NetworkManager, ReceiptType): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: RealTimeSinceStartup: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: DeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: FixedDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticRealTimeSinceStartup: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void TimeTravel(double): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void Reset(): undocumented", - "Unity.Netcode.Editor.NetcodeEditorBase: missing ", - "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): missing ", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: NetworkPrefabsPath: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: TempNetworkPrefabsPath: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: GenerateDefaultNetworkPrefabs: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_TickFrequency: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_GlobalTimeoutHelper: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_DefaultWaitForTick: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetcodeLogAssert: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void RegisterNetworkObject(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(ulong, ulong): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: TotalClients: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_DefaultTickRate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NumberOfClients: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_PlayerPrefab: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ServerNetworkManager: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ClientNetworkManagers: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_UseHost: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_DistributedAuthority: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_NetworkTopologyType: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool UseCMBService(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkTopologyTypes OnGetNetworkTopologyType(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetDistributedAuthorityProperties(NetworkManager): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_TargetFrameRate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_EnableVerboseDebug: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnSetVerboseDebug(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnOneTimeSetup(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeSetup(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnSetup(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator SetUp(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientCreated(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStarted(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStartedAndConnected(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CreateAndStartNewClient(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatency(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedDropRate(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatencyJitter(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanStartServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnStartedServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnServerAndClientsConnected(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void ClientNetworkManagerPostStartInit(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: LogAllMessages: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldCheckForSpawnedPlayers(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StartServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsLoad(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsUnload(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnCanSceneCleanUpUnload(Scene): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CoroutineShutdownAndCleanUp(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnTearDown(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnInlineTearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator TearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeTearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanDestroyNetworkObject(NetworkObject): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(NetworkManager[]): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(NetworkManager[]): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: uint GetTickRate(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: int GetFrameRate(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementEnabled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementDisabled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: PerTest: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: AllTests: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: DoNotCreate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Host: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Server: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: DAHost: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultMinFrames: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultTimeout: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManagerInstances: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManager CreateServer(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetNextGlobalIdHashValue(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IsNetcodeIntegrationTestRunning: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterNetcodeIntegrationTest(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: GameObject CreateNetworkObjectPrefab(string, NetworkManager, params NetworkManager[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void MarkAsSceneObjectRoot(GameObject, NetworkManager, NetworkManager[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetGlobalObjectIdHash(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.MessageHandleCheck: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.BeforeClientStartCallback: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: Result: undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: .ctor(bool, bool): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void AddLog(string, string, LogType): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void OnTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Dispose(): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, Regex): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, Regex): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: bool HasLogBeenReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Reset(): undocumented", - "Unity.Netcode.RpcException: undocumented", - "Unity.Netcode.RpcException: .ctor(string): undocumented", - "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkPostSpawn(): undocumented", - "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkSessionSynchronized(): undocumented", - "Unity.Netcode.NetworkBehaviour: void OnReanticipate(double): undocumented", - "Unity.Netcode.NetworkClient: NetworkTopologyType: undocumented", - "Unity.Netcode.NetworkClient: DAHost: undocumented", - "Unity.Netcode.NetworkConfig: Prefabs: undocumented", - "Unity.Netcode.NetworkConfig: NetworkTopology: undocumented", - "Unity.Netcode.NetworkConfig: UseCMBService: undocumented", - "Unity.Netcode.NetworkConfig: AutoSpawnPlayerPrefabClientSide: undocumented", - "Unity.Netcode.ConnectionEventData: EventType: undocumented", - "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetConvertedDelta(): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetDeltaPosition(): missing ", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): missing ", - "Unity.Netcode.NetworkList: void Finalize(): undocumented", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", - "Unity.Netcode.NetworkList: void Add(T): missing ", - "Unity.Netcode.NetworkList: void Add(T): missing ", - "Unity.Netcode.NetworkList: void Clear(): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: Count: missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", - "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", - "Unity.Netcode.NetworkList: this[int]: missing ", - "Unity.Netcode.NetworkList: this[int]: missing ", - "Unity.Netcode.NetworkManager: CurrentSessionOwner: undocumented", - "Unity.Netcode.NetworkManager: void NetworkUpdate(NetworkUpdateStage): undocumented", - "Unity.Netcode.NetworkManager.ReanticipateDelegate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerObject: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerGameObject: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedGameObjects: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedNetworkObjects: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: CurrentNetworkManagerMode: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool StartNetworkManager(out NetworkManager, NetworkManagerOperatingMode, NetworkConfig): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: void ShutdownNetworkManager(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool BuffersMatch(int, long, byte[], byte[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: None: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Host: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Server: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Client: undocumented", - "Unity.Netcode.NetworkObject: void SetSceneObjectStatus(bool): undocumented", - "Unity.Netcode.NetworkObject: ushort GetNetworkBehaviourOrderIndex(NetworkBehaviour): undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: None: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: Distributable: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: Transferable: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: RequestRequired: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: SessionOwner: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: Locked: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestRequired: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestInProgress: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: NotTransferrable: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: SessionOwnerOnly: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestSent: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: AlreadyOwner: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestRequiredNotSet: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: Locked: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestInProgress: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: SessionOwnerOnly: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Approved: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Locked: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: RequestInProgress: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: CannotRequest: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Denied: undocumented", - "Unity.Netcode.NetworkObject.OwnershipLockActions: None: undocumented", - "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndLock: undocumented", - "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndUnlock: undocumented", - "Unity.Netcode.NetworkObject.VisibilityDelegate: missing ", - "Unity.Netcode.NetworkObject.SpawnDelegate: missing ", - "Unity.Netcode.NetworkPrefab: bool Equals(NetworkPrefab): undocumented", - "Unity.Netcode.NetworkPrefab: SourcePrefabGlobalObjectIdHash: undocumented", - "Unity.Netcode.NetworkPrefab: TargetPrefabGlobalObjectIdHash: undocumented", - "Unity.Netcode.NetworkPrefab: bool Validate(int): undocumented", - "Unity.Netcode.NetworkPrefab: string ToString(): undocumented", - "Unity.Netcode.Editor.Configuration.NetworkPrefabProcessor: DefaultNetworkPrefabsPath: undocumented", - "Unity.Netcode.NetworkPrefabs: Prefabs: undocumented", - "Unity.Netcode.NetworkPrefabs: void Finalize(): undocumented", - "Unity.Netcode.NetworkPrefabs: void Initialize(bool): missing ", - "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: void Remove(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: void Remove(GameObject): missing ", - "Unity.Netcode.Editor.NetworkPrefabsEditor: undocumented", - "Unity.Netcode.Editor.NetworkPrefabsEditor: void OnInspectorGUI(): undocumented", - "Unity.Netcode.NetworkSceneManager: List GetSceneMapping(MapTypes): undocumented", - "Unity.Netcode.NetworkSceneManager.MapTypes: undocumented", - "Unity.Netcode.NetworkSceneManager.MapTypes: ServerToClient: undocumented", - "Unity.Netcode.NetworkSceneManager.MapTypes: ClientToServer: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: MapType: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: Scene: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: ScenePresent: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: SceneName: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: ServerHandle: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: MappedLocalHandle: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: LocalHandle: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.NetworkSpawnManager: List GetConnectedPlayers(): undocumented", - "Unity.Netcode.NetworkSpawnManager: void InternalOnOwnershipChanged(ulong, ulong): undocumented", - "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): missing ", - "Unity.Netcode.Components.NetworkTransform: AuthorityMode: undocumented", - "Unity.Netcode.Components.NetworkTransform: PositionInLocalSpace: undocumented", - "Unity.Netcode.Components.NetworkTransform: RotationInLocalSpace: undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnTransformUpdated(): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnBeforeUpdateTransformState(): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnOwnershipChanged(ulong, ulong): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): missing ", - "Unity.Netcode.Components.NetworkTransform: float GetTickLatency(): missing ", - "Unity.Netcode.Components.NetworkTransform: float GetTickLatencyInSeconds(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsUnreliableFrameSync(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsReliableStateUpdate(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkTransform.AuthorityModes: undocumented", - "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Server: undocumented", - "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Owner: undocumented", - "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", - "Unity.Netcode.NetworkTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTopologyTypes: undocumented", - "Unity.Netcode.NetworkTopologyTypes: ClientServer: undocumented", - "Unity.Netcode.NetworkTopologyTypes: DistributedAuthority: undocumented", - "Unity.Netcode.NetworkVariable: CheckExceedsDirtinessThreshold: undocumented", - "Unity.Netcode.NetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", - "Unity.Netcode.NetworkVariable: void OnInitialize(): undocumented", - "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): missing ", - "Unity.Netcode.NetworkVariable: void Dispose(): undocumented", - "Unity.Netcode.NetworkVariable: void Finalize(): undocumented", - "Unity.Netcode.NetworkVariable.CheckExceedsDirtinessThresholdDelegate: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: MinSecondsBetweenUpdates: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: MaxSecondsBetweenUpdates: undocumented", - "Unity.Netcode.NetworkVariableBase: NetworkBehaviour GetBehaviour(): undocumented", - "Unity.Netcode.NetworkVariableBase: void MarkNetworkBehaviourDirty(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: bool OnSetVerboseDebug(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListBuiltInTypeCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListSerializableObjectCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryNestedCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestHashSetBuiltInTypeCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: .ctor(HostOrServer, CollectionTypes): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: IEnumerator CollectionAndOwnershipChangingTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: Dictionary: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: List: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void OnClear(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void AddItem(): undocumented", - "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void OnClear(): undocumented", - "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void AddItem(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: VerboseMode: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: HelperState: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void SetState(HelperStates): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool ValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnClear(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Clear(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void AddItem(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnOwnershipChanged(ulong, ulong): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Log(string): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Stop: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Start: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Pause: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ClearToChangeOwner: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ChangingOwner: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: Instances: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet GetHashSetValues(int): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Add(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void AddRange(HashSet, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void FullSet(HashSet, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void TrackChanges(Targets, HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnServerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Instances: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> GetNestedDictionaryValues(int): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariable>> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool UpdateValue((int, Dictionary), Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Add((int, Dictionary), Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void FullSet(Dictionary>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void TrackChanges(Targets, Dictionary>, Dictionary>): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnServerListValuesChanged(Dictionary>, Dictionary>): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary>, Dictionary>): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Instances: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool UpdateValue((int, SerializableObject), Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Add((int, SerializableObject), Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void FullSet(Dictionary, Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void InitValues(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: SerializableObject GetRandomObject(): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: List GetListOfRandomObjects(int): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: List> GetListOfListOfRandomObjects(int, int): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: IntValue: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: LongValue: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: FloatValue: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: string ToString(): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: bool Equals(SerializableObject): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariable>> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void UpdateValue(List, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Add(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void AddRange(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Insert(List, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Remove(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void FullSet(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void TrackChanges(Targets, List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnServerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnOwnerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void UpdateValue(SerializableObject, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Add(SerializableObject, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void AddRange(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Insert(SerializableObject, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Remove(SerializableObject, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void FullSet(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void TrackChanges(Targets, List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnServerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnOwnerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariable>> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void UpdateValue(List, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Add(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void AddRange(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Insert(List, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Remove(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void FullSet(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void TrackChanges(Targets, List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnServerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnOwnerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void UpdateValue(int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Add(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void AddRange(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Insert(int, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void FullSet(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void TrackChanges(Targets, List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnServerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnOwnerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: IsDebugMode: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: string GetLog(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogMessage(string): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogStart(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: void SetDebugMode(bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Server: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Owner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Added: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Removed: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Changed: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: UnChanged: undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void UpdateValue(T, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Add(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void AddRange(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Insert(T, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Remove(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void FullSet(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void TrackChanges(Targets, List, List): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnServerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnOwnerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool UpdateValue((TKey, TValue), Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Add((TKey, TValue), Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Remove(TKey, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void FullSet(Dictionary, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Add(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Remove(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void TrackChanges(Targets, HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnServerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: OnValueChanged: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: .ctor(NetworkVariableBase): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper.OnMyValueChangedDelegateHandler: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableBaseHelper: .ctor(NetworkVariableBase): undocumented", - "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.RuntimeTests.ByteEnum: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: C: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void RegisterAndLabelNetworkObject(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void DeRegisterNetworkObject(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnLostOwnership(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnGainedOwnership(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnDestroy(): undocumented", - "Unity.Netcode.RpcAttribute: RequireOwnership: undocumented", - "Unity.Netcode.RpcAttribute: DeferLocal: undocumented", - "Unity.Netcode.RpcAttribute: AllowTargetOverride: undocumented", - "Unity.Netcode.RpcAttribute: .ctor(SendTo): undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: Delivery: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: RequireOwnership: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: DeferLocal: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: AllowTargetOverride: undocumented", - "Unity.Netcode.ServerRpcAttribute: RequireOwnership: undocumented", - "Unity.Netcode.ServerRpcAttribute: .ctor(): undocumented", - "Unity.Netcode.ClientRpcAttribute: .ctor(): undocumented", - "Unity.Netcode.LocalDeferMode: undocumented", - "Unity.Netcode.LocalDeferMode: Default: undocumented", - "Unity.Netcode.LocalDeferMode: Defer: undocumented", - "Unity.Netcode.LocalDeferMode: SendImmediate: undocumented", - "Unity.Netcode.RpcSendParams: Target: undocumented", - "Unity.Netcode.RpcSendParams: LocalDeferMode: undocumented", - "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(BaseRpcTarget): undocumented", - "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(LocalDeferMode): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcSendParams): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(BaseRpcTarget): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(LocalDeferMode): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcReceiveParams): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator ProxyDoesNotInvokeOnSender(): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: ReceivedRpc: undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: void SendToEveryOneButMe(): undocumented", - "Unity.Netcode.RpcTarget: void Dispose(): undocumented", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): missing ", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): missing ", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnServerRpcAction: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnClientRpcAction: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyServerRpc(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyClientRpc(ClientRpcParams): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: k_DefaultTimeOutWaitPeriod: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: m_IsStarted: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: TimedOut: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: float GetTimeElapsed(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStart(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Start(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Stop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool OnHasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool HasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: .ctor(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: int GetFrameCount(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: bool OnHasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStart(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: .ctor(float, uint): undocumented", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", - "Unity.Netcode.Transports.UTP.UnityTransport: m_Driver: undocumented", - "Unity.Netcode.Transports.UTP.UnityTransport: NetworkConnection Connect(NetworkEndPoint): undocumented", - "Unity.Netcode.Transports.UTP.UnityTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", - "Unity.Netcode.Transports.UTP.UnityTransport.ConnectionAddressData: IsIpv6: undocumented", - "Unity.Netcode.UserNetworkVariableSerialization.WriteDeltaDelegate: missing ", - "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: missing " - ] - } - }, - "extends": [ - "rme", - "supported" - ] -} diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json.meta b/com.unity.netcode.gameobjects/pvpExceptions.json.meta deleted file mode 100644 index 897531988f..0000000000 --- a/com.unity.netcode.gameobjects/pvpExceptions.json.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 3460732dd46332e48acdf417ee62dbd4 -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/pvp-exemptions.json b/pvp-exemptions.json index 6c53ec94ca..898de76bc3 100644 --- a/pvp-exemptions.json +++ b/pvp-exemptions.json @@ -1,2835 +1,1073 @@ { - "per_package": { - "com.unity.netcode.gameobjects@1": { - "exempts": { - "PVP-31-1": { - "errors": [ - "LICENSE.md: license must match regex: ^(?.*?) copyright \\u00a9 \\d+ \\S(.*\\S)?(?:\\r?\\n|$)" - ] - }, - "PVP-40-1": { - "errors": [ - "CHANGELOG.md: line 196: header must match regex: ^\\[(?.*)\\]( - (?\\d{4}-\\d{2}-\\d{2}))?$" - ] - }, - "PVP-41-1": { - "errors": [ - "CHANGELOG.md: line 9: Unreleased section is not allowed for public release" - ] - }, - "PVP-150-1": { - "errors": [ - "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", - "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateMove(Vector3): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateRotate(Quaternion): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateScale(Vector3): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateState(TransformState): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void Smooth(TransformState, TransformState, float): empty tag", - "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", - "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", - "Unity.Netcode.AnticipatedNetworkVariable: void Anticipate(T): empty tag", - "Unity.Netcode.AnticipatedNetworkVariable: void Smooth(in T, in T, float, AnticipatedNetworkVariable.SmoothDelegate): empty tag", - "Unity.Netcode.RuntimeTests.BufferDataValidationComponent: bool IsTestComplete(): empty tag", - "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", - "Unity.Netcode.BufferSerializer: void SerializeValue(ref NativeArray, Allocator): unexpected ", - "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", - "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", - "Unity.Netcode.BytePacker: in block context; use instead", - "Unity.Netcode.ByteUnpacker: in block context; use instead", - "Unity.Netcode.ByteUnpacker: void ReadValuePacked(FastBufferReader, out string): empty tag", - "Unity.Netcode.FastBufferReader: in block context; use instead", - "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T[]): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out NativeArray, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadPartialValue(out T, int, int): empty tag", - "Unity.Netcode.FastBufferReader: void ReadValueSafe(out NativeArray, Allocator): unexpected ", - "Unity.Netcode.FastBufferReader: void ReadValueSafeTemp(out NativeArray): unexpected ", - "Unity.Netcode.FastBufferWriter: in block context; use instead", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: byte[] ToArray(): empty tag", - "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtr(): empty tag", - "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtrAtCurrentPosition(): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(string, bool): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(in T): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteValueSafe(in NativeArray): unexpected ", - "Unity.Netcode.ForceNetworkSerializeByMemcpy: empty tag", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: tag inside ", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: mixed block and inline content in ; wrap inline content in ", - "Unity.Netcode.Components.HalfVector3: XML is not well-formed: End tag 'remarks' does not match the start tag 'ushort'", - "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): unexpected ", - "Unity.Netcode.Components.HalfVector4: XML is not well-formed: End tag 'remarks' does not match the start tag 'ushort'", - "Unity.Netcode.InvalidParentException: .ctor(string): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.InvalidParentException: .ctor(string): empty tag", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): empty tag", - "Unity.Netcode.IReaderWriter: void SerializeValue(ref NativeArray, Allocator): unexpected ", - "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", - "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void VerboseDebug(string): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void CreateServerAndClients(int): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(HostOrServer): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void TimeTravel(double, int): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StartOneClient(NetworkManager): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): XML is not well-formed: An identifier was expected", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): unexpected ", - "Unity.Netcode.NetworkBehaviour: NetworkObject: text or XML content outside a top-level tag", - "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", - "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", - "Unity.Netcode.NetworkBehaviour: void OnSynchronize(ref BufferSerializer): unexpected ", - "Unity.Netcode.NetworkBehaviourReference: .ctor(NetworkBehaviour): empty tag", - "Unity.Netcode.RuntimeTests.NetVarContainer: GameObject CreatePrefabGameObject(NetVarCombinationTypes): empty tag", - "Unity.Netcode.NetworkConfig: string ToBase64(): empty tag", - "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", - "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", - "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", - "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): empty tag", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Add(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Clear(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: bool Contains(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: bool Remove(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: Count: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: int IndexOf(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Insert(int, T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void RemoveAt(int): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: this[int]: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkManager: OnServerStopped: unexpected ", - "Unity.Netcode.NetworkManager: OnClientStopped: unexpected ", - "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: void RemoveNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: empty tag", - "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: unexpected ", - "Unity.Netcode.NetworkManager: void SetPeerMTU(ulong, int): empty tag", - "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", - "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", - "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: empty tag", - "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: Guid AddGameNetworkObject(string): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: T AddComponentToObject(Guid): empty tag", - "Unity.Netcode.NetworkObject: bool TryRemoveParent(bool): empty tag", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests: IEnumerator TestNetworkObjectServerDestroy(): empty tag", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: IEnumerator TestOnNetworkSpawnCallbacks(): empty tag", - "Unity.Netcode.RuntimeTests.NetworkObjectPropertyTests: void TestPrefabHashIdPropertyIsAPrefab(): empty tag", - "Unity.Netcode.RuntimeTests.NetworkObjectPropertyTests: void TestPrefabHashIdPropertyIsAPrefab(): unexpected ", - "Unity.Netcode.NetworkObjectReference: .ctor(NetworkObject): empty tag", - "Unity.Netcode.NetworkObjectReference: .ctor(GameObject): empty tag", - "Unity.Netcode.INetworkPrefabInstanceHandler: NetworkObject Instantiate(ulong, Vector3, Quaternion): empty tag", - "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(NetworkObject, INetworkPrefabInstanceHandler): empty tag", - "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(uint, INetworkPrefabInstanceHandler): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void RemoveNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabsList: void Add(NetworkPrefab): empty tag", - "Unity.Netcode.NetworkPrefabsList: void Remove(NetworkPrefab): empty tag", - "Unity.Netcode.SceneEvent: in block context; use instead", - "Unity.Netcode.NetworkSceneManager: void SetClientSynchronizationMode(LoadSceneMode): XML is not well-formed: Expected an end tag for element 'summary'", - "Unity.Netcode.NetworkSceneManager: SceneEventProgressStatus UnloadScene(Scene): empty tag", - "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: empty tag", - "Unity.Netcode.NetworkSceneManager.OnLoadDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnUnloadDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnSynchronizeDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnEventCompletedDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnLoadCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnUnloadCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnSynchronizeCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int): empty tag", - "Unity.Netcode.NetworkTimeSystem: bool Advance(double): empty tag", - "Unity.Netcode.RuntimeTests.NetworkTimeSystemTests: IEnumerator PlayerLoopFixedTimeTest(): XML is not well-formed: End tag 'summary' does not match the start tag 'see'", - "Unity.Netcode.RuntimeTests.NetworkTimeSystemTests: IEnumerator PlayerLoopTimeTest_WithDifferentTimeScale(float): empty tag", - "Unity.Netcode.RuntimeTests.NetworkTimeSystemTests: IEnumerator CorrectAmountTicksTest(): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): unexpected ", - "Unity.Netcode.Components.NetworkTransform: void OnInitialize(ref NetworkVariable): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): text or XML content outside a top-level tag", - "Unity.Netcode.Components.NetworkTransform: void Update(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): text or XML content outside a top-level tag", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: int OnNumberOfClients(): empty tag", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool AllChildObjectInstancesAreSpawned(): empty tag", - "Unity.Netcode.Editor.NetworkTransformEditor: void OnEnable(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void NetworkTransformMultipleChangesOverTime(TransformSpace, Axis): XML is not well-formed: An identifier was expected", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void NetworkTransformMultipleChangesOverTime(TransformSpace, OverrideState, Axis): XML is not well-formed: An identifier was expected", - "Unity.Netcode.NetworkTransport: in block context; use instead", - "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): suspicious '///' triple-slash inside XmlDoc comment", - "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): text or XML content outside a top-level tag", - "Unity.Netcode.NetworkVariableBase: void SetUpdateTraits(NetworkVariableUpdateTraits): empty tag", - "Unity.Netcode.NetworkVariableBase: bool ExceedsDirtinessThreshold(): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: XML is not well-formed: End tag 'summary' does not match the start tag 'T'", - "Unity.Netcode.UserNetworkVariableSerialization: empty tag", - "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: unexpected ", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_UnmanagedByMemcpy(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_UnmanagedByMemcpyArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_List(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_HashSet(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_Dictionary(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_Dictionary(): unexpected ", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_UnmanagedINetworkSerializable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_UnmanagedINetworkSerializableArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_ManagedINetworkSerializable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_FixedString(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_FixedStringArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_ManagedIEquatable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_UnmanagedIEquatable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_UnmanagedIEquatableArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_List(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_HashSet(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_Dictionary(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_Dictionary(): unexpected ", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_UnmanagedValueEquals(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_UnmanagedValueEqualsArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_ManagedClassEquals(): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Write(FastBufferWriter, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Read(FastBufferReader, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void ReadDelta(FastBufferReader, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Duplicate(in T, ref T): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", - "Unity.Netcode.SceneEventType: in block context; use instead", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: must use self-closing syntax" - ] - }, - "PVP-151-1": { - "errors": [ - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: IEnumerator WhenSpawningBeforeAddingPrefab_SpawnFails(): undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: IEnumerator WhenSpawningAfterAddingServerPrefabButBeforeAddingClientPrefab_SpawnFails(): undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: IEnumerator WhenSpawningAfterAddingPrefabOnServerAndClient_SpawnSucceeds(): undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest: IEnumerator WhenSpawningAfterRemovingPrefabOnClient_SpawnFails(): undocumented", - "Unity.Netcode.RuntimeTests.AddNetworkPrefabTest.EmptyComponent: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void Update(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnSynchronize(ref BufferSerializer): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnDestroy(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnBeforeUpdateTransformState(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnTransformUpdated(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Position: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Rotation: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Scale: undocumented", - "Unity.Netcode.Editor.AnticipatedNetworkTransformEditor: HideInterpolateValue: undocumented", - "Unity.Netcode.StaleDataHandling: undocumented", - "Unity.Netcode.StaleDataHandling: Ignore: undocumented", - "Unity.Netcode.StaleDataHandling: Reanticipate: undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void OnInitialize(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: .ctor(T, StaleDataHandling): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Update(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Dispose(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Finalize(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: bool IsDirty(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ResetDirty(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void WriteDelta(FastBufferWriter): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void WriteField(FastBufferWriter): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ReadField(FastBufferReader): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ReadDelta(FastBufferReader, bool): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable.OnAuthoritativeValueChangedDelegate: undocumented", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.EditorTests.ArithmeticTests: undocumented", - "Unity.Netcode.EditorTests.ArithmeticTests: void TestCeil(): undocumented", - "Unity.Netcode.EditorTests.ArithmeticTests: void TestZigZag(): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void RunTypeTest(T): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void RunTypeTestSafe(T): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void RunTypeArrayTest(T[]): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void RunTypeArrayTestSafe(T[]): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void RunTypeNativeArrayTest(NativeArray): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void RunTypeNativeArrayTestSafe(NativeArray): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: TestStruct GetTestStruct(): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void BaseTypeTest(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void BaseArrayTypeTest(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest: void BaseNativeArrayTypeTest(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ByteEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ByteEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ByteEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ByteEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.SByteEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.SByteEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.SByteEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.SByteEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ShortEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ShortEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ShortEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ShortEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UShortEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UShortEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UShortEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UShortEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.IntEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.IntEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.IntEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.IntEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UIntEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UIntEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UIntEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.UIntEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.LongEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.LongEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.LongEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.LongEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ULongEnum: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ULongEnum: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ULongEnum: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.ULongEnum: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: A: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: B: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: C: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: D: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: E: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: F: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: G: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: H: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: I: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: J: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.TestStruct: K: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.WriteType: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.WriteType: WriteDirect: undocumented", - "Unity.Netcode.EditorTests.BaseFastBufferReaderWriterTest.WriteType: WriteSafe: undocumented", - "Unity.Netcode.BaseRpcTarget: undocumented", - "Unity.Netcode.BaseRpcTarget: m_NetworkManager: undocumented", - "Unity.Netcode.BaseRpcTarget: void CheckLockBeforeDispose(): undocumented", - "Unity.Netcode.BaseRpcTarget: void Dispose(): undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: void BatchedReceiveQueue_EmptyReader(): undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: void BatchedReceiveQueue_SingleMessage(): undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: void BatchedReceiveQueue_MultipleMessages(): undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: void BatchedReceiveQueue_PartialMessage(): undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: void BatchedReceiveQueue_PushReader_ToFilledQueue(): undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: void BatchedReceiveQueue_PushReader_ToPartiallyFilledQueue(): undocumented", - "Unity.Netcode.EditorTests.BatchedReceiveQueueTests: void BatchedReceiveQueue_PushReader_ToEmptyQueue(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void InitializeTestMessage(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_EmptyOnCreation(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_NotCreatedAfterDispose(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_InitialCapacityLessThanMaximum(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_PushMessage_ReturnValue(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_PushMessage_IncreasesLength(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_PushMessage_SucceedsAfterConsume(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_PushMessage_GrowsDataIfNeeded(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_PushMessage_DoesNotGrowDataPastMaximum(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_PushMessage_TrimsDataAfterGrowing(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithMessages_ReturnValue(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithMessages_NoopIfNoPushedMessages(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithMessages_NoopIfNotEnoughCapacity(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithMessages_SinglePushedMessage(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithMessages_MultiplePushedMessages(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithMessages_PartialPushedMessages(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithMessages_StopOnSoftMaxBytes(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithBytes_NoopIfNoData(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithBytes_WriterCapacityMoreThanLength(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithBytes_WriterCapacityLessThanLength(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithBytes_WriterCapacityEqualToLength(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_FillWriterWithBytes_MaxBytesGreaterThanCapacity(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_Consume_LessThanLength(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_Consume_ExactLength(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_Consume_MoreThanLength(): undocumented", - "Unity.Netcode.EditorTests.BatchedSendQueueTests: void BatchedSendQueue_Consume_TrimsDataOnEmpty(): undocumented", - "Unity.Netcode.EditorTests.BitCounterTests: undocumented", - "Unity.Netcode.EditorTests.BitCounterTests: void WhenCountingUsedBitsIn64BitValue_ResultMatchesHighBitSetPlusOne(int): undocumented", - "Unity.Netcode.EditorTests.BitCounterTests: void WhenCountingUsedBitsIn32BitValue_ResultMatchesHighBitSetPlusOne(int): undocumented", - "Unity.Netcode.EditorTests.BitCounterTests: void WhenCountingUsedBytesIn64BitValue_ResultMatchesHighBitSetOver8PlusOne(int): undocumented", - "Unity.Netcode.EditorTests.BitCounterTests: void WhenCountingUsedBytesIn32BitValue_ResultMatchesHighBitSetOver8PlusOne(int): undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: void TestReadingOneBit(): undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: void TestTryBeginReadBits(): undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: void TestReadingMultipleBits(): undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: void TestReadingMultipleBitsToLongs(): undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: void TestReadingMultipleBytesToLongs(uint): undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: void TestReadingMultipleBytesToLongsMisaligned(uint): undocumented", - "Unity.Netcode.EditorTests.BitReaderTests: void TestReadingBitsThrowsIfTryBeginReadNotCalled(): undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: void TestWritingOneBit(): undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: void TestTryBeginWriteBits(): undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: void TestWritingMultipleBits(): undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: void TestWritingMultipleBitsFromLongs(): undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: void TestWritingMultipleBytesFromLongs(uint): undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: void TestWritingMultipleBytesFromLongsMisaligned(uint): undocumented", - "Unity.Netcode.EditorTests.BitWriterTests: void TestWritingBitsThrowsIfTryBeginWriteNotCalled(): undocumented", - "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", - "Unity.Netcode.EditorTests.BufferSerializerTests: undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestIsReaderIsWriter(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestGetUnderlyingStructs(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingValues(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingBytes(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingArrays(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingStrings(bool): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingValuesPreChecked(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingBytesPreChecked(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingArraysPreChecked(): undocumented", - "Unity.Netcode.EditorTests.BufferSerializerTests: void TestSerializingStringsPreChecked(bool): undocumented", - "Unity.Netcode.EditorTests.BuildTests: undocumented", - "Unity.Netcode.EditorTests.BuildTests: DefaultBuildScenePath: undocumented", - "Unity.Netcode.EditorTests.BuildTests: void BasicBuildTest(): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: void TestBitPacking64BitsUnsigned(): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: void TestBitPacking64BitsSigned(): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: void TestBitPacking32BitsUnsigned(): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: void TestBitPacking32BitsSigned(): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: void TestBitPacking16BitsUnsigned(): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: void TestBitPacking16BitsSigned(): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests: void TestPackingBasicTypes(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.BytePackerTests.WriteType: undocumented", - "Unity.Netcode.EditorTests.BytePackerTests.WriteType: WriteDirect: undocumented", - "Unity.Netcode.EditorTests.BytePackerTests.WriteType: WriteAsObject: undocumented", - "Unity.Netcode.RuntimeTests.ClientApprovalDenied: undocumented", - "Unity.Netcode.RuntimeTests.ClientApprovalDenied: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.ClientApprovalDenied: void OnNewClientCreated(NetworkManager): undocumented", - "Unity.Netcode.RuntimeTests.ClientApprovalDenied: bool ShouldWaitForNewClientToConnect(NetworkManager): undocumented", - "Unity.Netcode.RuntimeTests.ClientApprovalDenied: IEnumerator ClientDeniedAndDisconnectionNotificationTest(): missing ", - "Unity.Netcode.RuntimeTests.ClientOnlyConnectionTests: undocumented", - "Unity.Netcode.RuntimeTests.ClientOnlyConnectionTests: void Setup(): undocumented", - "Unity.Netcode.RuntimeTests.ClientOnlyConnectionTests: IEnumerator ClientFailsToConnect(): undocumented", - "Unity.Netcode.RuntimeTests.ClientOnlyConnectionTests: void TearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: TimedOut: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool OnHasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool HasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnStarted(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Started(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnFinished(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Finished(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: bool HasConditionBeenReached(): missing ", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: void Finished(bool): missing ", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTests: undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTests: void Setup(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTests: IEnumerator ConnectionApproval(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTests: void VerifyUniqueNetworkConfigPerRequest(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTests: void TearDown(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: .ctor(ApprovalTimedOutTypes): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: IEnumerator OnTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: IEnumerator OnStartedServerAndClients(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests: IEnumerator ValidateApprovalTimeout(): undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests.ApprovalTimedOutTypes: undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests.ApprovalTimedOutTypes: ClientDoesNotRequest: undocumented", - "Unity.Netcode.RuntimeTests.ConnectionApprovalTimeoutTests.ApprovalTimedOutTypes: ServerDoesNotRespond: undocumented", - "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", - "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcComponent: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcComponent: ClientRpcCalled: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcComponent: void SendTestClientRpc(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcComponent: ClientInstances: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestNetworkVariableComponent: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestNetworkVariableComponent: ClientInstances: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestNetworkVariableComponent: TestNetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestNetworkVariableComponent: void Awake(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestNetworkVariableComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcAndNetworkVariableComponent: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcAndNetworkVariableComponent: ClientInstances: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcAndNetworkVariableComponent: ClientRpcCalled: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcAndNetworkVariableComponent: TestNetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcAndNetworkVariableComponent: void Awake(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcAndNetworkVariableComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessageTestRpcAndNetworkVariableComponent: void SendTestClientRpc(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void OnInlineSetup(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void OnInlineTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void OnNewClientCreated(NetworkManager): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void OnTimeTravelServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenAnRpcArrivesBeforeASpawnArrives_ItIsDeferred(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenADespawnArrivesBeforeASpawnArrives_ItIsDeferred(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenAChangeOwnershipMessageArrivesBeforeASpawnArrives_ItIsDeferred(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenANetworkVariableDeltaMessageArrivesBeforeASpawnArrives_ItIsDeferred(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenASpawnMessageArrivesBeforeThePrefabIsAvailable_ItIsDeferred(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenAnRpcIsDeferred_ItIsProcessedOnSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenADespawnIsDeferred_ItIsProcessedOnSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenAChangeOwnershipMessageIsDeferred_ItIsProcessedOnSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenANetworkVariableDeltaMessageIsDeferred_ItIsProcessedOnSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenASpawnMessageIsDeferred_ItIsProcessedOnAddPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenMultipleSpawnTriggeredMessagesAreDeferred_TheyAreAllProcessedOnSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenMultipleAddPrefabTriggeredMessagesAreDeferred_TheyAreAllProcessedOnAddNetworkPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenSpawnTriggeredMessagesAreDeferredBeforeThePrefabIsAdded_AddingThePrefabCausesThemToBeProcessed(): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenAMessageIsDeferredForMoreThanTheConfiguredTime_ItIsRemoved(int): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenMultipleMessagesForTheSameObjectAreDeferredForMoreThanTheConfiguredTime_TheyAreAllRemoved(int): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenMultipleMessagesForDifferentObjectsAreDeferredForMoreThanTheConfiguredTime_TheyAreAllRemoved(int): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenADeferredMessageIsRemoved_OtherMessagesForSameObjectAreRemoved(int): undocumented", - "Unity.Netcode.RuntimeTests.DeferredMessagingTest: void WhenADeferredMessageIsRemoved_OtherMessagesForDifferentObjectsAreNotRemoved(int): undocumented", - "Unity.Netcode.EditorTests.DisconnectMessageTests: undocumented", - "Unity.Netcode.EditorTests.DisconnectMessageTests: void EmptyDisconnectReason(): undocumented", - "Unity.Netcode.EditorTests.DisconnectMessageTests: void DisconnectReason(): undocumented", - "Unity.Netcode.EditorTests.DisconnectMessageTests: void DisconnectReasonTooLong(): undocumented", - "Unity.Netcode.EditorTests.DisconnectOnSendTests: undocumented", - "Unity.Netcode.EditorTests.DisconnectOnSendTests: void SetUp(): undocumented", - "Unity.Netcode.EditorTests.DisconnectOnSendTests: void TearDown(): undocumented", - "Unity.Netcode.EditorTests.DisconnectOnSendTests: void WhenDisconnectIsCalledDuringSend_NoErrorsOccur(): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectReasonObject: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectReasonTests: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectReasonTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectReasonTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectReasonTests: void OnClientDisconnectCallback(ulong): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectReasonTests: IEnumerator DisconnectReasonTest(): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectReasonTests: IEnumerator DisconnectExceptionTest(): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests: .ctor(OwnerPersistence): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests: IEnumerator ClientPlayerDisconnected(ClientDisconnectType): undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests.OwnerPersistence: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests.OwnerPersistence: DestroyWithOwner: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests.OwnerPersistence: DontDestroyWithOwner: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests.ClientDisconnectType: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests.ClientDisconnectType: ServerDisconnectsClient: undocumented", - "Unity.Netcode.RuntimeTests.DisconnectTests.ClientDisconnectType: ClientDisconnectsFromServer: undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void RunTypeTest(T): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void RunTypeTestSafe(T): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void RunTypeArrayTest(T[]): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void RunTypeArrayTestSafe(T[]): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void RunTypeNativeArrayTest(NativeArray): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void RunTypeNativeArrayTestSafe(NativeArray): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void GivenFastBufferWriterContainingValue_WhenReadingUnmanagedType_ValueMatchesWhatWasWritten(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void GivenFastBufferWriterContainingValue_WhenReadingArrayOfUnmanagedElementType_ValueMatchesWhatWasWritten(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void GivenFastBufferWriterContainingValue_WhenReadingNativeArrayOfUnmanagedElementType_ValueMatchesWhatWasWritten(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void RunFixedStringTest(T, int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenReadingFixedString32Bytes_ValueIsReadCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenReadingFixedString64Bytes_ValueIsReadCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenReadingFixedString128Bytes_ValueIsReadCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenReadingFixedString512Bytes_ValueIsReadCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenReadingFixedString4096Bytes_ValueIsReadCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void GivenFastBufferWriterContainingValue_WhenReadingString_ValueMatchesWhatWasWritten(bool, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void GivenFastBufferWriterContainingValue_WhenReadingPartialValue_ValueMatchesWhatWasWritten(int, int): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void GivenFastBufferReaderInitializedFromFastBufferWriterContainingValue_WhenCallingToArray_ReturnedArrayMatchesContentOfWriter(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCreatingAReaderFromAnEmptyArraySegment_LengthIsZero(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCreatingAReaderFromAnEmptyArray_LengthIsZero(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCreatingAReaderFromAnEmptyNativeArray_LengthIsZero(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCreatingAReaderFromAnEmptyFastBufferWriter_LengthIsZero(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCreatingAReaderFromAnEmptyBuffer_LengthIsZero(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCreatingNewFastBufferReader_IsInitializedIsTrue(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenDisposingFastBufferReader_IsInitializedIsFalse(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenUsingDefaultFastBufferReader_IsInitializedIsFalse(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadByteWithoutCallingTryBeingReadFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadBytesWithoutCallingTryBeingReadFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithUnmanagedTypeWithoutCallingTryBeingReadFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithByteArrayWithoutCallingTryBeingReadFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithStringWithoutCallingTryBeingReadFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueAfterCallingTryBeginWriteWithTooFewBytes_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadBytePastBoundaryMarkedByTryBeginWrite_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadByteDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadBytesDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithUnmanagedTypeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithByteArrayDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithStringDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadByteSafeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadBytesSafeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueSafeWithUnmanagedTypeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueSafeWithByteArrayDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueSafeWithStringDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadByteAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadBytesAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithUnmanagedTypeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithByteArrayAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueWithStringAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadByteSafeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadBytesSafeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueSafeWithUnmanagedTypeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueSafeWithByteArrayAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingReadValueSafeWithStringAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingTryBeginRead_TheAllowedReadPositionIsMarkedRelativeToCurrentPosition(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenReadingAfterSeeking_TheNewReadComesFromTheCorrectPosition(): undocumented", - "Unity.Netcode.EditorTests.FastBufferReaderTests: void WhenCallingTryBeginReadInternal_AllowedReadPositionDoesNotMoveBackward(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void RunTypeTest(T): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void RunTypeTestSafe(T): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void RunTypeArrayTest(T[]): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void RunTypeArrayTestSafe(T[]): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void RunTypeNativeArrayTest(NativeArray): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void RunTypeNativeArrayTestSafe(NativeArray): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingUnmanagedType_ValueIsWrittenCorrectly(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingArrayOfUnmanagedElementType_ArrayIsWrittenCorrectly(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingNativeArrayOfUnmanagedElementType_NativeArrayIsWrittenCorrectly(Type, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingString_ValueIsWrittenCorrectly(bool, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void RunFixedStringTest(T, int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingFixedString32Bytes_ValueIsWrittenCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingFixedString64Bytes_ValueIsWrittenCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingFixedString128Bytes_ValueIsWrittenCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingFixedString512Bytes_ValueIsWrittenCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingFixedString4096Bytes_ValueIsWrittenCorrectly(int, WriteType): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingPartialValueWithCountAndOffset_ValueIsWrittenCorrectly(int, int): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingToArray_ReturnedArrayContainsCorrectData(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteByteWithoutCallingTryBeingWriteFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteBytesWithoutCallingTryBeingWriteFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithUnmanagedTypeWithoutCallingTryBeingWriteFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithByteArrayWithoutCallingTryBeingWriteFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithStringWithoutCallingTryBeingWriteFirst_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueAfterCallingTryBeginWriteWithTooFewBytes_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteBytePastBoundaryMarkedByTryBeginWrite_OverflowExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteByteDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteBytesDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithUnmanagedTypeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithByteArrayDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithStringDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteByteSafeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteBytesSafeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueSafeWithUnmanagedTypeDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueSafeWithByteArrayDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueSafeWithStringDuringBitwiseContext_InvalidOperationExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteByteAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteBytesAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithUnmanagedTypeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithByteArrayAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueWithStringAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteByteSafeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteBytesSafeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueSafeWithUnmanagedTypeAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueSafeWithByteArrayAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingWriteValueSafeWithStringAfterExitingBitwiseContext_InvalidOperationExceptionIsNotThrown(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingTryBeginWrite_TheAllowedWritePositionIsMarkedRelativeToCurrentPosition(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenWritingAfterSeeking_TheNewWriteGoesToTheCorrectPosition(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenSeekingForward_LengthUpdatesToNewPosition(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenSeekingBackward_LengthDoesNotChange(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenTruncatingToSpecificPositionAheadOfWritePosition_LengthIsUpdatedAndPositionIsNot(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenTruncatingToSpecificPositionBehindWritePosition_BothLengthAndPositionAreUpdated(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenTruncatingToCurrentPosition_LengthIsUpdated(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCreatingNewFastBufferWriter_CapacityIsCorrect(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCreatingNewFastBufferWriter_MaxCapacityIsCorrect(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCreatingNewFastBufferWriter_IsInitializedIsTrue(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenDisposingFastBufferWriter_IsInitializedIsFalse(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenUsingDefaultFastBufferWriter_IsInitializedIsFalse(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenRequestingWritePastBoundsForNonGrowingWriter_TryBeginWriteReturnsFalse(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenTryBeginWriteReturnsFalse_WritingThrowsOverflowException(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenTryBeginWriteReturnsFalseAndOverflowExceptionIsThrown_DataIsNotAffected(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenRequestingWritePastBoundsForGrowingWriter_BufferGrowsWithoutLosingData(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenRequestingWriteExactlyAtBoundsForGrowingWriter_BufferDoesntGrow(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenBufferGrows_MaxCapacityIsNotExceeded(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenBufferGrowthRequiredIsMoreThanDouble_BufferGrowsEnoughToContainRequestedValue(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenTryingToWritePastMaxCapacity_GrowthDoesNotOccurAndTryBeginWriteReturnsFalse(): undocumented", - "Unity.Netcode.EditorTests.FastBufferWriterTests: void WhenCallingTryBeginWriteInternal_AllowedWritePositionDoesNotMoveBackward(): undocumented", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: .ctor(int): undocumented", - "Unity.Netcode.GenerateSerializationForTypeAttribute: .ctor(Type): undocumented", - "Unity.Netcode.Components.HalfVector3: XML is not well-formed: End tag 'remarks' does not match the start tag 'ushort'", - "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): missing ", - "Unity.Netcode.Components.HalfVector4: XML is not well-formed: End tag 'remarks' does not match the start tag 'ushort'", - "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.RuntimeTests.HiddenVariableTest: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: ClientInstancesSpawned: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: MyNetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: MyNetworkList: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: ValueOnClient: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: ExpectedSize: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: SpawnCount: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: void Changed(int, int): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableObject: void ListChanged(NetworkListEvent): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: IEnumerator WaitForSpawnCount(int): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: bool VerifyLists(): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: IEnumerator RefreshGameObects(int): undocumented", - "Unity.Netcode.RuntimeTests.HiddenVariableTests: IEnumerator HiddenVariableTest(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestUpdated: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestUpdated: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestUpdated: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestUpdated: IEnumerator OnServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestUpdated: IEnumerator MyFirstIntegationTest(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestExtended: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestExtended: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestExtended: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestExtended: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestExtended: IEnumerator OnServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestExtended: IEnumerator MyFirstIntegationTest(): undocumented", - "Unity.Netcode.RuntimeTests.ExampleTestComponent: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestPlayers: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestPlayers: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestPlayers: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestPlayers: IEnumerator OnServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestPlayers: void TestClientRelativePlayers(): undocumented", - "Unity.Netcode.RuntimeTests.SpawnTest: undocumented", - "Unity.Netcode.RuntimeTests.SpawnTest: TotalSpawned: undocumented", - "Unity.Netcode.RuntimeTests.SpawnTest: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.SpawnTest: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestSpawning: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestSpawning: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestSpawning: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestSpawning: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestSpawning: IEnumerator OnServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestSpawning: IEnumerator TestRelativeNetworkObjects(): undocumented", - "Unity.Netcode.RuntimeTests.IntegrationTestSpawning: IEnumerator TestDespawnNetworkObjects(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float GetDeltaVarianceThreshold(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float EulerDelta(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 EulerDelta(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector2, Vector2): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Quaternion, Quaternion): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 GetRandomVector3(float, float): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void TestReset(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void NormalUsage(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void MessageLoss(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void AddFirstMeasurement(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void JumpToEachValueIfDeltaTimeTooBig(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void JumpToLastValueFromStart(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void TestBufferSizeLimit(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void TestUpdatingInterpolatorWithNoData(): undocumented", - "Unity.Netcode.EditorTests.InterpolatorTests: void TestDuplicatedValues(): undocumented", - "Unity.Netcode.RuntimeTests.InvalidConnectionEventsTest: undocumented", - "Unity.Netcode.RuntimeTests.InvalidConnectionEventsTest: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.InvalidConnectionEventsTest: .ctor(): undocumented", - "Unity.Netcode.RuntimeTests.InvalidConnectionEventsTest: IEnumerator WhenSendingConnectionApprovedToAlreadyConnectedClient_ConnectionApprovedMessageIsRejected(): undocumented", - "Unity.Netcode.RuntimeTests.InvalidConnectionEventsTest: IEnumerator WhenSendingConnectionRequestToAnyClient_ConnectionRequestMessageIsRejected(): undocumented", - "Unity.Netcode.RuntimeTests.InvalidConnectionEventsTest: IEnumerator WhenSendingConnectionRequestFromAlreadyConnectedClient_ConnectionRequestMessageIsRejected(): undocumented", - "Unity.Netcode.RuntimeTests.InvalidConnectionEventsTest: IEnumerator WhenSendingConnectionApprovedFromAnyClient_ConnectionApprovedMessageIsRejected(): undocumented", - "Unity.Netcode.InvalidParentException: .ctor(string): missing ", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): missing ", - "Unity.Netcode.RuntimeTests.NetworkListChangedTestComponent: undocumented", - "Unity.Netcode.RuntimeTests.ListChangedObject: undocumented", - "Unity.Netcode.RuntimeTests.ListChangedObject: ExpectedPreviousValue: undocumented", - "Unity.Netcode.RuntimeTests.ListChangedObject: ExpectedValue: undocumented", - "Unity.Netcode.RuntimeTests.ListChangedObject: AddDone: undocumented", - "Unity.Netcode.RuntimeTests.ListChangedObject: MyNetworkList: undocumented", - "Unity.Netcode.RuntimeTests.ListChangedObject: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListChangedObject: void Changed(NetworkListEvent): undocumented", - "Unity.Netcode.RuntimeTests.NetworkListChangedTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListChangedTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListChangedTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkListChangedTests: IEnumerator NetworkListChangedTest(): undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests: undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests: void SetUp(): undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests: void TearDown(): undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests: void WhenPacketsAreCorrupted_TheyDontGetProcessed(TypeOfCorruption): undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests.TypeOfCorruption: undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests.TypeOfCorruption: OffsetPlus: undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests.TypeOfCorruption: OffsetMinus: undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests.TypeOfCorruption: CorruptBytes: undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests.TypeOfCorruption: Truncated: undocumented", - "Unity.Netcode.EditorTests.MessageCorruptionTests.TypeOfCorruption: AdditionalGarbageData: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: AllMessagesReceived: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: NumberOfMessagesReceived: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: string GetHooksStillWaiting(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: bool OnHasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void OnFinished(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void Reset(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: .ctor(List): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Received: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Handled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: m_NetworkManager: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: void Initialize(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: .ctor(NetworkManager, ReceiptType): undocumented", - "Unity.Netcode.EditorTests.MessageReceivingTests: undocumented", - "Unity.Netcode.EditorTests.MessageReceivingTests: void SetUp(): undocumented", - "Unity.Netcode.EditorTests.MessageReceivingTests: void TearDown(): undocumented", - "Unity.Netcode.EditorTests.MessageReceivingTests: void WhenHandlingAMessage_ReceiveMethodIsCalled(): undocumented", - "Unity.Netcode.EditorTests.MessageReceivingTests: void WhenHandlingIncomingData_ReceiveIsNotCalledBeforeProcessingIncomingMessageQueue(): undocumented", - "Unity.Netcode.EditorTests.MessageReceivingTests: void WhenReceivingAMessageAndProcessingMessageQueue_ReceiveMethodIsCalled(): undocumented", - "Unity.Netcode.EditorTests.MessageReceivingTests: void WhenReceivingMultipleMessagesAndProcessingMessageQueue_ReceiveMethodIsCalledMultipleTimes(): undocumented", - "Unity.Netcode.EditorTests.MessageRegistrationTests: undocumented", - "Unity.Netcode.EditorTests.MessageRegistrationTests: void WhenCreatingMessageSystem_OnlyProvidedTypesAreRegistered(): undocumented", - "Unity.Netcode.EditorTests.MessageRegistrationTests: void WhenCreatingMessageSystem_BoundTypeMessageHandlersAreRegistered(): undocumented", - "Unity.Netcode.EditorTests.MessageRegistrationTests: void MessagesGetPrioritizedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void SetUp(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void TearDown(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenSendingMessage_SerializeIsCalled(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenSendingMessage_NothingIsSentBeforeProcessingSendQueue(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenProcessingSendQueue_MessageIsSent(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenSendingMultipleMessages_MessagesAreBatched(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenNotExceedingBatchSize_NewBatchesAreNotCreated(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenExceedingBatchSize_NewBatchesAreCreated(int): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenExceedingPerClientBatchSizeLessThanDefault_NewBatchesAreCreated(int): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenExceedingPerClientBatchSizeGreaterThanDefault_OnlyOneNewBatcheIsCreated(int): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenExceedingMTUSizeWithFragmentedDelivery_NewBatchesAreNotCreated(int): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenSwitchingDelivery_NewBatchesAreCreated(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenSwitchingChannel_NewBatchesAreNotCreated(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenSendingMessaged_SentDataIsCorrect(): undocumented", - "Unity.Netcode.EditorTests.MessageSendingTests: void WhenReceivingAMessageWithoutAHandler_ExceptionIsLogged(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: SentVersion: undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: ReceivedVersion: undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void SetUp(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void TearDown(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void CheckPostSendExpectations(int, int): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void CheckPostReceiveExpectations(int, int): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV0ToV0_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV0ToV1_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV0ToV2_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV1ToV0_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV1ToV1_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV1ToV2_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV2ToV0_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV2ToV1_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.EditorTests.MessageVersioningTests: void WhenSendingV2ToV2_DataIsReceivedCorrectly(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: RealTimeSinceStartup: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: DeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticRealTimeSinceStartup: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void TimeTravel(double): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void Reset(): undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: IEnumerator NamedMessageIsReceivedOnClientWithContent(): undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: void NamedMessageIsReceivedOnHostWithContent(): undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: void NullOrEmptyNamedMessageDoesNotThrowException(): undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: IEnumerator NamedMessageIsReceivedOnMultipleClientsWithContent(): undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: IEnumerator WhenSendingNamedMessageToAll_AllClientsReceiveIt(): undocumented", - "Unity.Netcode.RuntimeTests.NamedMessageTests: void WhenSendingNamedMessageToNullClientList_ArgumentNullExceptionIsThrown(): undocumented", - "Unity.Netcode.RuntimeTests.NestedNetworkManagerTests: undocumented", - "Unity.Netcode.RuntimeTests.NestedNetworkManagerTests: void CheckNestedNetworkManager(): undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: NetworkPrefabsPath: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: TempNetworkPrefabsPath: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: GenerateDefaultNetworkPrefabs: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_GlobalTimeoutHelper: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_DefaultWaitForTick: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetcodeLogAssert: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void RegisterNetworkObject(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(ulong, ulong): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: TotalClients: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_DefaultTickRate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NumberOfClients: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_PlayerPrefab: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ServerNetworkManager: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ClientNetworkManagers: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_UseHost: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_TargetFrameRate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_EnableVerboseDebug: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnSetVerboseDebug(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnOneTimeSetup(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeSetup(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnSetup(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator SetUp(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientCreated(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStarted(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStartedAndConnected(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CreateAndStartNewClient(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatency(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedDropRate(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatencyJitter(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanStartServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnStartedServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnServerAndClientsConnected(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void ClientNetworkManagerPostStartInit(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: LogAllMessages: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StartServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsLoad(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsUnload(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnCanSceneCleanUpUnload(Scene): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnTearDown(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnInlineTearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator TearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeTearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanDestroyNetworkObject(NetworkObject): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(NetworkManager[]): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(NetworkManager[]): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: uint GetTickRate(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: int GetFrameRate(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: PerTest: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: AllTests: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: DoNotCreate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Host: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Server: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultMinFrames: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultTimeout: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManagerInstances: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManager CreateServer(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetNextGlobalIdHashValue(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IsNetcodeIntegrationTestRunning: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterNetcodeIntegrationTest(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: GameObject CreateNetworkObjectPrefab(string, NetworkManager, params NetworkManager[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void MarkAsSceneObjectRoot(GameObject, NetworkManager, NetworkManager[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): XML is not well-formed: An identifier was expected", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetGlobalObjectIdHash(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.MessageHandleCheck: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.BeforeClientStartCallback: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: Result: undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: .ctor(bool, bool): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void AddLog(string, string, LogType): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void OnTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Dispose(): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, Regex): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, Regex): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: bool HasLogBeenReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Reset(): undocumented", - "Unity.Netcode.RpcException: undocumented", - "Unity.Netcode.RpcException: .ctor(string): undocumented", - "Unity.Netcode.NetworkBehaviour: void OnReanticipate(double): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: bool CanStartServerAndClients(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: IEnumerator ValidatedDisableddNetworkBehaviourWarning(): missing ", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: IEnumerator ValidateNoSpam(): missing ", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: IEnumerator ValidateDeleteChildNetworkBehaviour(): missing ", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: void OnPlayerPrefabGameObjectCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests: IEnumerator OnNetworkDespawnInvokedWhenClientDisconnects(): missing ", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests.SimpleNetworkBehaviour: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests.SimpleNetworkBehaviour: OnNetworkDespawnCalled: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourGenericTests.SimpleNetworkBehaviour: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: IEnumerator TestRpc(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: IEnumerator TestSerializeNull(bool): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: IEnumerator TestRpcImplicitNetworkBehaviour(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: void TestNetworkVariable(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: void FailSerializeNonSpawnedNetworkObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: void FailSerializeGameObjectWithoutNetworkObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: void Dispose(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceTests: .ctor(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceIntegrationTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceIntegrationTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourReferenceIntegrationTests: IEnumerator TestTryGetWithAndWithOutExistingComponent(): missing ", - "Unity.Netcode.EditorTests.NetworkBehaviourTests: undocumented", - "Unity.Netcode.EditorTests.NetworkBehaviourTests: void HasNetworkObjectTest(): undocumented", - "Unity.Netcode.EditorTests.NetworkBehaviourTests: void AccessNetworkObjectTest(): undocumented", - "Unity.Netcode.EditorTests.NetworkBehaviourTests: void GivenClassDerivesFromNetworkBehaviour_GetTypeNameReturnsCorrectValue(): undocumented", - "Unity.Netcode.EditorTests.NetworkBehaviourTests: void GivenClassDerivesFromNetworkBehaviourDerivedClass_GetTypeNameReturnsCorrectValue(): undocumented", - "Unity.Netcode.EditorTests.NetworkBehaviourTests.DerivedNetworkBehaviour: undocumented", - "Unity.Netcode.EditorTests.NetworkBehaviourTests.EmptyNetworkBehaviour: undocumented", - "Unity.Netcode.RuntimeTests.NetVarContainer: GameObject CreatePrefabGameObject(NetVarCombinationTypes): missing ", - "Unity.Netcode.RuntimeTests.NetVarContainer: NumberOfNetVarsToCheck: undocumented", - "Unity.Netcode.RuntimeTests.NetVarContainer: ValueToSetNetVarTo: undocumented", - "Unity.Netcode.RuntimeTests.NetVarContainer: bool HaveAllValuesChanged(int): missing ", - "Unity.Netcode.RuntimeTests.NetVarContainer: bool HaveAllValuesChanged(int): missing ", - "Unity.Netcode.RuntimeTests.NetVarContainer: bool AreNetVarsDirty(): missing ", - "Unity.Netcode.RuntimeTests.NetVarContainer: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetVarContainer.NetVarsToCheck: undocumented", - "Unity.Netcode.RuntimeTests.NetVarContainer.NetVarsToCheck: One: undocumented", - "Unity.Netcode.RuntimeTests.NetVarContainer.NetVarsToCheck: Two: undocumented", - "Unity.Netcode.RuntimeTests.NetVarCombinationTypes: FirstType: undocumented", - "Unity.Netcode.RuntimeTests.NetVarCombinationTypes: SecondType: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourUpdaterTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourUpdaterTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourUpdaterTests: NetVarValueToSet: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourUpdaterTests: bool CanStartServerAndClients(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourUpdaterTests: IEnumerator BehaviourUpdaterAllTests(bool, NetVarCombinationTypes, int, int): missing ", - "Unity.Netcode.NetworkConfig: Prefabs: undocumented", - "Unity.Netcode.ConnectionEvent: undocumented", - "Unity.Netcode.ConnectionEvent: ClientConnected: undocumented", - "Unity.Netcode.ConnectionEvent: PeerConnected: undocumented", - "Unity.Netcode.ConnectionEvent: ClientDisconnected: undocumented", - "Unity.Netcode.ConnectionEvent: PeerDisconnected: undocumented", - "Unity.Netcode.ConnectionEventData: undocumented", - "Unity.Netcode.ConnectionEventData: EventType: undocumented", - "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetConvertedDelta(): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetDeltaPosition(): missing ", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): missing ", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", - "Unity.Netcode.NetworkList: void Add(T): missing ", - "Unity.Netcode.NetworkList: void Add(T): missing ", - "Unity.Netcode.NetworkList: void Clear(): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: Count: missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", - "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", - "Unity.Netcode.NetworkList: this[int]: missing ", - "Unity.Netcode.NetworkList: this[int]: missing ", - "Unity.Netcode.NetworkManager: void NetworkUpdate(NetworkUpdateStage): undocumented", - "Unity.Netcode.NetworkManager.ReanticipateDelegate: undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void NetworkObjectNotAllowed(NetworkObjectPlacement): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void NestedNetworkObjectPrefabCheck(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void WhenNetworkConfigContainsOldPrefabList_TheyMigrateProperlyToTheNewList(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void WhenModifyingPrefabListUsingNetworkManagerAPI_ModificationIsLocal(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void WhenModifyingPrefabListUsingPrefabsAPI_ModificationIsLocal(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void WhenModifyingPrefabListUsingPrefabsListAPI_ModificationIsShared(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void WhenCallingInitializeAfterAddingAPrefabUsingPrefabsAPI_ThePrefabStillExists(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void WhenShuttingDownAndReinitializingPrefabs_RuntimeAddedPrefabsStillExists(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests: void WhenCallingInitializeMultipleTimes_NothingBreaks(): undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests.NetworkObjectPlacement: undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests.NetworkObjectPlacement: Root: undocumented", - "Unity.Netcode.EditorTests.NetworkManagerConfigurationTests.NetworkObjectPlacement: Child: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerCustomMessageManagerTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerCustomMessageManagerTests: void CustomMessageManagerAssigned(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: IEnumerator OnServerStoppedCalledWhenServerStops(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: IEnumerator OnClientStoppedCalledWhenClientStops(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: IEnumerator OnClientAndServerStoppedCalledWhenHostStops(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: IEnumerator OnServerStartedCalledWhenServerStarts(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: IEnumerator OnClientStartedCalledWhenClientStarts(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: IEnumerator OnClientAndServerStartedCalledWhenHostStarts(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerEventsTests: IEnumerator Teardown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerObject: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerGameObject: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedGameObjects: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedNetworkObjects: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: CurrentNetworkManagerMode: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool StartNetworkManager(out NetworkManager, NetworkManagerOperatingMode, NetworkConfig): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: void ShutdownNetworkManager(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool BuffersMatch(int, long, byte[], byte[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: None: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Host: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Server: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Client: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerSceneManagerTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerSceneManagerTests: void SceneManagerAssigned(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests: void ClientDoesNotStartWhenTransportFails(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests: void HostDoesNotStartWhenTransportFails(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests: void ServerDoesNotStartWhenTransportFails(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests: IEnumerator ShutsDownWhenTransportFails(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: FailOnStart: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: FailOnNextPoll: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: bool StartClient(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: bool StartServer(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: NetworkEvent PollEvent(out ulong, out ArraySegment, out float): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: ServerClientId: undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: void Send(ulong, ArraySegment, NetworkDelivery): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: void Initialize(NetworkManager): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: void Shutdown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: ulong GetCurrentRtt(ulong): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: void DisconnectRemoteClient(ulong): undocumented", - "Unity.Netcode.RuntimeTests.NetworkManagerTransportTests.FailedTransport: void DisconnectLocalClient(): undocumented", - "Unity.Netcode.NetworkObject: NetworkBehaviour GetNetworkBehaviourAtOrderIndex(ushort): undocumented", - "Unity.Netcode.NetworkObject.VisibilityDelegate: missing ", - "Unity.Netcode.NetworkObject.SpawnDelegate: missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests: IEnumerator TestNetworkObjectClientDestroy(ClientDestroyObject): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests: IEnumerator TestNetworkObjectClientDestroy(ClientDestroyObject): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests: IEnumerator OnTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests.ClientDestroyObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests.ClientDestroyObject: ShuttingDown: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDestroyTests.ClientDestroyObject: ActiveSession: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDontDestroyWithOwnerTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDontDestroyWithOwnerTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDontDestroyWithOwnerTests: m_PrefabToSpawn: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDontDestroyWithOwnerTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDontDestroyWithOwnerTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectDontDestroyWithOwnerTests: IEnumerator DontDestroyWithOwnerTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectNetworkClientOwnedObjectsTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectNetworkClientOwnedObjectsTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectNetworkClientOwnedObjectsTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectNetworkClientOwnedObjectsTests: IEnumerator ChangeOwnershipOwnedObjectsAddTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectNetworkClientOwnedObjectsTests: IEnumerator WhenOwnershipIsChanged_OwnershipValuesUpdateCorrectly(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnNetworkDespawnTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnNetworkDespawnTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnNetworkDespawnTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnNetworkDespawnTests: IEnumerator TestNetworkObjectDespawnOnShutdown(): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectOnNetworkDespawnTests.InstanceType: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnNetworkDespawnTests.InstanceType: Server: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnNetworkDespawnTests.InstanceType: Client: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: void OnNewClientCreated(NetworkManager): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: IEnumerator ObserverSpawnTests(ObserverTestTypes, bool): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: IEnumerator ObserverSpawnTests(ObserverTestTypes, bool): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: IEnumerator InstantiateDestroySpawnNotCalled(): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: IEnumerator OnTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests: void DynamicallySpawnedNoSceneOriginException(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests.ObserverTestTypes: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests.ObserverTestTypes: WithObservers: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOnSpawnTests.ObserverTestTypes: WithoutObservers: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipComponent: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipComponent: OnLostOwnershipFired: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipComponent: OnGainedOwnershipFired: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipComponent: void OnLostOwnership(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipComponent: void OnGainedOwnership(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipComponent: void ResetFlags(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: void TestPlayerIsOwned(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: IEnumerator TestOwnershipCallbacks(OwnershipChecks): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: IEnumerator TestOwnershipCallbacksSeveralClients(OwnershipChecks): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: IEnumerator TestOwnershipCallbacksSeveralClients(OwnershipChecks): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests: IEnumerator TestOwnedObjectCounts(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests.OwnershipChecks: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests.OwnershipChecks: Change: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectOwnershipTests.OwnershipChecks: Remove: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectPropertyTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectPropertyTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void TestSerializeNetworkObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void TestSerializeGameObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void TestImplicitConversionToGameObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void TestImplicitToGameObjectIsNullWhenNotFound(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void TestTryGet(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: IEnumerator TestSerializeNull(NetworkObjectConstructorTypes): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: IEnumerator TestRpc(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: IEnumerator TestRpcImplicitNetworkObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: IEnumerator TestRpcImplicitGameObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void TestNetworkVariable(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void TestDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void FailSerializeNonSpawnedNetworkObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void FailSerializeGameObjectWithoutNetworkObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: void Dispose(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests: .ctor(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests.NetworkObjectConstructorTypes: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests.NetworkObjectConstructorTypes: None: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests.NetworkObjectConstructorTypes: NullNetworkObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectReferenceTests.NetworkObjectConstructorTypes: NullGameObject: undocumented", - "Unity.Netcode.RuntimeTests.UnityObjectContext: Object: undocumented", - "Unity.Netcode.RuntimeTests.UnityObjectContext: undocumented", - "Unity.Netcode.RuntimeTests.UnityObjectContext: .ctor(Object): undocumented", - "Unity.Netcode.RuntimeTests.UnityObjectContext: UnityObjectContext CreateGameObject(string): undocumented", - "Unity.Netcode.RuntimeTests.UnityObjectContext: UnityObjectContext CreateNetworkObject(string): undocumented", - "Unity.Netcode.RuntimeTests.UnityObjectContext: void Dispose(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSpawnManyObjectsTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSpawnManyObjectsTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSpawnManyObjectsTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSpawnManyObjectsTests: IEnumerator WhenManyObjectsAreSpawnedAtOnce_AllAreReceived(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSpawnManyObjectsTests.SpawnObjecTrackingComponent: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSpawnManyObjectsTests.SpawnObjecTrackingComponent: SpawnedObjects: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSpawnManyObjectsTests.SpawnObjecTrackingComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: .ctor(VariableLengthSafety, HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: void OnNewClientCreated(NetworkManager): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: IEnumerator NetworkObjectDeserializationFailure(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: IEnumerator NetworkBehaviourSynchronization(): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests: IEnumerator NetworkBehaviourOnSynchronize(): missing ", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests.VariableLengthSafety: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests.VariableLengthSafety: DisableNetVarSafety: undocumented", - "Unity.Netcode.RuntimeTests.NetworkObjectSynchronizationTests.VariableLengthSafety: EnabledNetVarSafety: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: ServerSpawnCount: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: ClientSpawnCount: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: void ResetSpawnCount(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: NetworkVariableData1: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: NetworkVariableData2: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: NetworkVariableData3: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: NetworkVariableData4: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetworkVariables: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithOwnerNetworkVariables: NetworkVariableData1: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithOwnerNetworkVariables: NetworkVariableData2: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithOwnerNetworkVariables: NetworkVariableData3: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithOwnerNetworkVariables: NetworkVariableData4: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithOwnerNetworkVariables: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent: NumberOfFailureTypes: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent: ServerSpawnCount: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent: ClientSpawnCount: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent: void ResetBehaviour(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent: void AssignNextFailureType(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent: void OnSynchronize(ref BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent.FailureTypes: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent.FailureTypes: None: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent.FailureTypes: DuringWriting: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent.FailureTypes: DuringReading: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent.FailureTypes: DontReadAnything: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent.FailureTypes: ThrowWriteSideException: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourSynchronizeFailureComponent.FailureTypes: ThrowReadSideException: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent: CustomSerializationData: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent: void OnSynchronize(ref BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent.SomeCustomSerializationData: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent.SomeCustomSerializationData: Value1: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent.SomeCustomSerializationData: Value2: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent.SomeCustomSerializationData: Value3: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent.SomeCustomSerializationData: Value4: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourOnSynchronizeComponent.SomeCustomSerializationData: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.EditorTests.NetworkObjectTests: undocumented", - "Unity.Netcode.EditorTests.NetworkObjectTests: void NetworkManagerOverrideTest(): undocumented", - "Unity.Netcode.EditorTests.NetworkObjectTests: void GetBehaviourIndexNone(int): undocumented", - "Unity.Netcode.EditorTests.NetworkObjectTests: void GetBehaviourIndexOne(): undocumented", - "Unity.Netcode.EditorTests.NetworkObjectTests.EmptyNetworkBehaviour: undocumented", - "Unity.Netcode.EditorTests.NetworkObjectTests.EmptyMonoBehaviour: undocumented", - "Unity.Netcode.NetworkPrefab: bool Equals(NetworkPrefab): undocumented", - "Unity.Netcode.NetworkPrefab: SourcePrefabGlobalObjectIdHash: undocumented", - "Unity.Netcode.NetworkPrefab: TargetPrefabGlobalObjectIdHash: undocumented", - "Unity.Netcode.NetworkPrefab: bool Validate(int): undocumented", - "Unity.Netcode.NetworkPrefab: string ToString(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkPrefabHandlerTests: void NetworkPrefabHandlerClass(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkPrefabHandlerTests: void Setup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkPrefabHandlerTests: void TearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkPrefaInstanceHandler: NetworkObject Instantiate(ulong, Vector3, Quaternion): undocumented", - "Unity.Netcode.RuntimeTests.NetworkPrefaInstanceHandler: void Destroy(NetworkObject): undocumented", - "Unity.Netcode.RuntimeTests.NetworkPrefaInstanceHandler: bool StillHasInstances(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkPrefaInstanceHandler: .ctor(NetworkObject): undocumented", - "Unity.Netcode.Editor.Configuration.NetworkPrefabProcessor: DefaultNetworkPrefabsPath: undocumented", - "Unity.Netcode.EditorTests.NetworkPrefabProcessorTests: undocumented", - "Unity.Netcode.EditorTests.NetworkPrefabProcessorTests: void SetUp(): undocumented", - "Unity.Netcode.EditorTests.NetworkPrefabProcessorTests: void TearDown(): undocumented", - "Unity.Netcode.EditorTests.NetworkPrefabProcessorTests: void WhenGenerateDefaultNetworkPrefabsIsEnabled_AddingAPrefabUpdatesDefaultPrefabList(): undocumented", - "Unity.Netcode.EditorTests.NetworkPrefabProcessorTests: void WhenGenerateDefaultNetworkPrefabsIsEnabled_RemovingAPrefabUpdatesDefaultPrefabList(): undocumented", - "Unity.Netcode.EditorTests.NetworkPrefabProcessorTests: void WhenGenerateDefaultNetworkPrefabsIsNotEnabled_AddingAPrefabDoesNotUpdateDefaultPrefabList(): undocumented", - "Unity.Netcode.EditorTests.NetworkPrefabProcessorTests: void WhenGenerateDefaultNetworkPrefabsIsNotEnabled_RemovingAPrefabDoesNotUpdateDefaultPrefabList(): undocumented", - "Unity.Netcode.NetworkPrefabs: Prefabs: undocumented", - "Unity.Netcode.NetworkPrefabs: void Finalize(): undocumented", - "Unity.Netcode.NetworkPrefabs: void Initialize(bool): missing ", - "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: void Remove(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: void Remove(GameObject): missing ", - "Unity.Netcode.Editor.NetworkPrefabsEditor: undocumented", - "Unity.Netcode.Editor.NetworkPrefabsEditor: void OnInspectorGUI(): undocumented", - "Unity.Netcode.NetworkSceneManager: void SetClientSynchronizationMode(LoadSceneMode): XML is not well-formed: Expected an end tag for element 'summary'", - "Unity.Netcode.RuntimeTests.ShowHideObject: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: ClientTargetedNetworkObjects: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: ClientIdToTarget: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: Silent: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: ValueAfterOwnershipChange: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: ObjectsPerClientId: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: ClientIdsRpcCalledOn: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: NetworkObject GetNetworkObjectById(ulong): undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: MyNetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: MyListSetOnSpawn: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: MyOwnerReadNetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: MyList: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: NetworkManagerOfInterest: undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: void OnGainedOwnership(): undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: void OwnerReadChanged(int, int): undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: void Changed(int, int): undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: void SomeRandomClientRPC(): undocumented", - "Unity.Netcode.RuntimeTests.ShowHideObject: void TriggerRpc(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: IEnumerator NetworkShowHideTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: IEnumerator ConcurrentShowAndHideOnDifferentObjects(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: IEnumerator NetworkShowHideQuickTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: IEnumerator NetworkHideDespawnTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: IEnumerator NetworkHideChangeOwnership(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: IEnumerator NetworkHideChangeOwnershipNotHidden(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkShowHideTests: IEnumerator NetworkShowHideAroundListModify(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestServerCanAccessItsOwnPlayer(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestServerCanAccessOtherPlayers(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestClientCantAccessServerPlayer(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestClientCanAccessOwnPlayer(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestClientCantAccessOtherPlayer(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestServerGetsNullValueIfInvalidId(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestServerCanUseGetLocalPlayerObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: void TestClientCanUseGetLocalPlayerObject(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkSpawnManagerTests: IEnumerator TestConnectAndDisconnect(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTimeSystemTests: void Setup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTimeSystemTests: IEnumerator PlayerLoopFixedTimeTest(): XML is not well-formed: End tag 'summary' does not match the start tag 'see'", - "Unity.Netcode.RuntimeTests.NetworkTimeSystemTests: IEnumerator PlayerLoopTimeTest_WithDifferentTimeScale(float): missing ", - "Unity.Netcode.RuntimeTests.NetworkTimeSystemTests: void TearDown(): undocumented", - "Unity.Netcode.RuntimeTests.PlayerLoopFixedTimeTestComponent: undocumented", - "Unity.Netcode.RuntimeTests.PlayerLoopFixedTimeTestComponent: Passes: undocumented", - "Unity.Netcode.RuntimeTests.PlayerLoopFixedTimeTestComponent: IsTestFinished: undocumented", - "Unity.Netcode.RuntimeTests.PlayerLoopTimeTestComponent: undocumented", - "Unity.Netcode.RuntimeTests.PlayerLoopTimeTestComponent: Passes: undocumented", - "Unity.Netcode.RuntimeTests.PlayerLoopTimeTestComponent: IsTestFinished: undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void TestFailCreateInvalidTime(double, uint): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void TestTimeAsFloat(double, float, uint): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void TestToFixedTime(double, double, uint): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTimeCreate(double, double, double): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTimeDefault(): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTimeAddFloatTest(double): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTimeSubFloatTest(double): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTimeAddNetworkTimeTest(double): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTimeSubNetworkTimeTest(double): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTimeAdvanceTest(): undocumented", - "Unity.Netcode.EditorTests.NetworkTimeTests: void NetworkTickAdvanceTest(): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnTransformUpdated(): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnBeforeUpdateTransformState(): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnOwnershipChanged(ulong, ulong): undocumented", - "Unity.Netcode.Components.NetworkTransform: void Update(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsUnreliableFrameSync(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsReliableStateUpdate(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationComponent: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationComponent: void MoveRpc(Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationComponent: void ScaleRpc(Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationComponent: void RotateRpc(Quaternion): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationComponent: ShouldSmooth: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationComponent: ShouldMove: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationComponent: void OnReanticipate(double): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void OnPlayerPrefabGameObjectCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void OnTimeTravelServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: AnticipatedNetworkTransform GetTestComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: AnticipatedNetworkTransform GetServerComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: AnticipatedNetworkTransform GetOtherClientComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenAnticipating_ValueChangesImmediately(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenAnticipating_AuthoritativeValueDoesNotChange(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenAnticipating_ServerDoesNotChange(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenAnticipating_OtherClientDoesNotChange(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenServerChangesSnapValue_ValuesAreUpdated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void AssertQuaternionsAreEquivalent(Quaternion, Quaternion): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void AssertVectorsAreEquivalent(Vector3, Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenServerChangesSmoothValue_ValuesAreLerped(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenServerChangesReanticipeValue_ValuesAreReanticiped(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenStaleDataArrivesToIgnoreVariable_ItIsIgnored(uint, uint): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformAnticipationTests: void WhenNonStaleDataArrivesToIgnoreVariable_ItIsNotIgnored(uint, uint): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: k_PositionRotationScaleIterations: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: k_PositionRotationScaleIterations3Axis: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_CurrentHalfPrecision: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: k_HalfPrecisionPosScale: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: k_HalfPrecisionRot: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthoritativePlayer: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_NonAuthoritativePlayer: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_ChildObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_SubChildObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_ParentObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthoritativeTransform: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_NonAuthoritativeTransform: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_OwnerTransform: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_OriginalTargetFrameRate: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_CurrentAxis: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AxisExcluded: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_DetectedPotentialInterpolatedTeleport: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_InfoMessage: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_Rotation: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_Precision: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_RotationCompression: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_Authority: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_ChildObjectLocalPosition: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_ChildObjectLocalRotation: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_ChildObjectLocalScale: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_SubChildObjectLocalPosition: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_SubChildObjectLocalRotation: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_SubChildObjectLocalScale: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthorityParentObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthorityParentNetworkTransform: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthorityChildObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthoritySubChildObject: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthorityChildNetworkTransform: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: m_AuthoritySubChildNetworkTransform: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: float GetDeltaVarianceThreshold(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool UseUnreliableDeltas(): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void Setup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void Teardown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: IEnumerator OnSetup(): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: IEnumerator OnTearDown(): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: int TargetFrameRate(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void OnOneTimeSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void OnOneTimeTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void OnClientsAndServerConnectedSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void OnTimeTravelServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: IEnumerator OnServerAndClientsConnected(): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void OnNewClientCreated(NetworkManager): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool AllChildObjectInstancesHaveChild(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool AllInstancesKeptLocalTransformValues(bool): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool AllInstancesKeptLocalTransformValues(bool): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool PostAllChildrenLocalTransformValuesMatch(bool): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void MoveRotateAndScaleAuthority(Vector3, Vector3, Vector3, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void MoveRotateAndScaleAuthority(Vector3, Vector3, Vector3, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void MoveRotateAndScaleAuthority(Vector3, Vector3, Vector3, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: void MoveRotateAndScaleAuthority(Vector3, Vector3, Vector3, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: Vector3 RandomlyExcludeAxis(Vector3): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: Vector3 RandomlyExcludeAxis(Vector3): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool PositionRotationScaleMatches(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool PositionRotationScaleMatches(Vector3, Vector3, Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool PositionsMatchesValue(Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool RotationMatchesValue(Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool ScaleMatchesValue(Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool TeleportPositionMatches(Vector3): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool RotationsMatch(bool): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool PositionsMatch(bool): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase: bool ScaleValuesMatch(bool): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Authority: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Authority: ServerAuthority: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Authority: OwnerAuthority: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Interpolation: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Interpolation: DisableInterpolate: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Interpolation: EnableInterpolate: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Precision: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Precision: Half: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Precision: Full: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Rotation: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Rotation: Euler: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Rotation: Quaternion: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.RotationCompression: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.RotationCompression: None: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.RotationCompression: QuaternionCompress: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.TransformSpace: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.TransformSpace: World: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.TransformSpace: Local: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.OverrideState: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.OverrideState: Update: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.OverrideState: CommitToTransform: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.OverrideState: SetState: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: X: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: Y: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: Z: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: XY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: XZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: YZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.Axis: XYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.ChildrenTransformCheckType: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.ChildrenTransformCheckType: Connected_Clients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformBase.ChildrenTransformCheckType: Late_Join_Client: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: ServerAuthority: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: ReadyToReceivePositionUpdate: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: AuthorityLastSentState: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: StatePushed: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: AuthorityPushedTransformState: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: void OnAuthorityPushTransformState(ref NetworkTransformState): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: StateUpdated: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: bool OnIsServerAuthoritative(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: AuthorityInstance: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: void CommitToTransform(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent: (bool isDirty, bool isPositionDirty, bool isRotationDirty, bool isScaleDirty) ApplyState(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTestComponent.AuthorityPushedTransformStateDelegateHandler: undocumented", - "Unity.Netcode.RuntimeTests.SubChildObjectComponent: bool IsSubChild(): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: TestCount: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: EnableChildLog: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: SubInstances: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: AuthorityInstance: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: AuthoritySubInstance: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: ClientInstances: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: ClientSubChildInstances: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: InstancesWithLogging: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: HasSubChild: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: void Reset(): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: ServerAuthority: undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: bool IsSubChild(): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: bool OnIsServerAuthoritative(): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: void OnNetworkObjectParentChanged(NetworkObject): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: void OnAuthorityPushTransformState(ref NetworkTransformState): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", - "Unity.Netcode.RuntimeTests.ChildObjectComponent: void OnSynchronize(ref BufferSerializer): undocumented", - "Unity.Netcode.Editor.NetworkTransformEditor: HideInterpolateValue: undocumented", - "Unity.Netcode.Editor.NetworkTransformEditor: void OnEnable(): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: .ctor(HostOrServer, Authority): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: void VerifyNonAuthorityCantChangeTransform(Interpolation): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: void TestRotationThresholdDeltaCheck(Interpolation): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: void TestBitsetValue(Interpolation): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: void TestMultipleExplicitSetStates(Interpolation): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformGeneral: void NonAuthorityOwnerSettingStateTest(Interpolation): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void OnTimeTravelServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void ParentedNetworkTransformTest(Interpolation, bool, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void ParentedNetworkTransformTest(Interpolation, bool, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void ParentedNetworkTransformTest(Interpolation, bool, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void NetworkTransformMultipleChangesOverTime(TransformSpace, Axis): XML is not well-formed: An identifier was expected", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void TestAuthoritativeTransformChangeOneAtATime(TransformSpace, Interpolation): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void TestAuthoritativeTransformChangeOneAtATime(TransformSpace, Interpolation): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformPacketLossTests: void TestSameFrameDeltaStateAndTeleport(TransformSpace, Interpolation): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests: .ctor(TransformSpace, Precision, Rotation): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests: void NetworkTransformStateFlags(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests: void TestSyncAxes(SynchronizationType, SyncAxis): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests: void TestThresholds(float, float, float): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncPosX: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncPosY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncPosZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncPosXY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncPosXZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncPosYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncPosXYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncRotX: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncRotY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncRotZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncRotXY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncRotXZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncRotYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncRotXYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncScaleX: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncScaleY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncScaleZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncScaleXY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncScaleXZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncScaleYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncScaleXYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncAllX: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncAllY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncAllZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncAllXY: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncAllXZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncAllYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SyncAxis: SyncAllXYZ: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.TransformSpace: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.TransformSpace: World: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.TransformSpace: Local: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.Rotation: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.Rotation: Euler: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.Rotation: Quaternion: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SynchronizationType: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SynchronizationType: Delta: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.SynchronizationType: Teleport: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.Precision: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.Precision: Half: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformStateTests.Precision: Full: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: k_TickRate: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: .ctor(HostOrServer, Authority, RotationCompression, Rotation, Precision): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: uint GetTickRate(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: float GetDeltaVarianceThreshold(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void ParentedNetworkTransformTest(Interpolation, bool, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void ParentedNetworkTransformTest(Interpolation, bool, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void ParentedNetworkTransformTest(Interpolation, bool, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void NetworkTransformMultipleChangesOverTime(TransformSpace, OverrideState, Axis): XML is not well-formed: An identifier was expected", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void LateJoiningPlayerInitialScaleValues(TransformSpace, Interpolation, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void LateJoiningPlayerInitialScaleValues(TransformSpace, Interpolation, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void LateJoiningPlayerInitialScaleValues(TransformSpace, Interpolation, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void TestAuthoritativeTransformChangeOneAtATime(TransformSpace, Interpolation, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void TestAuthoritativeTransformChangeOneAtATime(TransformSpace, Interpolation, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void TestAuthoritativeTransformChangeOneAtATime(TransformSpace, Interpolation, OverrideState): missing ", - "Unity.Netcode.RuntimeTests.NetworkTransformTests: void TeleportTest(Interpolation): missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.RuntimeTests.NetworkUpdateLoopTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkUpdateLoopTests: void RegisterCustomLoopInTheMiddle(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkUpdateLoopTests: IEnumerator RegisterAndUnregisterSystems(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkUpdateLoopTests: void UpdateStageSystems(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkUpdateLoopTests: IEnumerator UpdateStagesPlain(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkUpdateLoopTests: IEnumerator UpdateStagesMixed(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest: void ClientDummyNetBehaviourSpawned(DummyNetBehaviour): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest: IEnumerator TestEntireBufferIsCopiedOnNetworkVariableDelta(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: DeltaWritten: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: FieldWritten: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: DeltaRead: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: FieldRead: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: void WriteDelta(FastBufferWriter): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: void WriteField(FastBufferWriter): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: void ReadField(FastBufferReader): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetVar: void ReadDelta(FastBufferReader, bool): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetBehaviour: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetBehaviour: NetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVarBufferCopyTest.DummyNetBehaviour: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.NetworkVariable: CheckExceedsDirtinessThreshold: undocumented", - "Unity.Netcode.NetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", - "Unity.Netcode.NetworkVariable: void OnInitialize(): undocumented", - "Unity.Netcode.NetworkVariable: void Dispose(): undocumented", - "Unity.Netcode.NetworkVariable: void Finalize(): undocumented", - "Unity.Netcode.NetworkVariable.CheckExceedsDirtinessThresholdDelegate: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: SnapOnAnticipationFailVariable: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: SmoothOnAnticipationFailVariable: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: ReanticipateOnAnticipationFailVariable: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: void OnReanticipate(double): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: SnapRpcResponseReceived: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: void SetSnapValueRpc(int, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: void SetSnapValueResponseRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: void SetSmoothValueRpc(float): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationComponent: void SetReanticipateValueRpc(float): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void OnPlayerPrefabGameObjectCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: NetworkVariableAnticipationComponent GetTestComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: NetworkVariableAnticipationComponent GetServerComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: NetworkVariableAnticipationComponent GetOtherClientComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenAnticipating_ValueChangesImmediately(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenAnticipating_AuthoritativeValueDoesNotChange(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenAnticipating_ServerDoesNotChange(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenAnticipating_OtherClientDoesNotChange(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenServerChangesSnapValue_ValuesAreUpdated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenServerChangesSmoothValue_ValuesAreLerped(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenServerChangesReanticipateValue_ValuesAreReanticipated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenNonStaleDataArrivesToIgnoreVariable_ItIsNotIgnored(uint, uint): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenStaleDataArrivesToIgnoreVariable_ItIsIgnored(uint, uint): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableAnticipationTests: void WhenStaleDataArrivesToReanticipatedVariable_ItIsAppliedAndReanticipated(): undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: MinSecondsBetweenUpdates: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: MaxSecondsBetweenUpdates: undocumented", - "Unity.Netcode.NetworkVariableBase: NetworkBehaviour GetBehaviour(): undocumented", - "Unity.Netcode.NetworkVariableBase: void MarkNetworkBehaviourDirty(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: XML is not well-formed: End tag 'summary' does not match the start tag 'T'", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: OnValueChanged: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: .ctor(NetworkVariableBase): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper.OnMyValueChangedDelegateHandler: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableBaseHelper: .ctor(NetworkVariableBase): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableNameTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableNameTests: void SetUp(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableNameTests: void TearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableNameTests: void VerifyNetworkVariableNameInitialization(): undocumented", - "Unity.Netcode.UserNetworkVariableSerialization.WriteDeltaDelegate: missing ", - "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: missing ", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeSerializer_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypes: void InitializeEqualityChecker_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.RuntimeTests.EmbeddedManagedNetworkSerializableType: undocumented", - "Unity.Netcode.RuntimeTests.EmbeddedManagedNetworkSerializableType: Int: undocumented", - "Unity.Netcode.RuntimeTests.EmbeddedManagedNetworkSerializableType: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: Str: undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: Ints: undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: Embedded: undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: InMemoryValue: undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: bool Equals(ManagedNetworkSerializableType): undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.ManagedNetworkSerializableType: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: Str: undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: Int: undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: InMemoryValue: undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: bool Equals(UnmanagedNetworkSerializableType): undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedNetworkSerializableType: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedTemplateNetworkSerializableType: undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedTemplateNetworkSerializableType: Value: undocumented", - "Unity.Netcode.RuntimeTests.UnmanagedTemplateNetworkSerializableType: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.ManagedTemplateNetworkSerializableType: undocumented", - "Unity.Netcode.RuntimeTests.ManagedTemplateNetworkSerializableType: Value: undocumented", - "Unity.Netcode.RuntimeTests.ManagedTemplateNetworkSerializableType: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerable TestDataSource(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerator OnServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerator ServerChangesOwnerWritableNetVar(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerator ServerChangesServerWritableNetVar(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerator ClientChangesOwnerWritableNetVar(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerator ClientOwnerWithReadWriteChangesNetVar(): missing ", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerator ClientCannotChangeServerWritableNetVar(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariablePermissionTests: IEnumerator ServerCannotChangeOwnerWritableNetVar(): undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: SomeInt: undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: SomeBool: undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: NetworkSerializeCalledOnWrite: undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: NetworkSerializeCalledOnRead: undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: bool Equals(TestStruct): undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.TestStruct: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.TestClass: undocumented", - "Unity.Netcode.RuntimeTests.TestClass: SomeInt: undocumented", - "Unity.Netcode.RuntimeTests.TestClass: SomeBool: undocumented", - "Unity.Netcode.RuntimeTests.TestClass: NetworkSerializeCalledOnWrite: undocumented", - "Unity.Netcode.RuntimeTests.TestClass: NetworkSerializeCalledOnRead: undocumented", - "Unity.Netcode.RuntimeTests.TestClass: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.TestClass: bool Equals(TestClass): undocumented", - "Unity.Netcode.RuntimeTests.TestClass: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.TestClass: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.TestClass_ReferencedOnlyByTemplateNetworkBehavourType: undocumented", - "Unity.Netcode.RuntimeTests.TestClass_ReferencedOnlyByTemplateNetworkBehavourType: bool Equals(TestClass_ReferencedOnlyByTemplateNetworkBehavourType): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheScalar: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheEnum: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheList: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheStructList: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheLargeList: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: FixedString32: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: void Awake(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheStruct: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheClass: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheTemplateStruct: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: TheTemplateClass: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: ListDelegateTriggered: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest.SomeEnum: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest.SomeEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest.SomeEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTest.SomeEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void ClientNetworkVariableTestSpawned(NetworkVariableTest): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: .ctor(bool): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: bool CanStartServerAndClients(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AllNetworkVariableTypes(HostOrServer): missing ", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void ClientWritePermissionTest(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkVariableSync_WithDifferentTimeScale(HostOrServer, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkVariableSync_WithDifferentTimeScale(HostOrServer, float): missing ", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void FixedString32Test(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkListAdd(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenListContainsManyLargeValues_OverflowExceptionIsNotThrown(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkListContains(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkListInsert(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkListIndexOf(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkListValueUpdate(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkListRemoveTests(HostOrServer, ListRemoveTypes): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void NetworkListClear(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableClass(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableTemplateClass(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkListStruct(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableStruct(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableTemplateStruct(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableTemplateBehaviourClass(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableTemplateBehaviourClassNotReferencedElsewhere(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableTemplateBehaviourStruct(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestNetworkVariableEnum(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestINetworkSerializableClassCallsNetworkSerialize(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestINetworkSerializableStructCallsNetworkSerialize(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestCustomGenericSerialization(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestUnsupportedManagedTypesThrowExceptions(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestUnsupportedManagedTypesWithUserSerializationDoNotThrowExceptions(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestUnsupportedUnmanagedTypesThrowExceptions(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestTypesReferencedInSubclassSerializeSuccessfully(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestUnsupportedUnmanagedTypesWithUserSerializationDoNotThrowExceptions(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenCreatingAnArrayOfNetVars_InitializingVariablesDoesNotThrowAnException(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertArraysMatch(ref NativeArray, ref NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertArraysDoNotMatch(ref NativeArray, ref NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertListsMatch(ref List, ref List): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertListsDoNotMatch(ref List, ref List): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertSetsMatch(ref HashSet, ref HashSet): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertSetsDoNotMatch(ref HashSet, ref HashSet): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertMapsMatch(ref Dictionary, ref Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void AssertMapsDoNotMatch(ref Dictionary, ref Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenSerializingAndDeserializingValueTypeNetworkVariables_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenSerializingAndDeserializingValueTypeNativeArrayNetworkVariables_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: T RandGenBytes(Random): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: FixedString32Bytes RandGenFixedString32(Random): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: string ArrayStr(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: (NativeArray original, NativeArray original2, NativeArray changed, NativeArray changed2) GetArarys(GetRandomElement): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenSerializingAndDeserializingVeryLargeValueTypeNativeArrayNetworkVariables_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: string ListStr(List): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: string HashSetStr(HashSet): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: string DictionaryStr(Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: (List original, List original2, List changed, List changed2) GetLists(GetRandomElement): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: (HashSet original, HashSet original2, HashSet changed, HashSet changed2) GetHashSets(GetRandomElement): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: (Dictionary original, Dictionary original2, Dictionary changed, Dictionary changed2) GetDictionaries(GetRandomElement, GetRandomElement): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenSerializingAndDeserializingVeryLargeListNetworkVariables_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenSerializingAndDeserializingVeryLargeHashSetNetworkVariables_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void WhenSerializingAndDeserializingVeryLargeDictionaryNetworkVariables_ValuesAreSerializedCorrectly(Type, Type): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestManagedINetworkSerializableNetworkVariablesDeserializeInPlace(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: void TestUnmnagedINetworkSerializableNetworkVariablesDeserializeInPlace(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests: IEnumerator OnTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests.ListRemoveTypes: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests.ListRemoveTypes: Remove: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests.ListRemoveTypes: RemoveAt: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTests.GetRandomElement: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate: void SetNetworkListTestState(NetworkListTestStates): undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate: bool OnHasConditionBeenReached(): missing ", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate: .ctor(NetworkVariableTest, NetworkVariableTest, NetworkListTestStates, int): undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate.NetworkListTestStates: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate.NetworkListTestStates: Add: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate.NetworkListTestStates: ContainsLarge: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate.NetworkListTestStates: Contains: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate.NetworkListTestStates: VerifyData: undocumented", - "Unity.Netcode.RuntimeTests.NetworkListTestPredicate.NetworkListTestStates: IndexOf: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests: IEnumerable TestDataSource(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests: IEnumerator OnServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests: IEnumerator TestInheritedFields(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentA: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentA: PublicFieldA: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentA: m_ProtectedFieldA: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentA: void ChangeValuesA(int, int, int): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentA: bool CompareValuesA(ComponentA): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentB: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentB: PublicFieldB: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentB: m_ProtectedFieldB: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentB: void ChangeValuesB(int, int, int): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentB: bool CompareValuesB(ComponentB): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentC: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentC: PublicFieldC: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentC: m_ProtectedFieldC: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentC: void ChangeValuesC(int, int, int): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableInheritanceTests.ComponentC: bool CompareValuesC(ComponentC): undocumented", - "Unity.Netcode.RuntimeTests.NetvarDespawnShutdown: undocumented", - "Unity.Netcode.RuntimeTests.NetvarDespawnShutdown: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableModifyOnNetworkDespawn: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableModifyOnNetworkDespawn: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableModifyOnNetworkDespawn: IEnumerator ModifyNetworkVariableOrListOnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.NetVarPermTestComp: undocumented", - "Unity.Netcode.RuntimeTests.NetVarPermTestComp: OwnerWritable_Position: undocumented", - "Unity.Netcode.RuntimeTests.NetVarPermTestComp: ServerWritable_Position: undocumented", - "Unity.Netcode.RuntimeTests.NetVarPermTestComp: OwnerReadWrite_Position: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableMiddleclass: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableSubclass: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: Int0: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: Int1: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: Int2: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: Int3: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: Int4: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: AllInts: undocumented", - "Unity.Netcode.RuntimeTests.NetworkBehaviourWithNetVarArray: InitializedFieldCount: undocumented", - "Unity.Netcode.RuntimeTests.TemplatedValueOnlyReferencedByNetworkVariableSubclass: undocumented", - "Unity.Netcode.RuntimeTests.TemplatedValueOnlyReferencedByNetworkVariableSubclass: Value: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: A: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: B: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: C: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: D: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: E: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: F: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: G: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: H: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: I: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: J: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: K: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: bool Equals(HashableNetworkVariableTestStruct): undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestStruct: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: A: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: B: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: C: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: D: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: E: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: F: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: G: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: H: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: I: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: J: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: K: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: bool Equals(HashMapKeyStruct): undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyStruct: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: A: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: B: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: C: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: D: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: E: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: F: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: G: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: H: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: I: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: J: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: K: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: bool Equals(HashMapValStruct): undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.HashMapValStruct: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: A: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: B: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: C: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: D: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: E: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: F: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: G: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: H: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: I: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: J: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: K: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestStruct: NetworkVariableTestStruct GetTestStruct(): undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestClass: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestClass: Data: undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestClass: bool Equals(HashableNetworkVariableTestClass): undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestClass: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestClass: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.HashableNetworkVariableTestClass: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyClass: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyClass: Data: undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyClass: bool Equals(HashMapKeyClass): undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyClass: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyClass: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.HashMapKeyClass: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.HashMapValClass: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValClass: Data: undocumented", - "Unity.Netcode.RuntimeTests.HashMapValClass: bool Equals(HashMapValClass): undocumented", - "Unity.Netcode.RuntimeTests.HashMapValClass: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.HashMapValClass: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.HashMapValClass: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestClass: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestClass: Data: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestClass: bool Equals(NetworkVariableTestClass): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestClass: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestClass: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTestClass: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteByteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongByteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2ByteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassByteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SbyteVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SbyteArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SbyteManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SbyteManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteSbyteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongSbyteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2SbyteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassSbyteDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ShortVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ShortArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ShortManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ShortManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteShortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongShortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2ShortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassShortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UshortVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UshortArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UshortManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UshortManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteUshortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongUshortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2UshortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassUshortDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: IntVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: IntArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: IntManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: IntManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteIntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongIntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassIntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UintVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UintArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UintManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UintManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteUintDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongUintDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2UintDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassUintDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: LongVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: LongArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: LongManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: LongManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteLongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongLongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2LongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassLongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UlongVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UlongArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UlongManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UlongManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteUlongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongUlongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2UlongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassUlongDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: BoolVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: BoolArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: BoolManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: BoolManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteBoolDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongBoolDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2BoolDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassBoolDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: CharVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: CharArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: CharManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: CharManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteCharDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongCharDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2CharDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassCharDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FloatVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FloatArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FloatManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FloatManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteFloatDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongFloatDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2FloatDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassFloatDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: DoubleVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: DoubleArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: DoubleManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: DoubleManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteDoubleDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongDoubleDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2DoubleDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassDoubleDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SByteEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SByteEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SByteEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ShortEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ShortEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ShortEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UShortEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UShortEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UShortEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: IntEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: IntEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: IntEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UIntEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UIntEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UIntEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: LongEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: LongEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: LongEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongEnumVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongEnumArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongEnumManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2Var: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2ArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2ManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2ManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteVector2DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongVector2DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2Vector2DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassVector2DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3Var: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3ArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3ManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3ManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteVector3DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongVector3DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2Vector3DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassVector3DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2IntVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2IntArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2IntManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2IntManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteVector2IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongVector2IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2Vector2IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassVector2IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3IntVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3IntArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3IntManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector3IntManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteVector3IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongVector3IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2Vector3IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassVector3IntDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector4Var: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector4ArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector4ManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector4ManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteVector4DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongVector4DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2Vector4DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassVector4DictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: QuaternionVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: QuaternionArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: QuaternionManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: QuaternionManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteQuaternionDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongQuaternionDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2QuaternionDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassQuaternionDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ColorVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ColorArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ColorManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Color32Var: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Color32ArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Color32ManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: RayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: RayArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: RayManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Ray2DVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Ray2DArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Ray2DManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: TestStructVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: TestStructArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: TestStructManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: TestStructManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteTestStructDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongTestStructDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2TestStructDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassTestStructDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FixedStringVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FixedStringArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FixedStringManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: FixedStringManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteFixedStringDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongFixedStringDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2FixedStringDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassFixedStringDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UnmanagedNetworkSerializableTypeVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UnmanagedNetworkSerializableManagedHashSetVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ByteUnmanagedNetworkSerializableDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ULongUnmanagedNetworkSerializableDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: Vector2UnmanagedNetworkSerializableDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: HashMapKeyClassUnmanagedNetworkSerializableDictionaryVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UnmanagedNetworkSerializableArrayVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: UnmanagedNetworkSerializableManagedListVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: ManagedNetworkSerializableTypeVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: StringVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: GuidVar: undocumented", - "Unity.Netcode.RuntimeTests.NetVarILPPClassForTests: SubclassVar: undocumented", - "Unity.Netcode.RuntimeTests.TemplateNetworkBehaviourType: undocumented", - "Unity.Netcode.RuntimeTests.TemplateNetworkBehaviourType: TheVar: undocumented", - "Unity.Netcode.RuntimeTests.IntermediateNetworkBehavior: undocumented", - "Unity.Netcode.RuntimeTests.IntermediateNetworkBehavior: TheVar2: undocumented", - "Unity.Netcode.RuntimeTests.ClassHavingNetworkBehaviour: undocumented", - "Unity.Netcode.RuntimeTests.ClassHavingNetworkBehaviour2: undocumented", - "Unity.Netcode.RuntimeTests.StructHavingNetworkBehaviour: undocumented", - "Unity.Netcode.RuntimeTests.StructUsedOnlyInNetworkList: undocumented", - "Unity.Netcode.RuntimeTests.StructUsedOnlyInNetworkList: Value: undocumented", - "Unity.Netcode.RuntimeTests.StructUsedOnlyInNetworkList: bool Equals(StructUsedOnlyInNetworkList): undocumented", - "Unity.Netcode.RuntimeTests.StructUsedOnlyInNetworkList: bool Equals(object): undocumented", - "Unity.Netcode.RuntimeTests.StructUsedOnlyInNetworkList: int GetHashCode(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsComponent: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsComponent: TheVariable: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: void OnPlayerPrefabGameObjectCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: NetworkVariableTraitsComponent GetTestComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: NetworkVariableTraitsComponent GetServerComponent(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: void WhenNewValueIsLessThanThreshold_VariableIsNotSerialized(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: void WhenNewValueIsGreaterThanThreshold_VariableIsSerialized(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: void WhenNewValueIsLessThanThresholdButMaxTimeHasPassed_VariableIsSerialized(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: void WhenNewValueIsGreaterThanThresholdButMinTimeHasNotPassed_VariableIsNotSerialized(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableTraitsTests: void WhenNoThresholdIsSetButMinTimeHasNotPassed_VariableIsNotSerialized(): undocumented", - "Unity.Netcode.RuntimeTests.MyTypeOne: undocumented", - "Unity.Netcode.RuntimeTests.MyTypeOne: Value: undocumented", - "Unity.Netcode.RuntimeTests.MyTypeTwo: undocumented", - "Unity.Netcode.RuntimeTests.MyTypeTwo: Value: undocumented", - "Unity.Netcode.RuntimeTests.MyTypeThree: undocumented", - "Unity.Netcode.RuntimeTests.MyTypeThree: Value: undocumented", - "Unity.Netcode.RuntimeTests.WorkingUserNetworkVariableComponentBase: void Reset(): undocumented", - "Unity.Netcode.RuntimeTests.WorkingUserNetworkVariableComponentBase: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.WorkingUserNetworkVariableComponentBase: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.WorkingUserNetworkVariableComponent: undocumented", - "Unity.Netcode.RuntimeTests.WorkingUserNetworkVariableComponent: NetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.WorkingUserNetworkVariableComponentUsingExtensionMethod: undocumented", - "Unity.Netcode.RuntimeTests.WorkingUserNetworkVariableComponentUsingExtensionMethod: NetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.NonWorkingUserNetworkVariableComponent: undocumented", - "Unity.Netcode.RuntimeTests.NonWorkingUserNetworkVariableComponent: NetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: .ctor(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: IEnumerator WhenUsingAUserSerializableNetworkVariableWithUserSerialization_ReplicationWorks(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: IEnumerator WhenUsingAUserSerializableNetworkVariableWithUserSerializationViaExtensionMethod_ReplicationWorks(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: void WhenUsingAUserSerializableNetworkVariableWithoutUserSerialization_ReplicationFails(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableUserSerializableTypesTests: IEnumerator OnTearDown(): undocumented", - "Unity.Netcode.EditorTests.NetworkVar.NetworkVarTests: undocumented", - "Unity.Netcode.EditorTests.NetworkVar.NetworkVarTests: void TestAssignmentUnchanged(): undocumented", - "Unity.Netcode.EditorTests.NetworkVar.NetworkVarTests: void TestAssignmentChanged(): undocumented", - "Unity.Netcode.EditorTests.NetworkVar.NetworkVarTests.NetworkVarComponent: undocumented", - "Unity.Netcode.EditorTests.NetworkVar.NetworkVarTests.NetworkVarComponent: NetworkVariable: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityComponent: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityComponent: void Hide(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityComponent: bool HandleCheckObjectVisibility(ulong): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests: .ctor(SceneManagementState): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests: IEnumerator OnServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests: IEnumerator HiddenObjectsTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests.SceneManagementState: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests.SceneManagementState: SceneManagementEnabled: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVisibilityTests.SceneManagementState: SceneManagementDisabled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void RegisterAndLabelNetworkObject(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void DeRegisterNetworkObject(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnLostOwnership(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnGainedOwnership(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnDestroy(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: MyNetworkList: undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: void Changed(NetworkListEvent): undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: AddValues: undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: NetworkUpdateStageToCheck: undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: void NetworkUpdate(NetworkUpdateStage): undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: void OnDestroy(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedObject: void InitializeLastCient(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedTests: undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerModifiedTests: IEnumerator OwnerModifiedTest(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: Objects: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: CurrentlySpawning: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: ClientTargetedNetworkObjects: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: MyNetworkVariableOwner: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: MyNetworkVariableServer: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: MyNetworkListOwner: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: MyNetworkListServer: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: void CheckLists(NetworkList, NetworkList): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: void VerifyConsistency(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: void OwnerChanged(int, int): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: void ServerChanged(int, int): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: void ListOwnerChanged(NetworkListEvent): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionObject: void ListServerChanged(NetworkListEvent): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionHideTests: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionHideTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionHideTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.OwnerPermissionHideTests: IEnumerator OwnerPermissionTest(): undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests: IEnumerator TestPeerDisconnectCallback(ClientDisconnectType, ulong): undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests.ClientDisconnectType: undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests.ClientDisconnectType: ServerDisconnectsClient: undocumented", - "Unity.Netcode.RuntimeTests.PeerDisconnectCallbackTests.ClientDisconnectType: ClientDisconnectsFromServer: undocumented", - "Unity.Netcode.RuntimeTests.PlayerObjectTests: undocumented", - "Unity.Netcode.RuntimeTests.PlayerObjectTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.PlayerObjectTests: m_NewPlayerToSpawn: undocumented", - "Unity.Netcode.RuntimeTests.PlayerObjectTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.PlayerObjectTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.PlayerObjectTests: IEnumerator SpawnAndReplaceExistingPlayerObject(): undocumented", - "Unity.Netcode.RpcAttribute: RequireOwnership: undocumented", - "Unity.Netcode.RpcAttribute: DeferLocal: undocumented", - "Unity.Netcode.RpcAttribute: AllowTargetOverride: undocumented", - "Unity.Netcode.RpcAttribute: .ctor(SendTo): undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: Delivery: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: RequireOwnership: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: DeferLocal: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: AllowTargetOverride: undocumented", - "Unity.Netcode.ServerRpcAttribute: RequireOwnership: undocumented", - "Unity.Netcode.ServerRpcAttribute: .ctor(): undocumented", - "Unity.Netcode.ClientRpcAttribute: .ctor(): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: Count: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: ReceivedFrom: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: void ResponseServerRpc(ServerRpcParams): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: void NoParamsClientRpc(): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: void OneParamClientRpc(int): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: void TwoParamsClientRpc(int, int): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsObject: void WithParamsClientRpc(ClientRpcParams): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: GameObject PreparePrefab(Type): undocumented", - "Unity.Netcode.RuntimeTests.RpcManyClientsTests: void RpcManyClientsTest(): undocumented", - "Unity.Netcode.LocalDeferMode: undocumented", - "Unity.Netcode.LocalDeferMode: Default: undocumented", - "Unity.Netcode.LocalDeferMode: Defer: undocumented", - "Unity.Netcode.LocalDeferMode: SendImmediate: undocumented", - "Unity.Netcode.RpcSendParams: Target: undocumented", - "Unity.Netcode.RpcSendParams: LocalDeferMode: undocumented", - "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(BaseRpcTarget): undocumented", - "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(LocalDeferMode): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcSendParams): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(BaseRpcTarget): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(LocalDeferMode): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcReceiveParams): undocumented", - "Unity.Netcode.RuntimeTests.RpcQueueTests: void Setup(): undocumented", - "Unity.Netcode.RuntimeTests.RpcQueueTests: void TearDown(): undocumented", - "Unity.Netcode.RpcTargetUse: undocumented", - "Unity.Netcode.RpcTargetUse: Temp: undocumented", - "Unity.Netcode.RpcTargetUse: Persistent: undocumented", - "Unity.Netcode.RpcTarget: void Dispose(): undocumented", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): missing ", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): missing ", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnServerRpcAction: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnClientRpcAction: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyServerRpc(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyClientRpc(ClientRpcParams): undocumented", - "Unity.Netcode.RuntimeTests.RpcTests: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.RpcTests: IEnumerator TestRpcs(): undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.CompileTimeNoRpcsBaseClassTest: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.CompileTimeHasRpcsChildClassDerivedFromNoRpcsBaseClassTest: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.CompileTimeHasRpcsChildClassDerivedFromNoRpcsBaseClassTest: void SomeDummyServerRpc(): undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.GenericRpcTestNB: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.GenericRpcTestNB: OnServer_Rpc: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.GenericRpcTestNB: void MyServerRpc(T, ServerRpcParams): undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.RpcTestNBFloat: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.RpcTestNB: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.RpcTestNB: OnTypedServer_Rpc: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.RpcTestNB: OnClient_Rpc: undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.RpcTestNB: void MyClientRpc(): undocumented", - "Unity.Netcode.RuntimeTests.RpcTests.RpcTestNB: void MyTypedServerRpc(Vector3, Vector3[], FixedString32Bytes): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: .ctor(): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: void TestValueType(T, T): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: void TestValueTypeArray(T[], T[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: void TestValueTypeNativeArray(NativeArray, NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: void WhenSendingAValueTypeOverAnRpc_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: void WhenSendingAnArrayOfValueTypesOverAnRpc_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests: void WhenSendingANativeArrayOfValueTypesOverAnRpc_ValuesAreSerializedCorrectly(Type): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: OnReceived: undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ByteClientRpc(byte): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ByteArrayClientRpc(byte[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ByteNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void SbyteClientRpc(sbyte): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void SbyteArrayClientRpc(sbyte[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void SbyteNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ShortClientRpc(short): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ShortArrayClientRpc(short[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ShortNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UshortClientRpc(ushort): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UshortArrayClientRpc(ushort[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UshortNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void IntClientRpc(int): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void IntArrayClientRpc(int[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void IntNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UintClientRpc(uint): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UintArrayClientRpc(uint[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UintNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void LongClientRpc(long): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void LongArrayClientRpc(long[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void LongNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UlongClientRpc(ulong): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UlongArrayClientRpc(ulong[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UlongNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void BoolClientRpc(bool): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void BoolArrayClientRpc(bool[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void BoolNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void CharClientRpc(char): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void CharArrayClientRpc(char[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void CharNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void FloatClientRpc(float): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void FloatArrayClientRpc(float[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void FloatNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void DoubleClientRpc(double): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void DoubleArrayClientRpc(double[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void DoubleNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ByteEnumClientRpc(ByteEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ByteEnumArrayClientRpc(ByteEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ByteEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void SByteEnumClientRpc(SByteEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void SByteEnumArrayClientRpc(SByteEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void SByteEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ShortEnumClientRpc(ShortEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ShortEnumArrayClientRpc(ShortEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ShortEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UShortEnumClientRpc(UShortEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UShortEnumArrayClientRpc(UShortEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UShortEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void IntEnumClientRpc(IntEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void IntEnumArrayClientRpc(IntEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void IntEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UIntEnumClientRpc(UIntEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UIntEnumArrayClientRpc(UIntEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void UIntEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void LongEnumClientRpc(LongEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void LongEnumArrayClientRpc(LongEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void LongEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ULongEnumClientRpc(ULongEnum): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ULongEnumArrayClientRpc(ULongEnum[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ULongEnumNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector2ClientRpc(Vector2): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector2ArrayClientRpc(Vector2[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector2NativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector3ClientRpc(Vector3): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector3ArrayClientRpc(Vector3[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector3NativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector2IntClientRpc(Vector2Int): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector2IntArrayClientRpc(Vector2Int[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector2IntNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector3IntClientRpc(Vector3Int): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector3IntArrayClientRpc(Vector3Int[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector3IntNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector4ClientRpc(Vector4): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector4ArrayClientRpc(Vector4[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Vector4NativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void QuaternionClientRpc(Quaternion): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void QuaternionArrayClientRpc(Quaternion[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void QuaternionNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ColorClientRpc(Color): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ColorArrayClientRpc(Color[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void ColorNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Color32ClientRpc(Color32): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Color32ArrayClientRpc(Color32[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Color32NativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void RayClientRpc(Ray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void RayArrayClientRpc(Ray[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void RayNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Ray2DClientRpc(Ray2D): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Ray2DArrayClientRpc(Ray2D[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void Ray2DNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void NetworkVariableTestStructClientRpc(NetworkVariableTestStruct): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void NetworkVariableTestStructArrayClientRpc(NetworkVariableTestStruct[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void NetworkVariableTestStructNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void FixedString32BytesClientRpc(FixedString32Bytes): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void FixedString32BytesArrayClientRpc(FixedString32Bytes[]): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB: void FixedString32BytesNativeArrayClientRpc(NativeArray): undocumented", - "Unity.Netcode.RuntimeTests.RpcTypeSerializationTests.RpcTestNB.OnReceivedDelegate: undocumented", - "Unity.Netcode.EditorTests.ServerNetworkTimeSystemTests: undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: void Setup(): undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: void TestStopAndRestartForExceptions(): undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: void TestStartupServerState(): undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: void TestFlagShutdown(): undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: void TestShutdownWithoutStartForExceptions(): undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: void TestShutdownWithoutConfigForExceptions(): undocumented", - "Unity.Netcode.RuntimeTests.StartStopTests: void Teardown(): undocumented", - "Unity.Netcode.RuntimeTests.StopStartRuntimeTests: undocumented", - "Unity.Netcode.RuntimeTests.StopStartRuntimeTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.StopStartRuntimeTests: void OnOneTimeSetup(): undocumented", - "Unity.Netcode.RuntimeTests.StopStartRuntimeTests: IEnumerator WhenShuttingDownAndRestarting_SDKRestartsSuccessfullyAndStaysRunning(): undocumented", - "Unity.Netcode.RuntimeTests.StopStartRuntimeTests: IEnumerator WhenShuttingDownTwiceAndRestarting_SDKRestartsSuccessfullyAndStaysRunning(): undocumented", - "Unity.Netcode.RuntimeTests.TimeInitializationTest: IEnumerator TestClientTimeInitializationOnConnect(float, float, bool): undocumented", - "Unity.Netcode.RuntimeTests.TimeInitializationTest: IEnumerator Teardown(): undocumented", - "Unity.Netcode.RuntimeTests.TimeIntegrationTest: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.TimeIntegrationTest: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): undocumented", - "Unity.Netcode.RuntimeTests.TimeIntegrationTest: IEnumerator TestTimeIntegrationTest(int, uint): undocumented", - "Unity.Netcode.RuntimeTests.TimeIntegrationTest: IEnumerator OnTearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: k_DefaultTimeOutWaitPeriod: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: m_IsStarted: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: TimedOut: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: float GetTimeElapsed(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStart(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Start(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Stop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool OnHasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool HasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: .ctor(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: int GetFrameCount(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: bool OnHasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStart(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: .ctor(float, uint): undocumented", - "Unity.Netcode.EditorTests.TimingTestHelper: List GetRandomTimeSteps(float, float, float, int): undocumented", - "Unity.Netcode.EditorTests.TimingTestHelper: void ApplySteps(NetworkTimeSystem, NetworkTickSystem, List, StepCheckDelegate): undocumented", - "Unity.Netcode.EditorTests.TimingTestHelper: void ApplySteps(NetworkTimeSystem, NetworkTickSystem, List, StepCheckResetDelegate): undocumented", - "Unity.Netcode.EditorTests.TimingTestHelper.StepCheckDelegate: undocumented", - "Unity.Netcode.EditorTests.TimingTestHelper.StepCheckResetDelegate: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: TestComplete: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: MinThreshold: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: CheckPosition: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: IsMoving: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: IsFixed: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: bool ReachedTargetLocalSpaceTransitionCount(): undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: void OnInitialize(ref NetworkTransformState): undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: void StartMoving(): undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: void StopMoving(): undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationObject: void Update(): undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationTests: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.TransformInterpolationTests: IEnumerator TransformInterpolationTest(): undocumented", - "Unity.Netcode.Transports.UTP.UnityTransport.ConnectionAddressData: IsIpv6: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator Cleanup(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: void DetectInvalidEndpoint(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ConnectSingleClient(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ConnectMultipleClients(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ServerDisconnectSingleClient(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ServerDisconnectMultipleClients(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ClientDisconnectSingleClient(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ClientDisconnectMultipleClients(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator RepeatedServerDisconnectsNoop(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator RepeatedClientDisconnectsNoop(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator DifferentServerAndListenAddresses(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ServerDisconnectWithDataInQueue(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ClientDisconnectWithDataInQueue(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportConnectionTests: IEnumerator ServerDisconnectAfterClientDisconnect(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: Driver: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: UnreliableSequencedPipeline: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: ReliableSequencedPipeline: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: ReliableSequencedFragmentedPipeline: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: LastEventPipeline: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: void Connect(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportDriverClient: IEnumerator WaitForNetworkEvent(Type): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers: MaxNetworkEventWaitTime: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers: IEnumerator WaitForNetworkEvent(NetworkEvent, List, float): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers: void InitializeTransport(out UnityTransport, out List, int, int, NetworkFamily): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEvent: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEvent: Type: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEvent: ClientID: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEvent: Data: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEvent: ReceiveTime: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEventLogger: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEventLogger: Events: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTestHelpers.TransportEventLogger: void HandleEvent(NetworkEvent, ulong, ArraySegment, float): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_BasicInitServer_IPv4(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_BasicInitClient_IPv4(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_BasicInitServer_IPv6(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_BasicInitClient_IPv6(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_NoRestartServer(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_NoRestartClient(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_NotBothServerAndClient(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_RestartSucceedsAfterFailure(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_StartServerWithoutAddresses(): undocumented", - "Unity.Netcode.EditorTests.UnityTransportTests: void UnityTransport_StartClientFailsWithBadAddress(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator Cleanup(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator PingPong(NetworkDelivery, NetworkFamily): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator PingPongSimultaneous(NetworkDelivery, NetworkFamily): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator SendMaximumPayloadSize(NetworkDelivery, NetworkFamily): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator MultipleSendsSingleFrame(NetworkDelivery, NetworkFamily): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator SendMultipleClients(NetworkDelivery, NetworkFamily): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator ReceiveMultipleClients(NetworkDelivery, NetworkFamily): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator DisconnectOnReliableSendQueueOverflow(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator SendCompletesOnUnreliableSendQueueOverflow(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator SimulatorParametersAreEffective(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator CurrentRttReportedCorrectly(): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator SendQueuesFlushedOnShutdown(NetworkDelivery): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator SendQueuesFlushedOnLocalClientDisconnect(NetworkDelivery): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator SendQueuesFlushedOnRemoteClientDisconnect(NetworkDelivery): undocumented", - "Unity.Netcode.RuntimeTests.UnityTransportTests: IEnumerator ReliablePayloadsCanBeLargerThanMaximum(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: Stop: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: Received: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: ReceivedParams: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: ReceivedFrom: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: ReceivedCount: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void OnRpcReceived(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void OnRpcReceivedWithParams(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToEveryoneRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToMeRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToOwnerRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotOwnerRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToServerRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotMeRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotServerRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToClientsAndHostRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToEveryoneWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToMeWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToOwnerWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotOwnerWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToServerWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotMeWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotServerWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToClientsAndHostWithParamsRpc(int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToEveryoneWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToMeWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToOwnerWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotOwnerWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToServerWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotMeWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotServerWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToClientsAndHostWithRpcParamsRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToEveryoneWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToMeWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToOwnerWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotOwnerWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToServerWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotMeWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotServerWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToClientsAndHostWithParamsAndRpcParamsRpc(int, bool, float, string, RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToSpecifiedInParamsAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToEveryoneAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToMeAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToOwnerAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotOwnerAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToServerAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotMeAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotServerAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToClientsAndHostAllowOverrideRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToEveryoneDeferLocalRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToMeDeferLocalRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToOwnerDeferLocalRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotOwnerDeferLocalRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToServerDeferLocalRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotServerDeferLocalRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToClientsAndHostDeferLocalRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToEveryoneRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToMeRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToOwnerRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotOwnerRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToServerRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotMeRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToNotServerRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void DefaultToClientsAndHostRequireOwnershipRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void SpecifiedInParamsRequireOwnershipRpc(RpcParams): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void MutualRecursionServerRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void MutualRecursionClientRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcNetworkBehaviour: void SelfRecursiveRpc(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: YieldCheck: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: YieldCycleCount: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: m_EnableTimeTravel: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: m_SetupIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: m_TearDownIsACoroutine: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: m_ServerObject: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void OnInlineTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void Clear(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void OnOneTimeTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void OnTimeTravelServerAndClientsConnected(): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: UniversalRpcNetworkBehaviour GetPlayerObject(ulong, ulong): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifyLocalReceived(ulong, ulong, string, bool, int): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifyLocalReceivedWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifyNotReceived(ulong, ulong[]): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifyRemoteReceived(ulong, ulong, string, ulong[], bool, bool, int): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifyRemoteReceivedWithParams(ulong, ulong, string, ulong[], int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: s_ClientIds: undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToEveryone(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToEveryoneWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToEveryoneWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToId(ulong, ulong, ulong, string, bool): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotId(ulong, ulong, ulong, string, bool): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToIdWithParams(ulong, ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotIdWithParams(ulong, ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToOwner(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotOwner(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToServer(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotServer(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToClientsAndHost(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToMe(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotMe(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToOwnerWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotOwnerWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToServerWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotServerWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToClientsAndHostWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToMeWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotMeWithReceivedFrom(ulong, ulong, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToOwnerWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotOwnerWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToServerWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotServerWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToClientsAndHostWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToMeWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void VerifySentToNotMeWithParams(ulong, ulong, string, int, bool, float, string): undocumented", - "Unity.Netcode.RuntimeTests.UniversalRpcTests.UniversalRpcTestsBase: void RethrowTargetInvocationException(Action): undocumented", - "Unity.Netcode.RuntimeTests.UnnamedMessageTests: undocumented", - "Unity.Netcode.RuntimeTests.UnnamedMessageTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.UnnamedMessageTests: IEnumerator UnnamedMessageIsReceivedOnClientWithContent(): undocumented", - "Unity.Netcode.RuntimeTests.UnnamedMessageTests: void UnnamedMessageIsReceivedOnHostWithContent(): undocumented", - "Unity.Netcode.RuntimeTests.UnnamedMessageTests: IEnumerator UnnamedMessageIsReceivedOnMultipleClientsWithContent(): undocumented", - "Unity.Netcode.RuntimeTests.UnnamedMessageTests: IEnumerator WhenSendingUnnamedMessageToAll_AllClientsReceiveIt(): undocumented", - "Unity.Netcode.RuntimeTests.UnnamedMessageTests: void WhenSendingNamedMessageToNullClientList_ArgumentNullExceptionIsThrown(): undocumented", - "Unity.Netcode.EditorTests.UserBitReaderAndBitWriterTests_NCCBUG175: undocumented", - "Unity.Netcode.EditorTests.UserBitReaderAndBitWriterTests_NCCBUG175: void WhenBitwiseWritingMoreThan8Bits_ValuesAreCorrect(): undocumented", - "Unity.Netcode.EditorTests.UserBitReaderAndBitWriterTests_NCCBUG175: void WhenBitwiseReadingMoreThan8Bits_ValuesAreCorrect(): undocumented", - "Unity.Netcode.EditorTests.XXHashTests: undocumented", - "Unity.Netcode.EditorTests.XXHashTests: void TestXXHash32Short(): undocumented", - "Unity.Netcode.EditorTests.XXHashTests: void TestXXHash32Long(): undocumented", - "Unity.Netcode.EditorTests.XXHashTests: void TestXXHas64Short(): undocumented", - "Unity.Netcode.EditorTests.XXHashTests: void TestXXHash64Long(): undocumented" - ] - } - } + "exempts": { + "PVP-41-1": { + "errors": [ + "CHANGELOG.md: line 9: Unreleased section is not allowed for public release" + ] + }, + "PVP-150-1": { + "errors": [ + "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", + "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateMove(Vector3): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateRotate(Quaternion): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateScale(Vector3): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateState(TransformState): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void Smooth(TransformState, TransformState, float): empty tag", + "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", + "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", + "Unity.Netcode.AnticipatedNetworkVariable: void Anticipate(T): empty tag", + "Unity.Netcode.AnticipatedNetworkVariable: void Smooth(in T, in T, float, AnticipatedNetworkVariable.SmoothDelegate): empty tag", + "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", + "Unity.Netcode.BufferSerializer: void SerializeValue(ref NativeArray, Allocator): unexpected ", + "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", + "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", + "Unity.Netcode.BytePacker: in block context; use instead", + "Unity.Netcode.ByteUnpacker: in block context; use instead", + "Unity.Netcode.ByteUnpacker: void ReadValuePacked(FastBufferReader, out string): empty tag", + "Unity.Netcode.FastBufferReader: in block context; use instead", + "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T[]): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out NativeArray, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadPartialValue(out T, int, int): empty tag", + "Unity.Netcode.FastBufferReader: void ReadValueSafe(out NativeArray, Allocator): unexpected ", + "Unity.Netcode.FastBufferReader: void ReadValueSafeTemp(out NativeArray): unexpected ", + "Unity.Netcode.FastBufferWriter: in block context; use instead", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: byte[] ToArray(): empty tag", + "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtr(): empty tag", + "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtrAtCurrentPosition(): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(string, bool): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(in T): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteValueSafe(in NativeArray): unexpected ", + "Unity.Netcode.ForceNetworkSerializeByMemcpy: empty tag", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: tag inside ", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): unexpected ", + "Unity.Netcode.InvalidParentException: .ctor(string): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.InvalidParentException: .ctor(string): empty tag", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): empty tag", + "Unity.Netcode.IReaderWriter: void SerializeValue(ref NativeArray, Allocator): unexpected ", + "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", + "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", + "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void VerboseDebug(string): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void CreateServerAndClients(int): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(HostOrServer): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void TimeTravel(double, int): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StartOneClient(NetworkManager): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): unexpected ", + "Unity.Netcode.NetworkBehaviour: NetworkObject: text or XML content outside a top-level tag", + "Unity.Netcode.NetworkBehaviour: void OnGainedOwnership(): mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.NetworkBehaviour: void OnLostOwnership(): mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", + "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", + "Unity.Netcode.NetworkBehaviour: void OnSynchronize(ref BufferSerializer): unexpected ", + "Unity.Netcode.NetworkBehaviourReference: .ctor(NetworkBehaviour): empty tag", + "Unity.Netcode.NetworkConfig: string ToBase64(): empty tag", + "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", + "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", + "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", + "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): empty tag", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Add(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Clear(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: bool Contains(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: bool Remove(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: Count: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: int IndexOf(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Insert(int, T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void RemoveAt(int): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: this[int]: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkManager: OnServerStopped: unexpected ", + "Unity.Netcode.NetworkManager: OnClientStopped: unexpected ", + "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: void RemoveNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: empty tag", + "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: unexpected ", + "Unity.Netcode.NetworkManager: void SetPeerMTU(ulong, int): empty tag", + "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", + "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", + "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: empty tag", + "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: Guid AddGameNetworkObject(string): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: T AddComponentToObject(Guid): empty tag", + "Unity.Netcode.NetworkObject: NetworkTransforms: must use self-closing syntax", + "Unity.Netcode.NetworkObject: bool TryRemoveParent(bool): empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipPermissionsFailureDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestResponseDelegateHandler: empty tag", + "Unity.Netcode.NetworkObjectReference: .ctor(NetworkObject): empty tag", + "Unity.Netcode.NetworkObjectReference: .ctor(GameObject): empty tag", + "Unity.Netcode.INetworkPrefabInstanceHandler: NetworkObject Instantiate(ulong, Vector3, Quaternion): empty tag", + "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(NetworkObject, INetworkPrefabInstanceHandler): empty tag", + "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(uint, INetworkPrefabInstanceHandler): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void RemoveNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabsList: void Add(NetworkPrefab): empty tag", + "Unity.Netcode.NetworkPrefabsList: void Remove(NetworkPrefab): empty tag", + "Unity.Netcode.SceneEvent: in block context; use instead", + "Unity.Netcode.NetworkSceneManager: SceneEventProgressStatus UnloadScene(Scene): empty tag", + "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: empty tag", + "Unity.Netcode.NetworkSceneManager.OnLoadDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnUnloadDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnSynchronizeDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnEventCompletedDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnLoadCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnUnloadCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnSynchronizeCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): empty tag", + "Unity.Netcode.NetworkTimeSystem: bool Advance(double): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): unexpected ", + "Unity.Netcode.Components.NetworkTransform: void OnInitialize(ref NetworkVariable): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): text or XML content outside a top-level tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): text or XML content outside a top-level tag", + "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkTransport: in block context; use instead", + "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): suspicious '///' triple-slash inside XmlDoc comment", + "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): text or XML content outside a top-level tag", + "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): in block context (only allowed in top-level context)", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): empty tag", + "Unity.Netcode.NetworkVariableBase: void SetUpdateTraits(NetworkVariableUpdateTraits): empty tag", + "Unity.Netcode.NetworkVariableBase: bool ExceedsDirtinessThreshold(): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Write(FastBufferWriter, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Read(FastBufferReader, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void ReadDelta(FastBufferReader, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Duplicate(in T, ref T): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", + "Unity.Netcode.SceneEventType: in block context; use instead", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: must use self-closing syntax", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpy(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpyArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_List(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_HashSet(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): unexpected ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializableArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_ManagedINetworkSerializable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedString(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedStringArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedIEquatable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatableArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_List(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_HashSet(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): unexpected ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEquals(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEqualsArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedClassEquals(): empty tag", + "Unity.Netcode.UserNetworkVariableSerialization: empty tag", + "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: unexpected " + ] + }, + "PVP-151-1": { + "errors": [ + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnUpdate(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnDestroy(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnBeforeUpdateTransformState(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnTransformUpdated(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Position: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Rotation: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Scale: undocumented", + "Unity.Netcode.StaleDataHandling: undocumented", + "Unity.Netcode.StaleDataHandling: Ignore: undocumented", + "Unity.Netcode.StaleDataHandling: Reanticipate: undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void OnInitialize(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: .ctor(T, StaleDataHandling): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Update(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Dispose(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Finalize(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: bool IsDirty(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ResetDirty(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void WriteDelta(FastBufferWriter): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void WriteField(FastBufferWriter): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ReadField(FastBufferReader): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ReadDelta(FastBufferReader, bool): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable.OnAuthoritativeValueChangedDelegate: undocumented", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.BaseRpcTarget: undocumented", + "Unity.Netcode.BaseRpcTarget: m_NetworkManager: undocumented", + "Unity.Netcode.BaseRpcTarget: void CheckLockBeforeDispose(): undocumented", + "Unity.Netcode.BaseRpcTarget: void Dispose(): undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_InterpStartValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_CurrentInterpValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_InterpEndValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_Buffer: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: Item: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: TimeSent: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: .ctor(T, double): undocumented", + "Unity.Netcode.BufferedLinearInterpolatorQuaternion: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", + "Unity.Netcode.BufferedLinearInterpolatorVector3: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: TimedOut: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool OnHasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool HasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnStarted(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Started(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnFinished(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Finished(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: bool HasConditionBeenReached(): missing ", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: void Finished(bool): missing ", + "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", + "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: .ctor(HostOrServer, bool): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnServerAndClientsCreated(): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnNewClientCreated(NetworkManager): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: IEnumerator HiddenObjectPromotedSessionOwnerNewClientSynchronizes(): missing ", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: .ctor(int): undocumented", + "Unity.Netcode.GenerateSerializationForTypeAttribute: .ctor(Type): undocumented", + "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): missing ", + "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(ref Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float GetDeltaVarianceThreshold(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float EulerDelta(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 EulerDelta(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector2, Vector2): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Quaternion, Quaternion): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 GetRandomVector3(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(): undocumented", + "Unity.Netcode.InvalidParentException: .ctor(string): missing ", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): missing ", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: AllMessagesReceived: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: NumberOfMessagesReceived: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: string GetHooksStillWaiting(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: bool OnHasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void OnFinished(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void Reset(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: .ctor(List): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Received: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Handled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: m_NetworkManager: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: void Initialize(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: .ctor(NetworkManager, ReceiptType): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: RealTimeSinceStartup: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: DeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: FixedDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticRealTimeSinceStartup: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void TimeTravel(double): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void Reset(): undocumented", + "Unity.Netcode.Editor.NetcodeEditorBase: missing ", + "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): missing ", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: NetworkPrefabsPath: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: TempNetworkPrefabsPath: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: GenerateDefaultNetworkPrefabs: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_TickFrequency: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_GlobalTimeoutHelper: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_DefaultWaitForTick: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetcodeLogAssert: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void RegisterNetworkObject(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(ulong, ulong): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: TotalClients: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_DefaultTickRate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NumberOfClients: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_PlayerPrefab: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ServerNetworkManager: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ClientNetworkManagers: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_UseHost: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_DistributedAuthority: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_NetworkTopologyType: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool UseCMBService(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkTopologyTypes OnGetNetworkTopologyType(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetDistributedAuthorityProperties(NetworkManager): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_TargetFrameRate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_EnableVerboseDebug: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnSetVerboseDebug(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnOneTimeSetup(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeSetup(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnSetup(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator SetUp(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientCreated(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStarted(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStartedAndConnected(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CreateAndStartNewClient(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatency(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedDropRate(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatencyJitter(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanStartServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnStartedServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnServerAndClientsConnected(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void ClientNetworkManagerPostStartInit(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: LogAllMessages: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldCheckForSpawnedPlayers(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StartServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsLoad(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsUnload(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnCanSceneCleanUpUnload(Scene): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CoroutineShutdownAndCleanUp(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnTearDown(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnInlineTearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator TearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeTearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanDestroyNetworkObject(NetworkObject): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(NetworkManager[]): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(NetworkManager[]): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: uint GetTickRate(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: int GetFrameRate(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementEnabled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementDisabled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: PerTest: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: AllTests: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: DoNotCreate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Host: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Server: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: DAHost: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultMinFrames: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultTimeout: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManagerInstances: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManager CreateServer(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetNextGlobalIdHashValue(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IsNetcodeIntegrationTestRunning: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterNetcodeIntegrationTest(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: GameObject CreateNetworkObjectPrefab(string, NetworkManager, params NetworkManager[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void MarkAsSceneObjectRoot(GameObject, NetworkManager, NetworkManager[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetGlobalObjectIdHash(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.MessageHandleCheck: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.BeforeClientStartCallback: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: Result: undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: .ctor(bool, bool): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void AddLog(string, string, LogType): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void OnTearDown(): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Dispose(): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, Regex): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, Regex): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: bool HasLogBeenReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Reset(): undocumented", + "Unity.Netcode.RpcException: undocumented", + "Unity.Netcode.RpcException: .ctor(string): undocumented", + "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkPostSpawn(): undocumented", + "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkSessionSynchronized(): undocumented", + "Unity.Netcode.NetworkBehaviour: void OnReanticipate(double): undocumented", + "Unity.Netcode.NetworkClient: NetworkTopologyType: undocumented", + "Unity.Netcode.NetworkClient: DAHost: undocumented", + "Unity.Netcode.NetworkConfig: Prefabs: undocumented", + "Unity.Netcode.NetworkConfig: NetworkTopology: undocumented", + "Unity.Netcode.NetworkConfig: UseCMBService: undocumented", + "Unity.Netcode.NetworkConfig: AutoSpawnPlayerPrefabClientSide: undocumented", + "Unity.Netcode.ConnectionEventData: EventType: undocumented", + "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetConvertedDelta(): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetDeltaPosition(): missing ", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): missing ", + "Unity.Netcode.NetworkList: void Finalize(): undocumented", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", + "Unity.Netcode.NetworkList: void Add(T): missing ", + "Unity.Netcode.NetworkList: void Add(T): missing ", + "Unity.Netcode.NetworkList: void Clear(): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: Count: missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", + "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", + "Unity.Netcode.NetworkList: this[int]: missing ", + "Unity.Netcode.NetworkList: this[int]: missing ", + "Unity.Netcode.NetworkManager: CurrentSessionOwner: undocumented", + "Unity.Netcode.NetworkManager: void NetworkUpdate(NetworkUpdateStage): undocumented", + "Unity.Netcode.NetworkManager.ReanticipateDelegate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerObject: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerGameObject: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedGameObjects: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedNetworkObjects: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: CurrentNetworkManagerMode: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool StartNetworkManager(out NetworkManager, NetworkManagerOperatingMode, NetworkConfig): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: void ShutdownNetworkManager(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool BuffersMatch(int, long, byte[], byte[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: None: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Host: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Server: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Client: undocumented", + "Unity.Netcode.NetworkObject: void SetSceneObjectStatus(bool): undocumented", + "Unity.Netcode.NetworkObject: ushort GetNetworkBehaviourOrderIndex(NetworkBehaviour): undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: None: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: Distributable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: Transferable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: RequestRequired: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: SessionOwner: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestRequired: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: NotTransferrable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: SessionOwnerOnly: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestSent: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: AlreadyOwner: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestRequiredNotSet: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: SessionOwnerOnly: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Approved: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: CannotRequest: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Denied: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: None: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndLock: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndUnlock: undocumented", + "Unity.Netcode.NetworkObject.VisibilityDelegate: missing ", + "Unity.Netcode.NetworkObject.SpawnDelegate: missing ", + "Unity.Netcode.NetworkPrefab: bool Equals(NetworkPrefab): undocumented", + "Unity.Netcode.NetworkPrefab: SourcePrefabGlobalObjectIdHash: undocumented", + "Unity.Netcode.NetworkPrefab: TargetPrefabGlobalObjectIdHash: undocumented", + "Unity.Netcode.NetworkPrefab: bool Validate(int): undocumented", + "Unity.Netcode.NetworkPrefab: string ToString(): undocumented", + "Unity.Netcode.Editor.Configuration.NetworkPrefabProcessor: DefaultNetworkPrefabsPath: undocumented", + "Unity.Netcode.NetworkPrefabs: Prefabs: undocumented", + "Unity.Netcode.NetworkPrefabs: void Finalize(): undocumented", + "Unity.Netcode.NetworkPrefabs: void Initialize(bool): missing ", + "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: void Remove(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: void Remove(GameObject): missing ", + "Unity.Netcode.Editor.NetworkPrefabsEditor: undocumented", + "Unity.Netcode.Editor.NetworkPrefabsEditor: void OnInspectorGUI(): undocumented", + "Unity.Netcode.NetworkSceneManager: List GetSceneMapping(MapTypes): undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: ServerToClient: undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: ClientToServer: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: MapType: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: Scene: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: ScenePresent: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: SceneName: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: ServerHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: MappedLocalHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: LocalHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: void NetworkSerialize(BufferSerializer): undocumented", + "Unity.Netcode.NetworkSpawnManager: List GetConnectedPlayers(): undocumented", + "Unity.Netcode.NetworkSpawnManager: void InternalOnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): missing ", + "Unity.Netcode.Components.NetworkTransform: AuthorityMode: undocumented", + "Unity.Netcode.Components.NetworkTransform: PositionInLocalSpace: undocumented", + "Unity.Netcode.Components.NetworkTransform: RotationInLocalSpace: undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnTransformUpdated(): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnBeforeUpdateTransformState(): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): missing ", + "Unity.Netcode.Components.NetworkTransform: float GetTickLatency(): missing ", + "Unity.Netcode.Components.NetworkTransform: float GetTickLatencyInSeconds(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsUnreliableFrameSync(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsReliableStateUpdate(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: undocumented", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Server: undocumented", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Owner: undocumented", + "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", + "Unity.Netcode.NetworkTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTopologyTypes: undocumented", + "Unity.Netcode.NetworkTopologyTypes: ClientServer: undocumented", + "Unity.Netcode.NetworkTopologyTypes: DistributedAuthority: undocumented", + "Unity.Netcode.NetworkVariable: CheckExceedsDirtinessThreshold: undocumented", + "Unity.Netcode.NetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", + "Unity.Netcode.NetworkVariable: void OnInitialize(): undocumented", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): missing ", + "Unity.Netcode.NetworkVariable: void Dispose(): undocumented", + "Unity.Netcode.NetworkVariable: void Finalize(): undocumented", + "Unity.Netcode.NetworkVariable.CheckExceedsDirtinessThresholdDelegate: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: MinSecondsBetweenUpdates: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: MaxSecondsBetweenUpdates: undocumented", + "Unity.Netcode.NetworkVariableBase: NetworkBehaviour GetBehaviour(): undocumented", + "Unity.Netcode.NetworkVariableBase: void MarkNetworkBehaviourDirty(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: .ctor(HostOrServer): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: bool OnSetVerboseDebug(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator OnSetup(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: void OnCreatePlayerPrefab(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListBuiltInTypeCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListSerializableObjectCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryNestedCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestHashSetBuiltInTypeCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: .ctor(HostOrServer, CollectionTypes): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: void OnServerAndClientsCreated(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: IEnumerator CollectionAndOwnershipChangingTest(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: Dictionary: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: List: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: VerboseMode: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: HelperState: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void SetState(HelperStates): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool ValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Clear(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Log(string): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Stop: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Start: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Pause: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ClearToChangeOwner: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ChangingOwner: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet GetHashSetValues(int): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Add(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void AddRange(HashSet, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void FullSet(HashSet, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void TrackChanges(Targets, HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnServerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> GetNestedDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool UpdateValue((int, Dictionary), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Add((int, Dictionary), Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void FullSet(Dictionary>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void TrackChanges(Targets, Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnServerListValuesChanged(Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool UpdateValue((int, SerializableObject), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Add((int, SerializableObject), Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void FullSet(Dictionary, Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void InitValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: SerializableObject GetRandomObject(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: List GetListOfRandomObjects(int): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: List> GetListOfListOfRandomObjects(int, int): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: IntValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: LongValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: FloatValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: string ToString(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: void NetworkSerialize(BufferSerializer): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: bool Equals(SerializableObject): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void UpdateValue(List, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Add(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void AddRange(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Insert(List, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Remove(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void FullSet(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void TrackChanges(Targets, List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnServerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnOwnerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void UpdateValue(SerializableObject, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Add(SerializableObject, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Insert(SerializableObject, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Remove(SerializableObject, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void UpdateValue(List, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Add(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void AddRange(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Insert(List, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Remove(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void FullSet(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void TrackChanges(Targets, List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnServerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnOwnerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void UpdateValue(int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Add(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Insert(int, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: IsDebugMode: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: string GetLog(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogMessage(string): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogStart(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void SetDebugMode(bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Server: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Owner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Added: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Removed: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Changed: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: UnChanged: undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void UpdateValue(T, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Add(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Insert(T, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Remove(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool UpdateValue((TKey, TValue), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Add((TKey, TValue), Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Remove(TKey, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void FullSet(Dictionary, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Add(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Remove(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void TrackChanges(Targets, HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnServerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: OnValueChanged: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: .ctor(NetworkVariableBase): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper.OnMyValueChangedDelegateHandler: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableBaseHelper: .ctor(NetworkVariableBase): undocumented", + "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.RuntimeTests.ByteEnum: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: C: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void RegisterAndLabelNetworkObject(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void DeRegisterNetworkObject(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnLostOwnership(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnGainedOwnership(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnDestroy(): undocumented", + "Unity.Netcode.RpcAttribute: RequireOwnership: undocumented", + "Unity.Netcode.RpcAttribute: DeferLocal: undocumented", + "Unity.Netcode.RpcAttribute: AllowTargetOverride: undocumented", + "Unity.Netcode.RpcAttribute: .ctor(SendTo): undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: Delivery: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: RequireOwnership: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: DeferLocal: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: AllowTargetOverride: undocumented", + "Unity.Netcode.ServerRpcAttribute: RequireOwnership: undocumented", + "Unity.Netcode.ServerRpcAttribute: .ctor(): undocumented", + "Unity.Netcode.ClientRpcAttribute: .ctor(): undocumented", + "Unity.Netcode.LocalDeferMode: undocumented", + "Unity.Netcode.LocalDeferMode: Default: undocumented", + "Unity.Netcode.LocalDeferMode: Defer: undocumented", + "Unity.Netcode.LocalDeferMode: SendImmediate: undocumented", + "Unity.Netcode.RpcSendParams: Target: undocumented", + "Unity.Netcode.RpcSendParams: LocalDeferMode: undocumented", + "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(BaseRpcTarget): undocumented", + "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(LocalDeferMode): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcSendParams): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(BaseRpcTarget): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(LocalDeferMode): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcReceiveParams): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: .ctor(HostOrServer): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator OnSetup(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: void OnCreatePlayerPrefab(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator ProxyDoesNotInvokeOnSender(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: ReceivedRpc: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: void SendToEveryOneButMe(): undocumented", + "Unity.Netcode.RpcTarget: void Dispose(): undocumented", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): missing ", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): missing ", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnServerRpcAction: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnClientRpcAction: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyServerRpc(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyClientRpc(ClientRpcParams): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: k_DefaultTimeOutWaitPeriod: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: m_IsStarted: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: TimedOut: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: float GetTimeElapsed(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStart(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Start(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Stop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool OnHasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool HasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: .ctor(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: int GetFrameCount(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: bool OnHasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStart(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: .ctor(float, uint): undocumented", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", + "Unity.Netcode.Transports.UTP.UnityTransport: m_Driver: undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport: NetworkConnection Connect(NetworkEndPoint): undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport.ConnectionAddressData: IsIpv6: undocumented", + "Unity.Netcode.UserNetworkVariableSerialization.WriteDeltaDelegate: missing ", + "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: missing " + ] } - } + }, + "extends": [ + "rme", + "supported" + ] } From af0f2b59571f0623c71ed8ec8bdaeeb8307ef946 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Tue, 11 Feb 2025 11:09:10 +0100 Subject: [PATCH 03/24] Added pvpExceptions file into package folder --- .../pvpExceptions.json | 1073 +++++++++++++++++ .../pvpExceptions.json.meta | 0 pvp-exemptions.json | 1073 ----------------- 3 files changed, 1073 insertions(+), 1073 deletions(-) create mode 100644 com.unity.netcode.gameobjects/pvpExceptions.json create mode 100644 com.unity.netcode.gameobjects/pvpExceptions.json.meta delete mode 100644 pvp-exemptions.json diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json b/com.unity.netcode.gameobjects/pvpExceptions.json new file mode 100644 index 0000000000..988e4d7a6d --- /dev/null +++ b/com.unity.netcode.gameobjects/pvpExceptions.json @@ -0,0 +1,1073 @@ +{ + "exempts": { + "PVP-41-1": { + "errors": [ + "CHANGELOG.md: line 9: Unreleased section is not allowed for public release" + ] + }, + "PVP-150-1": { + "errors": [ + "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", + "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateMove(Vector3): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateRotate(Quaternion): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateScale(Vector3): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateState(TransformState): empty tag", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void Smooth(TransformState, TransformState, float): empty tag", + "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", + "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", + "Unity.Netcode.AnticipatedNetworkVariable: void Anticipate(T): empty tag", + "Unity.Netcode.AnticipatedNetworkVariable: void Smooth(in T, in T, float, AnticipatedNetworkVariable.SmoothDelegate): empty tag", + "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", + "Unity.Netcode.BufferSerializer: void SerializeValue(ref NativeArray, Allocator): unexpected ", + "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", + "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", + "Unity.Netcode.BytePacker: in block context; use instead", + "Unity.Netcode.ByteUnpacker: in block context; use instead", + "Unity.Netcode.ByteUnpacker: void ReadValuePacked(FastBufferReader, out string): empty tag", + "Unity.Netcode.FastBufferReader: in block context; use instead", + "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", + "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T[]): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out NativeArray, Allocator): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", + "Unity.Netcode.FastBufferReader: void ReadPartialValue(out T, int, int): empty tag", + "Unity.Netcode.FastBufferReader: void ReadValueSafe(out NativeArray, Allocator): unexpected ", + "Unity.Netcode.FastBufferReader: void ReadValueSafeTemp(out NativeArray): unexpected ", + "Unity.Netcode.FastBufferWriter: in block context; use instead", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", + "Unity.Netcode.FastBufferWriter: byte[] ToArray(): empty tag", + "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtr(): empty tag", + "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtrAtCurrentPosition(): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(string, bool): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(in T): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", + "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", + "Unity.Netcode.FastBufferWriter: void WriteValueSafe(in NativeArray): unexpected ", + "Unity.Netcode.ForceNetworkSerializeByMemcpy: empty tag", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: tag inside ", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): unexpected ", + "Unity.Netcode.InvalidParentException: .ctor(string): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.InvalidParentException: .ctor(string): empty tag", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): empty tag", + "Unity.Netcode.IReaderWriter: void SerializeValue(ref NativeArray, Allocator): unexpected ", + "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", + "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", + "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void VerboseDebug(string): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void CreateServerAndClients(int): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(HostOrServer): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void TimeTravel(double, int): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StartOneClient(NetworkManager): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): unexpected ", + "Unity.Netcode.NetworkBehaviour: NetworkObject: text or XML content outside a top-level tag", + "Unity.Netcode.NetworkBehaviour: void OnGainedOwnership(): mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.NetworkBehaviour: void OnLostOwnership(): mixed block and inline content in ; wrap inline content in ", + "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", + "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", + "Unity.Netcode.NetworkBehaviour: void OnSynchronize(ref BufferSerializer): unexpected ", + "Unity.Netcode.NetworkBehaviourReference: .ctor(NetworkBehaviour): empty tag", + "Unity.Netcode.NetworkConfig: string ToBase64(): empty tag", + "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", + "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", + "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", + "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): empty tag", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Add(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Clear(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: bool Contains(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: bool Remove(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: Count: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: int IndexOf(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void Insert(int, T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: void RemoveAt(int): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkList: this[int]: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkManager: OnServerStopped: unexpected ", + "Unity.Netcode.NetworkManager: OnClientStopped: unexpected ", + "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: void RemoveNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: empty tag", + "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: unexpected ", + "Unity.Netcode.NetworkManager: void SetPeerMTU(ulong, int): empty tag", + "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", + "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", + "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: empty tag", + "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: unexpected ", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: Guid AddGameNetworkObject(string): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: T AddComponentToObject(Guid): empty tag", + "Unity.Netcode.NetworkObject: NetworkTransforms: must use self-closing syntax", + "Unity.Netcode.NetworkObject: bool TryRemoveParent(bool): empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipPermissionsFailureDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", + "Unity.Netcode.NetworkObject.OnOwnershipRequestResponseDelegateHandler: empty tag", + "Unity.Netcode.NetworkObjectReference: .ctor(NetworkObject): empty tag", + "Unity.Netcode.NetworkObjectReference: .ctor(GameObject): empty tag", + "Unity.Netcode.INetworkPrefabInstanceHandler: NetworkObject Instantiate(ulong, Vector3, Quaternion): empty tag", + "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(NetworkObject, INetworkPrefabInstanceHandler): empty tag", + "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(uint, INetworkPrefabInstanceHandler): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabHandler: void RemoveNetworkPrefab(GameObject): empty tag", + "Unity.Netcode.NetworkPrefabsList: void Add(NetworkPrefab): empty tag", + "Unity.Netcode.NetworkPrefabsList: void Remove(NetworkPrefab): empty tag", + "Unity.Netcode.SceneEvent: in block context; use instead", + "Unity.Netcode.NetworkSceneManager: SceneEventProgressStatus UnloadScene(Scene): empty tag", + "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: empty tag", + "Unity.Netcode.NetworkSceneManager.OnLoadDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnUnloadDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnSynchronizeDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnEventCompletedDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnLoadCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnUnloadCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkSceneManager.OnSynchronizeCompleteDelegateHandler: in block context; use instead", + "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): empty tag", + "Unity.Netcode.NetworkTimeSystem: bool Advance(double): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", + "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): unexpected ", + "Unity.Netcode.Components.NetworkTransform: void OnInitialize(ref NetworkVariable): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", + "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): text or XML content outside a top-level tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", + "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): text or XML content outside a top-level tag", + "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", + "Unity.Netcode.NetworkTransport: in block context; use instead", + "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): suspicious '///' triple-slash inside XmlDoc comment", + "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): text or XML content outside a top-level tag", + "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): in block context (only allowed in top-level context)", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): empty tag", + "Unity.Netcode.NetworkVariableBase: void SetUpdateTraits(NetworkVariableUpdateTraits): empty tag", + "Unity.Netcode.NetworkVariableBase: bool ExceedsDirtinessThreshold(): empty tag", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Write(FastBufferWriter, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Read(FastBufferReader, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void ReadDelta(FastBufferReader, ref T): empty tag", + "Unity.Netcode.NetworkVariableSerialization: void Duplicate(in T, ref T): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", + "Unity.Netcode.SceneEventType: in block context; use instead", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: must use self-closing syntax", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpy(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpyArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_List(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_HashSet(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): unexpected ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializableArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_ManagedINetworkSerializable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedString(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedStringArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedIEquatable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatable(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatableArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_List(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_HashSet(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): unexpected ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEquals(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEqualsArray(): empty tag", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedClassEquals(): empty tag", + "Unity.Netcode.UserNetworkVariableSerialization: empty tag", + "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: unexpected " + ] + }, + "PVP-151-1": { + "errors": [ + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnUpdate(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnDestroy(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnBeforeUpdateTransformState(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnTransformUpdated(): undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Position: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Rotation: undocumented", + "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Scale: undocumented", + "Unity.Netcode.StaleDataHandling: undocumented", + "Unity.Netcode.StaleDataHandling: Ignore: undocumented", + "Unity.Netcode.StaleDataHandling: Reanticipate: undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void OnInitialize(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: .ctor(T, StaleDataHandling): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Update(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Dispose(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void Finalize(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: bool IsDirty(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ResetDirty(): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void WriteDelta(FastBufferWriter): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void WriteField(FastBufferWriter): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ReadField(FastBufferReader): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable: void ReadDelta(FastBufferReader, bool): undocumented", + "Unity.Netcode.AnticipatedNetworkVariable.OnAuthoritativeValueChangedDelegate: undocumented", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", + "Unity.Netcode.BaseRpcTarget: undocumented", + "Unity.Netcode.BaseRpcTarget: m_NetworkManager: undocumented", + "Unity.Netcode.BaseRpcTarget: void CheckLockBeforeDispose(): undocumented", + "Unity.Netcode.BaseRpcTarget: void Dispose(): undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_InterpStartValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_CurrentInterpValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_InterpEndValue: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: m_Buffer: undocumented", + "Unity.Netcode.BufferedLinearInterpolator: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: Item: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: TimeSent: undocumented", + "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: .ctor(T, double): undocumented", + "Unity.Netcode.BufferedLinearInterpolatorQuaternion: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", + "Unity.Netcode.BufferedLinearInterpolatorVector3: void OnConvertTransformSpace(Transform, bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: TimedOut: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool OnHasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool HasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnStarted(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Started(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnFinished(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Finished(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: bool HasConditionBeenReached(): missing ", + "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: void Finished(bool): missing ", + "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", + "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: .ctor(HostOrServer, bool): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnServerAndClientsCreated(): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnNewClientCreated(NetworkManager): undocumented", + "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: IEnumerator HiddenObjectPromotedSessionOwnerNewClientSynchronizes(): missing ", + "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: .ctor(int): undocumented", + "Unity.Netcode.GenerateSerializationForTypeAttribute: .ctor(Type): undocumented", + "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): missing ", + "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(ref Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float GetDeltaVarianceThreshold(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float EulerDelta(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 EulerDelta(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector2, Vector2): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Quaternion, Quaternion): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(Vector3, Vector3): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 GetRandomVector3(float, float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(): undocumented", + "Unity.Netcode.InvalidParentException: .ctor(string): missing ", + "Unity.Netcode.InvalidParentException: .ctor(string, Exception): missing ", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: AllMessagesReceived: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: NumberOfMessagesReceived: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: string GetHooksStillWaiting(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: bool OnHasConditionBeenReached(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void OnFinished(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void Reset(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: .ctor(List): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Received: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Handled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: m_NetworkManager: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: void Initialize(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: .ctor(NetworkManager, ReceiptType): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: RealTimeSinceStartup: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: DeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: FixedDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticRealTimeSinceStartup: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticDeltaTime: undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void TimeTravel(double): undocumented", + "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void Reset(): undocumented", + "Unity.Netcode.Editor.NetcodeEditorBase: missing ", + "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): missing ", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: NetworkPrefabsPath: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: TempNetworkPrefabsPath: undocumented", + "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: GenerateDefaultNetworkPrefabs: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_TickFrequency: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_GlobalTimeoutHelper: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_DefaultWaitForTick: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetcodeLogAssert: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void RegisterNetworkObject(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(ulong, ulong): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: TotalClients: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_DefaultTickRate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NumberOfClients: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_PlayerPrefab: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ServerNetworkManager: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ClientNetworkManagers: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_UseHost: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_DistributedAuthority: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_NetworkTopologyType: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool UseCMBService(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkTopologyTypes OnGetNetworkTopologyType(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetDistributedAuthorityProperties(NetworkManager): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_TargetFrameRate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_EnableVerboseDebug: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnSetVerboseDebug(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnOneTimeSetup(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeSetup(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnSetup(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator SetUp(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientCreated(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStarted(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStartedAndConnected(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CreateAndStartNewClient(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatency(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedDropRate(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatencyJitter(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanStartServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnStartedServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnServerAndClientsConnected(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void ClientNetworkManagerPostStartInit(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: LogAllMessages: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldCheckForSpawnedPlayers(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StartServerAndClients(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsLoad(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsUnload(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnCanSceneCleanUpUnload(Scene): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CoroutineShutdownAndCleanUp(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnTearDown(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnInlineTearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator TearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeTearDown(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanDestroyNetworkObject(NetworkObject): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(NetworkManager[]): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(NetworkManager[]): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: uint GetTickRate(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: int GetFrameRate(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementEnabled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementDisabled: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: PerTest: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: AllTests: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: DoNotCreate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Host: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Server: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: DAHost: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultMinFrames: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultTimeout: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManagerInstances: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManager CreateServer(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetNextGlobalIdHashValue(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IsNetcodeIntegrationTestRunning: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterNetcodeIntegrationTest(bool): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: GameObject CreateNetworkObjectPrefab(string, NetworkManager, params NetworkManager[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void MarkAsSceneObjectRoot(GameObject, NetworkManager, NetworkManager[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetGlobalObjectIdHash(NetworkObject): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.MessageHandleCheck: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.BeforeClientStartCallback: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: missing ", + "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: Result: undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: .ctor(bool, bool): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void AddLog(string, string, LogType): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void OnTearDown(): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Dispose(): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, Regex): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, Regex): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: bool HasLogBeenReceived(LogType, string): undocumented", + "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Reset(): undocumented", + "Unity.Netcode.RpcException: undocumented", + "Unity.Netcode.RpcException: .ctor(string): undocumented", + "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkPostSpawn(): undocumented", + "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkSessionSynchronized(): undocumented", + "Unity.Netcode.NetworkBehaviour: void OnReanticipate(double): undocumented", + "Unity.Netcode.NetworkClient: NetworkTopologyType: undocumented", + "Unity.Netcode.NetworkClient: DAHost: undocumented", + "Unity.Netcode.NetworkConfig: Prefabs: undocumented", + "Unity.Netcode.NetworkConfig: NetworkTopology: undocumented", + "Unity.Netcode.NetworkConfig: UseCMBService: undocumented", + "Unity.Netcode.NetworkConfig: AutoSpawnPlayerPrefabClientSide: undocumented", + "Unity.Netcode.ConnectionEventData: EventType: undocumented", + "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetConvertedDelta(): missing ", + "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetDeltaPosition(): missing ", + "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): missing ", + "Unity.Netcode.NetworkList: void Finalize(): undocumented", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", + "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", + "Unity.Netcode.NetworkList: void Add(T): missing ", + "Unity.Netcode.NetworkList: void Add(T): missing ", + "Unity.Netcode.NetworkList: void Clear(): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Contains(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: bool Remove(T): missing ", + "Unity.Netcode.NetworkList: Count: missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: int IndexOf(T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void Insert(int, T): missing ", + "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", + "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", + "Unity.Netcode.NetworkList: this[int]: missing ", + "Unity.Netcode.NetworkList: this[int]: missing ", + "Unity.Netcode.NetworkManager: CurrentSessionOwner: undocumented", + "Unity.Netcode.NetworkManager: void NetworkUpdate(NetworkUpdateStage): undocumented", + "Unity.Netcode.NetworkManager.ReanticipateDelegate: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerObject: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerGameObject: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedGameObjects: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedNetworkObjects: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: CurrentNetworkManagerMode: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool StartNetworkManager(out NetworkManager, NetworkManagerOperatingMode, NetworkConfig): missing ", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: void ShutdownNetworkManager(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool BuffersMatch(int, long, byte[], byte[]): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: None: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Host: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Server: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Client: undocumented", + "Unity.Netcode.NetworkObject: void SetSceneObjectStatus(bool): undocumented", + "Unity.Netcode.NetworkObject: ushort GetNetworkBehaviourOrderIndex(NetworkBehaviour): undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: None: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: Distributable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: Transferable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: RequestRequired: undocumented", + "Unity.Netcode.NetworkObject.OwnershipStatus: SessionOwner: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestRequired: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: NotTransferrable: undocumented", + "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: SessionOwnerOnly: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestSent: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: AlreadyOwner: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestRequiredNotSet: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestStatus: SessionOwnerOnly: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Approved: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Locked: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: RequestInProgress: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: CannotRequest: undocumented", + "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Denied: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: None: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndLock: undocumented", + "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndUnlock: undocumented", + "Unity.Netcode.NetworkObject.VisibilityDelegate: missing ", + "Unity.Netcode.NetworkObject.SpawnDelegate: missing ", + "Unity.Netcode.NetworkPrefab: bool Equals(NetworkPrefab): undocumented", + "Unity.Netcode.NetworkPrefab: SourcePrefabGlobalObjectIdHash: undocumented", + "Unity.Netcode.NetworkPrefab: TargetPrefabGlobalObjectIdHash: undocumented", + "Unity.Netcode.NetworkPrefab: bool Validate(int): undocumented", + "Unity.Netcode.NetworkPrefab: string ToString(): undocumented", + "Unity.Netcode.Editor.Configuration.NetworkPrefabProcessor: DefaultNetworkPrefabsPath: undocumented", + "Unity.Netcode.NetworkPrefabs: Prefabs: undocumented", + "Unity.Netcode.NetworkPrefabs: void Finalize(): undocumented", + "Unity.Netcode.NetworkPrefabs: void Initialize(bool): missing ", + "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: void Remove(NetworkPrefab): missing ", + "Unity.Netcode.NetworkPrefabs: void Remove(GameObject): missing ", + "Unity.Netcode.Editor.NetworkPrefabsEditor: undocumented", + "Unity.Netcode.Editor.NetworkPrefabsEditor: void OnInspectorGUI(): undocumented", + "Unity.Netcode.NetworkSceneManager: List GetSceneMapping(MapTypes): undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: ServerToClient: undocumented", + "Unity.Netcode.NetworkSceneManager.MapTypes: ClientToServer: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: MapType: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: Scene: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: ScenePresent: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: SceneName: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: ServerHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: MappedLocalHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: LocalHandle: undocumented", + "Unity.Netcode.NetworkSceneManager.SceneMap: void NetworkSerialize(BufferSerializer): undocumented", + "Unity.Netcode.NetworkSpawnManager: List GetConnectedPlayers(): undocumented", + "Unity.Netcode.NetworkSpawnManager: void InternalOnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): missing ", + "Unity.Netcode.Components.NetworkTransform: AuthorityMode: undocumented", + "Unity.Netcode.Components.NetworkTransform: PositionInLocalSpace: undocumented", + "Unity.Netcode.Components.NetworkTransform: RotationInLocalSpace: undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnTransformUpdated(): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnBeforeUpdateTransformState(): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): missing ", + "Unity.Netcode.Components.NetworkTransform: float GetTickLatency(): missing ", + "Unity.Netcode.Components.NetworkTransform: float GetTickLatencyInSeconds(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsUnreliableFrameSync(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsReliableStateUpdate(): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: undocumented", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Server: undocumented", + "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Owner: undocumented", + "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", + "Unity.Netcode.NetworkTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", + "Unity.Netcode.NetworkTopologyTypes: undocumented", + "Unity.Netcode.NetworkTopologyTypes: ClientServer: undocumented", + "Unity.Netcode.NetworkTopologyTypes: DistributedAuthority: undocumented", + "Unity.Netcode.NetworkVariable: CheckExceedsDirtinessThreshold: undocumented", + "Unity.Netcode.NetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", + "Unity.Netcode.NetworkVariable: void OnInitialize(): undocumented", + "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): missing ", + "Unity.Netcode.NetworkVariable: void Dispose(): undocumented", + "Unity.Netcode.NetworkVariable: void Finalize(): undocumented", + "Unity.Netcode.NetworkVariable.CheckExceedsDirtinessThresholdDelegate: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: MinSecondsBetweenUpdates: undocumented", + "Unity.Netcode.NetworkVariableUpdateTraits: MaxSecondsBetweenUpdates: undocumented", + "Unity.Netcode.NetworkVariableBase: NetworkBehaviour GetBehaviour(): undocumented", + "Unity.Netcode.NetworkVariableBase: void MarkNetworkBehaviourDirty(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: .ctor(HostOrServer): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: bool OnSetVerboseDebug(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator OnSetup(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: void OnCreatePlayerPrefab(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListBuiltInTypeCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListSerializableObjectCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryNestedCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestHashSetBuiltInTypeCollections(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: .ctor(HostOrServer, CollectionTypes): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: void OnServerAndClientsCreated(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: IEnumerator CollectionAndOwnershipChangingTest(): undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: Dictionary: undocumented", + "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: List: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: VerboseMode: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: HelperState: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void SetState(HelperStates): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool ValidateAgainst(BaseCollectionUpdateHelper): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnClear(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Clear(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void AddItem(): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnOwnershipChanged(ulong, ulong): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Log(string): undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Stop: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Start: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Pause: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ClearToChangeOwner: undocumented", + "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ChangingOwner: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet GetHashSetValues(int): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Add(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void AddRange(HashSet, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void FullSet(HashSet, Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void TrackChanges(Targets, HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnServerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> GetNestedDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool UpdateValue((int, Dictionary), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Add((int, Dictionary), Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void FullSet(Dictionary>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void TrackChanges(Targets, Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnServerListValuesChanged(Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary>, Dictionary>): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Instances: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool UpdateValue((int, SerializableObject), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Add((int, SerializableObject), Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void FullSet(Dictionary, Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void InitValues(): undocumented", + "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: SerializableObject GetRandomObject(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: List GetListOfRandomObjects(int): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: List> GetListOfListOfRandomObjects(int, int): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: IntValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: LongValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: FloatValue: undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: string ToString(): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: void NetworkSerialize(BufferSerializer): undocumented", + "Unity.Netcode.RuntimeTests.SerializableObject: bool Equals(SerializableObject): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void UpdateValue(List, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Add(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void AddRange(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Insert(List, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Remove(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void FullSet(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void TrackChanges(Targets, List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnServerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnOwnerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void UpdateValue(SerializableObject, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Add(SerializableObject, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Insert(SerializableObject, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Remove(SerializableObject, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariable>> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void UpdateValue(List, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Add(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void AddRange(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Insert(List, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Remove(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void FullSet(List>, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void TrackChanges(Targets, List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnServerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnOwnerListValuesChanged(List>, List>): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: Instances: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetState(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionServer: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionOwner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariableChanges: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void UpdateValue(int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Add(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Insert(int, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Remove(int, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkPostSpawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: IsDebugMode: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: string GetLog(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogMessage(string): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogStart(): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: void SetDebugMode(bool): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase: bool CompareTrackedChanges(Targets): undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Server: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Owner: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Added: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Removed: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Changed: undocumented", + "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: UnChanged: undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void UpdateValue(T, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Add(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void AddRange(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Insert(T, int, Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Remove(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void FullSet(List, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void TrackChanges(Targets, List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnServerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnOwnerListValuesChanged(List, List): undocumented", + "Unity.Netcode.RuntimeTests.IListTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool UpdateValue((TKey, TValue), Targets, bool): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Add((TKey, TValue), Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Remove(TKey, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void FullSet(Dictionary, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", + "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: bool ValidateInstances(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetServerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetOwnerValues(): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Add(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Remove(T, Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Clear(Targets): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void TrackChanges(Targets, HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnServerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", + "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void ResetTrackedChanges(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: OnValueChanged: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: .ctor(NetworkVariableBase): undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper.OnMyValueChangedDelegateHandler: undocumented", + "Unity.Netcode.TestHelpers.Runtime.NetworkVariableBaseHelper: .ctor(NetworkVariableBase): undocumented", + "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", + "Unity.Netcode.RuntimeTests.ByteEnum: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ByteEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.SByteEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ShortEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.UShortEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.IntEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.UIntEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.LongEnum: C: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: A: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: B: undocumented", + "Unity.Netcode.RuntimeTests.ULongEnum: C: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkSpawn(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void RegisterAndLabelNetworkObject(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void DeRegisterNetworkObject(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnLostOwnership(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnGainedOwnership(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkDespawn(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnDestroy(): undocumented", + "Unity.Netcode.RpcAttribute: RequireOwnership: undocumented", + "Unity.Netcode.RpcAttribute: DeferLocal: undocumented", + "Unity.Netcode.RpcAttribute: AllowTargetOverride: undocumented", + "Unity.Netcode.RpcAttribute: .ctor(SendTo): undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: Delivery: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: RequireOwnership: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: DeferLocal: undocumented", + "Unity.Netcode.RpcAttribute.RpcAttributeParams: AllowTargetOverride: undocumented", + "Unity.Netcode.ServerRpcAttribute: RequireOwnership: undocumented", + "Unity.Netcode.ServerRpcAttribute: .ctor(): undocumented", + "Unity.Netcode.ClientRpcAttribute: .ctor(): undocumented", + "Unity.Netcode.LocalDeferMode: undocumented", + "Unity.Netcode.LocalDeferMode: Default: undocumented", + "Unity.Netcode.LocalDeferMode: Defer: undocumented", + "Unity.Netcode.LocalDeferMode: SendImmediate: undocumented", + "Unity.Netcode.RpcSendParams: Target: undocumented", + "Unity.Netcode.RpcSendParams: LocalDeferMode: undocumented", + "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(BaseRpcTarget): undocumented", + "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(LocalDeferMode): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcSendParams): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(BaseRpcTarget): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(LocalDeferMode): undocumented", + "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcReceiveParams): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: NumberOfClients: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: .ctor(HostOrServer): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator OnSetup(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: void OnCreatePlayerPrefab(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator ProxyDoesNotInvokeOnSender(): undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: ReceivedRpc: undocumented", + "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: void SendToEveryOneButMe(): undocumented", + "Unity.Netcode.RpcTarget: void Dispose(): undocumented", + "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): missing ", + "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): missing ", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnServerRpcAction: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnClientRpcAction: undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyServerRpc(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyClientRpc(ClientRpcParams): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: k_DefaultTimeOutWaitPeriod: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: m_IsStarted: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: TimedOut: undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: float GetTimeElapsed(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStart(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Start(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Stop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool OnHasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool HasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: .ctor(float): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: int GetFrameCount(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStop(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: bool OnHasTimedOut(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStart(): undocumented", + "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: .ctor(float, uint): undocumented", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", + "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", + "Unity.Netcode.Transports.UTP.UnityTransport: m_Driver: undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport: NetworkConnection Connect(NetworkEndPoint): undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", + "Unity.Netcode.Transports.UTP.UnityTransport.ConnectionAddressData: IsIpv6: undocumented", + "Unity.Netcode.UserNetworkVariableSerialization.WriteDeltaDelegate: missing ", + "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: missing " + ] + } + }, + "extends": [ + "rme", + "supported" + ] +} diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json.meta b/com.unity.netcode.gameobjects/pvpExceptions.json.meta new file mode 100644 index 0000000000..e69de29bb2 diff --git a/pvp-exemptions.json b/pvp-exemptions.json deleted file mode 100644 index 898de76bc3..0000000000 --- a/pvp-exemptions.json +++ /dev/null @@ -1,1073 +0,0 @@ -{ - "exempts": { - "PVP-41-1": { - "errors": [ - "CHANGELOG.md: line 9: Unreleased section is not allowed for public release" - ] - }, - "PVP-150-1": { - "errors": [ - "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", - "Unity.Netcode.Components.AnticipatedNetworkTransform: in list item context (only allowed in block or inline context)", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateMove(Vector3): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateRotate(Quaternion): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateScale(Vector3): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void AnticipateState(TransformState): empty tag", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void Smooth(TransformState, TransformState, float): empty tag", - "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", - "Unity.Netcode.AnticipatedNetworkVariable: in list item context (only allowed in block or inline context)", - "Unity.Netcode.AnticipatedNetworkVariable: void Anticipate(T): empty tag", - "Unity.Netcode.AnticipatedNetworkVariable: void Smooth(in T, in T, float, AnticipatedNetworkVariable.SmoothDelegate): empty tag", - "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", - "Unity.Netcode.BufferSerializer: void SerializeValue(ref NativeArray, Allocator): unexpected ", - "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", - "Unity.Netcode.BufferSerializer: bool PreCheck(int): empty tag", - "Unity.Netcode.BytePacker: in block context; use instead", - "Unity.Netcode.ByteUnpacker: in block context; use instead", - "Unity.Netcode.ByteUnpacker: void ReadValuePacked(FastBufferReader, out string): empty tag", - "Unity.Netcode.FastBufferReader: in block context; use instead", - "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(NativeArray, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(byte*, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferWriter, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): in block context (only allowed in top-level context)", - "Unity.Netcode.FastBufferReader: .ctor(FastBufferReader, Allocator, int, int, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out T[]): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializable(out NativeArray, Allocator): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadNetworkSerializableInPlace(ref T): empty tag", - "Unity.Netcode.FastBufferReader: void ReadPartialValue(out T, int, int): empty tag", - "Unity.Netcode.FastBufferReader: void ReadValueSafe(out NativeArray, Allocator): unexpected ", - "Unity.Netcode.FastBufferReader: void ReadValueSafeTemp(out NativeArray): unexpected ", - "Unity.Netcode.FastBufferWriter: in block context; use instead", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: bool TryBeginWriteInternal(int): empty tag", - "Unity.Netcode.FastBufferWriter: byte[] ToArray(): empty tag", - "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtr(): empty tag", - "Unity.Netcode.FastBufferWriter: byte* GetUnsafePtrAtCurrentPosition(): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(string, bool): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(in T): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteNetworkSerializable(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(T[], int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(NativeArray, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: void WritePartialValue(T, int, int): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T, ForStructs): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in T): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(in NativeArray): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", - "Unity.Netcode.FastBufferWriter: int GetWriteSize(): empty tag", - "Unity.Netcode.FastBufferWriter: void WriteValueSafe(in NativeArray): unexpected ", - "Unity.Netcode.ForceNetworkSerializeByMemcpy: empty tag", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: tag inside ", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: mixed block and inline content in ; wrap inline content in ", - "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): unexpected ", - "Unity.Netcode.InvalidParentException: .ctor(string): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.InvalidParentException: .ctor(string): empty tag", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): empty tag", - "Unity.Netcode.IReaderWriter: void SerializeValue(ref NativeArray, Allocator): unexpected ", - "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", - "Unity.Netcode.IReaderWriter: bool PreCheck(int): empty tag", - "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void VerboseDebug(string): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void CreateServerAndClients(int): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(HostOrServer): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void TimeTravel(double, int): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StartOneClient(NetworkManager): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): unexpected ", - "Unity.Netcode.NetworkBehaviour: NetworkObject: text or XML content outside a top-level tag", - "Unity.Netcode.NetworkBehaviour: void OnGainedOwnership(): mixed block and inline content in ; wrap inline content in ", - "Unity.Netcode.NetworkBehaviour: void OnLostOwnership(): mixed block and inline content in ; wrap inline content in ", - "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", - "Unity.Netcode.NetworkBehaviour: NetworkObject GetNetworkObject(ulong): empty tag", - "Unity.Netcode.NetworkBehaviour: void OnSynchronize(ref BufferSerializer): unexpected ", - "Unity.Netcode.NetworkBehaviourReference: .ctor(NetworkBehaviour): empty tag", - "Unity.Netcode.NetworkConfig: string ToBase64(): empty tag", - "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", - "Unity.Netcode.NetworkConfig: ulong GetConfig(bool): empty tag", - "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", - "Unity.Netcode.NetworkConfig: bool CompareConfig(ulong): empty tag", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): empty tag", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Add(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Clear(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: bool Contains(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: bool Remove(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: Count: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: int IndexOf(T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void Insert(int, T): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: void RemoveAt(int): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkList: this[int]: cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkManager: OnServerStopped: unexpected ", - "Unity.Netcode.NetworkManager: OnClientStopped: unexpected ", - "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: void RemoveNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: empty tag", - "Unity.Netcode.NetworkManager: MaximumTransmissionUnitSize: unexpected ", - "Unity.Netcode.NetworkManager: void SetPeerMTU(ulong, int): empty tag", - "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", - "Unity.Netcode.NetworkManager: int GetPeerMTU(ulong): empty tag", - "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: empty tag", - "Unity.Netcode.NetworkManager: MaximumFragmentedMessageSize: unexpected ", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: Guid AddGameNetworkObject(string): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: T AddComponentToObject(Guid): empty tag", - "Unity.Netcode.NetworkObject: NetworkTransforms: must use self-closing syntax", - "Unity.Netcode.NetworkObject: bool TryRemoveParent(bool): empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipPermissionsFailureDelegateHandler: empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipRequestedDelegateHandler: empty tag", - "Unity.Netcode.NetworkObject.OnOwnershipRequestResponseDelegateHandler: empty tag", - "Unity.Netcode.NetworkObjectReference: .ctor(NetworkObject): empty tag", - "Unity.Netcode.NetworkObjectReference: .ctor(GameObject): empty tag", - "Unity.Netcode.INetworkPrefabInstanceHandler: NetworkObject Instantiate(ulong, Vector3, Quaternion): empty tag", - "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(NetworkObject, INetworkPrefabInstanceHandler): empty tag", - "Unity.Netcode.NetworkPrefabHandler: bool AddHandler(uint, INetworkPrefabInstanceHandler): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void AddNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabHandler: void RemoveNetworkPrefab(GameObject): empty tag", - "Unity.Netcode.NetworkPrefabsList: void Add(NetworkPrefab): empty tag", - "Unity.Netcode.NetworkPrefabsList: void Remove(NetworkPrefab): empty tag", - "Unity.Netcode.SceneEvent: in block context; use instead", - "Unity.Netcode.NetworkSceneManager: SceneEventProgressStatus UnloadScene(Scene): empty tag", - "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.SceneEventDelegate: empty tag", - "Unity.Netcode.NetworkSceneManager.OnLoadDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnUnloadDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnSynchronizeDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnEventCompletedDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnLoadCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnUnloadCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkSceneManager.OnSynchronizeCompleteDelegateHandler: in block context; use instead", - "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): empty tag", - "Unity.Netcode.NetworkTimeSystem: bool Advance(double): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): empty tag", - "Unity.Netcode.Components.NetworkTransform: void OnSynchronize(ref BufferSerializer): unexpected ", - "Unity.Netcode.Components.NetworkTransform: void OnInitialize(ref NetworkVariable): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): empty tag", - "Unity.Netcode.Components.NetworkTransform: void SetState(Vector3?, Quaternion?, Vector3?, bool): text or XML content outside a top-level tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): empty tag", - "Unity.Netcode.Components.NetworkTransform: void Teleport(Vector3, Quaternion, Vector3): text or XML content outside a top-level tag", - "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): cannot auto-inheritdoc (not an override or interface implementation); must specify 'cref'", - "Unity.Netcode.NetworkTransport: in block context; use instead", - "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): suspicious '///' triple-slash inside XmlDoc comment", - "Unity.Netcode.NetworkTransport: void Initialize(NetworkManager): text or XML content outside a top-level tag", - "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", - "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): in block context (only allowed in top-level context)", - "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): empty tag", - "Unity.Netcode.NetworkVariableBase: void SetUpdateTraits(NetworkVariableUpdateTraits): empty tag", - "Unity.Netcode.NetworkVariableBase: bool ExceedsDirtinessThreshold(): empty tag", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Write(FastBufferWriter, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Read(FastBufferReader, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void ReadDelta(FastBufferReader, ref T): empty tag", - "Unity.Netcode.NetworkVariableSerialization: void Duplicate(in T, ref T): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Single(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeArray, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(NativeList, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(ulong[], RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): empty tag", - "Unity.Netcode.SceneEventType: in block context; use instead", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: must use self-closing syntax", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpy(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedByMemcpyArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_List(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_HashSet(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): unexpected ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_UnmanagedINetworkSerializableArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_ManagedINetworkSerializable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedString(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_FixedStringArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedIEquatable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatable(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedIEquatableArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_List(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_HashSet(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): unexpected ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEquals(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_UnmanagedValueEqualsArray(): empty tag", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_ManagedClassEquals(): empty tag", - "Unity.Netcode.UserNetworkVariableSerialization: empty tag", - "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: unexpected " - ] - }, - "PVP-151-1": { - "errors": [ - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnUpdate(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnDestroy(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnBeforeUpdateTransformState(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnNetworkTransformStateUpdated(ref NetworkTransformState, ref NetworkTransformState): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform: void OnTransformUpdated(): undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Position: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Rotation: undocumented", - "Unity.Netcode.Components.AnticipatedNetworkTransform.TransformState: Scale: undocumented", - "Unity.Netcode.StaleDataHandling: undocumented", - "Unity.Netcode.StaleDataHandling: Ignore: undocumented", - "Unity.Netcode.StaleDataHandling: Reanticipate: undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void OnInitialize(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: .ctor(T, StaleDataHandling): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Update(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Dispose(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void Finalize(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: bool IsDirty(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ResetDirty(): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void WriteDelta(FastBufferWriter): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void WriteField(FastBufferWriter): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ReadField(FastBufferReader): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable: void ReadDelta(FastBufferReader, bool): undocumented", - "Unity.Netcode.AnticipatedNetworkVariable.OnAuthoritativeValueChangedDelegate: undocumented", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.AnticipatedNetworkVariable.SmoothDelegate: missing ", - "Unity.Netcode.BaseRpcTarget: undocumented", - "Unity.Netcode.BaseRpcTarget: m_NetworkManager: undocumented", - "Unity.Netcode.BaseRpcTarget: void CheckLockBeforeDispose(): undocumented", - "Unity.Netcode.BaseRpcTarget: void Dispose(): undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_InterpStartValue: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_CurrentInterpValue: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_InterpEndValue: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: m_Buffer: undocumented", - "Unity.Netcode.BufferedLinearInterpolator: void OnConvertTransformSpace(Transform, bool): undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: Item: undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: TimeSent: undocumented", - "Unity.Netcode.BufferedLinearInterpolator.BufferedItem: .ctor(T, double): undocumented", - "Unity.Netcode.BufferedLinearInterpolatorQuaternion: void OnConvertTransformSpace(Transform, bool): undocumented", - "Unity.Netcode.BufferedLinearInterpolatorVector3: XML is not well-formed: Missing closing quotation mark for string literal", - "Unity.Netcode.BufferedLinearInterpolatorVector3: void OnConvertTransformSpace(Transform, bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: TimedOut: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool OnHasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: bool HasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnStarted(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Started(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void OnFinished(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ConditionalPredicateBase: void Finished(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: bool HasConditionBeenReached(): missing ", - "Unity.Netcode.TestHelpers.Runtime.IConditionalPredicate: void Finished(bool): missing ", - "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", - "Unity.Netcode.CustomMessagingManager.HandleNamedMessageDelegate: missing ", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: .ctor(HostOrServer, bool): undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: void OnNewClientCreated(NetworkManager): undocumented", - "Unity.Netcode.RuntimeTests.ExtendedNetworkShowAndHideTests: IEnumerator HiddenObjectPromotedSessionOwnerNewClientSynchronizes(): missing ", - "Unity.Netcode.GenerateSerializationForGenericParameterAttribute: .ctor(int): undocumented", - "Unity.Netcode.GenerateSerializationForTypeAttribute: .ctor(Type): undocumented", - "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector3: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector3: .ctor(Vector3, bool3): missing ", - "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.HalfVector4: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(ref Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: string GetVector3Values(Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float GetDeltaVarianceThreshold(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: float EulerDelta(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 EulerDelta(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector2, Vector2): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool Approximately(Quaternion, Quaternion): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: bool ApproximatelyEuler(Vector3, Vector3): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: Vector3 GetRandomVector3(float, float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(NetworkTopologyTypes): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(HostOrServer): undocumented", - "Unity.Netcode.TestHelpers.Runtime.IntegrationTestWithApproximation: .ctor(): undocumented", - "Unity.Netcode.InvalidParentException: .ctor(string): missing ", - "Unity.Netcode.InvalidParentException: .ctor(string, Exception): missing ", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: AllMessagesReceived: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: NumberOfMessagesReceived: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: string GetHooksStillWaiting(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: bool OnHasConditionBeenReached(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void OnFinished(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: void Reset(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHooksConditional: .ctor(List): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Received: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ReceiptType: Handled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: m_NetworkManager: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: void Initialize(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MessageHookEntry: .ctor(NetworkManager, ReceiptType): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: RealTimeSinceStartup: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: UnscaledDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: DeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: FixedDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticRealTimeSinceStartup: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticUnscaledDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: StaticDeltaTime: undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void TimeTravel(double): undocumented", - "Unity.Netcode.TestHelpers.Runtime.MockTimeProvider: void Reset(): undocumented", - "Unity.Netcode.Editor.NetcodeEditorBase: missing ", - "Unity.Netcode.Editor.NetcodeEditorBase: void OnEnable(): missing ", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: NetworkPrefabsPath: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: TempNetworkPrefabsPath: undocumented", - "Unity.Netcode.Editor.Configuration.NetcodeForGameObjectsProjectSettings: GenerateDefaultNetworkPrefabs: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_TickFrequency: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_GlobalTimeoutHelper: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: s_DefaultWaitForTick: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetcodeLogAssert: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void RegisterNetworkObject(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void DeregisterNetworkObject(ulong, ulong): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: TotalClients: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: k_DefaultTickRate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NumberOfClients: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_PlayerPrefab: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ServerNetworkManager: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_ClientNetworkManagers: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_UseHost: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_DistributedAuthority: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_NetworkTopologyType: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool UseCMBService(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkTopologyTypes OnGetNetworkTopologyType(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetDistributedAuthorityProperties(NetworkManager): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_TargetFrameRate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: m_EnableVerboseDebug: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnSetVerboseDebug(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: NetworkManagerInstatiationMode OnSetIntegrationTestMode(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnOneTimeSetup(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeSetup(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnSetup(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator SetUp(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientCreated(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStarted(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnNewClientStartedAndConnected(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldWaitForNewClientToConnect(NetworkManager): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CreateAndStartNewClient(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void StopOneClientWithTimeTravel(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatency(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedDropRate(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void SetTimeTravelSimulatedLatencyJitter(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanStartServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnStartedServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnServerAndClientsConnected(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void ClientNetworkManagerPostStartInit(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: LogAllMessages: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool ShouldCheckForSpawnedPlayers(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator StartServerAndClients(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsLoad(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanClientsUnload(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool OnCanSceneCleanUpUnload(Scene): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator CoroutineShutdownAndCleanUp(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator OnTearDown(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OnInlineTearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator TearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void OneTimeTearDown(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool CanDestroyNetworkObject(NetworkObject): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(Func, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(Func, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForConditionOrTimeOut(IConditionalPredicate, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForConditionOrTimeOutWithTimeTravel(IConditionalPredicate, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(NetworkManager[]): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(NetworkManager[]): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForClientsConnectedOrTimeOut(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: bool WaitForClientsConnectedOrTimeOutWithTimeTravel(): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: GameObject SpawnPlayerObject(GameObject, NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: List SpawnObjects(GameObject, NetworkManager, int, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: .ctor(NetworkTopologyTypes, HostOrServer): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: void AssertOnTimeout(string, TimeoutHelper): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: IEnumerator WaitForTicks(NetworkManager, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: uint GetTickRate(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest: int GetFrameRate(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementEnabled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.SceneManagementState: SceneManagementDisabled: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: PerTest: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: AllTests: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.NetworkManagerInstatiationMode: DoNotCreate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Host: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: Server: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTest.HostOrServer: DAHost: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultMinFrames: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: DefaultTimeout: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManagerInstances: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterHandlers(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: NetworkManager CreateServer(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Create(int, out NetworkManager, out NetworkManager[], int, bool, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool CreateNewClients(int, out NetworkManager[], bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void StopOneClient(NetworkManager, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: bool Start(bool, NetworkManager, NetworkManager[], BeforeClientStartCallback, bool): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetNextGlobalIdHashValue(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IsNetcodeIntegrationTestRunning: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void RegisterNetcodeIntegrationTest(bool): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: GameObject CreateNetworkObjectPrefab(string, NetworkManager, params NetworkManager[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void MarkAsSceneObjectRoot(GameObject, NetworkManager, NetworkManager[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnected(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnected(NetworkManager[], ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientConnectedToServer(NetworkManager, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForClientsConnectedToServer(NetworkManager, int, ResultWrapper, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(ulong, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator GetNetworkObjectByRepresentation(Func, NetworkManager, ResultWrapper, bool, float): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: void GetNetworkObjectByRepresentationWithTimeTravel(Func, NetworkManager, ResultWrapper, bool, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: IEnumerator WaitForCondition(Func, ResultWrapper, float, int): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers: uint GetGlobalObjectIdHash(NetworkObject): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.MessageHandleCheck: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.BeforeClientStartCallback: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: missing ", - "Unity.Netcode.TestHelpers.Runtime.NetcodeIntegrationTestHelpers.ResultWrapper: Result: undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: .ctor(bool, bool): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void AddLog(string, string, LogType): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void OnTearDown(): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Dispose(): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasNotReceived(LogType, Regex): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void LogWasReceived(LogType, Regex): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: bool HasLogBeenReceived(LogType, string): undocumented", - "Unity.Netcode.RuntimeTests.NetcodeLogAssert: void Reset(): undocumented", - "Unity.Netcode.RpcException: undocumented", - "Unity.Netcode.RpcException: .ctor(string): undocumented", - "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkPostSpawn(): undocumented", - "Unity.Netcode.NetworkBehaviour: void InternalOnNetworkSessionSynchronized(): undocumented", - "Unity.Netcode.NetworkBehaviour: void OnReanticipate(double): undocumented", - "Unity.Netcode.NetworkClient: NetworkTopologyType: undocumented", - "Unity.Netcode.NetworkClient: DAHost: undocumented", - "Unity.Netcode.NetworkConfig: Prefabs: undocumented", - "Unity.Netcode.NetworkConfig: NetworkTopology: undocumented", - "Unity.Netcode.NetworkConfig: UseCMBService: undocumented", - "Unity.Netcode.NetworkConfig: AutoSpawnPlayerPrefabClientSide: undocumented", - "Unity.Netcode.ConnectionEventData: EventType: undocumented", - "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetConvertedDelta(): missing ", - "Unity.Netcode.Components.NetworkDeltaPosition: Vector3 GetDeltaPosition(): missing ", - "Unity.Netcode.NetworkList: .ctor(IEnumerable, NetworkVariableReadPermission, NetworkVariableWritePermission): missing ", - "Unity.Netcode.NetworkList: void Finalize(): undocumented", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", - "Unity.Netcode.NetworkList: IEnumerator GetEnumerator(): missing ", - "Unity.Netcode.NetworkList: void Add(T): missing ", - "Unity.Netcode.NetworkList: void Add(T): missing ", - "Unity.Netcode.NetworkList: void Clear(): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Contains(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: bool Remove(T): missing ", - "Unity.Netcode.NetworkList: Count: missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: int IndexOf(T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void Insert(int, T): missing ", - "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", - "Unity.Netcode.NetworkList: void RemoveAt(int): missing ", - "Unity.Netcode.NetworkList: this[int]: missing ", - "Unity.Netcode.NetworkList: this[int]: missing ", - "Unity.Netcode.NetworkManager: CurrentSessionOwner: undocumented", - "Unity.Netcode.NetworkManager: void NetworkUpdate(NetworkUpdateStage): undocumented", - "Unity.Netcode.NetworkManager.ReanticipateDelegate: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerObject: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: NetworkManagerGameObject: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedGameObjects: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: InstantiatedNetworkObjects: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: CurrentNetworkManagerMode: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool StartNetworkManager(out NetworkManager, NetworkManagerOperatingMode, NetworkConfig): missing ", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: void ShutdownNetworkManager(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper: bool BuffersMatch(int, long, byte[], byte[]): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: None: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Host: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Server: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkManagerHelper.NetworkManagerOperatingMode: Client: undocumented", - "Unity.Netcode.NetworkObject: void SetSceneObjectStatus(bool): undocumented", - "Unity.Netcode.NetworkObject: ushort GetNetworkBehaviourOrderIndex(NetworkBehaviour): undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: None: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: Distributable: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: Transferable: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: RequestRequired: undocumented", - "Unity.Netcode.NetworkObject.OwnershipStatus: SessionOwner: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: Locked: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestRequired: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: RequestInProgress: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: NotTransferrable: undocumented", - "Unity.Netcode.NetworkObject.OwnershipPermissionsFailureStatus: SessionOwnerOnly: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestSent: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: AlreadyOwner: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestRequiredNotSet: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: Locked: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: RequestInProgress: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestStatus: SessionOwnerOnly: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Approved: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Locked: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: RequestInProgress: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: CannotRequest: undocumented", - "Unity.Netcode.NetworkObject.OwnershipRequestResponseStatus: Denied: undocumented", - "Unity.Netcode.NetworkObject.OwnershipLockActions: None: undocumented", - "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndLock: undocumented", - "Unity.Netcode.NetworkObject.OwnershipLockActions: SetAndUnlock: undocumented", - "Unity.Netcode.NetworkObject.VisibilityDelegate: missing ", - "Unity.Netcode.NetworkObject.SpawnDelegate: missing ", - "Unity.Netcode.NetworkPrefab: bool Equals(NetworkPrefab): undocumented", - "Unity.Netcode.NetworkPrefab: SourcePrefabGlobalObjectIdHash: undocumented", - "Unity.Netcode.NetworkPrefab: TargetPrefabGlobalObjectIdHash: undocumented", - "Unity.Netcode.NetworkPrefab: bool Validate(int): undocumented", - "Unity.Netcode.NetworkPrefab: string ToString(): undocumented", - "Unity.Netcode.Editor.Configuration.NetworkPrefabProcessor: DefaultNetworkPrefabsPath: undocumented", - "Unity.Netcode.NetworkPrefabs: Prefabs: undocumented", - "Unity.Netcode.NetworkPrefabs: void Finalize(): undocumented", - "Unity.Netcode.NetworkPrefabs: void Initialize(bool): missing ", - "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: bool Add(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: void Remove(NetworkPrefab): missing ", - "Unity.Netcode.NetworkPrefabs: void Remove(GameObject): missing ", - "Unity.Netcode.Editor.NetworkPrefabsEditor: undocumented", - "Unity.Netcode.Editor.NetworkPrefabsEditor: void OnInspectorGUI(): undocumented", - "Unity.Netcode.NetworkSceneManager: List GetSceneMapping(MapTypes): undocumented", - "Unity.Netcode.NetworkSceneManager.MapTypes: undocumented", - "Unity.Netcode.NetworkSceneManager.MapTypes: ServerToClient: undocumented", - "Unity.Netcode.NetworkSceneManager.MapTypes: ClientToServer: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: MapType: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: Scene: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: ScenePresent: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: SceneName: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: ServerHandle: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: MappedLocalHandle: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: LocalHandle: undocumented", - "Unity.Netcode.NetworkSceneManager.SceneMap: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.NetworkSpawnManager: List GetConnectedPlayers(): undocumented", - "Unity.Netcode.NetworkSpawnManager: void InternalOnOwnershipChanged(ulong, ulong): undocumented", - "Unity.Netcode.NetworkTime: NetworkTime TimeTicksAgo(int, float): missing ", - "Unity.Netcode.Components.NetworkTransform: AuthorityMode: undocumented", - "Unity.Netcode.Components.NetworkTransform: PositionInLocalSpace: undocumented", - "Unity.Netcode.Components.NetworkTransform: RotationInLocalSpace: undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnTransformUpdated(): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnBeforeUpdateTransformState(): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnOwnershipChanged(ulong, ulong): undocumented", - "Unity.Netcode.Components.NetworkTransform: void OnUpdate(): missing ", - "Unity.Netcode.Components.NetworkTransform: float GetTickLatency(): missing ", - "Unity.Netcode.Components.NetworkTransform: float GetTickLatencyInSeconds(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsUnreliableFrameSync(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: bool IsReliableStateUpdate(): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkTransform.NetworkTransformState: void NetworkSerialize(BufferSerializer): missing ", - "Unity.Netcode.Components.NetworkTransform.AuthorityModes: undocumented", - "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Server: undocumented", - "Unity.Netcode.Components.NetworkTransform.AuthorityModes: Owner: undocumented", - "Unity.Netcode.NetworkTransport: void OnEarlyUpdate(): XML is not well-formed: End tag was not expected at this location", - "Unity.Netcode.NetworkTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTransport.TransportEventDelegate: missing ", - "Unity.Netcode.NetworkTopologyTypes: undocumented", - "Unity.Netcode.NetworkTopologyTypes: ClientServer: undocumented", - "Unity.Netcode.NetworkTopologyTypes: DistributedAuthority: undocumented", - "Unity.Netcode.NetworkVariable: CheckExceedsDirtinessThreshold: undocumented", - "Unity.Netcode.NetworkVariable: bool ExceedsDirtinessThreshold(): undocumented", - "Unity.Netcode.NetworkVariable: void OnInitialize(): undocumented", - "Unity.Netcode.NetworkVariable: bool CheckDirtyState(bool): missing ", - "Unity.Netcode.NetworkVariable: void Dispose(): undocumented", - "Unity.Netcode.NetworkVariable: void Finalize(): undocumented", - "Unity.Netcode.NetworkVariable.CheckExceedsDirtinessThresholdDelegate: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: MinSecondsBetweenUpdates: undocumented", - "Unity.Netcode.NetworkVariableUpdateTraits: MaxSecondsBetweenUpdates: undocumented", - "Unity.Netcode.NetworkVariableBase: NetworkBehaviour GetBehaviour(): undocumented", - "Unity.Netcode.NetworkVariableBase: void MarkNetworkBehaviourDirty(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: bool OnSetVerboseDebug(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListBuiltInTypeCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestListSerializableObjectCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestDictionaryNestedCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsTests: IEnumerator TestHashSetBuiltInTypeCollections(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: .ctor(HostOrServer, CollectionTypes): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: void OnServerAndClientsCreated(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests: IEnumerator CollectionAndOwnershipChangingTest(): undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: Dictionary: undocumented", - "Unity.Netcode.RuntimeTests.NetworkVariableCollectionsChangingTests.CollectionTypes: List: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void OnClear(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryCollectionUpdateHelper: void AddItem(): undocumented", - "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void OnClear(): undocumented", - "Unity.Netcode.RuntimeTests.ListCollectionUpdateHelper: void AddItem(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: VerboseMode: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: HelperState: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void SetState(HelperStates): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool OnValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: bool ValidateAgainst(BaseCollectionUpdateHelper): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnClear(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Clear(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void AddItem(): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void OnOwnershipChanged(ulong, ulong): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper: void Log(string): undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Stop: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Start: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: Pause: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ClearToChangeOwner: undocumented", - "Unity.Netcode.RuntimeTests.BaseCollectionUpdateHelper.HelperStates: ChangingOwner: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: Instances: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet GetHashSetValues(int): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: HashSet OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Add(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void AddRange(HashSet, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void FullSet(HashSet, Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void TrackChanges(Targets, HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnServerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.HashSetBaseTypeTestHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Instances: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> GetNestedDictionaryValues(int): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: NetworkVariable>> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: Dictionary> OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: bool UpdateValue((int, Dictionary), Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Add((int, Dictionary), Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void FullSet(Dictionary>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void TrackChanges(Targets, Dictionary>, Dictionary>): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnServerListValuesChanged(Dictionary>, Dictionary>): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary>, Dictionary>): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.NestedDictionaryTestHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Instances: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary GetDictionaryValues(int): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: Dictionary OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: bool UpdateValue((int, SerializableObject), Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Add((int, SerializableObject), Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void FullSet(Dictionary, Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void InitValues(): undocumented", - "Unity.Netcode.RuntimeTests.DictionaryTestHelper: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: SerializableObject GetRandomObject(): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: List GetListOfRandomObjects(int): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: List> GetListOfListOfRandomObjects(int, int): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: IntValue: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: LongValue: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: FloatValue: undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: string ToString(): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: void NetworkSerialize(BufferSerializer): undocumented", - "Unity.Netcode.RuntimeTests.SerializableObject: bool Equals(SerializableObject): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: NetworkVariable>> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: List> OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void UpdateValue(List, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Add(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void AddRange(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Insert(List, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Remove(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void FullSet(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void TrackChanges(Targets, List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnServerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnOwnerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListSerializableObject: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: List OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void UpdateValue(SerializableObject, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Add(SerializableObject, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void AddRange(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Insert(SerializableObject, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Remove(SerializableObject, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void FullSet(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void TrackChanges(Targets, List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnServerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnOwnerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperSerializableObject: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: NetworkVariable>> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: List> OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void UpdateValue(List, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Add(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void AddRange(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Insert(List, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Remove(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void FullSet(List>, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void TrackChanges(Targets, List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnServerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnOwnerListValuesChanged(List>, List>): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperListInt: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: Instances: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetState(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionServer: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: ListCollectionOwner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariableChanges: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: List OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void UpdateValue(int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Add(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void AddRange(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Insert(int, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Remove(int, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void FullSet(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void TrackChanges(Targets, List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnServerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnOwnerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkPostSpawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperInt: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: IsDebugMode: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: string GetLog(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogMessage(string): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: void LogStart(): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: void SetDebugMode(bool): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase: bool CompareTrackedChanges(Targets): undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Server: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.Targets: Owner: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Added: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Removed: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: Changed: undocumented", - "Unity.Netcode.RuntimeTests.ListTestHelperBase.DeltaTypes: UnChanged: undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: List OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void UpdateValue(T, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Add(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void AddRange(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Insert(T, int, Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Remove(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void FullSet(List, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void TrackChanges(Targets, List, List): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnServerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void OnOwnerListValuesChanged(List, List): undocumented", - "Unity.Netcode.RuntimeTests.IListTestHelperBase: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: Dictionary OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: bool UpdateValue((TKey, TValue), Targets, bool): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Add((TKey, TValue), Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Remove(TKey, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void FullSet(Dictionary, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void TrackChanges(Targets, Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnServerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void OnOwnerListValuesChanged(Dictionary, Dictionary): undocumented", - "Unity.Netcode.RuntimeTests.IDictionaryTestHelperBase: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: bool ValidateInstances(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: NetworkVariable> GetNetVar(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetServerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: HashSet OnSetOwnerValues(): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Add(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Remove(T, Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void Clear(Targets): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void TrackChanges(Targets, HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnServerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void OnOwnerListValuesChanged(HashSet, HashSet): undocumented", - "Unity.Netcode.RuntimeTests.IHashSetTestHelperBase: void ResetTrackedChanges(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: OnValueChanged: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper: .ctor(NetworkVariableBase): undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableHelper.OnMyValueChangedDelegateHandler: undocumented", - "Unity.Netcode.TestHelpers.Runtime.NetworkVariableBaseHelper: .ctor(NetworkVariableBase): undocumented", - "Unity.Netcode.NetworkVariableSerialization: void WriteDelta(FastBufferWriter, ref T, ref T): missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.NetworkVariableSerialization.EqualsDelegate: missing ", - "Unity.Netcode.RuntimeTests.ByteEnum: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ByteEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.SByteEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ShortEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.UShortEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.IntEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.UIntEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.LongEnum: C: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: A: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: B: undocumented", - "Unity.Netcode.RuntimeTests.ULongEnum: C: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkSpawn(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void RegisterAndLabelNetworkObject(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void DeRegisterNetworkObject(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnLostOwnership(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnGainedOwnership(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnNetworkDespawn(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.ObjectNameIdentifier: void OnDestroy(): undocumented", - "Unity.Netcode.RpcAttribute: RequireOwnership: undocumented", - "Unity.Netcode.RpcAttribute: DeferLocal: undocumented", - "Unity.Netcode.RpcAttribute: AllowTargetOverride: undocumented", - "Unity.Netcode.RpcAttribute: .ctor(SendTo): undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: Delivery: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: RequireOwnership: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: DeferLocal: undocumented", - "Unity.Netcode.RpcAttribute.RpcAttributeParams: AllowTargetOverride: undocumented", - "Unity.Netcode.ServerRpcAttribute: RequireOwnership: undocumented", - "Unity.Netcode.ServerRpcAttribute: .ctor(): undocumented", - "Unity.Netcode.ClientRpcAttribute: .ctor(): undocumented", - "Unity.Netcode.LocalDeferMode: undocumented", - "Unity.Netcode.LocalDeferMode: Default: undocumented", - "Unity.Netcode.LocalDeferMode: Defer: undocumented", - "Unity.Netcode.LocalDeferMode: SendImmediate: undocumented", - "Unity.Netcode.RpcSendParams: Target: undocumented", - "Unity.Netcode.RpcSendParams: LocalDeferMode: undocumented", - "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(BaseRpcTarget): undocumented", - "Unity.Netcode.RpcSendParams: RpcSendParams op_Implicit(LocalDeferMode): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcSendParams): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(BaseRpcTarget): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(LocalDeferMode): undocumented", - "Unity.Netcode.RpcParams: RpcParams op_Implicit(RpcReceiveParams): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: NumberOfClients: undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: .ctor(HostOrServer): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator OnSetup(): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: void OnCreatePlayerPrefab(): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting: IEnumerator ProxyDoesNotInvokeOnSender(): undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: ReceivedRpc: undocumented", - "Unity.Netcode.RuntimeTests.RpcProxyMessageTesting.RpcProxyText: void SendToEveryOneButMe(): undocumented", - "Unity.Netcode.RpcTarget: void Dispose(): undocumented", - "Unity.Netcode.RpcTarget: BaseRpcTarget Group(T, RpcTargetUse): missing ", - "Unity.Netcode.RpcTarget: BaseRpcTarget Not(T, RpcTargetUse): missing ", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnServerRpcAction: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: OnClientRpcAction: undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyServerRpc(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.Metrics.RpcTestComponent: void MyClientRpc(ClientRpcParams): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: k_DefaultTimeOutWaitPeriod: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: m_IsStarted: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: TimedOut: undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: float GetTimeElapsed(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStart(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Start(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void OnStop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: void Stop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool OnHasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: bool HasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutHelper: .ctor(float): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: int GetFrameCount(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStop(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: bool OnHasTimedOut(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: void OnStart(): undocumented", - "Unity.Netcode.TestHelpers.Runtime.TimeoutFrameCountHelper: .ctor(float, uint): undocumented", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeSerializer_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", - "Unity.Netcode.NetworkVariableSerializationTypedInitializers: void InitializeEqualityChecker_Dictionary(): missing ", - "Unity.Netcode.Transports.UTP.UnityTransport: m_Driver: undocumented", - "Unity.Netcode.Transports.UTP.UnityTransport: NetworkConnection Connect(NetworkEndPoint): undocumented", - "Unity.Netcode.Transports.UTP.UnityTransport: NetworkTopologyTypes OnCurrentTopology(): undocumented", - "Unity.Netcode.Transports.UTP.UnityTransport.ConnectionAddressData: IsIpv6: undocumented", - "Unity.Netcode.UserNetworkVariableSerialization.WriteDeltaDelegate: missing ", - "Unity.Netcode.UserNetworkVariableSerialization.DuplicateValueDelegate: missing " - ] - } - }, - "extends": [ - "rme", - "supported" - ] -} From 9fd039a92d6ba8ca3cc1c13aba9a48df7e80c46e Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Tue, 11 Feb 2025 11:22:05 +0100 Subject: [PATCH 04/24] Updated editor coverage --- .yamato/project.metafile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.yamato/project.metafile b/.yamato/project.metafile index 43c1202c90..e924f8426c 100644 --- a/.yamato/project.metafile +++ b/.yamato/project.metafile @@ -128,6 +128,9 @@ validation_editors: default: - trunk all: + - 2021.3 + - 2022.3 + - 2023.3 - 6000.0 - 6000.1 - trunk From f052f954796c92efd287791e4bd97a109fb6f1a8 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Tue, 11 Feb 2025 13:00:50 +0100 Subject: [PATCH 05/24] Updated pvpExceptions meta file --- com.unity.netcode.gameobjects/pvpExceptions.json.meta | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json.meta b/com.unity.netcode.gameobjects/pvpExceptions.json.meta index e69de29bb2..f20c484dd2 100644 --- a/com.unity.netcode.gameobjects/pvpExceptions.json.meta +++ b/com.unity.netcode.gameobjects/pvpExceptions.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 80ed5964947e32c4d8c1ed97d9d37875 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: From 2de9fbadb6ee0ab0eeaf0ca396b1efbef6c74932 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Tue, 11 Feb 2025 14:59:56 +0100 Subject: [PATCH 06/24] Corrected pvpExceptions meta --- com.unity.netcode.gameobjects/pvpExceptions.json.meta | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/com.unity.netcode.gameobjects/pvpExceptions.json.meta b/com.unity.netcode.gameobjects/pvpExceptions.json.meta index f20c484dd2..464a08877e 100644 --- a/com.unity.netcode.gameobjects/pvpExceptions.json.meta +++ b/com.unity.netcode.gameobjects/pvpExceptions.json.meta @@ -1,5 +1,5 @@ -fileFormatVersion: 2 -guid: 80ed5964947e32c4d8c1ed97d9d37875 +fileFormatVersion: 2 +guid: 3460732dd46332e48acdf417ee62dbd4 TextScriptImporter: externalObjects: {} userData: From 7ccdd898e47460648c2462563e4da149743a8275 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Tue, 11 Feb 2025 15:45:56 +0100 Subject: [PATCH 07/24] Fixed Standard check error saying "'NetworkDriver.RemoteEndPoint(NetworkConnection)' is obsolete: 'RemoteEndPoint has been renamed to GetRemoteEndpoint. (UnityUpgradable) -> GetRemoteEndpoint(*)'" --- .../Runtime/Transports/UTP/UnityTransport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs index 2a9e00d64d..829e8243d9 100644 --- a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs +++ b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs @@ -1233,7 +1233,7 @@ public NetworkEndpoint GetEndpoint(ulong clientId) var networkConnection = ParseClientId(transportId); if (m_Driver.GetConnectionState(networkConnection) == NetworkConnection.State.Connected) { - return m_Driver.RemoteEndPoint(networkConnection); + return m_Driver.GetRemoteEndpoint(networkConnection); } } return new NetworkEndpoint(); From 9faa618daab0b0f22dc94bf3ad34ebd6220636ac Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Tue, 11 Feb 2025 16:42:21 +0100 Subject: [PATCH 08/24] Revert "Fixed Standard check error saying "'NetworkDriver.RemoteEndPoint(NetworkConnection)' is obsolete: 'RemoteEndPoint has been renamed to GetRemoteEndpoint. (UnityUpgradable) -> GetRemoteEndpoint(*)'"" This reverts commit 7ccdd898e47460648c2462563e4da149743a8275. --- .../Runtime/Transports/UTP/UnityTransport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs index 829e8243d9..2a9e00d64d 100644 --- a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs +++ b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs @@ -1233,7 +1233,7 @@ public NetworkEndpoint GetEndpoint(ulong clientId) var networkConnection = ParseClientId(transportId); if (m_Driver.GetConnectionState(networkConnection) == NetworkConnection.State.Connected) { - return m_Driver.GetRemoteEndpoint(networkConnection); + return m_Driver.RemoteEndPoint(networkConnection); } } return new NetworkEndpoint(); From 6cc324bf9ff01dd1ab0aa194d390b383f631b38c Mon Sep 17 00:00:00 2001 From: NoelStephensUnity Date: Tue, 11 Feb 2025 18:43:43 -0600 Subject: [PATCH 09/24] fix NGO v1.x compatibility for UTP v2.x --- .../Runtime/Transports/UTP/UnityTransport.cs | 27 +++++++++++++++++++ .../Runtime/NetworkManagerTransportTests.cs | 6 +++++ 2 files changed, 33 insertions(+) diff --git a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs index 2a9e00d64d..8a8afcdbac 100644 --- a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs +++ b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs @@ -1215,6 +1215,31 @@ public override ulong GetCurrentRtt(ulong clientId) return (ulong)ExtractRtt(ParseClientId(clientId)); } +#if UTP_TRANSPORT_2_0_ABOVE + /// + /// Provides the for the NGO client identifier specified. + /// + /// + /// - This is only really useful for direct connections. + /// - Relay connections and clients connected using a distributed authority network topology will not provide the client's actual endpoint information. + /// - For LAN topologies this should work as long as it is a direct connection and not a relay connection. + /// + /// NGO client identifier to get endpoint information about. + /// + public NetworkEndpoint GetEndpoint(ulong clientId) + { + if (m_Driver.IsCreated && NetworkManager != null && NetworkManager.IsListening) + { + var transportId = NetworkManager.ConnectionManager.ClientIdToTransportId(clientId); + var networkConnection = ParseClientId(transportId); + if (m_Driver.GetConnectionState(networkConnection) == NetworkConnection.State.Connected) + { + return m_Driver.GetRemoteEndpoint(networkConnection); + } + } + return new NetworkEndpoint(); + } +#else /// /// Provides the for the NGO client identifier specified. /// @@ -1238,6 +1263,8 @@ public NetworkEndpoint GetEndpoint(ulong clientId) } return new NetworkEndpoint(); } +#endif + /// /// Initializes the transport diff --git a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkManagerTransportTests.cs b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkManagerTransportTests.cs index a9d8e3ae52..0789decdbe 100644 --- a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkManagerTransportTests.cs +++ b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkManagerTransportTests.cs @@ -173,8 +173,14 @@ internal class TransportEndpointTests : NetcodeIntegrationTest public IEnumerator GetEndpointReportedCorrectly() { var serverUnityTransport = m_ServerNetworkManager.NetworkConfig.NetworkTransport as UnityTransport; + +#if UTP_TRANSPORT_2_0_ABOVE + var serverEndpoint = new NetworkEndpoint(); + var clientEndpoint = new NetworkEndpoint(); +#else var serverEndpoint = new NetworkEndPoint(); var clientEndpoint = new NetworkEndPoint(); +#endif foreach (var client in m_ClientNetworkManagers) { var unityTransport = client.NetworkConfig.NetworkTransport as UnityTransport; From 2ff46081a4b8f6aaa65d3a4f8f8c51f5caf62531 Mon Sep 17 00:00:00 2001 From: NoelStephensUnity Date: Tue, 11 Feb 2025 18:53:54 -0600 Subject: [PATCH 10/24] fix Minor adjustment for the legacy NetworkEndPoint name. --- .../Runtime/Transports/UTP/UnityTransport.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs index 8a8afcdbac..4528651bfe 100644 --- a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs +++ b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs @@ -1241,7 +1241,7 @@ public NetworkEndpoint GetEndpoint(ulong clientId) } #else /// - /// Provides the for the NGO client identifier specified. + /// Provides the for the NGO client identifier specified. /// /// /// - This is only really useful for direct connections. @@ -1249,8 +1249,8 @@ public NetworkEndpoint GetEndpoint(ulong clientId) /// - For LAN topologies this should work as long as it is a direct connection and not a relay connection. /// /// NGO client identifier to get endpoint information about. - /// - public NetworkEndpoint GetEndpoint(ulong clientId) + /// + public NetworkEndPoint GetEndpoint(ulong clientId) { if (m_Driver.IsCreated && NetworkManager != null && NetworkManager.IsListening) { @@ -1261,7 +1261,7 @@ public NetworkEndpoint GetEndpoint(ulong clientId) return m_Driver.RemoteEndPoint(networkConnection); } } - return new NetworkEndpoint(); + return new NetworkEndPoint(); } #endif From f69b07ccbd9701089b218d66bb76fa2ddd08e91d Mon Sep 17 00:00:00 2001 From: NoelStephensUnity Date: Tue, 11 Feb 2025 19:25:11 -0600 Subject: [PATCH 11/24] fix More UTP v2x related (collections etc.) defines required. --- .../Messaging/NetworkMessageManager.cs | 4 +++ .../Transports/UTP/BatchedSendQueue.cs | 25 ++++++++++++++++++- .../Serialization/FastBufferWriterTests.cs | 5 +++- .../Transports/BatchedReceiveQueueTests.cs | 2 ++ .../Transports/BatchedSendQueueTests.cs | 2 ++ 5 files changed, 36 insertions(+), 2 deletions(-) diff --git a/com.unity.netcode.gameobjects/Runtime/Messaging/NetworkMessageManager.cs b/com.unity.netcode.gameobjects/Runtime/Messaging/NetworkMessageManager.cs index 7a89e30d19..ed5a97d9c0 100644 --- a/com.unity.netcode.gameobjects/Runtime/Messaging/NetworkMessageManager.cs +++ b/com.unity.netcode.gameobjects/Runtime/Messaging/NetworkMessageManager.cs @@ -827,7 +827,11 @@ internal unsafe int SendMessage(ref T message, NetworkDelivery delivery, in N internal unsafe int SendMessage(ref T message, NetworkDelivery delivery, in NativeList clientIds) where T : INetworkMessage { +#if UTP_TRANSPORT_2_0_ABOVE + return SendMessage(ref message, delivery, new PointerListWrapper(clientIds.GetUnsafePtr(), clientIds.Length)); +#else return SendMessage(ref message, delivery, new PointerListWrapper((ulong*)clientIds.GetUnsafePtr(), clientIds.Length)); +#endif } internal unsafe void ProcessSendQueues() diff --git a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/BatchedSendQueue.cs b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/BatchedSendQueue.cs index b1bd3fa98f..a77dd2a87c 100644 --- a/com.unity.netcode.gameobjects/Runtime/Transports/UTP/BatchedSendQueue.cs +++ b/com.unity.netcode.gameobjects/Runtime/Transports/UTP/BatchedSendQueue.cs @@ -106,7 +106,12 @@ private void AppendDataAtTail(ArraySegment data) { unsafe { +#if UTP_TRANSPORT_2_0_ABOVE + var writer = new DataStreamWriter(m_Data.GetUnsafePtr() + TailIndex, Capacity - TailIndex); +#else var writer = new DataStreamWriter((byte*)m_Data.GetUnsafePtr() + TailIndex, Capacity - TailIndex); +#endif + writer.WriteInt(data.Count); @@ -145,7 +150,11 @@ public bool PushMessage(ArraySegment message) { unsafe { +#if UTP_TRANSPORT_2_0_ABOVE + UnsafeUtility.MemMove(m_Data.GetUnsafePtr(), m_Data.GetUnsafePtr() + HeadIndex, Length); +#else UnsafeUtility.MemMove(m_Data.GetUnsafePtr(), (byte*)m_Data.GetUnsafePtr() + HeadIndex, Length); +#endif } TailIndex = Length; @@ -231,8 +240,12 @@ public int FillWriterWithMessages(ref DataStreamWriter writer, int softMaxBytes if (bytesToWrite > softMaxBytes && bytesToWrite <= writer.Capacity) { writer.WriteInt(messageLength); - WriteBytes(ref writer, (byte*)m_Data.GetUnsafePtr() + reader.GetBytesRead(), messageLength); +#if UTP_TRANSPORT_2_0_ABOVE + WriteBytes(ref writer, m_Data.GetUnsafePtr() + reader.GetBytesRead(), messageLength); +#else + WriteBytes(ref writer, (byte*)m_Data.GetUnsafePtr() + reader.GetBytesRead(), messageLength); +#endif return bytesToWrite; } else @@ -248,7 +261,12 @@ public int FillWriterWithMessages(ref DataStreamWriter writer, int softMaxBytes if (bytesWritten + bytesToWrite <= softMaxBytes) { writer.WriteInt(messageLength); + +#if UTP_TRANSPORT_2_0_ABOVE + WriteBytes(ref writer, m_Data.GetUnsafePtr() + reader.GetBytesRead(), messageLength); +#else WriteBytes(ref writer, (byte*)m_Data.GetUnsafePtr() + reader.GetBytesRead(), messageLength); +#endif readerOffset += bytesToWrite; bytesWritten += bytesToWrite; @@ -292,7 +310,12 @@ public int FillWriterWithBytes(ref DataStreamWriter writer, int maxBytes = 0) unsafe { + +#if UTP_TRANSPORT_2_0_ABOVE + WriteBytes(ref writer, m_Data.GetUnsafePtr() + HeadIndex, copyLength); +#else WriteBytes(ref writer, (byte*)m_Data.GetUnsafePtr() + HeadIndex, copyLength); +#endif } return copyLength; diff --git a/com.unity.netcode.gameobjects/Tests/Editor/Serialization/FastBufferWriterTests.cs b/com.unity.netcode.gameobjects/Tests/Editor/Serialization/FastBufferWriterTests.cs index f658fcbcc4..5967d49488 100644 --- a/com.unity.netcode.gameobjects/Tests/Editor/Serialization/FastBufferWriterTests.cs +++ b/com.unity.netcode.gameobjects/Tests/Editor/Serialization/FastBufferWriterTests.cs @@ -311,8 +311,11 @@ private unsafe void VerifyArrayEquality(NativeList value, byte* unsafePtr, { int* sizeValue = (int*)(unsafePtr + offset); Assert.AreEqual(value.Length, *sizeValue); - +#if UTP_TRANSPORT_2_0_ABOVE + var asTPointer = value.GetUnsafePtr(); +#else var asTPointer = (T*)value.GetUnsafePtr(); +#endif var underlyingTArray = (T*)(unsafePtr + sizeof(int) + offset); for (var i = 0; i < value.Length; ++i) { diff --git a/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedReceiveQueueTests.cs b/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedReceiveQueueTests.cs index 5470f21656..e072f3c956 100644 --- a/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedReceiveQueueTests.cs +++ b/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedReceiveQueueTests.cs @@ -2,7 +2,9 @@ using NUnit.Framework; using Unity.Collections; using Unity.Netcode.Transports.UTP; +#if !UTP_TRANSPORT_2_0_ABOVE using Unity.Networking.Transport; +#endif namespace Unity.Netcode.EditorTests { diff --git a/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedSendQueueTests.cs b/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedSendQueueTests.cs index c1550da95f..ca6a354b96 100644 --- a/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedSendQueueTests.cs +++ b/com.unity.netcode.gameobjects/Tests/Editor/Transports/BatchedSendQueueTests.cs @@ -2,7 +2,9 @@ using NUnit.Framework; using Unity.Collections; using Unity.Netcode.Transports.UTP; +#if !UTP_TRANSPORT_2_0_ABOVE using Unity.Networking.Transport; +#endif namespace Unity.Netcode.EditorTests { From 50837d38e4dc433fc59f0360d44a36760529a359 Mon Sep 17 00:00:00 2001 From: NoelStephensUnity Date: Tue, 11 Feb 2025 20:07:00 -0600 Subject: [PATCH 12/24] fix Missed one of the files --- .../NetworkSceneManagerFixValidationTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testproject/Assets/Tests/Runtime/NetworkSceneManager/NetworkSceneManagerFixValidationTests.cs b/testproject/Assets/Tests/Runtime/NetworkSceneManager/NetworkSceneManagerFixValidationTests.cs index 1da238adec..8d77799346 100644 --- a/testproject/Assets/Tests/Runtime/NetworkSceneManager/NetworkSceneManagerFixValidationTests.cs +++ b/testproject/Assets/Tests/Runtime/NetworkSceneManager/NetworkSceneManagerFixValidationTests.cs @@ -1,3 +1,5 @@ +// TODO: Rewrite test to use the tools package. Debug simulator not available in UTP 2.X. +#if !UTP_TRANSPORT_2_0_ABOVE using System.Collections; using System.Collections.Generic; using NUnit.Framework; @@ -9,8 +11,6 @@ using UnityEngine.TestTools; using Object = UnityEngine.Object; -// TODO: Rewrite test to use the tools package. Debug simulator not available in UTP 2.X. -#if !UTP_TRANSPORT_2_0_ABOVE namespace TestProject.RuntimeTests { From 90a0ca53a895fc13ef355ce9e2fbbbafa1f6e8bb Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Wed, 12 Feb 2025 09:40:03 +0100 Subject: [PATCH 13/24] Corrected trigger branch for nightly and weekly jobs --- .yamato/_triggers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.yamato/_triggers.yml b/.yamato/_triggers.yml index 8abd3622cf..0158e43fb3 100644 --- a/.yamato/_triggers.yml +++ b/.yamato/_triggers.yml @@ -31,7 +31,7 @@ develop_nightly: name: "\U0001F319 [Nightly] Run All Tests [Trunk]" triggers: recurring: - - branch: develop-2.0.0 + - branch: develop frequency: daily rerun: always dependencies: @@ -63,7 +63,7 @@ develop_weekly_trunk: name: "\U0001F319 [Weekly] Run All Tests" triggers: recurring: - - branch: develop-2.0.0 + - branch: develop frequency: weekly rerun: always dependencies: From 888838ced737a95c3bb12aa35ba0395c6e3967cc Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Wed, 12 Feb 2025 11:19:03 +0100 Subject: [PATCH 14/24] Added testing coverage on minimal supported editor (2021.3) --- .yamato/_run-all.yml | 68 +++++++++++++++++++++++++++++++++++++++++++ .yamato/_triggers.yml | 37 +++++++++++++++-------- 2 files changed, 93 insertions(+), 12 deletions(-) diff --git a/.yamato/_run-all.yml b/.yamato/_run-all.yml index af4c78b7f0..07681265c4 100644 --- a/.yamato/_run-all.yml +++ b/.yamato/_run-all.yml @@ -22,6 +22,15 @@ run_all_package_tests_trunk: {% endfor -%} {% endfor -%} +# Runs all package tests on mimimum supported editor (2021.3 in case of NGOv1.X) +run_all_package_tests_2021: + name: Run All Package Tests [2021.3] + dependencies: + {% for platform in test_platforms.desktop -%} + - .yamato/package-tests.yml#package_test_-_ngo_trunk_{{ platform.name }} + - .yamato/package-tests.yml#package_test_-_ngo_2021.3_{{ platform.name }} + {% endfor -%} + # Runs all projects tests run_all_project_tests: @@ -52,6 +61,19 @@ run_all_project_tests_trunk: {% endif -%} {% endfor -%} +# Runs all projects tests on mimimum supported editor (2021.3 in case of NGOv1.X) +run_all_project_tests_2021: + name: Run All Project Tests [2021.3] + dependencies: +{% for project in projects.all -%} +{% if project.has_tests == "true" -%} +{% for platform in test_platforms.desktop -%} + - .yamato/project-tests.yml#test_{{ project.name }}_{{ platform.name }}_trunk + - .yamato/project-tests.yml#test_{{ project.name }}_{{ platform.name }}_2021.3 +{% endfor -%} +{% endif -%} +{% endfor -%} + # Runs all project standards check run_all_projects_standards: @@ -91,6 +113,17 @@ run_all_webgl_builds_trunk: {% endfor -%} {% endfor -%} +# Runs all WebGL builds on 2021.3 editor +run_all_webgl_builds_2021: + name: Run All WebGl Build [2021.3] + dependencies: +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_trunk + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_2021.3 +{% endfor -%} +{% endfor -%} + # Runs all Desktop tests run_all_project_tests_desktop_standalone: @@ -121,6 +154,19 @@ run_all_project_tests_desktop_standalone_trunk: {% endfor -%} {% endfor -%} +# Runs all Desktop tests on mimimum supported editor (2021.3 in case of NGOv1.X) +run_all_project_tests_desktop_standalone_2021: + name: Run All Standalone Tests - Desktop [2021.3] + dependencies: +{% for project in projects.default -%} +{% for platform in test_platforms.desktop -%} +{% for backend in scripting_backends -%} + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_{{ project.name }}_{{ platform.name }}_{{ backend }}_trunk + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_{{ project.name }}_{{ platform.name }}_{{ backend }}_2021.3 +{% endfor -%} +{% endfor -%} +{% endfor -%} + # Runs all Mobile tests run_all_project_tests_mobile_standalone: name: Run All Standalone Tests - Mobile @@ -146,6 +192,17 @@ run_all_project_tests_mobile_standalone_trunk: {% endfor -%} {% endfor -%} +# Runs all Mobile tests on mimimum supported editor (2021.3 in case of NGOv1.X) +run_all_project_tests_mobile_standalone_2021: + name: Run All Standalone Tests - Mobile [2021.3] + dependencies: +{% for project in projects.default -%} +{% for platform in test_platforms.mobile_test -%} + - .yamato/mobile-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_trunk + - .yamato/mobile-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_2021.3 +{% endfor -%} +{% endfor -%} + # Runs all Console tests run_all_project_tests_console_standalone: @@ -171,3 +228,14 @@ run_all_project_tests_console_standalone_trunk: {% endfor -%} {% endfor -%} {% endfor -%} + +# Runs all Console tests on mimimum supported editor (2021.3 in case of NGOv1.X) +run_all_project_tests_console_standalone_2021: + name: Run All Standalone Tests - Console [2021.3] + dependencies: +{% for project in projects.default -%} +{% for platform in test_platforms.console_test -%} + - .yamato/console-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_trunk + - .yamato/console-standalone-test.yml#run_{{ project.name }}_tests_{{ platform.name }}_2021.3 +{% endfor -%} +{% endfor -%} diff --git a/.yamato/_triggers.yml b/.yamato/_triggers.yml index 0158e43fb3..81d5017f7c 100644 --- a/.yamato/_triggers.yml +++ b/.yamato/_triggers.yml @@ -5,14 +5,19 @@ pull_request_trigger: name: Pull Request Trigger (develop, develop-2.0.0, & release branches) dependencies: - # Run project standards to verify package/default project + # Run project standards to verify package/default project. This is fine to just run for trunk - .yamato/project-standards.yml#standards_ubuntu_testproject_trunk - # Run package EditMode and Playmode tests on desktop platforms on trunk + # Run package EditMode and Playmode package tests on trunk - .yamato/_run-all.yml#run_all_package_tests_trunk - # Run project EditMode and PLaymode tests on desktop platforms on trunk + # Run package EditMode and Playmode package tests on minimum supported editor (2021.3 in case of NGOv1.X) + - .yamato/_run-all.yml#run_all_package_tests_2021 + # Run project EditMode and PLaymode project tests on trunk - .yamato/_run-all.yml#run_all_project_tests_trunk - # Run one standalone test to make sure there are no obvious issues with most common platform (for example --fail-on-assert option is not present with package/project tests) + # Run project EditMode and PLaymode project tests on minimum supported editor (2021.3 in case of NGOv1.X) + - .yamato/_run-all.yml#run_all_project_tests_2021 + # Run one standalone test to make sure there are no obvious issues with most common platform (for example --fail-on-assert option is not present with package/project tests). We run 2 different combinations (platform/editor) - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_win_il2cpp_trunk + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_ubuntu_il2cpp_2021.3 triggers: cancel_old_ci: true pull_requests: @@ -28,7 +33,7 @@ pull_request_trigger: # Same subset as pull_request_trigger with addition of mobile/desktop/console tests and webgl builds # Those tests are all running on trunk editor (since it's daily and running all of them would add a lot of overhead) develop_nightly: - name: "\U0001F319 [Nightly] Run All Tests [Trunk]" + name: "\U0001F319 [Nightly] Run All Tests [Trunk and 2021]" triggers: recurring: - branch: develop @@ -37,22 +42,30 @@ develop_nightly: dependencies: # Run project standards to verify package/default project - .yamato/project-standards.yml#standards_ubuntu_testproject_trunk + - .yamato/project-standards.yml#standards_ubuntu_testproject_2021 # Run APV jobs to make sure the change won't break any dependants - .yamato/wrench/preview-a-p-v.yml#all_preview_apv_jobs - # Run package EditMode and Playmode tests on desktop platforms on trunk + # Run package EditMode and Playmode tests on desktop platforms on trunk and 2021.3 - .yamato/_run-all.yml#run_all_package_tests_trunk - # Run project EditMode and PLaymode tests on desktop platforms on trunk + - .yamato/_run-all.yml#run_all_package_tests_2021 + # Run project EditMode and PLaymode tests on desktop platforms on trunk and 2021.3 - .yamato/_run-all.yml#run_all_project_tests_trunk - # Run Runtime tests on desktop players on trunk + - .yamato/_run-all.yml#run_all_project_tests_2021 + # Run Runtime tests on desktop players on trunk and 2021 editors - .yamato/_run-all.yml#run_all_project_tests_desktop_standalone_trunk - # Run Runtime tests on mobile players on trunk + - .yamato/_run-all.yml#run_all_project_tests_desktop_standalone_2021 + # Run Runtime tests on mobile players on trunk and 2021 editors - .yamato/_run-all.yml#run_all_project_tests_mobile_standalone_trunk - # Run Runtime tests on console players on trunk + - .yamato/_run-all.yml#run_all_project_tests_mobile_standalone_2021 + # Run Runtime tests on console players on trunk and 2021 editors - .yamato/_run-all.yml#run_all_project_tests_console_standalone_trunk - # Build player for webgl platform on trunk + - .yamato/_run-all.yml#run_all_project_tests_console_standalone_2021 + # Build player for webgl platform on trunk and 2021 editors - .yamato/_run-all.yml#run_all_webgl_builds_trunk - # Build player for webgl platform on trunk + - .yamato/_run-all.yml#run_all_webgl_builds_2021 + # Build player for webgl platform on trunk and 2021 editors - .yamato/project-updated-dependencies-test.yml#updated-dependencies_testproject_NGO_ubuntu_trunk + - .yamato/project-updated-dependencies-test.yml#updated-dependencies_testproject_NGO_win_2021.3 # Run all tests on weekly bases From 79535883d7f0a1844c065c901d6aaa219b1c36d7 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Wed, 12 Feb 2025 11:26:13 +0100 Subject: [PATCH 15/24] Corrected typo in runAll configurtation --- .yamato/_run-all.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.yamato/_run-all.yml b/.yamato/_run-all.yml index 07681265c4..2a8dcc1bfe 100644 --- a/.yamato/_run-all.yml +++ b/.yamato/_run-all.yml @@ -26,10 +26,10 @@ run_all_package_tests_trunk: run_all_package_tests_2021: name: Run All Package Tests [2021.3] dependencies: - {% for platform in test_platforms.desktop -%} +{% for platform in test_platforms.desktop -%} - .yamato/package-tests.yml#package_test_-_ngo_trunk_{{ platform.name }} - .yamato/package-tests.yml#package_test_-_ngo_2021.3_{{ platform.name }} - {% endfor -%} +{% endfor -%} # Runs all projects tests @@ -95,7 +95,7 @@ run_all_webgl_builds: {% for project in projects.default -%} {% for platform in test_platforms.desktop -%} {% for editor in validation_editors.all -%} - - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_{{ editor }} + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform.name }}_{{ editor }} {% endfor -%} {% endfor -%} {% endfor -%} @@ -108,7 +108,7 @@ run_all_webgl_builds_trunk: {% for project in projects.default -%} {% for platform in test_platforms.desktop -%} {% for editor in validation_editors.default -%} - - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_{{ editor }} + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform.name }}_{{ editor }} {% endfor -%} {% endfor -%} {% endfor -%} @@ -119,8 +119,8 @@ run_all_webgl_builds_2021: dependencies: {% for project in projects.default -%} {% for platform in test_platforms.desktop -%} - - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_trunk - - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform }}_2021.3 + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform.name }}_trunk + - .yamato/webgl-build.yml#webgl_build_{{ project.name }}_{{ platform.name }}_2021.3 {% endfor -%} {% endfor -%} From f40330593014894b6db8df4f664c088479e12f34 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Wed, 12 Feb 2025 11:29:51 +0100 Subject: [PATCH 16/24] Corrected platform name in webgl definition --- .yamato/webgl-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/webgl-build.yml b/.yamato/webgl-build.yml index 15db4b16ec..97a182acdb 100644 --- a/.yamato/webgl-build.yml +++ b/.yamato/webgl-build.yml @@ -11,7 +11,7 @@ {% for project in projects.default -%} {% for platform in test_platforms.desktop -%} {% for editor in validation_editors.all -%} -webgl_build_{{ project.name }}_{{ platform }}_{{ editor }}: +webgl_build_{{ project.name }}_{{ platform.name }}_{{ editor }}: name: WebGl Build - {{ project.name }} [{{ platform.name }}, {{ editor }}, il2cpp] agent: type: {% if platform.name == "mac" %} {{ platform.type }} {% else %} {{ platform.type }}::GPU {% endif %} From f950d68510288dcdb7fa6afa196c58a3b282e3ad Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Wed, 12 Feb 2025 12:34:17 +0100 Subject: [PATCH 17/24] Added missing tests coverage for project-updated-dependencies --- .yamato/_triggers.yml | 2 +- .yamato/project-updated-dependencies-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.yamato/_triggers.yml b/.yamato/_triggers.yml index 81d5017f7c..02fb2ce50c 100644 --- a/.yamato/_triggers.yml +++ b/.yamato/_triggers.yml @@ -42,7 +42,7 @@ develop_nightly: dependencies: # Run project standards to verify package/default project - .yamato/project-standards.yml#standards_ubuntu_testproject_trunk - - .yamato/project-standards.yml#standards_ubuntu_testproject_2021 + - .yamato/project-standards.yml#standards_ubuntu_testproject_2021.3 # Run APV jobs to make sure the change won't break any dependants - .yamato/wrench/preview-a-p-v.yml#all_preview_apv_jobs # Run package EditMode and Playmode tests on desktop platforms on trunk and 2021.3 diff --git a/.yamato/project-updated-dependencies-test.yml b/.yamato/project-updated-dependencies-test.yml index 513087f3c4..4cbf8d5ece 100644 --- a/.yamato/project-updated-dependencies-test.yml +++ b/.yamato/project-updated-dependencies-test.yml @@ -5,7 +5,7 @@ # This is just to ensure that no critical change is made. It will be run on a default editor and default platform (it can be discussed if we should run it per all editors and platforms) {% for project in projects.default -%} {% for platform in test_platforms.default -%} -{% for editor in validation_editors.default -%} +{% for editor in validation_editors.all -%} updated-dependencies_{{ project.name }}_NGO_{{ platform.name }}_{{ editor }}: name : Updated Dependencies Test - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}] agent: From 2dc1ad8bd1fc27af9e61a43f65e134abd2bfa1b7 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Wed, 12 Feb 2025 12:37:12 +0100 Subject: [PATCH 18/24] Corrected coverage --- .yamato/project-standards.yml | 2 +- .yamato/project-updated-dependencies-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index b0a74ad6a6..0bb442971e 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -6,7 +6,7 @@ # Tests are executed for default editor (trunk) on default platform (ubuntu) as in project.metafile declaration since results would be the same across editors and platforms. {% for project in projects.all -%} {% for platform in test_platforms.default -%} -{% for editor in validation_editors.default -%} +{% for editor in validation_editors.all -%} standards_{{ platform.name }}_{{ project.name }}_{{ editor }}: name: Standards Check - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}] agent: diff --git a/.yamato/project-updated-dependencies-test.yml b/.yamato/project-updated-dependencies-test.yml index 4cbf8d5ece..cdc44c9e8e 100644 --- a/.yamato/project-updated-dependencies-test.yml +++ b/.yamato/project-updated-dependencies-test.yml @@ -4,7 +4,7 @@ # Executes package tests for each package referenced in the project using the newest compatible version of the package dependencies. # This is just to ensure that no critical change is made. It will be run on a default editor and default platform (it can be discussed if we should run it per all editors and platforms) {% for project in projects.default -%} -{% for platform in test_platforms.default -%} +{% for platform in test_platforms.desktop -%} {% for editor in validation_editors.all -%} updated-dependencies_{{ project.name }}_NGO_{{ platform.name }}_{{ editor }}: name : Updated Dependencies Test - NGO {{ project.name }} [{{ platform.name }}, {{ editor }}] From ab77240751050bccbcf7546187dd084bca132392 Mon Sep 17 00:00:00 2001 From: NoelStephensUnity Date: Wed, 12 Feb 2025 16:02:45 -0600 Subject: [PATCH 19/24] update Updating some integration tests and some additional areas that were problematic to IL2CPP integration tests. --- .../SceneManagement/SceneEventProgress.cs | 4 +- .../Runtime/NetcodeIntegrationTestHelpers.cs | 2 +- .../Assets/Tests/Runtime/MessageOrdering.cs | 23 ++--- .../SceneObjectsNotDestroyedOnShutdownTest.cs | 92 +++++++++++-------- 4 files changed, 69 insertions(+), 52 deletions(-) diff --git a/com.unity.netcode.gameobjects/Runtime/SceneManagement/SceneEventProgress.cs b/com.unity.netcode.gameobjects/Runtime/SceneManagement/SceneEventProgress.cs index d50c6c73ea..907c1f0de7 100644 --- a/com.unity.netcode.gameobjects/Runtime/SceneManagement/SceneEventProgress.cs +++ b/com.unity.netcode.gameobjects/Runtime/SceneManagement/SceneEventProgress.cs @@ -91,7 +91,7 @@ internal class SceneEventProgress /// internal bool HasTimedOut() { - return WhenSceneEventHasTimedOut <= m_NetworkManager.RealTimeProvider.RealTimeSinceStartup; + return m_NetworkManager == null || WhenSceneEventHasTimedOut <= m_NetworkManager.RealTimeProvider.RealTimeSinceStartup; } /// @@ -298,7 +298,7 @@ internal void TryFinishingSceneEventProgress() m_NetworkManager.OnClientDisconnectCallback -= OnClientDisconnectCallback; } - if (m_TimeOutCoroutine != null) + if (m_TimeOutCoroutine != null && m_NetworkManager != null) { m_NetworkManager.StopCoroutine(m_TimeOutCoroutine); } diff --git a/com.unity.netcode.gameobjects/TestHelpers/Runtime/NetcodeIntegrationTestHelpers.cs b/com.unity.netcode.gameobjects/TestHelpers/Runtime/NetcodeIntegrationTestHelpers.cs index 5dcf5dc814..0de0ca2001 100644 --- a/com.unity.netcode.gameobjects/TestHelpers/Runtime/NetcodeIntegrationTestHelpers.cs +++ b/com.unity.netcode.gameobjects/TestHelpers/Runtime/NetcodeIntegrationTestHelpers.cs @@ -329,7 +329,7 @@ public static void Destroy() // Shutdown the server which forces clients to disconnect foreach (var networkManager in NetworkManagerInstances) { - networkManager.Shutdown(); + networkManager.Shutdown(true); s_Hooks.Remove(networkManager); } diff --git a/testproject/Assets/Tests/Runtime/MessageOrdering.cs b/testproject/Assets/Tests/Runtime/MessageOrdering.cs index d4fe59193c..b71b510604 100644 --- a/testproject/Assets/Tests/Runtime/MessageOrdering.cs +++ b/testproject/Assets/Tests/Runtime/MessageOrdering.cs @@ -36,12 +36,13 @@ public IEnumerator Teardown() { Object.Destroy(m_Prefab); m_Prefab = null; - NetcodeIntegrationTestHelpers.Destroy(); Support.SpawnRpcDespawn.ClientUpdateCount = 0; Support.SpawnRpcDespawn.ServerUpdateCount = 0; Support.SpawnRpcDespawn.ClientNetworkSpawnRpcCalled = false; Support.SpawnRpcDespawn.ExecuteClientRpc = false; } + + NetcodeIntegrationTestHelpers.Destroy(); yield break; } @@ -106,16 +107,6 @@ public IEnumerator SpawnRpcDespawn() // Make it a prefab NetcodeIntegrationTestHelpers.MakeNetworkObjectTestPrefab(networkObject); - var clientHandlers = new List(); - //var handler = new SpawnRpcDespawnInstanceHandler(networkObject.GlobalObjectIdHash); - //server.PrefabHandler.AddHandler(networkObject.GlobalObjectIdHash, handler); - foreach (var client in m_ClientNetworkManagers) - { - var clientHandler = new SpawnRpcDespawnInstanceHandler(networkObject.GlobalObjectIdHash); - client.PrefabHandler.AddHandler(networkObject, clientHandler); - clientHandlers.Add(clientHandler); - } - var validNetworkPrefab = new NetworkPrefab { Prefab = m_Prefab @@ -126,6 +117,16 @@ public IEnumerator SpawnRpcDespawn() client.NetworkConfig.Prefabs.Add(validNetworkPrefab); } + var clientHandlers = new List(); + //var handler = new SpawnRpcDespawnInstanceHandler(networkObject.GlobalObjectIdHash); + //server.PrefabHandler.AddHandler(networkObject.GlobalObjectIdHash, handler); + foreach (var client in m_ClientNetworkManagers) + { + var clientHandler = new SpawnRpcDespawnInstanceHandler(networkObject.GlobalObjectIdHash); + client.PrefabHandler.AddHandler(networkObject, clientHandler); + clientHandlers.Add(clientHandler); + } + // Start the instances if (!NetcodeIntegrationTestHelpers.Start(true, m_ServerNetworkManager, m_ClientNetworkManagers)) { diff --git a/testproject/Assets/Tests/Runtime/SceneObjectsNotDestroyedOnShutdownTest.cs b/testproject/Assets/Tests/Runtime/SceneObjectsNotDestroyedOnShutdownTest.cs index 4c190c424c..6848d972a9 100644 --- a/testproject/Assets/Tests/Runtime/SceneObjectsNotDestroyedOnShutdownTest.cs +++ b/testproject/Assets/Tests/Runtime/SceneObjectsNotDestroyedOnShutdownTest.cs @@ -1,4 +1,5 @@ using System.Collections; +using System.Collections.Generic; using System.Linq; using NUnit.Framework; using Unity.Netcode; @@ -19,6 +20,36 @@ public class SceneObjectsNotDestroyedOnShutdownTest : NetcodeIntegrationTest private Scene m_TestScene; private WaitForSeconds m_DefaultWaitForTick = new WaitForSeconds(1.0f / 30); + private NetworkObject m_LoadedSceneObject; + private List m_LoadedSceneOBjects = new List(); + + private bool FoundLoadedSceneObject() + { + m_LoadedSceneObject = null; +#if UNITY_2023_1_OR_NEWER + m_LoadedSceneObject = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name.Contains(k_SceneObjectName)).FirstOrDefault(); +#else + m_LoadedSceneObject = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)).FirstOrDefault(); +#endif + return m_LoadedSceneObject != null; + } + + private bool FoundLoadedSceneObjects() + { + m_LoadedSceneOBjects.Clear(); +#if UNITY_2023_1_OR_NEWER + var loadedInSceneObjects = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name.Contains(k_SceneObjectName)); +#else + var loadedInSceneObjects = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)); +#endif + if (loadedInSceneObjects.Count() == 0) + { + return false; + } + m_LoadedSceneOBjects.AddRange(loadedInSceneObjects); + return true; + } + [UnityTest] public IEnumerator SceneObjectsNotDestroyedOnShutdown() { @@ -28,30 +59,22 @@ public IEnumerator SceneObjectsNotDestroyedOnShutdown() yield return WaitForConditionOrTimeOut(() => m_TestScene.IsValid() && m_TestScene.isLoaded); AssertOnTimeout($"Timed out waiting for scene {k_TestScene} to load!"); -#if UNITY_2023_1_OR_NEWER - var loadedInSceneObject = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name == k_SceneObjectName).FirstOrDefault(); -#else - var loadedInSceneObject = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)).FirstOrDefault(); -#endif - Assert.IsNotNull(loadedInSceneObject, $"Failed to find {k_SceneObjectName} before starting client!"); + yield return WaitForConditionOrTimeOut(FoundLoadedSceneObject); + AssertOnTimeout($"Failed to find {k_SceneObjectName} before starting client!"); yield return CreateAndStartNewClient(); -#if UNITY_2023_1_OR_NEWER - var loadedInSceneObjects = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name == k_SceneObjectName); -#else - var loadedInSceneObjects = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)); -#endif - Assert.IsTrue(loadedInSceneObjects.Count() > 1, $"Only found one instance of {k_SceneObjectName} after client connected!"); + yield return WaitForConditionOrTimeOut(FoundLoadedSceneObjects); + AssertOnTimeout($"Failed to find {k_SceneObjectName} objects after starting Client-{m_ClientNetworkManagers[0].LocalClientId}!"); + + Assert.IsTrue(m_LoadedSceneOBjects.Count() > 1, $"Only found one instance of {k_SceneObjectName} after Client-{m_ClientNetworkManagers[0].LocalClientId} connected!"); m_ClientNetworkManagers[0].Shutdown(); yield return m_DefaultWaitForTick; -#if UNITY_2023_1_OR_NEWER - loadedInSceneObjects = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name == k_SceneObjectName); -#else - loadedInSceneObjects = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)); -#endif - Assert.IsTrue(loadedInSceneObjects.Count() > 1, $"Only found one instance of {k_SceneObjectName} after client shutdown!"); + yield return WaitForConditionOrTimeOut(FoundLoadedSceneObjects); + AssertOnTimeout($"Failed to find {k_SceneObjectName} objects after shutting down client!"); + Assert.IsTrue(m_LoadedSceneOBjects.Count() > 1, $"Only found one instance of {k_SceneObjectName} after client shutdown!"); } + [UnityTest] public IEnumerator ChildSceneObjectsDoNotDestroyOnShutdown() { @@ -61,46 +84,39 @@ public IEnumerator ChildSceneObjectsDoNotDestroyOnShutdown() yield return WaitForConditionOrTimeOut(() => m_TestScene.IsValid() && m_TestScene.isLoaded); AssertOnTimeout($"Timed out waiting for scene {k_TestScene} to load!"); -#if UNITY_2023_1_OR_NEWER - var loadedInSceneObject = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name == k_SceneObjectName).FirstOrDefault(); -#else - var loadedInSceneObject = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)).FirstOrDefault(); -#endif - Assert.IsNotNull(loadedInSceneObject, $"Failed to find {k_SceneObjectName} before starting client!"); + yield return WaitForConditionOrTimeOut(FoundLoadedSceneObject); + AssertOnTimeout($"Failed to find {k_SceneObjectName} before starting client!"); + yield return CreateAndStartNewClient(); var clientId = m_ClientNetworkManagers[0].LocalClientId; - Assert.IsTrue(loadedInSceneObject.TrySetParent(m_PlayerNetworkObjects[0][clientId]), $"Failed to parent in-scene object under client player"); + Assert.IsTrue(m_LoadedSceneObject.TrySetParent(m_PlayerNetworkObjects[0][clientId]), $"Failed to parent in-scene object under client player"); yield return WaitForConditionOrTimeOut(() => PlayerHasChildren(clientId)); AssertOnTimeout($"Client-{clientId} player never parented {k_SceneObjectName}!"); -#if UNITY_2023_1_OR_NEWER - var loadedInSceneObjects = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name == k_SceneObjectName); -#else - var loadedInSceneObjects = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)); -#endif - Assert.IsTrue(loadedInSceneObjects.Count() > 1, $"Only found one instance of {k_SceneObjectName} after client connected!"); + yield return WaitForConditionOrTimeOut(FoundLoadedSceneObjects); + AssertOnTimeout($"Failed to find {k_SceneObjectName} objects before shutting down Client-{m_ClientNetworkManagers[0].LocalClientId}!"); + Assert.IsTrue(m_LoadedSceneOBjects.Count() > 1, $"Only found one instance of {k_SceneObjectName} after client connected!"); m_ClientNetworkManagers[0].Shutdown(); yield return m_DefaultWaitForTick; // Sanity check to make sure the client's player no longer has any children yield return WaitForConditionOrTimeOut(() => PlayerNoLongerExistsWithChildren(clientId)); AssertOnTimeout($"Client-{clientId} player still exits with children after client shutdown!"); -#if UNITY_2023_1_OR_NEWER - loadedInSceneObjects = Object.FindObjectsByType(FindObjectsSortMode.InstanceID).Where((c) => c.name == k_SceneObjectName); -#else - loadedInSceneObjects = Object.FindObjectsOfType().Where((c) => c.name.Contains(k_SceneObjectName)); -#endif + + yield return WaitForConditionOrTimeOut(FoundLoadedSceneObjects); + AssertOnTimeout($"Failed to find {k_SceneObjectName} objects after shutting down client!"); + // Make sure any in-scene placed NetworkObject instantiated has no parent - foreach (var insceneObject in loadedInSceneObjects) + foreach (var insceneObject in m_LoadedSceneOBjects) { Assert.IsTrue(insceneObject.transform.parent == null, $"{insceneObject.name} is still parented!"); } // We should have exactly 2 in-scene placed NetworkObjects remaining: // One instance on host side and one on the disconnected client side. - Assert.IsTrue(loadedInSceneObjects.Count() == 2, $"Only found one instance of {k_SceneObjectName} after client shutdown!"); + Assert.IsTrue(m_LoadedSceneOBjects.Count() == 2, $"Only found one instance of {k_SceneObjectName} after client shutdown!"); } private bool PlayerHasChildren(ulong clientId) From 4d830bf54b473dc8f7faccaa26f1a817558effce Mon Sep 17 00:00:00 2001 From: NoelStephensUnity Date: Wed, 12 Feb 2025 17:33:29 -0600 Subject: [PATCH 20/24] test - fix This resolves the trunk failures due to updates in collections. --- .../Tests/Runtime/NetworkVariableTests.cs | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs index d017d04c53..bcfa9e75da 100644 --- a/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs +++ b/com.unity.netcode.gameobjects/Tests/Runtime/NetworkVariableTests.cs @@ -2509,7 +2509,11 @@ public string DictionaryStr(Dictionary list) for (var i = 0; i < changed2Removes; ++i) { +#if UTP_TRANSPORT_2_0_ABOVE + var which = rand.Next(changed2.Count); +#else var which = rand.Next(changed2.Count()); +#endif T toRemove = default; foreach (var check in changed2) { @@ -2581,7 +2585,11 @@ public string DictionaryStr(Dictionary list) for (var i = 0; i < changed2Removes; ++i) { +#if UTP_TRANSPORT_2_0_ABOVE + var which = rand.Next(changed2.Count); +#else var which = rand.Next(changed2.Count()); +#endif TKey toRemove = default; foreach (var check in changed2) { @@ -2598,7 +2606,11 @@ public string DictionaryStr(Dictionary list) for (var i = 0; i < changed2Changes; ++i) { +#if UTP_TRANSPORT_2_0_ABOVE + var which = rand.Next(changed2.Count); +#else var which = rand.Next(changed2.Count()); +#endif TKey key = default; foreach (var check in changed2) { @@ -3959,7 +3971,11 @@ public string NativeHashMapStr(NativeHashMap list) for (var i = 0; i < changed2Removes; ++i) { +#if UTP_TRANSPORT_2_0_ABOVE + var which = rand.Next(changed2.Count); +#else var which = rand.Next(changed2.Count()); +#endif T toRemove = default; foreach (var check in changed2) { @@ -4032,7 +4048,11 @@ public string NativeHashMapStr(NativeHashMap list) for (var i = 0; i < changed2Removes; ++i) { +#if UTP_TRANSPORT_2_0_ABOVE + var which = rand.Next(changed2.Count); +#else var which = rand.Next(changed2.Count()); +#endif TKey toRemove = default; foreach (var check in changed2) { @@ -4049,7 +4069,11 @@ public string NativeHashMapStr(NativeHashMap list) for (var i = 0; i < changed2Changes; ++i) { +#if UTP_TRANSPORT_2_0_ABOVE + var which = rand.Next(changed2.Count); +#else var which = rand.Next(changed2.Count()); +#endif TKey key = default; foreach (var check in changed2) { From 7e3b37b230491af79c8c3654d00bbb9ff4166838 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Thu, 13 Feb 2025 11:23:21 +0100 Subject: [PATCH 21/24] Changed PR trigger to use mono for 2021 build --- .yamato/_triggers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/_triggers.yml b/.yamato/_triggers.yml index 02fb2ce50c..c243aaa9e5 100644 --- a/.yamato/_triggers.yml +++ b/.yamato/_triggers.yml @@ -17,7 +17,7 @@ pull_request_trigger: - .yamato/_run-all.yml#run_all_project_tests_2021 # Run one standalone test to make sure there are no obvious issues with most common platform (for example --fail-on-assert option is not present with package/project tests). We run 2 different combinations (platform/editor) - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_win_il2cpp_trunk - - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_ubuntu_il2cpp_2021.3 + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_ubuntu_mono_2021.3 triggers: cancel_old_ci: true pull_requests: From 61d6d4109efa0707ac8bf3219648610ba4545f9e Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Thu, 13 Feb 2025 12:16:09 +0100 Subject: [PATCH 22/24] Added libssl install step --- .yamato/desktop-standalone-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.yamato/desktop-standalone-tests.yml b/.yamato/desktop-standalone-tests.yml index b12c71f2eb..e5b2177709 100644 --- a/.yamato/desktop-standalone-tests.yml +++ b/.yamato/desktop-standalone-tests.yml @@ -24,7 +24,9 @@ desktop_standalone_build_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ {% if platform.name == "ubuntu" %} - sudo apt-get update -q - sudo apt install -qy imagemagick + - sudo apt-get install -qy libssl1.1 libssl-dev openssl {% endif %} + - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple # Platform specific UTR setup From c80a2f37fa87fa6243fe60d4e994bcd57c71fd42 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Thu, 13 Feb 2025 13:24:06 +0100 Subject: [PATCH 23/24] Updated libssl version --- .yamato/desktop-standalone-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/desktop-standalone-tests.yml b/.yamato/desktop-standalone-tests.yml index e5b2177709..f6a68e1902 100644 --- a/.yamato/desktop-standalone-tests.yml +++ b/.yamato/desktop-standalone-tests.yml @@ -24,7 +24,7 @@ desktop_standalone_build_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ {% if platform.name == "ubuntu" %} - sudo apt-get update -q - sudo apt install -qy imagemagick - - sudo apt-get install -qy libssl1.1 libssl-dev openssl + - sudo apt-get install -qy libssl3 libssl-dev openssl # Added step to mitigate errors related to mainly 2021 editor {% endif %} - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple From 4fa8cf35eb846bc1642e74a079f8824af3783067 Mon Sep 17 00:00:00 2001 From: michalChrobot Date: Thu, 13 Feb 2025 14:36:31 +0100 Subject: [PATCH 24/24] Changed build for 2021.3 editor to win --- .yamato/_triggers.yml | 2 +- .yamato/desktop-standalone-tests.yml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.yamato/_triggers.yml b/.yamato/_triggers.yml index c243aaa9e5..e8e7a330ce 100644 --- a/.yamato/_triggers.yml +++ b/.yamato/_triggers.yml @@ -17,7 +17,7 @@ pull_request_trigger: - .yamato/_run-all.yml#run_all_project_tests_2021 # Run one standalone test to make sure there are no obvious issues with most common platform (for example --fail-on-assert option is not present with package/project tests). We run 2 different combinations (platform/editor) - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_win_il2cpp_trunk - - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_ubuntu_mono_2021.3 + - .yamato/desktop-standalone-tests.yml#desktop_standalone_test_testproject_win_mono_2021.3 triggers: cancel_old_ci: true pull_requests: diff --git a/.yamato/desktop-standalone-tests.yml b/.yamato/desktop-standalone-tests.yml index f6a68e1902..60f669b665 100644 --- a/.yamato/desktop-standalone-tests.yml +++ b/.yamato/desktop-standalone-tests.yml @@ -24,7 +24,6 @@ desktop_standalone_build_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{ {% if platform.name == "ubuntu" %} - sudo apt-get update -q - sudo apt install -qy imagemagick - - sudo apt-get install -qy libssl3 libssl-dev openssl # Added step to mitigate errors related to mainly 2021 editor {% endif %} - pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple