dop2000's Recent Forum Activity

  • COLLISIONS / OVERLAPPING

    CAPX Detecting the exact point of collision between two large objects.

    C3P Prevent from overlapping another object while dragging.

    C3P Lasers hitting obstacles. Raycasting feature of LOS behavior.

    CAPX A method of faking destructible ground with mask sprites, and using 'laser ray' to detect new terrain. C2 version without raycasting.

    CAPX Spawn objects randomly without overlapping, two versions.

    COLORS

    C3P Smooth tinting of the entire screen with selected color.

    C3P HSV color picker tool.

    TILEMAPS

    CAPX "Flooding" a dungeon tilemap, detecting rooms and walls.

    CAPX Flood fill a tilemap.

    CAPX Flooding a terrain heightmap.

    CAPX Simple 3D shadow effect for a tilemap.

    CAPX Create a destructible terrain as in Scorched Earth with a tilemap.

    QUIZ / WORD / MATH GAMES

    CAPX Word game - fill in the missing word in a sentence.

    CAPX Simple quiz game with questions and answers loaded from a text file.

    CAPX Math game - quickly type answers to math questions.

    PATHFINDING

    CAPX Pathfinding on a hex grid.

    CAPX Using an invisible tilemap as an obstacle map for pathfinding.

    CAPX Pathfinding - instantly and constantly showing path to cursor position.

    MINIMAP / ZOOMING ON MAP

    CAPX Zooming a portion of the map.

    CAPX Minimap - clicking on minimap scrolls to this position on a bigger map.

    SCROLLING LIST / MENU

    CAPX1 Scrolling a list of players, scores, images etc. Includes a version with multiple columns.

    If you would like to support or hire me, please click here

  • PLATFORM

    CAPX Platform - leave blood trail on floors and walls

    CAPX Platform - wall jumps with decreasing height, camera scrolling/panning effects. (someone else's project with my edits)

    CAPX Platform - push boxes

    CAPX Platform - fake 3D shadow on the ground

    CAPX Change magnitude and direction of a swinging rope (useful for making a grappling hook)

    CAPX Climbing a moving/swinging rope (for example in a platform game)

    RPG / INVENTORY / SHOP

    C3P Simple stacking inventory system.

    CAPX Platformer game about an archer. Includes in-game shop with different items sold on different levels. Simple CSV database of shop items and weapons. (requires CSV addon)

    CAPX Distribute skill points in an RPG game.

    PHYSICS

    C3P Physics puzzler - move and re-arrange blocks with mouse or touch, with snapping to grid.

    CAPX Physics - ball attracted to mouse cursor

    CAPX Physics game - catch apples with a bucket.

    CAPX Physics game - draw lines to catch falling objects.

    BULLET / OTHER MOVEMENT

    C3P Bullet with long trail - two example, with and without stepping.

    CAPX Car moving on a predefined path using waypoints (hold Space).

    CAPX Relative movement on another moving object.

    CARD AND PUZZLE GAMES

    CAPX and C3P Template for a card game – shuffling a deck of cards, dealing cards from the deck to two players, automatically sorting and arranging player’s cards. (C2 version requires MoveTo addon)

    CAPX Simple "Loop" game demo - click on the tiles until they line up correctly. Includes two versions, the one with sprites supports smooth rotation.

    If you would like to support or hire me, please click here

  • Over the past several years on this forum I’ve created hundreds of example projects. I noticed that I often repost links to the same projects, and I’ve been thinking of organizing and indexing them for quite a while.

    dazedangels encouraged me to finally do this, and kindly offered to host demos for some of these projects on her website. I will update the post with the links as she adds them.

    Please note that this is simply a collection of some random ideas and bits of code. Not all examples are good. I don’t recommend them for learning Construct, please use the official templates and tutorials!

    I will have to split the list into multiple comments because of the character limit.

    VIRTUAL JOYSTICK / THUMBSTICK

    CAPX and C3P Two virtual thumbsticks.

    CAPX Virtual thumbstick to control a character with 8direction behaviour.

    CAPX Floating thumbstick.

    CAPX Horizontal only thumbstick, controlling a car.

    CONTROLS

    CAPX Customizable rotating knob controls.

    C3P Move a sprite by repeatedly pressing two keys.

    CAPX Rotate an object by touching any part of the screen.

    CAPX Correctly detect gamepad events in your game. When pressing multiple gamepad buttons quickly, sometimes events "On button pressed" and "On button released" are not triggered. This demo provides a possible solution.

    CAPX Aiming with gamepad analogue stick or mouse.

    CAPX Force player to press a button on keyboard. Yes, it's possible!

    CUSTOM SLIDER BAR

    CAPX and C3P Custom horizontal and vertical slider bars for Construct 2/3.

    CAPX Controlling a slider bar with gamepad.

    ENEMY AI

    CAPX Enemies walking around walls (Metroid-style) or patrolling the perimeter. Does not require waypoints and supports high speeds.

    CAPX Platform - flying enemies that are patrolling, shooting and chasing the player. (someone else’s project which I helped to fix)

    CAPX Patrolling enemies, moving between waypoints.

    ARRAYS / DICTIONARIES / DATA

    CAPX Sorting 2-dimensional array by any column.

    C3P Export array data to CSV (Excel) file format.

    C3P Easily save lots of values in Local Storage – game progress, settings, coins or anything else.

    CAPX Connected listboxes - select category, select product, select model.

    Tagged:

  • Base64 is not a good choice, because it's very bloated. It's ok for small images, but a screenshot in Base64 format can be many megabytes.

    You can now post binary data to url with AJAX. But I don't know if Firebase supports this.

  • The shortest way is to use regex:

    System Compare two values
     RegexSearch(TextBox.Text, "[a-zA-Z]{3}_[a-zA-Z0-9]{6}","g")=0
     	-> Button set enabled
    

    Test how it works here.

    You can also use expressions like len(), mid() to check that the string has the correct structure, but this will require more effort.

    construct.net/en/make-games/manuals/construct-3/system-reference/system-expressions

  • A common practice is to put all buttons and controls on "UI" or "HUD" layer, set parallax to (0,0) and scale rate also to 0.

    This way it will not scroll or scale and all buttons will stay in the same place on the screen.

    If this isn't working for you, you must be doing something wrong. Please share your capx file.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • 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?

  • 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

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