Files
tactical-shooter/package/dist/tools/node-tools.d.ts
T
shawn 91b878f347 Quaternius weapons, input fixes, sound & path fixes
- Added 6 Quaternius weapon models (Pistol, Revolver, Rifle, Shotgun, P90, SniperRifle)
- Created weapon resource files with balanced stats
- Wired Pistol + Rifle into player.tscn replacing Kenney blasters
- Fixed WASD input (matched input map action names)
- Fixed Escape key toggles mouse capture
- Added Audio autoload singleton
- Fixed broken sound asset paths across all scripts
- Fixed all scene ext_resource text paths (nested under assets/kenney-fps/)
- Fixed all .import source_file paths
- Deleted stale .import files (will be regenerated by editor on open)
2026-07-05 22:53:27 -04:00

66 lines
2.4 KiB
TypeScript

import type { GodotRunner, OperationParams, ToolDefinition } from '../utils/godot-runner.js';
export declare const nodeToolDefinitions: ToolDefinition[];
export declare function handleDeleteNodes(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleSetNodeProperties(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleGetNodeProperties(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleAttachScript(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleGetSceneTree(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleDuplicateNode(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleGetNodeSignals(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleConnectSignal(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
export declare function handleDisconnectSignal(runner: GodotRunner, args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
content: Array<{
type: "text";
text: string;
}>;
isError: boolean;
}>;
//# sourceMappingURL=node-tools.d.ts.map