GeorgeZaharia's Recent Forum Activity

  • that was a system expression if im not mistaken, and i didn't even noticed is gone lol till you mentioned it.

    its still available in C2 runtime >> advance setting from project settings change runtime from C3runtime to C2runtime... and then it appears back in the system expressions.

    however since you change the runtime you will lose functionalities like bbcode for text objects and other features C3 objects might have.

    that as now i think is only for C2_Runtime maybe soon will be ported to C3_Runtime also.

  • Let's put it this way, i assume by now you know the pros and cons of C2.

    C3 has some of the cons of C2 solved.

    There are a few cons on C3 but none new from comparing it with C2 as far as i experienced.

    There is a built in android wrapping system and signing certificate. I don't know for the other platforms, NW.js mac/windows/linux platforms is similar to the C2 i think, and admob ads plugin.

    Performance wise, is a lot faster than C2, when comes to games / apps made and how they perform.

    However C3 is still in early days only version 138-2... there is a lot of improvement to be made and addons.

    About the language is written in or the js/html5 language that interprets it to wrap things i have no clue, but it worked so far on my end.

    So yea i'd recommend the upgrade.

    Edit: there are a bunch of other little features that C2 doesn't have like animation onion skin allows you to see the last frame you drawn so you can guide the next one if you want to make animations in the C3 animation editor, the text files, js files that you import in the project are can be edited and read in a C3 editor ... means no more editing the additional files with notepad then reimport it inside the project.

    And a lot more features that i wanted C2 to have way before C3 started like the new Z Elevation, Record Canvas, and many other cool little stuff.

    Now when it comes to plugins, the old C2 plugins some are compatible with C3 but only for the C3 >> C2_Runtime.

    The C2_Runtime is the same engine that powers C2. C3_runtime is the new version of the engine that runs way faster, so if you have a old C2 capx file you want to edit in C3 and like still use C3 as C2 but wanna wrap it with the android export u can do that.

    If you are using C2 plugins though, you might need to convert them with C2 to C3 plugin convertor before adding the projects inside C3... i didn't done that yet, i have both versions but i don't use custom plugins unless im making some 3d stuff where i use the C2 Q3D plugin(some custom webgl effect or some of r0j0s plugins). other than that i don't see the need of custom plugins for what im doing, so i never experienced a compatibility issue when i imported a C2 project in C3.

    There are other aspects that i might not experienced yet anyone can help out fill in.

    But i still back my recommendation, it's worth the upgrade.

    Plus if you own C2 then you'd be supporting C3 and better upgrades for the future.

  • I think your example is good enough, so I would not worry about it too much. Just polish it up and finish the game.

    All physics engines, although they help, have things missing. One of the most annoying things with box2D is if something moves too fast it will go through objects.

    Guess what happened the first time I used physics in Unity and threw a soccer ball a little faster. It went straight through the net and through ad boards behind the goal. If you ask a question about this, you will get an answer along the lines of: "you have to use raycasting, bla, bla, bla, code it yourself"

    Shouldn't that already be a part of the ^%$9ing physics engine, yeah it should, but look at the bright side, at least it allows you not to have to code all the other parts that actually do work.

    that speed glitch happens on objects that has is bullet not selected once u tick that u can blast them at really high speed. if u compare the rack smashing in the beginning of both games i linked, the seconds one spreads all balls in a nice little pattern as physics makes sense there from collisions that happen, in my version after first impact all balls move the same direction doesn't matter what is the elasticity weight speed etc. however i found a sort of a solution but its still not fixing it, but is a bit better. anyway ty for input, but i didn't wanted to make another sliding ice hokey game.

    i ended up making the pool game using Q3D in the end. the physics in Q3d react as they should it might be cause of the gravity on Z axis that pulls the balls down and give them extra elastic power and friction+inertia and takes ball spin in calculation also, anyway, i was trying to create a 3d roll i think with a 2d physics and that probably isn't gonna happen unless i tweak the plugin itself. which would be much easier to just make the physics i need by using Construct events.

  • if you mean the official capx files they are inside Construct by default check starter page in the editor and look at left menu for examples and guides. there should be a left side menu

    if you mean community tutorials made by users, those are only available on Construct 2 and the new ones for Construct 3 are having some capx files but not all of them, depending on each user how he writes the tutorial/shares files.

  • If tried example and put elastic to maximus, the effect is correct for pool game. Is there something else you looking for?

    i made a lot of tweaks with the elasticity on my capx, and it requires elasticity very close to 1 which is capped at that by default from the physics plugin, but .... what i did different is i changed the density of the ball from being 1 or less than 1 to 50++ u can't do that in the example i shared but while they break in a similar pattern they bounce to much, and that is not what i was looking for the elasticy.

    the example shows the construct version when hitting with cueball the rack of balls pushing the entire rack with the same amount of speed, which in pool that doesn't happen since every ball hits the other ball bouncing back the opposite direction and so on until it stops, however i think im close to find my answer, is not the physics limitation ... is the way i was thinking the powers to be used are capped based on the description they had between 1 and 0 between 0 and 1 and so on... i was thinkin 1 is max... but it turns out for friction and other elements is not... so now is time for fine tuning the right pattern for my balls diameter/collision masks i also seen a very huge difference in buoyancy from circle mask from physics and my own hand made collision mask, which strangely enough is acting much better than the smoother surface, probably cause having corners helps with the ricochet at random angles.

    this is i guess solved, as i said was probably limiting the math/physics of object size and how much weight they should have with the actual elasticity ....

    so the solution is u can go 1 elasticity but make sure u do density double your balls diameter 2 x diameter * pi friction, 1/pi*2 linear damping and angular damping linear damping and angular damping equal to linear damping always since we don't have a Z rotation of the ball. and walls need match balls -90% elasticity drawn back

    my bad, sorry for exaggerating Nepeo thanks once more for taking your time with me ...

  • I'm going to be honest here GeorgeZaharia I know relatively little about Physics engines, they are pretty complex and I've never had to do anything complicated with one. We're embedding a port of Box2D here so my best guess is that your just looking at the properties that Box2D exposes. Ashley will know more, as he wrote the wrapper code for the behaviour, but his answer is probably the same.

    I imagine the reason why you can't see the module in the construct 3 version is that we've swapped from using a JS based port to one done in WASM which is a binary bytecode format. Chrome should still show you a human readable format for the module, but you won't be able to breakpoint it and it will appear as a relatively complex language.

    I understand now ok makes sense, thanks for taking your time on this issue i was having.

    Maybe this is one of those things to consider in future then for expanding the physics plugin or polish it a bit more, i'll forward it to the ideas/requests sections.

    The bullet behavior has the reflect from object pretty good (as angle reflecting not the power at which it reflects cause it should be equal to half of the initial contact +- spin force but who cares as long as angle is good for reflection) on this issue ... i wonder if maybe that is a possible hint to what might be that physics is missing or is dimmed down cause of gravity set to 0.

  • lol, that slow jitter down hill.. i can't replicate the 2nd bug u shown, but i replaced the objects i was thinking it was cause of the tiledbackground type object, so i replaced them with sprites, i got the same result as shown 1st time by you, also i tested on 138-2 so the bug persisted further to other versions also.

    additionally i tweaked the gravity to be a bit more stronger, and see if maybe is cause of the low gravity u had there... but it is not... the platform to platform ghost stepping is still happening.

    was actually looking at where would we report a bug, i would file this report on github page supported by scirra here submit c3 bug

    also read this before posting there more information about links regarding C3 bugs etc

  • We have no plans to open source the C2 engine.

    Ah awesome :D i got scared a bit thanks for clarifying :D

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • that looks promising, but wait what happened with construct 2 is it really open source now, i been missing the blogs on that? can we get access to the core engine as we could ask for the construct classic version?

    or is it like"community modular expanding open source"?

  • just checked your file, seems isn't a feature from what i seen in the file c3p, is more of delay in logic vs what is displayed, something is asynchronous you could say is lazy jerking. id wait for one of the scirra developers to look at it and explain it in more detail or guide you to the process of filling a bug.

    but i'd say is a bug. or is just how the calculation of things happen it might need a tweak ... or two... tested on chrome and c2 c3 runtime same result.

  • you can redownload once more the file, i commented in detail each event and condition+action

    localstorage + levelmenu v3

    have fun.

  • redownload the file localstorage+levelselect

    i had a event error on the selecting menu.

    you should also look at the official localstorage example for hiscores

    hiscore localstorage

    just my example is made for levels.

GeorgeZaharia's avatar

GeorgeZaharia

Member since 30 Jun, 2014

Twitter
GeorgeZaharia has 35 followers

Trophy Case

  • 10-Year Club
  • Jupiter Mission Supports Gordon's mission to Jupiter
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Forum Hero Made 1,000 posts in the forums
  • x9
    Popular Game One of your games has over 1,000 players
  • x21
    Coach One of your tutorials has over 1,000 readers
  • Educator One of your tutorials has over 10,000 readers
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • Great Comment One of your comments gets 3 upvotes
  • Email Verified

Progress

21/44
How to earn trophies

Blogs

  • Construct For Dummies - Simple Tutorial Collection

    I scour the Construct forums for users tutorial requests, and create small quick and simple tutorials using Construct's defaults features so anyone can use and apply them.

  • My Dev Logs

    Thinking on games 24/7 is fun and waste of time and unproductive if we don't bring those game ideas to life. In this blog im bringing my game ideas to life and log their development process.