-
Notifications
You must be signed in to change notification settings - Fork 17
Adding Models
Adding new effect models is quite simple.
Author your model in your 3D software of choice.
Export the model to KSP by going though Unity via PartTools, or by using the community developed exporter for Blender. Place it in GameData where it's easy to reference, I like GameData/MyModName/FX as a path
Use the model in an effect by specifying the path when authoring an EFFECT's MODEL block appropriately.
Create an empty configuration file anywhere in GameData, say GameData/MyModName/WaterfallModels.cfg.
Add entries for each model you want to use in the UI. path is the GameData relative path of your model. name is the UI name of the model, description is a short bit of text to show. workflow is which workflow you should use it with, values are Dynamic, Deforming, Billboards.
WATERFALL_MODEL
{
name = Simple
workflow = Deforming
path = Waterfall/FX/fx-simple-plume-1
description = Simple deforming plume with 3 bones
}