Git Product home page Git Product logo

Comments (2)

rxi avatar rxi commented on August 21, 2024

Writing the below with assumption that the resetAction() function isn't itself returning a function:

The :oncomplete() function expects a function as its argument, though resetAction is a function you are calling it immediately and its return value is being passed to the oncomplete function. The "temporary" solution you mentioned is the actual solution -- this assures a function is being passed which when executed does the resetAction(player) call which is the expected behaviour.

The following example may make things more clear:

local f = function() return 10 end
print( type( f ) ) -- prints "function"
print( type( f() )) -- prints "number"
print( type( function() f() end ) ) -- prints "function"

from flux.

Khranos avatar Khranos commented on August 21, 2024

Ah, that makes sense. I greatly appreciate the reply, and apologize for flagging a false "issue". I'll go ahead and close this.

from flux.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.