Aberro

Results 15 comments of Aberro

Btw, currently Gemini lacks ability to disable opening and creating file types, i.e. if I use CodeEditor module, I can't disable it's file features, unless I remove menu items altogether...

If you'd just call `CampaignEvents.DailyTickHeroEvent.ClearListeners(Campaign.Current.GetCampaignBehavior());` then it should be safe, as it's same thing I do. So, if my mod will try to clear listeners too, it will be ok....

Uhhuh, not so simple... Your converters use DependencyObject, and it looks like Noesis doesn't support DependencyObjects as converters...

NoesisGUI is WPF based UI for Unity3D (mostly) and native (PC/Mobile/Console) applications. Quite useful for UI-intense games. In most cases it's fully WPF compatible except in Noesis namespace, but sometimes...

fix in pull request: https://github.com/moonsharp-devs/moonsharp/pull/280

fix in pull request: https://github.com/moonsharp-devs/moonsharp/pull/280

I've investigated into same case and unassigned local variables accesses latest stack value and tries to interpret it as a tuple, assigning it's second value to local scope variable. I...

I'll move my issue here. This will output current value from the stack, while it should be nil value. `local x print(x)' AssignmentStatement.Compile tells SymbolRefExpression to emit OpCode.StoreLcl with stackofs=0...

Looks like I've finally figured it out, after several incorrect fixes: in AssignmentStatement.cs, replace m_RValues initialization: ``` 40: else 41: { ---- 42: m_RValues = new List(); +++ if(names.Count >...

fix in pull request: https://github.com/moonsharp-devs/moonsharp/pull/280