JoyfulDreamer's Forum Posts

  • I have 8 cores and 8gb of ram, and dedicated video memory, so I doubt that's the issue. :) And I did try restarting.

  • ^ Thanks everyone. ;)

    Introducing Maniac Mansion - Dave's theme song!!! ;) (just for fun)

    https://soundcloud.com/joyfuldreamer/maniac-mansion-daves-theme

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Cool, simple yet very addictive. ;) I think I found a strategy that works really well now! :)

  • Nickydude - Did you try to disable the effect from the "window" object? You should make sure you see it. You see 3 items, but that's not the point.

  • I always keep my drivers up to date.

  • Okay, first off, yes, some behaviors can be disable, but there needs to be more consistency. For example, if I set a rotate behavior, I have to set the speed to 0 to stop it - but this requires me to store the original value, or create an instance value and keep the object updated with it. I think the concept needs to be more streamlined - especially for beginners.

    Thanks. ;)

  • Link to .capx file (required!):

    https://dl.dropboxusercontent.com/u/17275929/Temp/FX%20Test.capx

    Steps to reproduce:

    No idea (see file).

    Observed result:

    The tint effect hides the objects it's applied to. Remove the tint effect from the window object to see them reappear.

    Expected result:

    Doesn't hide the object.

    Browsers affected:

    Runs fine in browsers - doesn't show in IDE.

    Operating system & service pack:

    Windows 7 SP1 x64

    Construct 2 version:

    r128.2

  • And perhaps a "Vote to delete" option for the community? LOL ... Ok, maybe not. ;)

  • Yes, as jbadams reiterated, new beginners will have a hard time knowing what's going on (as I did), so this only helps prevent them from posting about non-issues in the forum. ;)

    In practice, since C2 is a point-and-click style development IDE, the whole point is point and click, correct? ;) So, while I'm pointing and clicking, I tend to rather click the button instead of bending over to my laptop keyboard to find the small F4 key - so sometimes it's actually faster than trying to press F4. ;)

  • Before I found the shortcut keys, this was really getting on my nerves, so I just thought I'd mention it here. I'm aware the run button runs the last active layout, but I routinely just wanted the whole project to run (which I know F4 does, but at the time I didn't). At first when I kept getting a blank black screen and I was confused as to what was going on. I later realize the run was for layouts. I kept having to re-select the first layout (after editing others) in order to run the project, and having to scroll the project list to find the layout and open it in order to run it was too much. At the time I was right-clicking the project root node to run the project, but I have to scroll up the projects panel to the top to do it. I was losing my hair. ;) I had figured that since the help tips never mentioned a shortcut that there wasn't one, but later on I found it.

    C2 really needs something like what Visual Studio has for web design: You select an active project (bolds the name), then you select a "startup" page. It doesn't matter what you are editing - when you select "run", it runs the active project, and launches the startup page (or "layout" in C2's case).

    C2 needs two buttons for new comers: Run Layout (as is), and Run Project. At the very least, put the shortcut references in the help tips! ;)

  • Uploaded mine some time ago, but figured I should post it here also. ;)

    Planet Invaders

  • Oh. I searched the forum and didn't see that. Thanks.

  • When I export my games to HTML5, the c2runtime.js is NOT minified (in fact, it's a blank export with a one line comment at the top). I have both 32 and 64 bit Java installed with the paths setup as well. C2 is not picking it up still I think. Any ideas?

  • I would take it a step further and put an instance variable on the teleport - for cases where more than one is desired. For that matter, I would even put an instance variable on the player called "teleporting" and set it to 1 when teleported. When a teleport detects collision with a player that is flagged as "in teleport", it sets its own instance variable to 1, resets the player's, then waits for the player to move off to reset itself (as mentioned above).

  • I'm sure that would be tricky. The path finder works on its own grid system, and only updates the system with locations of solid objects once. You would have to keep calling the update action to update the grid, which is time consuming.

    If that wasn't an issue (for example, the layout is small), then (assuming a "player" object of some type is involved) one way might be to create a very thin and LONG rectangle positioned behind the player, longer than the height or width of the layout, mark it solid, call the "regenerate obstacle map" action, then "find path". I assume it would only look ahead of the player.

    Another option might be to create a bunch of semi-transparent blocks filling the empty space, the set all blocks in the "wrong" direction to either solid, or with a path cost, then update the obstacle grid, then find path.

    Or option 3: Write your own if possible. ;)