Immersive-Collective / immersive-collective.github.io

Immersive Collective Website
MIT License
1 stars 0 forks source link

Rohith - First Steps Into Metaverse Technologies #5

Open sylwesterdigital opened 4 days ago

sylwesterdigital commented 4 days ago

Hi Rohith,

I’m glad you’ve gone through the project links and have a fair idea about the project. Given that you’re looking for guidance on where to start, here’s what I suggest:

Three.js Development:

Since you mentioned an interest in Three.js, let’s focus on that. It’s a powerful library for creating 3D graphics on the web, and it will be crucial for the visual aspects of our project.

Modeling:

If you’re also interested in 3D modeling, you can start learning Blender. It’s an open-source tool that integrates well with Three.js.

Initial Tasks:

  1. Basic Scene Setup: Set up a basic Three.js scene with a simple object (like a cube) and some lighting.
  2. 3D Models: Try importing a basic 3D model into the Three.js scene. You can use free models from sites like Sketchfab or create your own simple models in Blender.

Using GitHub:

To manage your work and track changes, save your progress to GitHub using Git. Here’s a simple guide to get you started:

  1. Clone the Repository:

    git clone https://github.com/yourusername/repository.git
    cd repository
  2. Create a New Branch:

    git checkout -b my-branch
  3. Make Changes: Work on your tasks and save the changes.

  4. Add Changes:

    git add .
  5. Commit Changes:

    git commit -m "Describe your changes"
  6. Push Changes to GitHub:

    git push origin my-branch

Let’s start with these tasks. As you get comfortable, we can dive into more specific project requirements. Feel free to reach out if you have any questions or need further guidance.

Looking forward to seeing your progress!