Create live cursors in Bubble using the ...
What is the best way to do multiplayer live cursors? A common use case is collaborating on documents like google docs, whiteboard / figma multi user canvas, or video games. One of the early Phoenix LiveView demos was a multi user video game. Something like LiveBlocks Cursors:
https://youtu.be/SnChHasU6Hg?t=211
Or the Supabase live cursor demo: https://www.youtube.com/watch?v=QhRNXlFLaeE
Lola from Lunch Pail Labs
YouTube
Create live cursors in Bubble using the Liveblocks plugin by Lunch ...
In this video, I'll show you how to create real-time live cursors using the Liveblocks plugin for Bubble, built by Lunch Pail Labs. Whether you're building interactive apps or working with real-time collaboration tools, this step-by-step tutorial will help you integrate Liveblocks' live cursor feature into your Bubble app. You'll learn how to cr...
Supabase
YouTube
Add live cursor sharing using Flutter and Supabase | Flutter Figma ...
This is how you build and deploy live shared cursor positions in your app with Flutter and Supabase in 8 minutes.
Adding real-time features to your app is a great way to enhance your app’s user experience. One way to wow the user is to add a live cursor feature like Figma. In this video, we go through how you can create a live cursor app using...
2 Replies
this is actually something I plan on looking at soon as its an area of keen interest to me and its something I have brought up quite a bit internally.
Right now convex is not great at high-frequency updates due to the serverless transactional nature of the way it works.
There are clever workarounds for it however that others internally have done.
This for example is built on Convex: https://multiplayer-cursors.vercel.app/ (open it in multiple windows)
The TLDR; is that you can "batch up" multiple movements into chunks of updates then send them every 500ms or so.
So there is a delay but depending on the application it should be good enough
Code is public here: https://github.com/get-convex/multiplayer-cursors
GitHub
GitHub - get-convex/multiplayer-cursors
Contribute to get-convex/multiplayer-cursors development by creating an account on GitHub.