Skip to content
This repository has been archived by the owner on Jan 23, 2018. It is now read-only.

Commit

Permalink
Added a description to the initial emission speed field.
Browse files Browse the repository at this point in the history
  • Loading branch information
flo committed Mar 23, 2012
1 parent fd75f08 commit a28a623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Expand Up @@ -205,7 +205,7 @@ class M3ParticleSystem(bpy.types.PropertyGroup):
type = bpy.props.EnumProperty(default="2", items=particleTypeList, update=handleTypeOrBoneSuffixChange, options=set())
materialName = bpy.props.EnumProperty(items=availableMaterials, options=set())
maxParticles = bpy.props.IntProperty(default=20, subtype="UNSIGNED",options=set())
initEmissSpeed = bpy.props.FloatProperty(name="init. emiss. speed",options={"ANIMATABLE"}, default=0.0)
initEmissSpeed = bpy.props.FloatProperty(name="init. emiss. speed",options={"ANIMATABLE"}, default=0.0, description="The initial speed of the particles at emission.")
speedVar = bpy.props.FloatProperty(default=1.0, name="speed var",options={"ANIMATABLE"})
speedVarEnabled = bpy.props.BoolProperty(options=set(),default=False)
angleY = bpy.props.FloatProperty(default=0.0, name="angleY", options={"ANIMATABLE"})
Expand Down

0 comments on commit a28a623

Please sign in to comment.