dop2000's Recent Forum Activity

  • Awesome, thank you!

  • Javanie Thank you so much for the detailed answer!

    Do you know how long can the video stay preloaded?

    For example, if I preload the video at the beginning of level 1, and player decides to watch it only at level 20 (one hour later). Will it work, or does it get expired after some time and I need to preload again?

  • 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

  • Mayfly Did you set "Bullet=yes" in physics properties for balls?

    Well, you can "cheat" and adjust the ball trajectory after the collision. Before the shot save reflection angle in a variable. When the two balls collide, adjust ball2 velocity, making it move at previously calculated angle.

  • Try this:

    dropbox.com/s/18y7yfqblepwamc/pac-disk2.c3p

    It works much better in my tests.

    I would also suggest improving controls, making them analogue. Instead of "simulate control" action, use "Set vector" actions, applying more speed if the phone is tilted more.

    Physics also should work quite well, check out this demo I made some time ago:

    dropbox.com/s/02a1f7dhyeklnlw/BounceBall_2Examples.capx

  • Many events in Construct pick instances.

    For example, "Icon is visible" event will pick all instances that are visible.

    Or "On clicked icon" will pick one clicked icon instance. Everywhere inside this event "icon" will refer to that one picked instance.

    If you want to pick another instance or instances in the same event, and work with both picked scopes independently, use the trick with a family:

    Pick Icon
     Pick IconFamily 
    	.... do something with icon instances
    	.... do something with IconFamily instances
    
  • From the documentation:

    You can leave it at 0 if you don't need it.

  • You can use a family to pick another instance of the same object in one event. Add icon sprite to a family and you can do this:

    Pick Icon
     Pick IconFamily where IconFamily.IID=(Icon.IID-1)
    	Set Icon scale to 1.2
    	Set IconFamily scale to 0.8
    

    Picking by IID will only work correctly if you created icons in the correct order. It may be easier to use an instance variable, e.g. "Pick IconFamily where IconFamily.Day=(Icon.Day-1)"

  • Sure.

  • This is either a bug, or you are doing something wrong. Please post your code or the project file.

  • When players die in my game, I want to give them an option to watch a rewarded video and continue playing. What is the correct way to do this?

    Do I need to preload the rewarded video in advance? If yes, when is the best time to preload - at the moment the player dies, or earlier? Maybe even at the beginning of the level?

    If I choose to always preload rewarded videos on every level, but my players rarely agree to watch them - can it cause problems with AdMob or other ad networks?

    If I don't preload them, will there be a long delay before the video starts playing?

dop2000's avatar

dop2000

Member since 26 May, 2016

Twitter
dop2000 has 262 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