Is it weird how I only noticed this just now?
It seems to work well, although i get weird bug where if i disable CanTouch and re-enable it my touch detectors seem not to work [“There is no error being outputed on the server”].
Could you please post a bug report for this? Feel free to tag me in it after
I can’t because i have no ability to create a draft in the bug section, is there any other way i can report this bug?
Is there maybe an introduction on how it works? I wanna test this but I don’t know how to start.
Send your bug report as a direct message to @bug-support. (Following the correct format of course)
Is this a bug? If the touch events were established before changing the property then it makes sense that the property change would shutdown those touch events. At least to me it makes sense.
Never mind, i re-published the place today and it all works now!
After setting CanTouch = false on all non-collidable and non-touchable parts in our huge open-world game, I haven’t noticed any performance or memory usage improvement.
I never set any of those parts CanTouch to false. Does this mean I’ve got to manually set it to false?
It appears to be set to false on the client but true on the server
Very useful, but is there a way to have it work with GetTouchingParts()? I couldn’t get that function to work unless I connected another touch function first.
This behavior will also extend to
BasePart:GetTouchingParts
. This function ignores all parts withCanCollide
set toFalse
, unless the caller part has aTouchTransmitter
(is listening for touch events). If that’s the case, all parts withCanTouch
set toFalse
will still be ignored.
Is there a reason that you still have to insert a touch transmitter?
Thank you very much for this. This is a game changer in my project. I have thousands of active elements in my game, so I decided to connect Touched
function to humanoid instead and filter out all inactive elements. By using this property I can vastly reduce amount of calls. Big thanks.
Are there plans to get rid of the warning message “Collider has CanTouch set to False. TouchTransmitter will be removed.”?
Will this be planned to work on raycasts soon? Am having an annoying issue with HumanoidRootParts, and i was thinking of using CanTouch set to false to ignore hitting it but Raycasts still collide with it.
I have the same issue it just totally made my game unplayable
used this to spawn food for the players to collect… which now has stopped working
This feature has been enabled for months.
The bug that caused that issue earlier today is unrelated.
Amazing,it really reduced lag inside my game!
Disabling this property via a script logs a warning in the console. Is there any way to evade that?
i have made a test world tool and use the proprety on my tool part and now it warn (Handle has CanTouch set to False. No TouchTransmitter will be created) i like that it dont make a TouchTransmitter since now exploiter cant use the tool to tp other user around but is there a way to remove this warning to showing each and every time i take a tool out my backpack