SimpleThree (Construct 2 Plugins)

You're viewing a single comment in a conversation. View all the comments
  • 2 Comments

  • Order by
  • Please help me...

    Your plugin don't work with a TEXT?

    How to create a Hud or interface trully for this plugin??

    • I haven't implemented a text plugin for this, but, for now, you can do the following:

      1. Create a Layer for your HUD and place your UI there using regular Construct2 objects.

      2. Go the "Layer properties" and set the 'Transparent' value to 'Yes' for ALL layers.

      3. Go to the SimpleThree object and set the "Canvas Order" property to "3D Behind".

      Explanation:

      Simple three uses two canvases, the 2D one, which is actually the regular one (as if you didn't use SimpleThree). And the 3D one, which has your fancy 3D objects.

      You can decide which one goes on top of the other. By setting "3D Behind" you say SimpleThree to render 2D on top of the 3D.

      Any object which doesn't have a SimpleThree behavior, will be rendered as usual, the ones with the behavior, will be modified so the 2D renderer ignores them completely.

      Remember to set all layers as transparent to avoid the risk of your 2D canvas hiding the 3D one.