Added missing Rect2 built in type

This commit is contained in:
Daniel J. Ramirez 2016-07-01 15:47:46 -05:00
parent c2d53288fd
commit 4d86dc2fe3
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class GDScriptLexer(RegexLexer):
'Matrix32', 'Array', 'ByteArray', 'IntArray', 'FloatArray',
'StringArray', 'Vector2Array', 'Vector3Array', 'ColorArray',
'Plane', 'Quat', 'AABB', 'Matrix3', 'Transform', 'Color',
'Image', 'NodePath', 'RID', 'Object', 'InputEvent',
'Image', 'NodePath', 'RID', 'Object', 'InputEvent', 'Rect2'
), prefix=r'(?<!\.)', suffix=r'\b'), Name.Builtin.Type),
],
'numbers': [