Aleksander Włodarczyk

Results 19 comments of Aleksander Włodarczyk

I got the same problem, reflections on ARCore are terribly low res when comparing to reflections on ARKit

There are only 256 colors available in terminal. So I couldn't match every color perfectly

There is strange 'bug' that we cannot use functions from Lua debug library so log.lua can't print messages with info about file and number of line

debug isn't working because we are using rlua and they had deleted it from rlua https://github.com/kyren/rlua/issues/52

I've upgraded torchbear from 0.10.4 to 0.10.8 and now 'captures' in regex is nil. I am not sure which exactly version broke it, but when I downgraded to 0.10.4 everything...

Rules have their parameters, before it gets called we need to call get_action_parameters. get_action_parameters checks input parameters of each action in each event that the rule could call and it...

Rule interpreter should generate ****log.trace("[rule name] evaluated as TRUE")**** in THEN segment

Call the rules with every possible parameter to get rid of arguments table in the rules loader

Rule before: ``` weight: 10 parameters: ["request", "events"] event: ["incoming_request_received"] some condtional and other conditional ``` Rule after: ``` local log = require "log" local weight = 10 local event...

We should make every possible action parameters table, in package_loader after we interpreted all of the actions and before we patch any of the rules. The table of parameters for...