Version of SSK you are using: 2017.005 and 2017.006 PRO
Version of Corona SDK you are using: Version 2017.3022 (2017.1.11)
OS you are developing under. OSX Version 10.12.2
Where you are encountering the issue: During build
Error Message(s):
ERROR: Runtime error /Users/Graham/Downloads/Source Code/MacAir Source/demo/ssk2/extensions/transition.lua:90: attempt to call upvalue 'onComplete' (a table value)
When using the example located at https://roaminggamer.github.io/RGDocs/pages/SSK2/extensions/ for transition.color
require "ssk2.loadSSK" -- Added by me as its required. \_G.ssk.init() -- Added by me as its required. local tmp = ssk.display.newCircle( nil, centerX, centerY, { radius = 30, fill = \_R\_ } ) function tmp.onComplete( self ) print("Done transitioning color.") end transition.color( tmp, { fromColor = \_R\_, toColor = \_G\_, time = 1000, transition = easing.outCirc, onComplete = tmp } )
It might be an easy fix, I’m used to being able to generally copy/paste from the docs for a working sample
This produces the upvalue error.