Unity Web3 Game Kit is the fastest way to connect and build games for Web3. It provides a single workflow for building high performance dapps. Fully compatible with your favourite platform.
Every time I created a Class, the ACL was always set to "Master Key Only". Even after making sure that my ACL is set to PublicReadAccess and PublicWriteAccess to true, it was always set to "Master Key Only".
MoralisAcl acl = new MoralisAcl(){PublicReadAccess = true,PublicWriteAccess = true};room.ACL = acl;try{await room.SaveAsync();}catch(Exception e){Debug.Log("Cannot Save Room to database " + e);}
Every time I created a Class, the ACL was always set to "Master Key Only". Even after making sure that my ACL is set to PublicReadAccess and PublicWriteAccess to true, it was always set to "Master Key Only".
MoralisAcl acl = new MoralisAcl()
{
PublicReadAccess = true,
PublicWriteAccess = true
};
room.ACL = acl;
try
{
await room.SaveAsync();
}
catch(Exception e)
{
Debug.Log("Cannot Save Room to database " + e);
}