SpacetimeDB
SpacetimeDB copied to clipboard
Multiplayer at the speed of light
In #2626 I have splitted the macro code in input and output regions so that it can be understood better. I would like to propose that the input region (TableArgs...
# Description of Changes I've splitted the rust macro code into an input and output region so that it can be unterstood better. The best way to review this is...
# Description of Changes Making `Timestamp` and `TimeDuration` implement `FilterableValue`. This resolves https://github.com/clockworklabs/SpacetimeDB/issues/2650 # API and ABI breaking changes API change is additive in this case, I'm not marking this...
On https://spacetimedb.com/docs/modules/c-sharp/quickstart The below code does not compile: ```csharp [Reducer] public static void SetName(ReducerContext ctx, string name) { name = ValidateName(name); var user = ctx.Db.user.Identity.Find(ctx.Sender); if (user is not null)...
I have a table: ```c# [Table(Name = "User", Public = true)] public partial class User { [PrimaryKey] public Identity Identity; public string? Name; public string? AvatarB64; public bool Online; }...
# Description of Changes # API and ABI - [ ] This is a breaking change to the module ABI - [ ] This is a breaking change to the...
# Description of Changes Make me some docs. # API and ABI - [ ] This is a breaking change to the module ABI - [ ] This is a...
# Description of Changes Switches most cases where a table / reducer name is stored to an `Arc` rather than `String`. # API and ABI breaking changes None # Expected...
# Description of Changes @cloutiertyler and I were talking about this. Makes the semantic mapping for people easier, a row update on the client is an update() on the server....
# Description of Changes In preparation for adding another host type, I realized it would make sense to have it so we don't have to compile huge runtimes for spacetimedb-cli...