diff --git a/index.json b/index.json index fc3c297..11da7c3 100644 --- a/index.json +++ b/index.json @@ -2837,7 +2837,7 @@ "manual/development-environment.html": { "href": "manual/development-environment.html", "title": "Setting up the development environment | Catch.io Developer Reference", - "keywords": "Setting up the development environment Game Development Environment Unity Engine The development for Witch One (development title Catch.io) will be in most cases, done in Unity. We recommend installing Unity Hub as it supports various OS and can install multiple versions of the Unity Editor. Installing Unity Hub Mac and Windows You can install the latest version of Unity Hub through the official download page . Linux In the past, you could have downloaded the .AppImage executable of Unity Hub, but this has been deprecated from 2022. Currently, you can follow the instruction written here to install Unity Hub for Linux. There is a known issue on Ubuntu 22.04 regarding missing dependencies. Read this thread for more information. Engine Version Currently, we are using Unity version 2021.3.12f1 (8af3c3e441b1) . You can check the official release archive from this page , or install directly via Unity Hub by clicking this link . For Linux users who run Unity through an .AppImage executable, the deep link installation provided by the Unity release archive may not work. Instead, you will have to pass the deep link URL as a parameter for the application file from your terminal. ./UnityHub.AppImage unityhub://2021.3.12f1/8af3c3e441b1 Setting The Default IDE You can change your preferred IDE/Editor in Unity by going to the Edit -> Preferences -> External Tools menu. Regarding how to install the IDE and text editors, please refer to the next section. Using The Staging Environment Testing the development build on the fly is very important for our project. Because our game is using a custom web interface for some important features, it is challenging for us to quickly test a build by using the default UI or websites like itch.io. Therefore, we created a custom solution to facilitate a simple and quick way to prepare multiple builds test them through a single interface. In theory, this solution can work for any cloud database services, but for our solution, we will use Apillon , as they provide free storage solutions at the moment. Prerequisites: An Apillon account. Access to the Witch One project page and the storage bucket. Unity or a WebGL build of the game compiled from Unity. You can ask the current project admin to grant you access to the project page once you made a new Apillon account. Step 1: Compile the project into a WebGL build and keep note of where you kept the build folder. Note that it is important that the folder contains the Build and StreamingAssets folder. Everything else will not be used. Step 2: Click the 'Storage' tab and access the 'Staging WebGL Build' bucket. Step 3: Click the yellow 'Upload' button to show the upload field. Click or drag and drop the contents of the folder that contains the game build made in 'Step 1.' Step 4: When the 'Confirm your upload' panel is shown, make sure the check the 'Wrap to directory' option. This is very important as this option allows the folders to be streamed online, while not having this option will only allow the files to be streamed, while folders will remain virtual. When you're ready, click the 'Upload now' button. Step 5: When you press the upload button while wrapping the directories, the page will ask you to make a name for the folder. Choose a name that describes the changes made in the build, and the ISO-8601 date of upload to make sure that we know when the change was made. Although we do not have a standard naming scheme yet, I recommend that we use the following scheme: [upload date]-[build title] For example, a build that adds the healing item that was uploaded on the 24th of August 2023, should have the following folder name: 20230824-Add Healing Item As long as the name is something that is easy to understand and manage, it should not matter too much. Step 6: After uploading everything in 'Step 5,' visit the game's staging link and you should see the uploaded build render on the drop-down box above the game view. General Development Environment Version Control Software Git & GitHub Our team uses Git as the main version control software, and GitHub as the repository host: Team STEP GitHub Account Installing The Git Client Most IDEs offer a way to interact with the remote repository. If you have a preferred Git client, you are free to use it. For most developers, our team recommend using GitHub Desktop, as it offers a robust GUI, auto-configuring the global Git settings, and automatically updating repository submodules. You can install GitHub Desktop on Windows 10 and macOS from the official website: GitHub Desktop For Linux users, you can install a fork of GitHub Desktop maintained by Shiftkey ( releases ) For Windows users, we also recommend installing the Windows Git client that comes with the Bash terminal. Bash on Windows allows you to access applications installed with PowerShell as well. Downloading Git . Setting Up IDE & Text Editors Visual Studio Community Note: Visual Studio Community is not supported on Linux systems When working with Unity, we generally recommend using Visual Studio, as it provides full support for Unity including breakpoints and unity game object component reference checking. Although Unity will ask you to install Visual Studio before you install the engine in Windows, you might want to have a full installation of Visual Studio if you need extra features. In which case, you can install the IDE . MonoDevelop Note: MonoDevelop is not a requirement for developing on a Linux environment. The guide below adds the package repository from Ubuntu 18, as that is the only way you can install it on later versions . MonoDevelop is an open-source cross-platform IDE that supports languages like C#, F#, Visual Basic .NET, and Vala. You can find more information on their homepage . Generally speaking, MonoDevelop is considered to be a replacement for Visual Studio for Linux systems. If you're using Windows 10 or macOS, we recommend installing Visual Studio Community instead of MonoDevelop. This installation guide will assume that the user is working on Ubuntu-based systems (LTS 20.04 or up). First, add the Mono repository to your system. # update your repository. Upgrade any packages if you have to sudo apt update && sudo apt upgrade # install the basic dependencies sudo apt install dirmngr gnupg apt-transport-https ca-certificates # add the mono repository key sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF # add the app repository to your apt source sudo sh -c 'echo \"deb https://download.mono-project.com/repo/ubuntu stable-bionic main\" > /etc/apt/sources.list.d/mono-official-stable.list' # refresh your repository list sudo apt update Second, install the full MonoDevelop package and the IDE # install the full mono package sudo apt install mono-complete # install the monodevelop IDE sudo apt install monodevelop # install the .Net NUit unit test packages sudo apt install monodevelop-nunit Lastly, check your installation # this command should output the compiler version if your installation was complete mono --version Your IDE should look something like this: This guide was based on the article written by Website For Students . Visual Studio Code Visual Studio Code is a lightweight text editor (until you install a boatload of extensions) for developers on all major platforms. There are several Visual Studio Code extensions that work with the Unity Engine. It does not support everything that Visual Studio can do with Unity, but we recommend install VS Code as it is great for development that is outside of Unity (such as web development, or PR review/resolving merge conflicts). You can install Visual Studio Code from here . Visual Studio Code must be configured properly before it can work with Unity. This is the list of recommended extensions that we use at the time of this writing. extensions.json { \"recommendations\": [ \"editorconfig.editorconfig\", \"aaron-bond.better-comments\", \"ms-dotnettools.csharp\", \"jchannon.csharpextensions\", \"streetsidesoftware.code-spell-checker\", \"unity.unity-debug\", \"donjayamanne.githistory\", \"felipecaputo.git-project-manager\", \"github.vscode-pull-request-github\", \"formulahendry.github-actions\", \"eamodio.gitlens\", \"yzhang.markdown-all-in-one\", \"davidanson.vscode-markdownlint\", \"tobiah.unity-tools\", \"ptd.vscode-unitymeta\", \"redhat.vscode-yaml\", \"dotjoshjohnson.xml\" ] } settings.json { \"editor.defaultFormatter\": \"EditorConfig.EditorConfig\", \"markdownlint.config\": { \"html\": true, \"MD033\": false, }, \"[jsonc]\": { \"editor.defaultFormatter\": \"vscode.json-language-features\" }, \"omnisharp.enableEditorConfigSupport\": true, \"editor.formatOnSave\": true, \"cSpell.words\": [ \"Tilemap\", \"Tilemaps\", \"gameplay\", \"royale\", \"tileset\" ] } Editing the contents of the .vscode/ folder in the root directory of the project allows the developer to change the default setting for developers working in VS Code. This means that all developers with a new installation of VS Code has to do is open VS Code from the root of the project folder. Android Studio Android Studio is a cross-platform IDE for developing applications for Android devices, commonly with Java and Kotlin. Our team will rarely develop directly in Android Studio, but installing it allows us to easily install different versions of Android SDK, or access other development tools like the Android Device Emulator. Plus, Android Studio is available for most commonly used OS, so if your disk space can handle it, we recommend installing it from their official installation page . System Terminal and Package Manager Windows 10 - Chocolatey No sane developers will use Windows for its terminal or package management, but here we are. This section will guide you through installing Chocolatey , a package manager for Windows. Windows system comes with PowerShell and the Command Line Prompt as its main terminal. Alternatively, you can install Bash that comes with the Windows Git client (mentioned in the previous section). For this guide, we will be using PowerShell. To access PowerShell with administrative rights, click on the Windows search bar on the bottom left corner of your screen (next to the Windows button in the task bar), and search for PowerShell . Right-click on the app and choose Run as administrator . When you open the terminal, it should look something like this: Note that administrator sessions runs from Windows\\system32 instead of the user home directory. Paste the following command to your terminal. Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) This should install Chocolatey to your system. You can confirm it by using the choco command to your terminal. You can read the detailed installation process from the official installation page . macOS - Homebrew Homebrew is a package manager for macOS. It offers a wide variety of applications that are a must-install for developers working from macOS. Unlike Windows; macOS comes with a zsh terminal, which shares a lot of characteristics of bash. This means that most commands that works with bash will work on your Mac. To install Homebrew, you simply open your terminal from the Utilities folder and paste the following command. /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\" You can learn more from the official Homebrew page." + "keywords": "Setting up the development environment Game Development Environment Unity Engine The development for Witch One (development title Catch.io) will be in most cases, done in Unity. We recommend installing Unity Hub as it supports various OS and can install multiple versions of the Unity Editor. Installing Unity Hub Mac and Windows You can install the latest version of Unity Hub through the official download page . Linux In the past, you could have downloaded the .AppImage executable of Unity Hub, but this has been deprecated from 2022. Currently, you can follow the instruction written here to install Unity Hub for Linux. There is a known issue on Ubuntu 22.04 regarding missing dependencies. Read this thread for more information. Engine Version Currently, we are using Unity version 2022.3.54f1 (129125d4e700) . You can check the official release archive from this page , or install directly via Unity Hub by clicking this link . For Linux users who run Unity through an .AppImage executable, the deep link installation provided by the Unity release archive may not work. Instead, you will have to pass the deep link URL as a parameter for the application file from your terminal. ./UnityHub.AppImage unityhub://2022.3.54f1/129125d4e700 Setting The Default IDE You can change your preferred IDE/Editor in Unity by going to the Edit -> Preferences -> External Tools menu. Regarding how to install the IDE and text editors, please refer to the next section. Using The Staging Environment Testing the development build on the fly is very important for our project. Because our game is using a custom web interface for some important features, it is challenging for us to quickly test a build by using the default UI or websites like itch.io. Therefore, we created a custom solution to facilitate a simple and quick way to prepare multiple builds test them through a single interface. In theory, this solution can work for any cloud database services, but for our solution, we will use Apillon , as they provide free storage solutions at the moment. Prerequisites: An Apillon account. Access to the Witch One project page and the storage bucket. Unity or a WebGL build of the game compiled from Unity. You can ask the current project admin to grant you access to the project page once you made a new Apillon account. Step 1: Compile the project into a WebGL build and keep note of where you kept the build folder. Note that it is important that the folder contains the Build and StreamingAssets folder. Everything else will not be used. Step 2: Click the 'Storage' tab and access the 'Staging WebGL Build' bucket. Step 3: Click the yellow 'Upload' button to show the upload field. Click or drag and drop the contents of the folder that contains the game build made in 'Step 1.' Step 4: When the 'Confirm your upload' panel is shown, make sure the check the 'Wrap to directory' option. This is very important as this option allows the folders to be streamed online, while not having this option will only allow the files to be streamed, while folders will remain virtual. When you're ready, click the 'Upload now' button. Step 5: When you press the upload button while wrapping the directories, the page will ask you to make a name for the folder. Choose a name that describes the changes made in the build, and the ISO-8601 date of upload to make sure that we know when the change was made. Although we do not have a standard naming scheme yet, I recommend that we use the following scheme: [upload date]-[build title] For example, a build that adds the healing item that was uploaded on the 24th of August 2023, should have the following folder name: 20230824-Add Healing Item As long as the name is something that is easy to understand and manage, it should not matter too much. Step 6: After uploading everything in 'Step 5,' visit the game's staging link and you should see the uploaded build render on the drop-down box above the game view. General Development Environment Version Control Software Git & GitHub Our team uses Git as the main version control software, and GitHub as the repository host: Team STEP GitHub Account Installing The Git Client Most IDEs offer a way to interact with the remote repository. If you have a preferred Git client, you are free to use it. For most developers, our team recommend using GitHub Desktop, as it offers a robust GUI, auto-configuring the global Git settings, and automatically updating repository submodules. You can install GitHub Desktop on Windows 10 and macOS from the official website: GitHub Desktop For Linux users, you can install a fork of GitHub Desktop maintained by Shiftkey ( releases ) For Windows users, we also recommend installing the Windows Git client that comes with the Bash terminal. Bash on Windows allows you to access applications installed with PowerShell as well. Downloading Git . Setting Up IDE & Text Editors Visual Studio Community Note: Visual Studio Community is not supported on Linux systems When working with Unity, we generally recommend using Visual Studio, as it provides full support for Unity including breakpoints and unity game object component reference checking. Although Unity will ask you to install Visual Studio before you install the engine in Windows, you might want to have a full installation of Visual Studio if you need extra features. In which case, you can install the IDE . MonoDevelop Note: MonoDevelop is not a requirement for developing on a Linux environment. The guide below adds the package repository from Ubuntu 18, as that is the only way you can install it on later versions . MonoDevelop is an open-source cross-platform IDE that supports languages like C#, F#, Visual Basic .NET, and Vala. You can find more information on their homepage . Generally speaking, MonoDevelop is considered to be a replacement for Visual Studio for Linux systems. If you're using Windows 10 or macOS, we recommend installing Visual Studio Community instead of MonoDevelop. This installation guide will assume that the user is working on Ubuntu-based systems (LTS 20.04 or up). First, add the Mono repository to your system. # update your repository. Upgrade any packages if you have to sudo apt update && sudo apt upgrade # install the basic dependencies sudo apt install dirmngr gnupg apt-transport-https ca-certificates # add the mono repository key sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF # add the app repository to your apt source sudo sh -c 'echo \"deb https://download.mono-project.com/repo/ubuntu stable-bionic main\" > /etc/apt/sources.list.d/mono-official-stable.list' # refresh your repository list sudo apt update Second, install the full MonoDevelop package and the IDE # install the full mono package sudo apt install mono-complete # install the monodevelop IDE sudo apt install monodevelop # install the .Net NUit unit test packages sudo apt install monodevelop-nunit Lastly, check your installation # this command should output the compiler version if your installation was complete mono --version Your IDE should look something like this: This guide was based on the article written by Website For Students . Visual Studio Code Visual Studio Code is a lightweight text editor (until you install a boatload of extensions) for developers on all major platforms. There are several Visual Studio Code extensions that work with the Unity Engine. It does not support everything that Visual Studio can do with Unity, but we recommend install VS Code as it is great for development that is outside of Unity (such as web development, or PR review/resolving merge conflicts). You can install Visual Studio Code from here . Visual Studio Code must be configured properly before it can work with Unity. This is the list of recommended extensions that we use at the time of this writing. extensions.json { \"recommendations\": [ \"editorconfig.editorconfig\", \"aaron-bond.better-comments\", \"ms-dotnettools.csharp\", \"jchannon.csharpextensions\", \"streetsidesoftware.code-spell-checker\", \"unity.unity-debug\", \"donjayamanne.githistory\", \"felipecaputo.git-project-manager\", \"github.vscode-pull-request-github\", \"formulahendry.github-actions\", \"eamodio.gitlens\", \"yzhang.markdown-all-in-one\", \"davidanson.vscode-markdownlint\", \"tobiah.unity-tools\", \"ptd.vscode-unitymeta\", \"redhat.vscode-yaml\", \"dotjoshjohnson.xml\" ] } settings.json { \"editor.defaultFormatter\": \"EditorConfig.EditorConfig\", \"markdownlint.config\": { \"html\": true, \"MD033\": false, }, \"[jsonc]\": { \"editor.defaultFormatter\": \"vscode.json-language-features\" }, \"omnisharp.enableEditorConfigSupport\": true, \"editor.formatOnSave\": true, \"cSpell.words\": [ \"Tilemap\", \"Tilemaps\", \"gameplay\", \"royale\", \"tileset\" ] } Editing the contents of the .vscode/ folder in the root directory of the project allows the developer to change the default setting for developers working in VS Code. This means that all developers with a new installation of VS Code has to do is open VS Code from the root of the project folder. Android Studio Android Studio is a cross-platform IDE for developing applications for Android devices, commonly with Java and Kotlin. Our team will rarely develop directly in Android Studio, but installing it allows us to easily install different versions of Android SDK, or access other development tools like the Android Device Emulator. Plus, Android Studio is available for most commonly used OS, so if your disk space can handle it, we recommend installing it from their official installation page . System Terminal and Package Manager Windows 10 - Chocolatey No sane developers will use Windows for its terminal or package management, but here we are. This section will guide you through installing Chocolatey , a package manager for Windows. Windows system comes with PowerShell and the Command Line Prompt as its main terminal. Alternatively, you can install Bash that comes with the Windows Git client (mentioned in the previous section). For this guide, we will be using PowerShell. To access PowerShell with administrative rights, click on the Windows search bar on the bottom left corner of your screen (next to the Windows button in the task bar), and search for PowerShell . Right-click on the app and choose Run as administrator . When you open the terminal, it should look something like this: Note that administrator sessions runs from Windows\\system32 instead of the user home directory. Paste the following command to your terminal. Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) This should install Chocolatey to your system. You can confirm it by using the choco command to your terminal. You can read the detailed installation process from the official installation page . macOS - Homebrew Homebrew is a package manager for macOS. It offers a wide variety of applications that are a must-install for developers working from macOS. Unlike Windows; macOS comes with a zsh terminal, which shares a lot of characteristics of bash. This means that most commands that works with bash will work on your Mac. To install Homebrew, you simply open your terminal from the Utilities folder and paste the following command. /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\" You can learn more from the official Homebrew page." }, "manual/game-mode-design.html": { "href": "manual/game-mode-design.html", diff --git a/manifest.json b/manifest.json index 8b762cc..3b9db8d 100644 --- a/manifest.json +++ b/manifest.json @@ -6844,7 +6844,7 @@ "output": { ".html": { "relative_path": "manual/development-environment.html", - "hash": "Hj1g0KoXD8UtN1olj6tv1mewNyPiTaaALJL7bkHf+wU=" + "hash": "SugoKlqlM8871U4aUcg+AhpOICgoJIU2foUkcZzWCWs=" } }, "is_incremental": false, diff --git a/manual/development-environment.html b/manual/development-environment.html index 454755d..0f2f075 100644 --- a/manual/development-environment.html +++ b/manual/development-environment.html @@ -91,10 +91,10 @@

Installing Unity Hub

There is a known issue on Ubuntu 22.04 regarding missing dependencies. Read this thread for more information.

Engine Version

-

Currently, we are using Unity version 2021.3.12f1 (8af3c3e441b1).

-

You can check the official release archive from this page, or install directly via Unity Hub by clicking this link.

+

Currently, we are using Unity version 2022.3.54f1 (129125d4e700).

+

You can check the official release archive from this page, or install directly via Unity Hub by clicking this link.

For Linux users who run Unity through an.AppImage executable, the deep link installation provided by the Unity release archive may not work. Instead, you will have to pass the deep link URL as a parameter for the application file from your terminal.

-
./UnityHub.AppImage unityhub://2021.3.12f1/8af3c3e441b1
+
./UnityHub.AppImage unityhub://2022.3.54f1/129125d4e700
 

Setting The Default IDE

You can change your preferred IDE/Editor in Unity by going to the Edit -> Preferences -> External Tools menu. Regarding how to install the IDE and text editors, please refer to the next section.

../resources/preferred-ide.jpg

diff --git a/sitemap.xml b/sitemap.xml index 6f1c2d5..f59153e 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,3445 +2,3445 @@ https://devdocs.witchone.io/api/CatchIo.Editor.AnimationEvents.AnimationEventBlendTreeBehaviourEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationEvents.AnimationEventDrawer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationEvents.AnimationEventStateBehaviourEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationEvents.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationGenerator.AnimationClipGenerator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationGenerator.EntityAnimationClipEditorWindow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationGenerator.EntityAnimatorBlendTreeEditorWindow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationGenerator.EntityAnimatorEditorWindow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationGenerator.EntityOverrideAnimatorEditorWindow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.AnimationGenerator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.LightColliders.HidingSpotLightColliderEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.LightColliders.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.ScriptTemplates.CreateNewScriptClassFromCustomTemplate.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.ScriptTemplates.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.SignalListenerEditors.BoolSignalListenerEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.SignalListenerEditors.FloatSignalListenerEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.SignalListenerEditors.InteractionHUDSignalListenerEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.SignalListenerEditors.IntSignalListenerEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.SignalListenerEditors.ItemSlotSignalListenerEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.SignalListenerEditors.StringSignalListenerEditor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.SignalListenerEditors.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.AmbientMusicAreaImporter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.ItemSpawnerImporter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.LightAreaImporter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.LightSourcesImporter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.NpcImporter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.TileObjectsImporter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.TmxPrefabReplacer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.TmxImporters.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.UnityPathUtil.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.Utility.Attributes.FMODEventParameterValueDrawer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.Utility.Attributes.MonoScriptPropertyDrawer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.Utility.Attributes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.Utility.MapItemViewIDUpdateUtil.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.Utility.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.Windows.AmbienceSettingGeneratorWindow.AmbienceMusicSettingsGenerator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.Windows.AmbienceSettingGeneratorWindow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Editor.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Game.Characters.Enums.CharacterColorType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Game.Characters.Enums.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.AnimationEvents.AnimationEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.AnimationEvents.AnimationEventBlendTreeBehaviour.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.AnimationEvents.AnimationEventReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.AnimationEvents.AnimationEventStateBehaviour.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.AnimationEvents.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Boot.BootStrapper.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Boot.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Camera.GameCamera.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Camera.GameCameraFollow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Camera.GameCameraInputHandler.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Camera.GameCameraZoom.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Camera.OverlayCamera.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Camera.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.CharacterCollision.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.CharacterDetectable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.CharacterFacade.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.CharacterInput.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.CharacterRotator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.CharacterSfxEmitter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.CharacterDetector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.CharacterInteractableDetector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.CharacterItemCollector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.CharacterWhisperSender.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.HidingSpotDetector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.LightSourceDetector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.SoundDetector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.SurfaceDetector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Detector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Emitters.CharacterWhisperEmitter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Emitters.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.CharacterStateMachine.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterActionState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterConsumeState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterDeathState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterDiscardState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterEquipState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterHeavyAttackState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterLightAttackState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterStunState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.CharacterThrowState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.ActionStates.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.CharacterBaseState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.CharacterStateFactory.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterChargeState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterMoveState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterRunState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterSneakState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterSneakStaticState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterSpectateState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterStaticState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.CharacterWalkState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.MoveStates.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.States.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.FSM.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.CharacterAimTrajectory.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.CharacterAnimator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.CharacterRenderer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.AttackChargeEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.CurseEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.EffectBase.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.FadeEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.HitEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.InvisibilityEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.SubtleHitEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Effects.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.PlayerSoundEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Renderers.CharacterFader.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Renderers.CharacterHidingSpotCalculator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Renderers.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Sprites.CharacterSpriteAreaCalculator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Sprites.CharacterSpriteMaskInteraction.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Sprites.CharacterSpriteVertices.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.Sprites.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Graphics.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.CharacterItemThrower.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.CharacterItemUser.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.Inventory.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.InventoryController.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.InventoryItemFactory.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.ItemSlot.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.PlayerInventoryInputHandler.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Inventory.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Lighting.CharacterLighting.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Lighting.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Marks.CharacterMarkReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Marks.NPCMarkReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Marks.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.NetworkCharacter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Receivers.CharacterBodyDamageReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Receivers.CharacterDamageReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Receivers.CharacterFeetDamageReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Receivers.CharacterWhisperHurtBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Receivers.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.ScoutingMarker.CharacterMarkSender.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.ScoutingMarker.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.SurfaceEffect.SurfaceEffectPlayer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.SurfaceEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Transmorphs.CharacterTransmorpher.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.Transmorphs.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Character.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ChunkSystem.Chunk.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ChunkSystem.ChunkTile.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ChunkSystem.TiledChunkSetting.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ChunkSystem.TiledChunkSystem.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ChunkSystem.Vector2IntToChunkDictionary.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ChunkSystem.World.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ChunkSystem.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Combat.HitBoxes.CircleHitBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Combat.HitBoxes.FOVHitBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Combat.HitBoxes.HitBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Combat.HitBoxes.HitBoxEventProcessor-1.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Combat.HitBoxes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Combat.HurtBoxes.HurtBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Combat.HurtBoxes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Container.CharacterClassContainer.CharacterClassInfo.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Container.CharacterClassContainer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Container.GameModeContainer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Container.NetworkConnectionContainer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Container.SceneContainer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Container.SceneModeContainer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Container.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.DamageReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.DOTDamage.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.FixedDamage.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.IDamagable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.IDamage.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.IKnockBackable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.IStunnable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.PercentageDamage.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Damages.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.Core.DynamicObjectNetworkRelay.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.Core.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.Data.ClassBasedTrapPrefab.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.Data.DynamicObjectData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.Data.TrapObjectData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.Data.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.DynamicObject.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.DynamicObjectHealth.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynamicObjects.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynmaicObjects.DestroyDynamicObject.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynmaicObjects.Footprint.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynmaicObjects.TrapObjects.TrapObjectDamageReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynmaicObjects.TrapObjects.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.DynmaicObjects.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Emitters.EntityWhisperSFXEmitter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Emitters.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.EntityHUDPositionProvider.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.HurtBoxes.EntityScoutingMarkHurtBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.HurtBoxes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Locomotions.Data.EntityMovementData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Locomotions.Data.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Locomotions.EntityMovement.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Locomotions.EntityRotator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Locomotions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Marks.EntityMarkReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Marks.EntityMarkSender.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Marks.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Networking.MarkNetworkRelay.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Networking.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Senders.EntityHUDDisplayer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Senders.EntityWhisperSender.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.Senders.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Entities.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.CharacterActionType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.CharacterClassType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.CharacterMoveType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.DamageSfxType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.EntityDirectionType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.GameLanguage.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.GameModeType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.GameObjectiveEventEnum.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.RoomState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.SceneSwitchingState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.ScreenResolutionType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.SendEventType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.ShownCharacterStatsType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Enums.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.CampFire.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.CharacterSpawner.SpawnPoint.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.CharacterSpawner.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.DamagableObject.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.EnvironmentSfxEmitter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.HidingSpot.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.HidingSpotLightCollider.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.Interactable.InteractableObject.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.Interactable.InteractableTrigger.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.Interactable.SignPost.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.Interactable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.ReadableTileSurface.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.TileSurface.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Environment.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.ICharacterDetectable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.ICharacterInteractable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IDetectable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IEffectPlayable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IEntityScoutingMarkable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IHUDDisplayable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IItemImpact.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IItemImpactable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IMarkingEntity.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.IPositionProvider.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.ISceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.ISoundDetectable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.ISurfaceObservable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Interfaces.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Core.ConsumableItem.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Core.EquippableItem.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Core.ItemImpactHandler.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Core.ThrowableItem.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Core.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.ConsumableItemData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.EquippableItemData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.ItemData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.RuntimeStates.ScoutingRingRuntimeState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.RuntimeStates.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.ScoutingRingData.ScoutingRingConfig.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.ScoutingRingData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.ThrowableItemData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.UsableItemEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.UsableItemEffectType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Data.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Effects.ItemDamageEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Effects.SummonEffect.TargetSearchData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Effects.SummonEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Effects.TrapSummonEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Effects.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Item.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.ItemSpawner.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.RingOfScoutings.RingOfScouting.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.RingOfScoutings.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Throwing.ItemThrowHandler.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.Throwing.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Items.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Managers.GameManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Managers.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.CharacterHUDIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.CharacterNickNameText.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.CursedOneHUDMeterManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.HealthHUDMeter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.HidingIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.HUDMeter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.HudOverlaysManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.KillCountHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.LightingIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.NoiseArcAnimationControl.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.ScoutingArrow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.ScoutingRingIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.StaminaHUDMeter.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.CharacterHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.ControlTipsHUD.ControlTipsHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.ControlTipsHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.DeviceBasedDisplay.DeviceBasedDisplay.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.DeviceBasedDisplay.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.EntityHUD.EntityHUDIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.EntityHUD.ScoutingMarkIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.EntityHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.ExitSessionPopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.CursedOneCountdownImage.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.CursedOneHealthIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.DeathMatchLeaderBoard.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.GameModeEventUIManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.GameTimerText.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.PointText.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.TimeReductionIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameModeHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameOverHUD.CursedOneWinnerText.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameOverHUD.DeathMatchWinnerText.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameOverHUD.GameOverPopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameOverHUD.WinnerText.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.GameOverHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InteractionIndicatorHUD.ACTION_TYPE.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InteractionIndicatorHUD.InteractionActon.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InteractionIndicatorHUD.InteractionHUDSignal.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InteractionIndicatorHUD.InteractionIndicator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InteractionIndicatorHUD.InteractionIndicatorOverlay.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InteractionIndicatorHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InventoryHUD.InventoryArrow.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InventoryHUD.InventoryHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InventoryHUD.InventorySlotHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.InventoryHUD.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.GameOverlay.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Button.ButtonClickBroadcaster.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Button.GameStartButton.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Button.QuitButton.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Button.ReadyButton.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Button.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Checkbox.CheckboxBroadcaster.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Checkbox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Control.ActiveButtonSelector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Control.ButtonSelector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Control.EventToButton.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Control.InputFieldControl.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Control.SelectableNavigation.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Control.UiPopupActiveButtonSelector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Control.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.DisableByPlatform.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Dropdown.BaseDropdown.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Dropdown.GameModeDropdown.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Dropdown.MapDropdown.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Dropdown.RegionDropdown.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Dropdown.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Element.LeaderboardInfoElement.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Element.LeaderboardPlayerElement.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Element.PlayerInfoElement.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Element.RoomInfoElement.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Element.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.InputField.InputFieldTextBroadcaster.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.InputField.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Popup.BasePopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Popup.ConfirmNewResolutionPopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Popup.CreateSessionPopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Popup.JoinRoomPopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Popup.SettingsPopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Popup.SignpostPopup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Popup.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Selector.CharacterClassSelector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Selector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Slider.InputSliderBroadcaster.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Slider.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Text.TextDisplayer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Text.TextDisplayerForSeconds.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Text.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Updater.PlayerListUpdater.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Updater.RoomListUpdater.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Updater.RoomTitleUpdater.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.Updater.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.View.RespawnView.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.View.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Menu.UI.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Network.CustomProperties.PlayerProperties.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Network.CustomProperties.RoomProperties.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Network.CustomProperties.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Network.NetworkTimer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Network.RoomData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Network.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Core.NPCEntityDetector.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Core.NPCHealth.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Core.NPCPathFinder.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Core.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Data.NPCData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Data.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Enums.NPCType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Enums.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Graphics.NPCRenderer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Graphics.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.NPCFootprintGenerator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.NPCNetworking.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.NPCRotator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Receivers.CharacterMarkHurtBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Receivers.NPCDamageReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Receivers.NPCDetectable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Receivers.NPCMarkHurtBox.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.Receivers.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.NPC.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScoutingEyes.ScoutingEye.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScoutingEyes.ScoutingEyeAnimator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScoutingEyes.ScoutingEyeInputHandler.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScoutingEyes.ScoutingEyeWhisperSender.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScoutingEyes.SpectralLine.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScoutingEyes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Character.Buff.CharacterBuff.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Character.Buff.CharacterHealthBuff.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Character.Buff.CharacterStaminaBuff.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Character.Buff.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Character.CharacterStatus.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Character.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Effects.CursedOneEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Effects.DamageEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Effects.DisappearEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Effects.DissolveEffect.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Effects.EffectBase.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Effects.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.BaseEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.BoolEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.CharacterLightEvent.CharacterLightEnabledEventParam.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.CharacterLightEvent.CharacterLightEventParam.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.CharacterLightEvent.CharacterLightResizingEventParam.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.CharacterLightEvent.CharacterLightType.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.CharacterLightEvent.CharacterResetLightEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.CharacterLightEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.FloatEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.GameModeWinnerEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.HidingSpotEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.IntEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.PlayerEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.RoomDataEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.StringEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.VoidEventChannel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Events.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.GameModes.GameModeWinner.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.GameModes.Point.DeathMatchPoint.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.GameModes.Point.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.GameModes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Input.InputReader.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Input.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.Connections.BaseNetworkConnection.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.Connections.LobbyConnection.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.Connections.RoomConnection.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.Connections.ServerConnection.Region.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.Connections.ServerConnection.RegionData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.Connections.ServerConnection.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.Connections.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.OpenRoomList.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.PlayersInRoom.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.Network.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.BaseSceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.GameSceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.LobbySceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.LoginSceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.MainMenuSceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.MenuSceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.RoomSceneMode.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.ScriptableObjects.SceneModes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Services.ConsoleService.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Services.FullScreenEffectService.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Services.LoadingScreenService.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Services.NetworkService.NetworkState.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Services.NetworkService.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Services.SceneSwitchingService.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Services.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Settings.PlayerSettingsManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Settings.PlayerSettingsModel.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Settings.ScreenResolutionUtils.ScreenResolutionWidthHeightValue.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Settings.ScreenResolutionUtils.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Settings.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.AmbientMusic.AmbientMusicManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.AmbientMusic.AmbientMusicTrigger.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.AmbientMusic.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.CharacterActionSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.CursedOneSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.EnvironmentSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.FootstepSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.ItemSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.ItemTerrainSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.MainMusic.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.Music.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.Sfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.SoundManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.SpawnSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.StaminaSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.TerrainSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.UiGameSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.UiSfx.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Sound.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.SummonedObjects.TrapObject.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.SummonedObjects.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Trajectory.Trajectory.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Trajectory.TrajectoryData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Trajectory.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Transmorphs.ITransmorphableReceiver.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Transmorphs.Transmorpher.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Transmorphs.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.BooleanSignalListener.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.BoolEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.FloatEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.FloatSignalListener.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.InteractionHUDSignalEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.InteractionHUDSignalListener.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.IntEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.IntSignalListener.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.ItemSlotEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.ItemSlotSignalListener.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.StringEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.StringSignalListener.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.UI.SignalEvents.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utilities.Timers.CountdownTimer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utilities.Timers.FixedStopWatchTimer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utilities.Timers.IntCountdownTimer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utilities.Timers.StopWatchTimer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utilities.Timers.Timer.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utilities.Timers.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.AnimationParser.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Attributes.AutoRegisteredService.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Attributes.FMODEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Attributes.FMODEventParameterValue.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Attributes.MonoScriptAttribute.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Attributes.TagSelectorAttribute.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Attributes.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ColorHelper.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.ArrayExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.AssemblyExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.GameObjectExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.IEnumerableExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.PlayerExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.RandomExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.RoomExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.TypeExtensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.Vector2Extensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.Vector3Extensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Extensions.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.MathHelper.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Optional-1.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.PolygonHelper.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.PropertyHelper.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Scene.SceneObject.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Scene.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.SceneScopedObjectPool.Pool.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.SceneScopedObjectPool.SceneScopedObjectPoolManager.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.SceneScopedObjectPool.SceneScopedPoolObject.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.SceneScopedObjectPool.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ScoutingArrowEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ScoutingMarkEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ScoutingMarkEventsGenerator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ServiceLocator.IRegistrable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ServiceLocator.MonoRegistrable.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ServiceLocator.ReflectionService.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ServiceLocator.ServiceLocator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ServiceLocator.ServiceLocatorException.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.ServiceLocator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Singleton.Singleton-1.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Singleton.SingletonMonoBehaviour-1.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.Singleton.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.SoundWaveEvent.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.SoundWaveEventGenerator.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.StateAnimation.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.StringHelper.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Utility.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Values.BurningDOTDamage.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Values.DamageData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Values.DOTDamageData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Values.KnockBackData.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/api/CatchIo.Runtime.Values.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 daily 0.5 https://devdocs.witchone.io/index.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/artist-guidelines.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/character-state-machine.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/character-uml.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/coding-style.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/development-environment.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/game-mode-design.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/github-guide.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/in-game-tilemap.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/level-design-guide.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/map-surfaces-in-tiled.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5 https://devdocs.witchone.io/manual/project-structure.html - 2024-12-06T04:55:53+00:00 + 2024-12-09T11:01:48+00:00 weekly 0.5