|
@@ -2,23 +2,27 @@ module Docs
|
|
|
class Love
|
|
class Love
|
|
|
class EntriesFilter < Docs::EntriesFilter
|
|
class EntriesFilter < Docs::EntriesFilter
|
|
|
TYPES = {
|
|
TYPES = {
|
|
|
|
|
+ 'cdata' => 'Lua',
|
|
|
'require' => 'Lua',
|
|
'require' => 'Lua',
|
|
|
'light_userdata' => 'Lua',
|
|
'light_userdata' => 'Lua',
|
|
|
'value' => 'Lua',
|
|
'value' => 'Lua',
|
|
|
'variable' => 'Lua',
|
|
'variable' => 'Lua',
|
|
|
|
|
|
|
|
'Audio_Formats' => 'love.sound',
|
|
'Audio_Formats' => 'love.sound',
|
|
|
|
|
+ 'Image_Formats' => 'love.graphics',
|
|
|
'ImageFontFormat' => 'love.font',
|
|
'ImageFontFormat' => 'love.font',
|
|
|
'BlendMode_Formulas' => 'love.graphics',
|
|
'BlendMode_Formulas' => 'love.graphics',
|
|
|
'Shader_Variables' => 'love.graphics',
|
|
'Shader_Variables' => 'love.graphics',
|
|
|
|
|
|
|
|
|
|
+ 'AttributeDataType' => 'love.graphics',
|
|
|
'AreaSpreadDistribution' => 'love.graphics',
|
|
'AreaSpreadDistribution' => 'love.graphics',
|
|
|
- 'BodyType' => 'love.physics',
|
|
|
|
|
'BufferMode' => 'love.filesystem',
|
|
'BufferMode' => 'love.filesystem',
|
|
|
'CompressedFormat' => 'love.image',
|
|
'CompressedFormat' => 'love.image',
|
|
|
|
|
+ 'FilterType' => 'love.audio',
|
|
|
|
|
+ 'ImageFlag' => 'love.graphics',
|
|
|
'JoystickConstant' => 'love.joystick',
|
|
'JoystickConstant' => 'love.joystick',
|
|
|
|
|
+ 'MatrixLayout' => 'love.math',
|
|
|
'ParticleInsertMode' => 'love.graphics',
|
|
'ParticleInsertMode' => 'love.graphics',
|
|
|
- 'String' => 'love',
|
|
|
|
|
'TextureMode' => 'love.graphics'
|
|
'TextureMode' => 'love.graphics'
|
|
|
}
|
|
}
|
|
|
|
|
|