dop2000's Forum Posts

  • Lucas Jogos My reply was for evaristo24. If you have a question about blogger.com API, you should probably create your own thread.

  • evaristo24 I don't know if you can use google drive for this task. The file should be available for unregistered users and in clear text format, google drive doesn't support this.

    Try searching for some other service which allows to share plain text, here is an example with pastebin:

    https://pastebin.com/raw/s0KccyVC

    If you create an account at PasteBin, you will be able to edit your pastes (which you will need to do when you release a new version).

  • + System: On start of layout
    -> AJAX: Request "https://mywebsite.com/app_version.txt" (tag "ver")
    
    + AJAX: On "ver" completed
    ----+ System: ProjectVersion < AJAX.LastData
    -----> Browser: Go to "https://play.google.com" (target self)
    
    
    
    
  • Prismatic joint by definition does not support rotation.

  • Why do you expect prismatic joint to rotate? It's not supposed to. Revolute joint should be used for rotation.

    Like I said, you can connect another sprite to the car with prismatic joint, that sprite will not rotate, but will work as a spring or a shock absorber. And then you attach the wheel to that sprite using a revolute joint.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You can make an AJAX request to your webserver or some other service like pastebin.com to check if there is a new version. For example, it can be a simple text file with the latest app version number, uploaded somewhere on your website. Request that file with AJAX, compare version number and if it's greater than the app current version - redirect user to Google Play.

  • Prismatic joint probably doesn't allow rotation. You can add an invisible WheelBase sprite connected with prismatic/distant joints, and then connect the wheel to WheelBase with a revolute joint.

    I have a simple example of a car with suspension, check it out:

    howtoconstructdemos.com/physics-car-with-suspension

  • I suggest using relative positions. When you edit mesh points manually, check how their relative positions are changing on the properties panel. For example, the default relative position for the top right point (1,0) is (x=1, y=0)

  • You can change mesh point position or elevation in runtime using "Sprite set mesh point" action.

  • Dropdown list looks limited. Can we use it with text input? (Looks like Layer, X, Y) It is more useful. We can create any template with one action, using expressions or globals...

    Totally agree! I was planning to use templates to show various popup dialogues, definitely need to be able to write expressions in the template field.

  • You are welcome, I guess :)

  • This is so great, thank you! Just recently I spent several days creating a similar system using ProUI addons, and now this is supported natively in C3!

  • From personal experience, outline effects don't work very well with text object in Construct.

  • You can set z elevation for mesh points, here is a demo:

    dropbox.com/s/ahd3xht3chkfepb/MeshZElevation.c3p

    If this is still not what you want, then you probably need to use 3D features of Construct.

  • Add JSON object to the project and use JSON Parse action.

    Check out the official JSON template, it shows how to work with JSON in Construct