Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
krypciak committed Feb 3, 2024
1 parent 2e08024 commit ce5b596
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions modules/impact.base.actor-entity.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,14 @@ declare global {
setDefaultConfig(this: this, config: ig.ActorConfig): void
setAttribute(this: this, key: string, value: unknown): void;
getAttribute(this: this, key: string): unknown;
getTarget(this: this): Optional<ig.ActorEntity>;
getTarget(this: this): Nullable<ig.ActorEntity>;
setAction(
this: this,
action: ig.Action,
keepState?: Nullable<boolean>,
noStateReset?: Nullable<boolean>,
): void;
getTarget(this: this): Nullable<ig.ActorEntity>;
cancelJump(this: this): void;
setAttribute(this: this, key: string, value: unknown): void;
getAttribute(this: this, key: string): unknown;
storeWalkAnims(this: this, name: string, config: ig.ActorEntity.WalkAnims): void;
setWalkAnims(this: this, config: string | ig.ActorEntity.WalkAnims): void;
storeWalkAnims(this: this, name: string, config: ig.ActorEntity.WalkAnims): void;
doJump(this: this, zVel: number, callbackHeight: number, maxVel: number, accelSpeed: Optional<number>, ignoreSounds: boolean): void
Expand Down

0 comments on commit ce5b596

Please sign in to comment.