Skip to content

0.7.9

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Oct 09:58
· 163 commits to main since this release
56949aa

Added

  • Added implementProperty and implementMethod to the roblox built-in library to fill in missing functionality that Lune does not aim to implement itself.

    Example usage:

    local roblox = require("@lune/roblox")
    
    local part = roblox.Instance.new("Part")
    
    roblox.implementMethod("BasePart", "TestMethod", function(_, ...)
        print("Tried to call TestMethod with", ...)
    end)
    
    part:TestMethod("Hello", "world!")

Changed

  • Update to Luau version 0.599.
  • Stdio options when using process.spawn can now be set with more granularity, allowing stderr & stdout to be disabled individually and completely to improve performance when they are not being used.