Generally working out the library's flow.

I've setup a system for supporting multiple implementations for Roblox's
file format. This will allow me to cover the binary format and xml
format under the same general-purpose object.

Haven't done much with the XML format yet, but I've been making some
adjustments to the binary format implementation so that its more evenly
branched out and doesn't retain more information than it needs to. I've
also fixed some issues with the data-types, and documented the Instance
object.
This commit is contained in:
CloneTrooper1019
2019-01-29 03:50:55 -06:00
parent 9cfd5b2211
commit 08c5032ca8
20 changed files with 618 additions and 385 deletions

View File

@ -9,8 +9,8 @@ namespace Roblox.DataTypes
public readonly float Friction;
public readonly float Elasticity;
public float FrictionWeight;
public float ElasticityWeight;
public readonly float FrictionWeight;
public readonly float ElasticityWeight;
public PhysicalProperties(Material material)
{