Home

Awesome

VGO

VGO is a new type of 3D data format.

3D Model VGO license wiki

Features

Experiments

Translation

Japanese.

File extension

extensiondescriptionrequired
.vgoThis is a VGO file.true
.vgkIt is a key file to decrypt the encrypted VGO file.false
(.bin)Resource file.false

Tools

UniVGO

UniVGO Unity C#

A tool for creating/exporting/importing/loading VGO file.

You can easily export a VGO file with the click of a button.

image1

You can easily import and restore VGO files by just placing them in Assets.

image2

You can easily run-time load a VGO file by writing a few scripts.

    using System;
    using UnityEngine;
    using UniVgo2;

    public class VgoRuntimeLoader : MonoBehaviour
    {
        [SerializeField]
        private string _FilePath = string.Empty;

        private readonly VgoImporter _VgoImporter = new();

        private VgoModelAsset? _VgoModelAsset;

        private void Start()
        {
            _VgoModelAsset = _VgoImporter.Load(_FilePath);
        }

        private void OnDestroy()
        {
            _VgoModelAsset?.Dispose();
        }
    }

Wiki


Last updated: 4 November, 2024
Editor: Izayoi Jiichan

Copyright (C) 2020 Izayoi Jiichan. All Rights Reserved.