• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[Lua] Metatable method is not received when I'm calling it

Status
Not open for further replies.
Level 24
Joined
Jun 26, 2020
Messages
1,855
Hello, I'm again trying to translate the Codeless Save Load System to Lua, but for some reason I'm not receiving the method of the metatable when I'm calling it, this is weird because I though if a table doesn't have a field, it will check to its metatable, basically I did this:
Lua:
---@return Savecode
function Savecode.create()
    local sc = setmetatable({}, Savecode)
    sc.digits = 0.
    sc.bigNum = BigNum.create(BASE())
    return sc
end
And I did this:
Lua:
local savecode = Savecode.create()
print(savecode.Encode)
it prints me nil, but if I do this:
Lua:
local savecode = Savecode.create()
print(getmetatable(savecode).Encode)
It prints me the function, what is happening?
 
Status
Not open for further replies.
Top