annotation property updates

This commit is contained in:
nBurn 2019-05-20 20:31:07 -04:00
parent 3778680f22
commit 8a6d66a1db
3 changed files with 9 additions and 9 deletions

View File

@ -104,12 +104,12 @@ class MESH_OT_random_vertices(Operator):
description="Base Multiplier of the randomization effect",
default=1
)
valmin = IntVectorProperty(
valmin: IntVectorProperty(
name="Min XYZ",
description="Define the minimum range of randomization values",
default=(0, 0, 0)
)
valmax = IntVectorProperty(
valmax: IntVectorProperty(
name="Max XYZ",
description="Define the maximum range of randomization values",
default=(1, 1, 1)

View File

@ -156,7 +156,7 @@ class AutoTileSizeSettings(PropertyGroup):
threads_error: BoolProperty(
options={'HIDDEN'}
)
num_tiles = IntVectorProperty(
num_tiles: IntVectorProperty(
default=(0, 0),
size=2,
options={'HIDDEN'}
@ -173,7 +173,7 @@ class AutoTileSizeSettings(PropertyGroup):
default='',
options={'HIDDEN'}
)
prev_res = IntVectorProperty(
prev_res: IntVectorProperty(
default=(0, 0),
size=2,
options={'HIDDEN'}
@ -187,7 +187,7 @@ class AutoTileSizeSettings(PropertyGroup):
size=4,
options={'HIDDEN'}
)
prev_actual_tile_size = IntVectorProperty(
prev_actual_tile_size: IntVectorProperty(
default=(0, 0),
size=2,
options={'HIDDEN'}

View File

@ -78,13 +78,13 @@ class DisplayData(PropertyGroup):
class ViewData(PropertyGroup):
pov = PointerProperty(
pov: PointerProperty(
type=POVData
)
layers = PointerProperty(
layers: PointerProperty(
type=LayersData
)
display = PointerProperty(
display: PointerProperty(
type=DisplayData
)
name: StringProperty()
@ -111,7 +111,7 @@ class StoredViewsData(PropertyGroup):
('DISPLAY', "Display", "Display settings")],
default='VIEW'
)
current_indices = IntVectorProperty(
current_indices: IntVectorProperty(
size=4,
default=[-1, -1, -1, -1]
)