Post #2861: : post_02865
π·οΈ Tags
βοΈ Related PME Features
- Python Scripting
- Macro Editor
π¬ Content
anphung:
Is it possible to detect if youβre in Local View? Like, run this command only when in Local View
Yes, check C.space_data.local_view value. Eg:
print("Local Mode: OFF") if C.space_data.local_view is None else print("Local Mode: ON")
β€οΈ 2 likes