/**
* MIT License
*
* Copyright (c) 2022 JabDoesThings
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
/** @noSelfInFile */
///
declare module '@shughesuk/pipewrench' {
export namespace zombie.core.skinnedmodel.animation.debug {
/**
* @customConstructor AnimationPlayerRecorder.new
* @
* [CLASS] zombie.core.skinnedmodel.animation.debug.AnimationPlayerRecorder
*/
export class AnimationPlayerRecorder {
/**
* Constructors:
* - (IsoGameCharacter arg0)
*/
constructor(arg0: zombie.characters.IsoGameCharacter);
/**
* Method Parameters:
* - (int arg0): void
*/
beginLine(arg0: number): void;
/**
* Method Parameters:
* - (Empty): void
*/
discardRecording(): void;
/**
* Method Parameters:
* - (Empty): void
*/
endLine(): void;
/**
* Method Parameters:
* - (Empty): zombie.characters.IsoGameCharacter
*/
getOwner(): zombie.characters.IsoGameCharacter;
/**
* Method Parameters:
* - (Empty): boolean
*/
isRecording(): boolean;
/**
* Method Parameters:
* - (State arg0, List arg1): void
*/
logAIState(arg0: zombie.ai.State, arg1: java.util.List): void;
/**
* Method Parameters:
* - (ActionState arg0, List arg1): void
*/
logActionState(arg0: zombie.characters.action.ActionState, arg1: java.util.List): void;
/**
* Method Parameters:
* - (LiveAnimNode arg0): void
*/
logAnimNode(arg0: zombie.core.skinnedmodel.advancedanimation.LiveAnimNode): void;
/**
* Method Parameters:
* - (AnimState arg0): void
*/
logAnimState(arg0: zombie.core.skinnedmodel.advancedanimation.AnimState): void;
/**
* Method Parameters:
* - (List arg0, int[] arg1, float[] arg2, Vector2 arg3): void
*/
logAnimWeights(arg0: java.util.List, arg1: number[], arg2: number[], arg3: zombie.iso.Vector2): void;
/**
* Method Parameters:
* - (Empty): void
*/
logCharacterPos(): void;
/**
* Method Parameters:
* - (IAnimationVariableSource arg0): void
*/
logVariables(arg0: zombie.core.skinnedmodel.advancedanimation.IAnimationVariableSource): void;
/**
* Method Parameters:
* - (boolean arg0): void
*/
setRecording(arg0: boolean): void;
/**
* @noSelf
*
* Method Parameters:
* - (String arg0, boolean arg1, Consumer arg2): java.io.PrintStream
*/
static openFileStream(arg0: string, arg1: boolean, arg2: java.util._function_.Consumer): java.io.PrintStream;
}
}
}