From 6557a2ebca62c6670736b4ec2914a2aca60dbdba Mon Sep 17 00:00:00 2001 From: jussi Date: Sat, 10 Feb 2024 21:06:09 +0200 Subject: Build option for Lua events that is off by default. --- examples/resources/lib/quaternion.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/resources/lib/quaternion.lua') diff --git a/examples/resources/lib/quaternion.lua b/examples/resources/lib/quaternion.lua index e85415c..56b5c49 100644 --- a/examples/resources/lib/quaternion.lua +++ b/examples/resources/lib/quaternion.lua @@ -7,7 +7,7 @@ local Vector3 = require( "vector3" ) local Matrix = require( "matrix" ) local Quaternion = {} -Quaternion.meta = { +local metatable = { __index = Quaternion, __tostring = function( q ) return "{"..tostring( q.x )..", "..tostring( q.y )..", "..tostring( q.z )..", "..tostring( q.w ).."}" @@ -45,7 +45,7 @@ function Quaternion:new( x, y, z, w ) x, y, z, w = 0, 0, 0, 1 -- QuaternionIdentity. end - local object = setmetatable( {}, Quaternion.meta ) + local object = setmetatable( {}, metatable ) object.x = x object.y = y -- cgit v1.2.3