Make your own custom desert based map in BeamNG V.27 - Johnson Valley Template

Поделиться
HTML-код
  • Опубликовано: 29 янв 2025

Комментарии • 31

  • @dirtpaw25
    @dirtpaw25 2 года назад +9

    By far the best tutorial for this I've watched! Thank you so much, version .27 has been a pain for me so far with all the caching issues lol

    • @pix3lmonkey
      @pix3lmonkey  2 года назад

      I'm glad you found it useful. Are there any other topics you're interested in learning more about? I might try to cover a couple more things in the next one.

    • @dirtpaw25
      @dirtpaw25 2 года назад +1

      @@pix3lmonkey For me personally, if there would be a way to shed some like on making a heightmap from scratch that'd be sweet. I can kinda get by by greyscaling a colored overlay (Google maps screenshot) and changes the color levels but the problem is it gets so pixilated. Every time I've imported it they map has an insane amount of noise and spikes so it end up wasting a lot of time trying to clean and level it all out.

    • @pix3lmonkey
      @pix3lmonkey  2 года назад +1

      @@dirtpaw25 Make sure you are working in 16-bit greyscale when doing heightmaps. The jaggies and spikes are usually due to images accidentally being converted to 8-bit in the production path. As far as generation goes, there are a number of landscape creation tools out there. World Machine is probably one of the most popular overall. You should be able to find some world machine specific tutorials here on YT, but maybe I'll put one together some day as well.

    • @iRicardoTM
      @iRicardoTM Год назад

      @TalksWithNoiseRC I've been learning World Machine, is a nice software for making heightmaps and texturizing them. The downside is that the free version only can export up to 1024x1024.

  • @Knel_
    @Knel_ 10 месяцев назад

    Legend, I can't wait to start editing my own map based on Beams Johnson Valley! Thank you!

  • @iRicardoTM
    @iRicardoTM Год назад +5

    Very good tutorial, thank you! It would be nice to have one about making the textures or/and the road layouts.

  • @kwailintube
    @kwailintube 2 года назад

    I absolutely concur with the other comments. Thank you for sharing your knowledge! Much appreciated!

  • @douglasdtlltd
    @douglasdtlltd Год назад +1

    Im having a very hard time understanding how to make a map without a heightmap or the overall base texture. I want to be able to free form my terrain with the editor tools and save it, but I have not been able to do this. I'd like to create a new blank map, but your video is the closest I have gotten, but i can't get there. Also there seem to be no textures for the individual materials, only the base texture for the whole map. I'm using hirochi raceway.

  • @therealjamespickering
    @therealjamespickering 8 месяцев назад

    Is there any way to recover a project map that won't open? I think I cleared the cache without realising that it would affect the changes I had made.

  • @Knel_
    @Knel_ 10 месяцев назад

    I started my own MAP exactly as Pixel showed, and i built my own short course track and started a desert section, then my FPS went to 30 from 200+. I can't find a bug or anything. Does anyone have any suggestions? Also, now at 30FPS, the map flickers, but when i go into a BeamNG designed map, it's back to normal 200+ FPS.

  • @Dialed
    @Dialed Год назад

    Help please. I've tried twice and I can not get the map to show up in beam. I've tried activating all mods and still no luck. I am on version 0.30. the only difference I see is that when I open my mods folder I have a folder called "repo" and all mods are in that. Any help or advice would be appreciated. Thank you

    • @teambeer6597
      @teambeer6597 Год назад

      make a folder called "unpacked" on the same level as repo

  • @itsmokieking
    @itsmokieking 2 года назад

    Great video answered so many questions super helpful.

  • @mrmahmoudshehab123
    @mrmahmoudshehab123 2 года назад

    Great video answered many questions, thank you

  • @therealjamespickering
    @therealjamespickering Год назад

    I've been working on a map of my own, but it seems like a recent update has removed everything I have done. Do you know how I might restore what I've done so far? Any help would be greatly appreciated.

    • @zdanger2kz
      @zdanger2kz Год назад

      it's in your cache folder in beamng

  • @alexebird
    @alexebird Год назад

    This is really helpful, thank you. How did you make the Idaho base terrain files?

  • @axuriffgaming
    @axuriffgaming Год назад

    Thank you very much for sharing! This should level up my overall content making. New sub here! 💥✌

  • @creamyvr3659
    @creamyvr3659 Год назад

    can I get a 3d model obj and textures of johnson?

  • @MrLarsalexander
    @MrLarsalexander 2 дня назад

    You should noe name the new base texture the same as the original. Better to call it satellite image or T_Colormap_base

  • @93cutty
    @93cutty 8 месяцев назад

    I am very lazy and made a batch file to delete everything inside all of the forest json files. If you create a new text file, save it as Clear.bat and then edit it, you can put in
    @echo off
    for %%i in (*.*) do type NUL > "%%i"
    Save it, then run the batch and it made all of the files in there blank

  • @3lgonView
    @3lgonView Год назад

    Great tutorial. Your patron doesn't seem to be working though

  • @sw1246
    @sw1246 2 года назад

    WHAT IS THE CAR IN THE THUMBNAIL? NICE VIDEO BTW VERY HELPFUL
    Edit: oops caps

  • @hesoyamsan8945
    @hesoyamsan8945 Год назад

    To delete all file contents in files you can use this pyton script. Just put in folder with *.json files and start
    import os
    import json
    current_directory = os.path.dirname(os.path.abspath(__file__))
    file_list = os.listdir(current_directory)
    empty_string = str()
    for filename in file_list:
    if filename.endswith(".json"):
    file_path = os.path.join(current_directory, filename)
    with open(file_path, "w") as file:
    file.truncate(0)

  • @vincepale
    @vincepale Год назад +1

    I'm following along. Here's a powershell script you can use to empty out all of the .json files, like in the forest step. EDIT: Run them after you `cd` into the right directory, or launch PowerShell in the proper folder/directory
    Get-ChildItem *.json | ForEach-Object { Clear-Content $_.FullName }
    And here's a bash version for Mac/Linux peeps: for f in *.json; do > "$f"; done

    • @chroumet
      @chroumet Год назад

      Thanks m8 saved me some time :D

    • @rainbowoof
      @rainbowoof Год назад

      It does nun

    • @vincepale
      @vincepale Год назад

      @@rainbowoofYou might be able to adapt it to work, or have Bard / ChatGPT check it and walk through it / give the AI your error message and explain what you want to acomplish and it should be able to fix it for you.

  • @pdeswardt
    @pdeswardt 2 года назад +2

    Good way to blank out all files at 14mins in is to use this REGEX in Find-> Replace -> Find in Files. It takes about 10 seconds to complete : ^.*$\R