▫️Import

import - Import/reimport animset animation

Description

The import command imports an .re animation file into an existing .anims animation set file. Optional parameters include specifying an existing animation name to rename inside the animset file (otherwise the filename of the .re animation file is used) or specifying a different output path (default is overwrite).

Synopsis

Usage:
    redmod import -gameRoot=<depot> -inputPath=<file> -animset=<resource-path> [options]​
    
Arguments:
    -gameRoot=<depot>
    -inputPath=<file>
    -animset=<resource-path>
    
​Options:
    -outputPath=<resource-path>
    -animationRename=<name>
    -h, --help

It is best to name .re animation correctly even if you replace an existing animation, because the imported animation will always have the filename of the .re file.

Arguments

Directory-path to the depot for animset and output (e.g. C:\modding\depot)

This is the base depot from which relative <resource-paths> are loaded.

You need to have the .rig file used by the .anims animationset present in your depot path.

Absolute path to the animation .re file

Resource .animset file to use

Resource path must start with base\ (e.g. base\animations\npc\generic_characters\male_average\open_world\generic_male_average__stand__rh_cane_lh_cigar__01.anims)

Options

Resource .anims file name to write, default is to overwrite the input animset (resource path must start with base\)

Parameter representing the old name of animation to be replaced by the new animation (default is the filename of the .re animation file)

The imported animation will always have the filename of the .re file even if you specify the animationRename parameter.

Prints out a description of how to use the command.

Examples

Imports the animation file E:\raw files\animtest1\macarena_long (1).re into the animset file E:\modding\depot\base\animations\npc\generic_characters\male_average\open_world\generic_male_average__stand__rh_cane_lh_cigar__01.anims and replaces the animation with the name stand__rh_cane_lh_cigar__01__smoke__02 with the name macarena_long (1). The result is saved to to E:\modding\depot\base\out\new_test.anims.

Last updated