Re: [Bf-committers] M Key in 2.8

2018-03-12 Thread Dalai Felinto
Hi, > What is the plan for layers? (M key) https://developer.blender.org/T53495 > When will it come back? Soon. > What is the time frame to start reporting errors? If it is up to me, not that soon. We will try to open it for the general public as soon as possible though. > What is the best l

[Bf-committers] Blender developers meeting notes - 2018-03-12

2018-03-12 Thread Dalai Felinto
Hi all, Here are the notes from today's 17 UTC (18 CET) meeting in irc.freenode.net #blendercoders. Reminder: meetings are on Mondays, next meeting is 19th March, 09 UTC (10 CET). Note: Amsterdam daylight saving time starts on March 25th. The meeting will then at 18 CEST (and 10 CEST in the next

[Bf-committers] GSoC Application Draft - Fast Import / Export

2018-03-12 Thread Philip Holzmann
Hello! I'd like to apply for GSoC this year, and I'm looking for some feedback on my application. You can find my application draft here: You can comment directly on it. I'd be really happy about feedback: -

Re: [Bf-committers] Decorator Pattern

2018-03-12 Thread Campbell Barton
Thanks for the correction. You can wrap RNA instances in your own classes and pass them around. eg: >>> class MyDecorObject(bpy.types.Object): ... @property ... def my_prop(self): ... return "Foo" ... >>> o = MyDecorObject(bpy.context.object) >>> o.my_prop 'Foo' But this isn't d

Re: [Bf-committers] Decorator Pattern

2018-03-12 Thread Toni Alatalo
Python decorators do not implement the Decorator Pattern, they are different things. Wikipedia explains it like this: """ https://en.wikipedia.org/wiki/Decorator_pattern#Python Please do not confuse the Decorator Pattern (or an implementation of this design pattern in Python - as the above example