jayderyu's Recent Forum Activity

  • I tried using the plugin, but the svg doesn't layer with sprites

    I heard you can replace the final PNG files in the export with SVG files. but that's a pain in the long term development. also I'm not sure if browsers are 100% ideally supportive of SVG performance.

  • I'm certainly can't say with authority. But at my work place we had a Brazilian working as an intern. And from his point of view that I gathered. There is a growing number of youth wanting to grow the Brazillian video game development presence. So can see Brazil due to C2 ease of use and making the English language coding simpler with C2 VPL Event Sheet.

  • Personally for Globals. I like to make a Dictionary set it to global. Then make my globals in that object. I personally don't like cluttering up the variable scope with lot's of var globals.

    So there you go. Proper globals associated with a class rather that floating in memory space.

  • Scrolling speed is very custom kind of thing. Your going to need to figure it out. however here is the basics.

    startScale

    endScale

    EveryTick

    If( layoutscale != endScale )

    layoutscale = lerp( startScale, endScale, lerpValue between 0-1)

    and for scrolling

    My suggestion is to

    make a camera target object

    make a camera object. Attach ScrollTo behaviour to the camera object.

    move the camera target object to where you want.

    Evertick

    if camera target is not overlapping camera object

    cameraveObject.moveTowards XY of CameraTarget of speedInPixels * dt

  • Ask made a suggestion over a month ago that C2 should use PageJournaling to auto watch an Asset folder(for project folders not capx). When anything occurs such as a file change of an established image. Then C2 would auto update the image. Added with the prior suggestion to set a default image editor I think this route would be a good way to just remove default image editor and replace with just the collision and animation editor.

    This would also get rid of all these threads to add more editing features and vastly improve development flow. Otherwise the image editor get's the job done as it is. But I really like the the option of a defualt image editor instead fo the current one.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • There is a Node path finder in the store. but unfortunately when I tried to work to make a plugin/behaviour to do on screen edit time path set up it can't really be done. There isn't enough interaction control in the IDE core system that's being used. So it's more likely a C3 feature. So right now it's CSV based graph path finder. I'm working on a runtime tool that will create, output and upload the graph. But it's not as convenient as an edit time tool :\ but i'm working on a few bits to fix up before that part is released.

  • No. They don't do "save state". They do "save games". I may have slipped on the keyboard when typing the difference on save game and save state. I will claim error if that's the case. C2 save system is a form of "SaveState"

    http://en.wikipedia.org/wiki/Saved_game

  • lilvee1989

    No it's not. what your gauging is the end experience from the user side. From the developer side these technologies are distinct and not the same. If you use one set of sub culture words which can refer to different meanings then your effectiveness to communicate is hampered. As a developer it's best to learn the terms and lexicon of any particular group.

    What's going to happen is that future new developers are going to be misinformed and it's everyone responsibility to to help each. Which is the point of a forum.

    So for possible future readers. Game Center at the time does support multiplayer game. GC supports leader boards, achievements based experience.

    Anyways I'm done. I think the thread is covered well enough.

  • As i understand GameCenter is a central hub for player information. GameCenter doesn't actually do the multiplayer. Having looked at games on ios that use gamecenter. These games still use systems such as Photon, Raknet and others to handle the actually multiplayer game play elements.

    So DUOIT title is correct. how to integrate GC into multiplayer is correct. And since there is a plugin for GameCenter in C2 already you are all good to go. happy game making.

  • You are using the savestate system to save the game. While you can use the savestate system and Ashley even shows an example. It really isn't the best way to do it.

    Using the savestate system saves every object and every bit of data on those objects. This means all the static terrains that never changes. all the background art everything saves. This results in a save file where 99.5+% of useless data. This actually uses up a lot of save space. I suggest just printing out a few objects just to see what get's written. You will be surprised.

    So of course there is a behavior to stop saving certain objects. Every tree position doesn't need to be saved. So you used the behavior to stop saving data on certain objects. And this is better approach. As this will reduce the amount of data you save. This will result in a much smaller file. But probably still 90% of information you won't need.

    Keep in mind that the save system is a savestate which is meant to mimic the state of the game in memory. Including all the global values that carry over between layouts. Think of this is needing to reload a game on a mobile device when switching apps. Players except to precisly resume their game.

    A save game only needs to save pertinent data that has meaning and doesn't need to reduplicate the memory state of the game. Mario, Assasins Creed, bioshock, GTA..... don't do save states. They record meaning information on progress and positional information.

    So your jerk pause for 1-2 seconds is likely due to writing far more information you need. I wrote a savegame for The Blue Code and the save is unnoticeable because the data is less 300byes. In relation 1object in savestate is about 200+bytes. So you could be writing possible 100's kb of datam heck maybe even in the mb.

    I suggest ideally to use proper save information for save games. And use save state for resuming games if your on mobile. It's more work though as you need to store the data and interpret the data. Where the save state is certainly far more convenient.

  • Don't use C2 image editor. It's only meant for place holder art or temporary changes.

    Also check what tool your on in the tool bar to the side. I got caught up on that in my first couple of days. Just over looked that I was in origin point point mode rather than on a brush/fill/shape tool.

jayderyu's avatar

jayderyu

Member since 11 Apr, 2012

Twitter
jayderyu has 1 followers

Connect with jayderyu

Trophy Case

  • 12-Year Club
  • Coach One of your tutorials has over 1,000 readers
  • Educator One of your tutorials has over 10,000 readers
  • RTFM Read the fabulous manual
  • Email Verified

Progress

16/44
How to earn trophies