3D models in construct 3 but is it worth the price tag?

Поділитися
Вставка
  • Опубліковано 11 вер 2024

КОМЕНТАРІ • 23

  • @gamedevelopmenttutorial
    @gamedevelopmenttutorial Рік тому +13

    Construct should add more 3D specific behaviors, like 3D controller.

  • @Elite-D
    @Elite-D 2 роки тому +5

    Cool video Mr. Reilly!

  • @calebbennetts3559
    @calebbennetts3559 2 роки тому +1

    All right, you've talked me into it. Now putting into my game.

  • @jeffiot
    @jeffiot 2 роки тому +1

    I'm specifically curious about ramps, since we currently have to build stairs and hide them, and the stairs have some pretty wonky physics about them, such as not being able to have flat ground underneath them. if you could look into whether or not this plugin has ramps with collisions, that'd be a great resource! I can't imagine I'm the only one wondering that.

    • @gamedesignwithreilly
      @gamedesignwithreilly  2 роки тому

      Player around and it look like you can add ramp collision but trying to get that to work with movement it's difficult as the the collision events are very limited on the tool.

    • @calebbennetts3559
      @calebbennetts3559 2 роки тому

      I almost went insane trying to work this out a while back, but if you keep to a simple case, it's not too bad. For a ramp that rises from left to right, with an origin at the top-left:
      *Pick Ramp overlapping (Player.x, Player.y) &
      *Set Player.floorZ to lerp(Ramp.zElevation, Ramp.zElevation + Ramp.zHeight, ((Player.x - Ramp.x)/Ramp.width))
      I'm not saying it's easy or particularly flexible, but a way does exist.

    • @computercrazies
      @computercrazies Рік тому

      I use a floating ground algorithm that takes the Z level sample from the nearest mesh distortion points and finds the median value for the ground. Try making a ramp using 2 x 2 mesh distortion and using an algorithm for floor collision that interrupts the first person platformer collision code.

  • @mikejoe3551
    @mikejoe3551 Рік тому +1

    First thank you for posting all the various tutorial videos for construct 3. If I could ask you to fix one thing, would you please consider increasing the audio your voice. It can be hard for me to hear exactly what you are saying and I'm using headphones.

  • @douglewisamaanthro383
    @douglewisamaanthro383 11 місяців тому +2

    do sprites in a 3D space need a 3D moddle (like a panel or something) in order to be used and move or is it able to move around by it's self

    • @gamedesignwithreilly
      @gamedesignwithreilly  11 місяців тому

      Object can move by it self however I recommend pinning it to a sprite.

  • @ninjamonk
    @ninjamonk 2 роки тому +2

    Looks like it would nicely with crocotile3d nicely.

    • @gamedesignwithreilly
      @gamedesignwithreilly  2 роки тому

      I see what you mean. Never seen choctile before but looks like great tool.

  • @superelizur2011
    @superelizur2011 11 місяців тому +1

    Where do I Get the *actual* 3D plugin object. Please leave the link

    • @gamedesignwithreilly
      @gamedesignwithreilly  11 місяців тому

      It's in the description
      Here is the link - kindeyegames.itch.io/c3-3dobject-alpha

    • @superelizur2011
      @superelizur2011 11 місяців тому

      @@gamedesignwithreilly I downloaded the package, but i dont have the plugin, so construct 3 keeps saying that i am missing it.

  • @EdoardoMarchili
    @EdoardoMarchili Рік тому +1

    Can i import a blockbench model on construct 3?

  • @Macinhojoga
    @Macinhojoga 4 місяці тому

    I not speak english 😢

  • @computercrazies
    @computercrazies Рік тому +1

    The efficiency of these 3-d objects is crap from this plugin, You would be better off using sprite billboards. If you want 3-d character you can always fix the camera at an angle and do all your art 3-d in blender using 8 or 16 direction animations and you will have a very diablo 2 like 3-d characters but at the present moment I wouldn't use full 3-d objects. You can fake most simple 3-d with mesh distortion, In fact I have ROUND WHEELS sticking out of a wheel well for a car with mesh.

    • @gamedesignwithreilly
      @gamedesignwithreilly  Рік тому

      Construct 3d has a long way to go. This plugin highlight some areas of improvement that construct can implement but as mentioned in the video it is lightyears from other engines.

    • @computercrazies
      @computercrazies Рік тому

      @@gamedesignwithreilly - Agreed, I do look forward to full 3-d objects being integrated but I expect Scirra is not looking to make a full 3-d engine from their wording so I have been concentrating on workarounds. I have a garry's mod type builder using mesh distortion in construct 3 I am working on that I think I can get working good enough to make some nice 3-d with.