Search Unity

Fractscape

Discussion in 'Made With Unity' started by Eric5h5, Jan 29, 2008.

  1. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    Holy necropost, Batman! (It's OK to necropost your own topic, right?) Fractscape 1.6 is available now, so if you have Mavericks and were not happy to find that Fractscape stopped running, well, it should work again. Thanks to a rebuild with Unity 4. While I was at it I did an actual update too, with some polishing and bugfixing and stuff. Also there's a Linux version now. The only potential downside is that files saved with older versions of Fractscape tend to result in somewhat different terrains, due to not being able to use Random.Range in threads anymore for some reason, so I had to use a different method which doesn't give the same results.

    --Eric
     
  2. Whippets

    Whippets

    Joined:
    Feb 28, 2013
    Posts:
    1,775
    Nice tool XD
    Is there any way to cut off at sea level, and not save anything below that, so it doesn't necessarily make a square mesh?
     
  3. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    Terrains aren't meshes at all, they're heightmaps, so it's required that they are square. You could potentially use a depthmask shader on a plane to mask out stuff below the plane.

    --Eric
     
  4. Whippets

    Whippets

    Joined:
    Feb 28, 2013
    Posts:
    1,775
    I was saving them out as mesh obj files, not using them as terrains - which is why I wondered if they could be cut off at sea level, rather than continuing. I'm making sky-islands, and this is almost the perfect tool for the job. If I can cut off the area below sea level, it would be 100% the perfect tool for sky-islands.
     
  5. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    Sure, if you're exporting as .obj, then you can cut the meshes off at sea level in whatever 3D modeling app you're using.

    --Eric
     
  6. Angry-Moose

    Angry-Moose

    Joined:
    Sep 22, 2015
    Posts:
    3
    Can it be used to dynamically import terrain from a file on the file system at runtime? Or is this purely for in-editor use?
     
  7. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    Neither; it's a stand-alone app.

    --Eric
     
  8. lod3

    lod3

    Joined:
    Mar 21, 2012
    Posts:
    676
    Hi, Eric.

    Sorry to necro, but after hours of Googling, this post of yours was the closest to what I'm looking for. You mentioned Fractscape had a feature to clamp borders of an existing terrain to the same height. Does Fractscape still do this? Is there another tool that might do this as well?
     
  9. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    Yep, still does it.

    --Eric
     
  10. lod3

    lod3

    Joined:
    Mar 21, 2012
    Posts:
    676
    Thank you for the reply. Tried the demo, but cannot seem to import 1:1 (or anything remotely close). Always comes in looking like a generic terrain with some random noise creating mounds everywhere, and not the detailed island terrain I exported as .raw from Unity.
     
  11. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    The main idea of Fractscape is that it's not supposed to be the same and that if you import a heightmap it's an influencer, but in those cases where you want the heightmap as-is, change the h.map res in the controls to be the same as the terrain res.

    --Eric
     
  12. slashware

    slashware

    Joined:
    Feb 17, 2017
    Posts:
    2
    Not sure if this is helpful at all, but here's the ApplySplatmap script ported to CS

    I also changed the check from ARG32 to RGBA32, since that's the option I'm getting in latest Unity.
     

    Attached Files:

  13. slashware

    slashware

    Joined:
    Feb 17, 2017
    Posts:
    2
    Getting this error when trying to save the .fractscape file, any thoughts?
     

    Attached Files:

  14. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    It does a try/catch when opening a Streamwriter for saving that file, so that's an OS error. Some searching suggests a possible cause could be not having correct file permissions. Does it work if you try saving somewhere else?

    --Eric
     
  15. naemihan

    naemihan

    Joined:
    Mar 28, 2020
    Posts:
    28
    I'm trying to import a PNG heightmap I made in photoshop. Fractscape say "The file doesn't seem to be a valid PNG file". What's valid to Fractscape ? Is there a size limit maybe ?
     
  16. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    That specific error only occurs if the width is 8, which is a hack to deal with the fact that the WWW class doesn't have a good way to deal with some errors (it makes a 8x8 "question mark" texture in that case rather than returning an error). So it's possible you're attempting to use a width of 8, but if not, then it means something went wrong and Unity can't load the PNG file. If you're saving it from Photoshop normally, try exporting for the web instead. Although really you're better off using a raw file anyway. Other than that, make sure you've read the part in the docs about importing heightmaps.

    --Eric
     
  17. naemihan

    naemihan

    Joined:
    Mar 28, 2020
    Posts:
    28
    Hi Eric, thanks for your response.
    I was trying to import a height map in Fractscape, not Unity. So the error is in Fractscape.
    Finally I imported my height map in Unity instead, which worked.
     
  18. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    Yes, I know...that's what I was replying to. I programmed Fractscape using Unity.

    --Eric
     
  19. SteveKouts

    SteveKouts

    Joined:
    Aug 23, 2012
    Posts:
    79
    Is Fractscape no more? If not where to find it?
     
  20. Eric5h5

    Eric5h5

    Volunteer Moderator Moderator

    Joined:
    Jul 19, 2006
    Posts:
    32,401
    It's no more, sorry.

    --Eric
     
    SteveKouts likes this.