I want to resolve the error 'ContactEnterInfo'

I want to add a ‘VRC Contact Receiver’ to the world and determine whether my avatar’s ‘VRC Contact Sender’ has touched it, but even when I add:

using UdonSharp;
using UnityEngine;
using VRC.SDKBase;
using VRC.Udon;
using VRC.SDK3.Dynamics;
using VRC.SDK3.Dynamics.Contact.Components;
using VRC.SDK3.Dynamics.Contact;

I get the error ‘error CS0246: The type or namespace name ‘ContactEnterInfo’ could not be found (are you missing a using directive or an assembly reference?)’

in the

public void OnContactEnter(ContactEnterInfo contactInfo){}

section. How can I resolve this?

I decided to search github for ContactEnterInfo and see what shakes out.

Depending on what you wanna do, maybe try like VRC.Dynamics.ContactEnterInfo instead?Or maybe you can use VRC.Dynamics, csharp is something I don’t really do that much of. But yeah the namespace VRC.Dynamics line is declaring a default namespace in that file

well considering they’re not even valid in the base udonsharp class I think they might’ve straight up forgot to include them for udonsharp