blackopstexturecompiler


Black Ops Texture Compiler

Really easy-to-use texture converter for Black Ops

Features:

  • Presets for different types of textures
  • A build in 'install to black ops' function
  • Awesome GUI
  • Bulk list (for people with bad english: a list with tasks , in this case textures)
  • Resizing
  • Image > IWI conversion
  • IWI > Image Conversion

Also it's really easy to customize because of the really user friendly code,
You don't even need to have that much skill to create your own preset
Look at how easy the code is

//

// TextureCompiler
// (c) JariZ.nl 2011
//
// TextureCompiler.Presets.Background
// INFO: Background is a preset created for menu backgrounds or loading screens
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TextureCompiler;

namespace TextureCompiler.Presets
{
class Background : Texture
{
public override void PresetLoad()
{
//Preset Specific
this.PresetName = "Background/Loadscreen";

//Resize settings
this.Resize = true;
this.ResizeHeight = 1024;
this.ResizeWidth = 1024;

//Advanced Settings
this.UseCRCFix = true;
this.UseIWIFix = true;
this.InstallToBO = true;

//IWD Conversion
this.IWDDirectory = "images";
this.IWDConvert = true;
}
}
}

Project Information

The project was created on Jul 10, 2011.

Labels:
CSharp blackops callofduty texture material mods itsmods