trollface's Forum Posts

  • Got the same error with particles colliding families.

  • When will the winners be announced?

  • Scirra is frozen, everbody is grabbing Construct2.

  • https://www.scirra.com/tutorials/585/ho ... vel-editor

    Here you go,wrote this tutorial last year.

  • Is there a way to hard code in a C# method to give a value from acceleometer to the c2runtime? More explanation from me in this thread:

    http://www.scirra.com/forum/give-value-from-c-to-c2runtime_topic86681.html

  • I have been able to inject the variable into c2runtime, but I still can't set the value of the c2runtime global variable to the variable I am sending from C# code. I can call it with alert, but it is not set to global variable. I have modificated c2runtime, by changing "Set phoneBeta->99" to "Set phoneBeta->change",which is the new varaible I have created.

    I have added these lines to c2runtime to call the value out, it is located in the beginning of the c2runtime

    window["wp_muuda"] = function (value) {

        change = value;

       // alert(change);

    }

    and set the value of the global variable to "change", it is located in the end of c2runtime:

    cr.system_object.prototype.acts.SetVar,

                        null,

                        1421252773806425,

                        false

                        ,[                     [                          11,                          "phoneBeta"                     ]

    ,                    [                          7,                          [                             ��1,                             ��change//made change                          ]

                        ]

                        ]

    The injection method is called out in MainPage.xaml.cs.

    I would really appreciate, if someone would crack this issue for me.

    New visual studio file using the windowsphone plugin:

    http://www.upload.ee/files/3893236/Project.zip.html

    New project:http://www.upload.ee/files/3893240/test.capx.html

  • bumping

  • Hello, I decided to develop a new game with C2, when I run into a problem that I couldn't solve by myself. I decided to make a pseudo-3D balance game on Windows Phone 8, where you have to avoid obstacles by tilting your phone left or right. Cause I found out that there is a problem with C2 getting readings from the phone acceleometer, I implemented the same thing in C#. This solution works well and shows the correct reading in the Textblock I made on the canvas, but I would like to take this variable and begin to assign it to a global variable called phoneBeta and set the character angle according to the tilt of the phone.What I basically would like to do is double y->phoneBeta, where y is a c# variable in MainPage.xaml.cs and phoneBeta is javascript global variable in c2runtime. Cause I dont't really know how to change c2runtime file in Visual Studio so that this would work, I would like to ask if someone could give me a solution to this problem.

    Here is the .capx with tha basic concept:

    http://www.upload.ee/files/3886922/test.capx.html

    Here is the Visual Studio .zip: http://www.upload.ee/files/3886322/New_project.zip.html

  • Cool desing, it really feels like a polar adventure. The fruits could also have a bit of frost on them so that they look more frosen. And some of the fruits could be trapped inside iceblocks and the melon has to crush the chunk of ice to get them.

  • I downloaded the game and found the idea quite interesting. Graphics are great and the gameplay needs no introduction, but...

    1)the button does not recognize touch on most times, I recommend to increase the size of the bounding box.

    2)I can jump over the fences and cheat

    3)The timelimit is too short

    I hope, that you can make these fixes, I'm sure, that it makes your game much more playable.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Error 404 - File or directory not found.

    Could you please upload the .capx again.

  • Thank you, I really appreciate that you found time for my project.

  • yes, I have tried to use them, but don't really know how to get the right coordinates with them, I tried use viewports before and it worked for x coords but not when the y values changed. Could you take a look at my .capx and use the correct method.

  • Hello, I am having a problem with layer parallaxes. I am trying to move one sprite from 100 parallax layer to 0 parallax layer and substain the sprites location on canvas.

    Here is my .capx:

    http://www.upload.ee/files/3607306/test.capx.html

    Isntructions for testing:

    1.swipe the layout forward

    2.pick a family picture and drag it into the brown inventory bar.

    3.drag the picture on top of the window, after drop it should slide back into its original position.

    I would be very happy, if someone could solve this issue for me.