I got a free pooltable prefab for VRChat (SDK3), and figured i should see if i can safely put it up before i place it in my world. And i’m running in to a bunch of problems.
I did follow this guide from the creator (https://terri.tech/less.php?page=poolsetup).
“Can’t add script behaviour CallbackExecutor. The script needs to derive from MonoBehaviour.”
I get this every time i try to add any of the scripts. even the ones i have tried to rewrite to test around a bit.
Public class and the name matches as far as i can see.
Sending other errors below as well.
Does anyone have experience with this? I have been trying to twist my head around it all day
The fixes i have found both here and other places have so far been fruitless.
Am i missing something? Maybe i have been staring at scripts for too long and are missing something simple.
You gotta fix all those compiler errors first. It almost smells like either there’s something wrong with the package you downloaded or else it’s not intended for the version of Unity you’re using.
You might have better luck checking with the creator.
The important parts of an error message are:
the description of the error itself (google this; you are NEVER the first one!)
the file it occurred in (critical!)
the line number and character position (the two numbers in parentheses)
All of that information is in the actual error message and you must pay attention to it. Learn how to identify it instantly so you don’t have to stop your progress and fiddle around with the forum.
How to understand compiler and other errors and even fix them yourself: