Browse Source

Add system module to conf.lua;

bjorn 4 years ago
parent
commit
7dcb452d57
1 changed files with 6 additions and 0 deletions
  1. 6 0
      api/lovr/callbacks/conf.lua

+ 6 - 0
api/lovr/callbacks/conf.lua

@@ -116,6 +116,11 @@ return {
               type = 'boolean',
               type = 'boolean',
               description = 'Whether the physics module should be enabled.'
               description = 'Whether the physics module should be enabled.'
             },
             },
+            {
+              name = 'system',
+              type = 'boolean',
+              description = 'Whether the system module should be enabled.'
+            },
             {
             {
               name = 'thread',
               name = 'thread',
               type = 'boolean',
               type = 'boolean',
@@ -224,6 +229,7 @@ return {
           t.modules.headset = true
           t.modules.headset = true
           t.modules.math = true
           t.modules.math = true
           t.modules.physics = true
           t.modules.physics = true
+          t.modules.system = true
           t.modules.thread = true
           t.modules.thread = true
           t.modules.timer = true
           t.modules.timer = true