aresrpg / aresrpg-dapp

Aresrpg's decentralized web application
https://app.aresrpg.world
3 stars 4 forks source link

Turn based fight system with spells, life, pathfinding etc.. (serverside) #35

Open Sceat opened 10 months ago

etienne-85 commented 3 months ago

world usage example:

import { biome_mapping_conf, sea_level, world_patch_size, } from './world_settings.js'

const init_world = () => { BlocksPatch.patchSize = world_patch_size Heightmap.instance.heightmap.params.spreading = 0.42 // (1.42 - 1) Heightmap.instance.heightmap.sampling.harmonicsCount = 6 Heightmap.instance.amplitude.sampling.seed = 'amplitude_mod' // Biome (blocks mapping) Biome.instance.setMappings(biome_mapping_conf) Biome.instance.params.seaLevel = sea_level }

init_world()