dop2000's Recent Forum Activity

  • Platform objects hover slightly above the ground (half a pixel or so). That's probably why the tile is not detected correctly. Try adding a few pixels to PlayerHitbox.Y in the expression.

    PlayerHitbox.Y+2

  • Local storage is used to save values between sessions. If you are just switching to another layout, you don't need Local Storage - simply store the values in global variables or in a dictionary.

    The reason your language resets is probably because you change it in "LocalStorage on any item get". So if you are reading other values from LS, like "Speed", it will overwrite the language value.

  • To be honest, it's difficult to understand your task. It would help if you could attach a picture or a demo project.

    You can run a value tween with "In Sinusoidal" ease and Ping-pong=yes settings. And add the value of this tween to the object's motion (speed or orbit angle).

    dropbox.com/scl/fi/unabdyo98ot8jac68hs5d/Orbit-Tween.c3p

  • Of course. You can use any character or your own custom tag, say "{line_break}"

    replace(Dialog_Greeting, "{line_break}", newline)

  • Perhaps you can assemble the object from sprites (rectangle, circle) and connect them together with physics joints.

  • Is layout big enough to scroll? Try enabling "unbounded scrolling" in layout properties.

  • Use a sprite with ScollTo behavior. Or add this event:

    On every tick: System Scroll to

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • You do not have permission to view this post

  • You do not have permission to view this post

  • Is the background in the canvas transparent? If it is, then you can use this script. If the background is white (opaque), you need to erase the background first, or perhaps modify the script.

  • Dan Blast I see your text contains lots of "^" characters. Do you want to replace them with line breaks? That's what I usually do in my projects:

    MyText Set text to replace(Dialog_Greeting, "^", newline)

    Or you can re-write the contents of the variable:

    Set Dialog_Greeting to replace(Dialog_Greeting, "^", newline)

  • That data is in JSON format. You need to parse it into JSON object, then you will be able to extract the values.

    JSON parse AJAX.LastData
    Set variable to JSON.get("score_table.id")
    

    Notice that "id" is a number, but other values are strings, for example "position_y":"0". You will need to convert them to numbers using int() expression.

    Set var to int(JSON.get("score_table.position_y"))

dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 260 followers

Connect with dop2000

Trophy Case

  • 8-Year Club
  • Entrepreneur Sold something in the asset store
  • 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
  • Forum Wizard Made 5,000 posts in the forums
  • Forum Unicorn Made 10,000 posts in the forums
  • x5
    Popular Game One of your games has over 1,000 players
  • x2
    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
  • Steady Visitor Visited Construct.net 30 days in a row
  • Enduring Visitor Visited Construct.net 90 days in a row
  • Unrelenting Visitor Visited Construct.net 180 days in a row
  • Continuous Visitor Visited Construct.net 365 days in a row
  • RTFM Read the fabulous manual
  • x3
    Quick Draw First 5 people to up-vote a new Construct 3 release
  • x13
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

28/44
How to earn trophies