dop2000's Recent Forum Activity

  • The easiest method is to use MoveTo behavior, it supports waypoints.

    Sprite Move to A (add waypoint)

    Sprite Move to B (add waypoint)

    Sprite Move to C (add waypoint)

    ...

    Sprite On Arrived - repeat from the beginning

  • Of course you can. Use JSON.ToCompactString expression.

  • No, sorry. I hope you made a backup copy.

  • This likely means that you have two different objects with the same name in your projects. For example, Player sprite - in one project it has 8direction behavior, and in another Platform behavior. Or in one project it has "health" instance variable, and in another project doesn't.

    In this case Construct can't paste objects between projects.

    You can try selecting and copying small groups of objects from the layout and pasting them on a blank layout in another project. If there are no error, try another group, until you find the object that is incompatible.

  • Check that the player sprite is not set as Global in the properties panel.

    If this doesn't help, run the game in Debug Mode (Shift+F4) and check the player object.

  • If you are talking about 500MB of image files, they will take much more than 1GB when if you load them all into memory, likely 10GB or more.

    You will need to carefully manage the graphics - load only necessary images and unload those that are no longer needed.

    You can estimate memory usage by placing a few sprites with animations on a blank layout and running it in Debug Mode.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Manually put all sprites from the family on an unused layout. Select all these sprites, right-click on one of them (which will be parent) and choose Hierarchy -> Add selection.

    Then select all children (without the parent) and untick all these checkboxes for them. Because you are using this hierarchy just to create them all at once, you don't want to sync any properties.

    Then use this action to create all sprites at once:

    Create ParentSprite at X,Y Create Hierarchy=Yes

    Make sure you don't have these sprites on other layouts.

  • If all members of the family have names like Obj1, Obj2, Obj3... then you can create them by name:

    For "n" from 1 to 10 : Create "Obj"&loopindex

    Another workaround is to manually create a hierarchy with all family objects on an unused layout. Then you can spawn this entire hierarchy in runtime, which will create all objects at once.

  • Technically it's not a bullet, it's a ray. Use Line Of Sight behavior, cast a ray and draw a line in that direction.

    There are a few examples in C3, check them out:

    editor.construct.net

    editor.construct.net

  • If you did upload c3p file, it should be available for download to anyone on the game page.

  • Save the speed from a previous tick in a variable, for example:

  • Firstly, you can't load that JSON into a dictionary, you will have to parse it into a JSON object.

    Construct expressions (like random or choose) can't be used inside the JSON string. If you need to pick a random value between three values (20, 50 or 1), you will have to add an array in JSON:

    {
    	"apples": {
    		"number_of_seeds": [50, 20, 1]
    	}
    }
    
dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 279 followers

Connect with dop2000

Trophy Case

  • 10-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
  • x14
    Great Comment One of your comments gets 3 upvotes
  • Delicious Comment One of your comments gets 10 upvotes
  • Email Verified

Progress

30/44
How to earn trophies