• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

terrain generator

  1. danielpancake

    SOLVED ds_grid median filtering / terrain smothing

    Hello, Game Maker Community! I ran into problem with smooth terrain generation. Initially a had something like on the image below. This terrain was generated with using ds_grid_set_region and ds_grid_set_disk in random positions of ds_grid I should say, that I've tried using Perlin's noise...
  2. M

    Demo Godgen: Randomly Generated Terrains in under 4 hours

    So I was told to make a randomly generated terrain. I made this software in about 4 hours or so. It creates randomly generated worlds. I call it Godgen because the stuff it makes looks like the Fertile Crescent, the middle east, and the Bible is in the Middle East. And it automatically generates...
  3. Joe Ellis

    2D Destructible Terrain Starter Kit

    I've been making a destructible terrain engine and am planning on releasing on the marketplace soon for around $5. Features: Per pixel destructible world Per pixel precise collision Random\procedural terrain generation with multiple options for smoothness, altitude, grass length, slope...
  4. Cloaked Games

    Asset - Scripts [Jen_scripts] Procedural Terrain Generation

    [Jen_scripts v2.0] Asset for Procedural Terrain Generation Download: https://cloakedgames.itch.io/jen-scripts [Jen_scripts] Asset for Procedural Terrain Generation Created by Cloaked Games Jen_scripts is a GameMaker Studio 2 library designed for rapid prototyping and development of...
  5. RyanC

    Android Random Terrain Generator - 64x64 Without Floor Blocks?

    Hi everyone, Does anyone know how to make a random terrain that moves towards the player. It's a dash game so the player never moves on the x direction but the floor moves towards the player. I had it all done perfectly and looking really good but when tested on mobile it got max 20 fps so I...
  6. Imperial

    Legacy GM Terrain Generator Problem

    Generating Script var sh,ah,dirt_level,stone_level,adl,size; size = sprite_get_width(spr_ground); sh = room_height - 512; ah = sh; for(xx = 0; xx < room_width; xx += size) { dirt_level = ah + size * irandom_range(5,7); stone_level = room_height; object =...
  7. G

    Room size like Terraria.

    Hi everyone, I am creating a game more than anything to learn, like terraria, but I have a problem, I don't Know how render 10.000x10.000 objects array in the room as each object is a part of the map (land, water, sand ...). The main idea is to create a huge room and put a smaller view but may...
Top