




Quote from: Adrenaline on Oct 31, 2025, 03:58 AMIs there any way that the transmitted objects can only appear in specific worlds?no, only streamed objects able to.
Quote from: vitovc on Oct 29, 2025, 06:04 PMno, streamed objects is only way to do it correctly. objects from .xml can be visually hidden as being 'timed objects' but as i remember collision will be appearIs there any way that the transmitted objects can only appear in specific worlds?
class B extends Sqoin {
constructor() {
local logger = get("Logger");
logger.log("B");
}
}
module.factory("Logger", function(sqoin, args) {
return Logger(args.id);
}, {
id = 1
});
local logger1 = Sqoin.get("Logger");
local logger2 = Sqoin.get("Logger", {
id = 2
});