dop2000's Recent Forum Activity

  • Use double quotes:

    """This is a test"" the man said"
    
  • If you are making a game fully based on physics, you need to avoid using non-physics actions and behaviors. "Guard Set angle" action is not compatible with Physics, that's why guards are slipping through immovable objects.

    An easy and crude solution is to make the BarSlides wider. But the proper way to fix this is to get rid of "Set angle" actions and to rotate guards using physics actions only - set angular velocity or torque.

  • Sorry, I don't understand your issue #1. If you can't use a family, use "Create object (by name)" action.

    2) For scrolling to work you only need Camera sprite with ScrollTo behavior and one action - "Camera set position ...", copy it from my project.

  • Option to hide unused objects in inspector/debug view

    Yes! There are several existing similar ideas, you can vote for them:

    construct3.ideas.aha.io/ideas/C3-I-1591

    construct3.ideas.aha.io/ideas/C3-I-1382

    construct3.ideas.aha.io/ideas/C3-I-950

    construct3.ideas.aha.io/ideas/C3-I-1442

    Sibling relationship for Hierarchy

    Edit hierarchy relationships at runtime

    Isn't this already implemented?

    On tile created event

    I don't think this is needed. Also, since tilemaps can have many thousands or even millions of tiles, this event can be bad for performance.

    Background brightness for Tilemaps, similar to the Sprite Editor

    Not sure what you mean, what background brightness?

    crop images project-wide

    Why would you need to crop images on export? To remove unused transparent space? I think bulk-resizing all imaged in the project is a bad idea. This can potentially break lots of things in the game - collisions, image points, tilemaps, tiled backgrounds, effects etc.

  • 1. You can create object by name in Construct3. Use "System create by name" action, for example Create "Block" & BlockNumberVariable

    Or, to create a random object you can put them all in a family and use "Create family"

    2. Check this example:

    dropbox.com/s/7lztai8wou3xyjw/PinnedCamera2.c3p

  • By the way, your post gave me an idea to pin camera sprite to the player "rope-style". It works quite well:

    dropbox.com/s/w3bkeeqmspi913z/PinnedCamera.c3p

  • 1. Not sure what you mean. If you add many objects to a family, you can pick Family member by object name. For example:

    System Pick EnemiesFamily by evaluate EnemiesFamily.objectTypeName="ZombieSprite"

    2. Try moving the first four events on your screenshot to the bottom of the event sheet. Also, you need to use delta-time, and lerp for smoother scrolling.

    So, instead of "Rocket move 5px" use "Rocket move 300*dt pixels"

    Instead of "Set scroll X to scrollX+5" use "Set scroll X to lerp(scrollX, scrollX+5, 0.4)"

    You can try different values instead of 0.4

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Not sure I understand, can you post a picture?

    Maybe you can use one of the effects - for example Tint.

  • Why did you start a new post about the same issue?

    Your array has width=1 and height=7. So there is only 1 element (row) on X axis. In debug mode it's shown as "A,B,C,D,E,F,G", but in fact there are 7 elements on Y axis.

    You can right-click the table in the array editor and select "Transpose" to rotate the array.

  • This is not possible with events. You should be able to access variables by string name using scripting. I think it should be something like:

    runtime.objects.ObjName.getFirstInstance().instVars["varName"]

    Another option is to use a Dictionary instead of instance variables. In this case you can access dictionary key like this:

    Dictionary.Get("attack" & enemyType" & "OneLand")

  • When you do number1&number2, it performs a Boolean AND operation on them, and the result will be either 0 or 1.

    If you need to make a string, use "" & number1 & number2

    Also, you might probably want to separate numbers with a comma or some other character:

    "" & number1 & "," & number2

  • I know what you mean. You can make particles sprite with the same colors used in the sprite you want to explode, or maybe even with small pieces of the original image.

    dropbox.com/s/3hteq4egwd3xdny/SpriteDestroyIntoPieces.c3p

    If you want an accurate explosion effect like this (sorry, couldn't find a better example), you'll have to do it the hard way - cut the image into many pieces in editor, create a sprite with these pieces, arrange them properly on the layout. When the object explodes, move the pieces to the object position, enable Bullet with angle of motion directed from the center of the explosion.

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