📋 Metadata
- Author: roaoao
- Date: 2020-09-05 03:43:13
- Type:
answer - Reply to: post_03561
💬 Content
Sorkkaelain:
Is there a way to make it to increase each time I press like 0.25 → 0.5 → 1 → 2
C.space_data.overlay.grid_scale = current value * 2
C.space_data.overlay.grid_scale = current value / 2
Try this:
C.space_data.overlay.grid_scale *= 2
C.space_data.overlay.grid_scale /= 2
❤️ 2 likes