scidave's Forum Posts

  • btw... nice example misfitbyte on how to have scrolling text/edit boxes. It seems to have disappeared from the tutorial section.

  • I use the Layout object mainly for compartalisation. Say I'm doing an RTS. The Worldmap may be the layout object while the UI may be in the layout itself. When you want a little compartmentalized object with its own coding and actions, use the layout object.

    I believe someone used the layout object really well when they were making a "Two camera" game a few months ago.

    Thanks for the info. Great suggestions for how to use it. All experiment with it some more and hopefully get a good wiki entry up within a few weeks.

    MisfitBYTE hmmm very interesting idea. I'm not sure, but I'll have to experiment with it. A workaround would probably to just put the layout object to the front and it wouldn't matter if the main layout was invisible.

  • OMG Radix's Standard Waiver is amazing!! So freaky....I can't believe I never heard of it before either. We need a list of "Best games in Construct" or something.

  • Yes, that would be awesome!! Any Python improvement is a good thing. That was the main thing that first caught my eye with Construct, so it is really disappointing that the Python doesn't work well.

    Another improvement that I would love to see is support for external libraries.. see my post on the Python forum. This would add tremendous extensibility to Construct and allow those that don't have Visual Studio or don't have C++ skills to still add additional features. For example, I was going to incorporate an AI chat engine into Construct using Python. However, importing the library simply doesn't work. It seems easier if I write a c++ plugin to do it which shouldn't be the case. Also, I think it would attract more people to Construct if they had some other programming options.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Nice game Minor. Looking forward to playing it. Looks like it has some cool adventure elements.

  • I don't know if this would save any memory because I haven't tested it out yet but......Perhaps instead of having one massive layout you could have like 4-8 smaller layouts arranged in a grid. Then on your one big layout you would place the 4-8 smaller layouts on the grid dynamically using the layout object. So lets say you are in layout one and you are approaching where layout 2 is visible. Then you would show layout 2 and your player would eventually transition to layout 2.

    Of course this complicates events because you have to deal with layout transitions. The huge benefit is it could make it where only the layout your currently in is consuming memory, but still give the visual impression of a massive layout.

  • I think video tutorials are only practical for very simple examples/games. I agree though it would be much nicer. I started to try it for my adventure tutorial but gave up because on how time consuming it was. You have to be able to add everything flawlessly the first time, which is rarely the case.

  • If you install version 0.99.5 I show how to move back and forth between layouts in Part 4 of the adventure tutorial in the tutorial section.http://www.scirra.com/phpBB3/viewtopic.php?f=8&t=4421 There are other ways to do it as well, but you could straight copy the code from the tutorial and it would work for you. The steps (shown in the tutorial);

    1. Place your main guy via an event in the first layout.

    2. Physically put an object (door, etc) in the first layout.

    3. Add an event when your guy touches the door, move to layout 2

    4. In layout 2, set position of guy to an object (or just x,y coordinates) in the second layout. Do not re-create him.

    The actual code/events for this are in the part 4 tutorial.

  • for this I'd go with Teh Pythons.

    Agreed, Python would be far more powerful when manipulating text. You probably would need that power for a text adventure game. Plus, I'm pretty sure all the Python text manipulation stuff works since it is part of the standard install.

    The text manipulator object would suffice for a really simple game... but I'm still trying to figure out how it works!

  • yeah, crazy huh. I've messed with it some and you can do neat stuff like embed layouts inside other ones, you could make a little room be one layout and add cool effects only if you entered the room... I don't know. Just thinking what other people are doing with it, or maybe they don't use it at all??

  • I was thinking of trying to throw a description out on the wiki of the Layout Object, but I'm having trouble thinking of what examples I would use.

    Anybody use the Layout Object for anything or have some good ideas of how it would be used in a game? Thanks!

  • The neatest feature of this "game" so far is the menus. Very nice looking. Curious where this game will go, but it will be interesting!

  • Wow, nice entry for the 2 day competition. I really liked the concept as well. It was fun designing a bomb shelter. After I set the cavern to get Nuked I wasn't quite sure what was going on though.

  • Yes, I would really like to see an organized competition. Maybe even with the date/time posted on scirra.com main page or on Construct Corner. A lot more structure.. and maybe prizes.

  • Interesting Game. Fits the story well. Only complaint is that I couldn't figure out a way to end the game. Ended up killing the process in task manager. I'm probably missing some obvious exit button.