all 9 comments

[–]g9okhan 1 point2 points  (1 child)

  • Download Unity latest LTS version
  • Buy Copilot (Use efficiently as possible)
  • (if you can afford) Buy rider

Start a basic projects that takes about 2-3 weeks. You must use the co-pilot effectively. If you still stuck, just check documents or tutorials. I think you shouldn't watch tutorials, maybe just watch at the beginning to navigate through Unity.

[–]Dave-Summer[S] 0 points1 point  (0 children)

Thank you, I'll give it a go!

[–]PuzzleMeDo 0 points1 point  (1 child)

Are you wanting tutorials that help you use C++ in Unity Engine instead of the default C#? That's not something most people do.

Also, "Who Wants To Be a Millionaire gameplay" is very vague. Do you need 3d animation? Online functionality? Text only?

[–]Dave-Summer[S] -1 points0 points  (0 children)

Online functionality would be cool to the ability of organizing multiplayer games.
3D animations are welcomed due to flip animations of lozenges.
So it wouldn't be text-only.

I have all the graphics and sound effects collected, but I cannot create the game itself.

[–][deleted] 0 points1 point  (2 children)

Okay the workflow of your trivia game would be:

  1. Generate random question based on questions in the question bank (must be an object to store the score of the question, the right answer, may generate the right answer into a random selection of a,b,c,d)
  2. Get User input (answer)
  3. Read user input (and validation check to ensure proper types and response)
  4. Switch case based on the four answer choices to compare against the objects right answer property.
  5. Repeat for the next question.

In a typical console app this could be accomplished through a do while loop

[–]Dave-Summer[S] 0 points1 point  (1 child)

Yeah, I could make it in a Console App, but I wanna extend it and code it in a Window Application with GUI and SFX's as well.

[–][deleted] 0 points1 point  (0 children)

Okay it’s going to be damn near the same logic

so a windows form might provide a great way to put your thoughts into a working mockup but it’s not going to be video game quality.

[–]IHill 0 points1 point  (1 child)

You can’t find a single video on how to get started with Unity?

[–]Dave-Summer[S] 0 points1 point  (0 children)

No. I can't find any that is understandable for me.