Trigger On mouse Move

is there any way to use trigger and collision Enter event on mouse move

@Jack Are you asking if you can fire a triggerenter or collisionenter event when you move your mouse?

@InfinityLight yes when i move mouse and hit some collider then i want to fire collider event is there any possibility please tell me

Your best bet here is to use raycasting from the mouse position. There are a number examples here: https://developer.playcanvas.com/en/tutorials/?tags=raycast

With this, you can work out what rigidbody your mouse is over and have some logic to do something based on that.