Aphrodite's Forum Posts

  • Linux would be much better have to switch my OS every time I want to program with C2.

    But with OSX support I could programm with my macbook which I realy hate but ok :D

    agreed, since you don't have to pay for a linux license, but you have to for a windows license, and as far as I know, OSX is the same mentality as windows in that case

  • Hello guys i want to create one chat room can make it on Construck 2?

    I don't think using C2 for this is necessary, but you can I guess (since C2 can communicate to a server), but more knowledged people will talk about this^^

  • maybe do it so:

    if you want it to stretch X more pixels to the right, stretch it directly

    if you want to strech X more pixels to the left:

    move it X pixels to the left, then stretch it X pixels

  • You can't choose the framerate limit (60fps by default), so you should try to make your game framerate independent.

    Also make sure there is nothing too much cpu or gpu intensive for the computer.

    I would like to be able to change the framerate to whatever I choose, for debbuging purposes.

  • some people designed their games with te fact that outside boundaries, the value is 0, so it is not like it was easy to change.

    Also,-1 is a value, so the problem is still here.

    I think it is a good choice to have a default value outside boundaries in some cases, maybe if we can set this value to whatever we want (0 if not specified), it could be better.

    But if you make your array bigger with NaN outside boundaries, not sure the value that the array will take.

    Also NaN is a value... and an array can have text so It'll be complicated...

  • Well it's clearly Avast that's the problem :p

    Xionor : A software update shouldn't make avast become crazy, so We report it, disabling our antivirus software is not a good way to install C2.

    Even if C2 isn't directly responsible, we like to give feedback to scirra about things like this.

  • I am too far from london, but the idea is interesting itself, also:

    "just socialise and maybe have a fun night!"

    I sense some "Physics behaviors" behind that <img src="smileys/smiley17.gif" border="0" align="middle" /> haha, I am such a pervert.

    Anyway, great idea, and I agree the "Live streaming for the unfortunate?" thingy, even it'll be complex to do so (I should have made the behavior joke with that but.. well..)

    EDIT: Remember, don't drive when drunk!

  • Link to .capx file (required!):

    Non applicable

    Steps to reproduce:

    1. install

    2. see avast complaining about : [Chest] C:\Program Files\Construct 2\exporters\html5\node-webkit\win32\is-0NRAG.tmp

    3. [Chest] C:\Program Files\Construct 2\exporters\html5\node-webkit\win32\is-R226S.tmp

    4. [Chest] C:\Program Files\Construct 2\exporters\html5\node-webkit\win32\is-H2V72.tmp

    5. [Chest] C:\Program Files\Construct 2\exporters\html5\node-webkit\win32\is-C6T36.tmp

    6. [Chest] C:\Program Files\Construct 2\exporters\html5\node-webkit\win32\is-GQQO2.tmp

    7. [Chest] C:\Program Files\Construct 2\exporters\html5\node-webkit\win32\is-DG09M.tmp

    and so on, I deactivate avast right after because I think It will never stop.

    Observed result:

    Can't install because avast don't like it

    Expected result:

    Avast should not detect a problem

    Browsers affected:N/A

    Operating system & service pack:

    Windows 7 (64 bits) Edition familiale premium (I guess family edition in english), SP1

    Construct 2 version:

    r140

    Not sure if it is a C2 problem, but still.

  • This can maybe help you getting started:

    https://www.scirra.com/blog/112/remember-not-to-waste-your-memory

  • Yes:

    "It's worth remembering Construct 2 always uses degrees, never radians. If you need to enter an angle anywhere in Construct 2, it will be in degrees."

    GeoGebra uses radians, is there a way to convert degrees it into radians?

    pi(rad) = 180?

    x*pi(rad) = x*180?

    x(rad) = x?*180/pi

    x?=x(rad)*pi/180

  • I think it is a stupid question, but I'll ask anyway:

    X was in degrees or radians? C2 uses degrees, and some math programs uses radians

  • Miu3, He decided a lot of his headaches would go away if he removes all the platform stuff, and goes totally ghost shooter maker.

    <img src="smileys/smiley2.gif" border="0" align="middle">

    Paradox :

    Isn't already C2 a Ghost shooter maker? Like TF2 a Top-Model games for hats and sonic a spongebob pornographic movie

    I think the next feature will be related to the HTCPCP Protocol, It has to be that.

    Anyway, have great holydays guys

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Im remaking the fish game where you eat smaller fish to get bigger. I have it so every time you come in contact with fish, it adds 1 to player.Width, and player.Height. It is growing the fish horizontally then vertically and it is just being really glitchy. Anyone have a fix?

    Maybe you shouldn't add 1 to both width and height (except if the height and width of your fish are equal). If that is not the case, adjust the values:

    For exemple, for a 16x32 fish you would:

    add 1 to width

    add 1*(32/16) to height

    Or maybe I misunderstood the problem

  • I have a bird. If I use platform, he goes along the ground. If I use 8 directions and limit to left & right, he flips upside down for left. He is NOT a player character so I can't use keyboard events. I tried if angle is between this & that angle - mirror... but I'm not sure why it's not helping. Any suggestions?

    Eliyahna

    Set angle to no for the behavior

    then you set the mirrored at the same time as you simulate the control

  • if you want something that stores data to be deleted and created at runtime, you could try a dictionnary, you can create and delete "keys", which can be used to store a value under a name