Skip to content

Instantly share code, notes, and snippets.

View akderebur's full-sized avatar

Burak Akdere akderebur

View GitHub Profile
@akderebur
akderebur / Program.cs
Created August 10, 2020 16:18
Very crude OBJ exporter for GoW 2018 that needs a lot of work. Only vertex position and indices. Most of the meshes won't be loaded because of wrong offset/file being read. It will just export the base meshes in most cases.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace GowObj
{
class Program
{
@akderebur
akderebur / Program.cs
Created September 9, 2018 19:11
Wildstar M3 Model Load/Export
using System;
using System.IO;
using System.Text;
namespace M3Exporter
{
class Program
{
static void Main(string[] args)
{