Vincent Lamy

Results 29 comments of Vincent Lamy
trafficstars

Thanks for your feedback. Yea I think many optimisations can be done, I learn Blender Python on the fly so this leads to this kind of weird logic :) I...

annotate tool, or grease pencil, could help to "outline" some datas, in the same way as seams or sharp

https://github.com/Vinc3r/Blender-Python-Snippets/blob/master/blender-2.8%2B/random-color-on-selected.py

also useful for wireframe > object color

```python import bpy import random def returnRandColor(): return random.randrange(0, 1000000) / 1000000 for mat in bpy.data.materials: mat.diffuse_color = (returnRandColor(), returnRandColor(), returnRandColor(), 1) ```

actually not a bug, but a blender limitation: in solid mode it's a global viewport option

think about a solution other than in the wiki to tell the user how it works solid mode: global option > selection agnostic material preview: per material

yes your last point is the right one: I'm french maybe I have the wrong way of using decimal character "."? for example I write 2048 or 2 048, for...

ok, i think i will follow Blender convention, so writing `1,048.56k` (equal to 1,048,560) is the way to do, or maybe better, when "k" option is used, i may disable...