Skip to content

Commit

Permalink
tweak(ytyp): altered default draw distance values
Browse files Browse the repository at this point in the history
draw distance values changed to R*'s default ones
  • Loading branch information
cpmodding authored Dec 27, 2024
1 parent 60a3163 commit b6e2122
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ytyp/properties/ytyp.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,13 +251,13 @@ def _set_entity_index_with_select_linked_object(self, index: int):
bs_radius: bpy.props.FloatProperty(name="Bound Radius")
type: bpy.props.EnumProperty(
items=items_from_enums(ArchetypeType), name="Type")
lod_dist: bpy.props.FloatProperty(name="Lod Distance", default=60, min=-1)
lod_dist: bpy.props.FloatProperty(name="Lod Distance", default=200, min=-1)
flags: bpy.props.PointerProperty(
type=ArchetypeFlags, name="Flags")
special_attribute: bpy.props.EnumProperty(
name="Special Attribute", items=SpecialAttributeEnumItems, default=SpecialAttribute.NOTHING_SPECIAL.name)
hd_texture_dist: bpy.props.FloatProperty(
name="HD Texture Distance", default=40, min=0)
name="HD Texture Distance", default=100, min=0)
name: bpy.props.StringProperty(name="Name")
texture_dictionary: bpy.props.StringProperty(name="Texture Dictionary")
clip_dictionary: bpy.props.StringProperty(name="Clip Dictionary")
Expand Down

0 comments on commit b6e2122

Please sign in to comment.