Skip to content

Releases: glacier-modding/io_scene_glacier

v0.3.0

30 Aug 02:39
Compare
Choose a tag to compare

New Features

Scene exporting

  • Added scene export mode which automatically generates the following file types:
    • .texture.tga and .texture.tga.meta.
    • .prim and .prim.meta.json.
    • .material.json.
    • .entity.json (for the geomentity files).
    • .aloc (if the model has collision).

The scene export mode is limited to exporting meshes with predefined materialclasses which are basicmaterial, basicmaterial_glass and basicmaterial_mirror.

  • basicmaterial uses diffuse, specular and normal.
  • basicmaterial_mirror uses diffuse, specular and normal.
  • basicmaterial_glass is configured to use textures from the game instead (you'll have to modify the template json directly to change this behaviour).

You may add more material templates in the file_mat/materials folder if you wish. You can also customise material properties in the "Prim Material Properties" section in the "Material" tab:
image

If you don't specify a specular and normal texture while using the basicmaterial materialclass you may need to also change some of the material properties to make it render correctly in-game like "Diff_Albedo_Value".

Bug Fixes

  • Fixed exporting meshes with flat 2d planes.
  • Fixed exporting meshes with a 0 scale on one axis.

v0.2.1

09 Jul 13:37
Compare
Choose a tag to compare
  • Fixed the threshold for the high resolution flag when exporting PRIMs. It was set to 100 instead of 100000 vertices for testing purposes.
  • Added the ability to save presets in the PRIM exporter.
  • Added an option to force the PRIM to be saved with the high resolution flag set.1
  1. This is only really for testing but if you are getting the following error "OverflowError: int too big to convert" when exporting a PRIM you can try exporting with this option enabled.

v0.2.0

09 Jul 05:50
Compare
Choose a tag to compare
  • Added ALOC collision support for both static and rigidbody using PhysX.
  • Changes made using modifiers are now included in the exported PRIM.
  • Meshes no longer get triangulated (Only in the exported PRIM itself now).
  • PRIM export optimisations.

v0.1.1

27 Nov 16:56
Compare
Choose a tag to compare
  • Fix zbias and zoffset properties

v0.1.0

27 Nov 16:37
9b21b20
Compare
Choose a tag to compare
  • Initial Release