> For the complete documentation index, see [llms.txt](https://hiveminddocs.gitbook.io/hivemind/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hiveminddocs.gitbook.io/hivemind/code-systems/ultimate-building-system-framework-ubs/installation/collision-channels.md).

# Collision Channels

{% hint style="warning" %}
**Note:** As of version **1.3.2+**, the system automatically creates the required channels.\
**If you're using UBS for the first time, you can skip this step.**\
\
If you're upgrading from an earlier version, you must **delete any old channels** manually.

* If you see multiple channels like `BuildableProxy`, `BuildableSocketTrace`, `BuildableSocket`, or `Buildable`,\
  simply **delete all of them** and **restart the editor**.\
  The system will automatically recreate the correct channels on startup.
  {% endhint %}

{% hint style="danger" %}
**Note:** If you're upgrading from a previous version of UBS to **1.3.2+**, make sure to review any **custom Buildable Definitions** you've created.

* Any Buildable Definition that uses **proxy behavior**, **dependencies**, or other logic relying on an **object or trace channel** must be checked to ensure it's using the correct channel.
* In any **placement condition**, if the channel is set to:
  * `GameTraceChannel`
  * `BuildableSocket`
  * `ConstructibleProxy`
  * `BuildableSocketTrace`\
    ...**must be updated to** `Buildable`.
    {% endhint %}

***

There's a few custom trace and collision channels that needs to be setup correctly.

You will need to go into the Collisions Section of the Project Settings to set these up.

## <mark style="color:blue;">Set up Collision Channels</mark>

1. **Create Presets**
   * **BuildableSocketTrace (Trace Channel)**
     * Default Response: `Block`
   * **BuildableSocket (Object Channel)**
     * Default Response: `Ignore`
   * **ConstructibleProxy (Object Channel)**
     * Default Response: `Overlap`
   * **Buildable (Object Channel)**
     * Default Response: `Block`
2. **Modify Existing Presets**
   * **BlockAllDynamic**
     * Block all
     * `ConstructibleProxy`: Set to `Overlap`
     * `BuildableSocket`: Set to `Ignore`
   * **OverlapAll**
     * Overlap all
     * `BuildableSocket`: Set to `Ignore`
   * **BlockAll**
     * Block all
     * `ConstructibleProxy`: Set to `Overlap`
   * **UI**
     * Set all to `Overlap`
     * `BuildableSocket`: Set to `Ignore`
   * **Trigger**
     * Set all to `Overlap`
     * `BuildableSocket`: Set to `Ignore`
   * **InvisibleWallDynamic**
     * Same settings as `InvisibleWall`
   * **Invisible Wall**
     * Set all to `Block`
     * `BuildableSocket`: Set to `Ignore`
3. **Modify Buildable, ConstructibleProxy and BuildableSocket**

Buildable, ConstructibleProxy and BuildableSocket Should look like the image below.

<figure><img src="/files/7dnF2qrMmgjc9E3tlzfV" alt=""><figcaption><p>In order; Buildable, ConstructibleProxy and BuildableSocket presets.</p></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hiveminddocs.gitbook.io/hivemind/code-systems/ultimate-building-system-framework-ubs/installation/collision-channels.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
