@gwigz/homunculus-core
Version:
A third-party framework for interacting with Linden Lab's virtual world "Second Life"
52 lines (51 loc) • 1.5 kB
TypeScript
/**
* ObjectDuplicate Packet
*
* This file is used to help our packet serialization and deserialization
* process, and to create new packets on the fly.
*
* ⚠️ Do not edit this file manually, it is generated by the `codegen` script!
*
* @see {@link http://wiki.secondlife.com/wiki/Message_Layout}
*/
import { U32, UUID, Vector3 } from "../types";
import { type PacketMetadata } from "./packet";
export interface ObjectDuplicateData {
agentData: {
agentId?: string;
sessionId?: string;
groupId: string;
};
sharedData?: {
offset: Vector3;
duplicateFlags: number;
};
objectData?: {
objectLocalId: number;
}[];
}
export declare const objectDuplicateMetadata: {
id: number;
name: string;
frequency: 2;
compression: true;
blocks: ({
name: string;
parameters: [string, typeof UUID][];
multiple?: undefined;
} | {
name: string;
parameters: ([string, typeof U32] | [string, typeof Vector3])[];
multiple?: undefined;
} | {
name: string;
parameters: [string, typeof U32][];
multiple: true;
})[];
};
export declare const objectDuplicate: (data: ObjectDuplicateData, reliable?: boolean) => {
data: ObjectDuplicateData;
reliable: boolean | undefined;
metadata: PacketMetadata;
};
export declare const createObjectDuplicateDelegate: (config: Omit<import("..").DelegateConfig<ObjectDuplicateData>, "metadata">) => void;