91b878f347
- 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)
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
import type { GodotRunner, OperationParams, ToolDefinition } from '../utils/godot-runner.js';
|
|
export declare const projectToolDefinitions: ToolDefinition[];
|
|
export declare function handleListProjects(args: OperationParams): Promise<{
|
|
content: Array<{
|
|
type: "text";
|
|
text: string;
|
|
}>;
|
|
isError: boolean;
|
|
} | {
|
|
content: {
|
|
type: string;
|
|
text: string;
|
|
}[];
|
|
}>;
|
|
export declare function handleGetProjectInfo(runner: GodotRunner, args: OperationParams): Promise<{
|
|
content: Array<{
|
|
type: "text";
|
|
text: string;
|
|
}>;
|
|
isError: boolean;
|
|
} | {
|
|
content: {
|
|
type: string;
|
|
text: string;
|
|
}[];
|
|
}>;
|
|
export declare function handleGetProjectFiles(args: OperationParams): Promise<{
|
|
content: Array<{
|
|
type: "text";
|
|
text: string;
|
|
}>;
|
|
isError: boolean;
|
|
} | {
|
|
content: {
|
|
type: string;
|
|
text: string;
|
|
}[];
|
|
}>;
|
|
export declare function handleSearchProject(args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
|
|
content: Array<{
|
|
type: "text";
|
|
text: string;
|
|
}>;
|
|
isError: boolean;
|
|
}>;
|
|
export declare function handleGetSceneDependencies(args: OperationParams): Promise<import("../utils/godot-runner.js").ToolResponse | {
|
|
content: Array<{
|
|
type: "text";
|
|
text: string;
|
|
}>;
|
|
isError: boolean;
|
|
}>;
|
|
export declare function handleGetProjectSettings(args: OperationParams): Promise<{
|
|
content: Array<{
|
|
type: "text";
|
|
text: string;
|
|
}>;
|
|
isError: boolean;
|
|
} | {
|
|
content: {
|
|
type: string;
|
|
text: string;
|
|
}[];
|
|
}>;
|
|
//# sourceMappingURL=project-tools.d.ts.map
|