Create a 3D dice in Flutter with gesture controls

Hi

I want a realist 3D dice in flutter for an IOS/Android app.
Do you have an idea?

Since a die has fixed amount of possibilities and the possibilities are in relatively small number, I would go with prerendered 3D.

If you don’t know, prerendered 3D means you use a 3D software (for example, Blender) to render animation frame by frame. These frame images then get played in as a video. The fidelity of the render is up to you. Many games in early 3D era uses this technique. One of the recent example is Clash of Clans that uses prerendered 3D sprites to work smoothly in lower end mobile devices.

You can generate a random number and play the corresponding video as the generated number.

Hope this helps.

Until you are playing D’n’D and have to calculate a 22d10 for critting with a 9th level Inflict Wounds. =P

1 Like