| 123456789101112131415161718192021222324 |
- return {
- tag = 'texture-view',
- summary = 'Check if a Texture is a texture view.',
- description = [[
- Returns whether a Texture is a texture view, created with `Texture:newView`.
- ]],
- arguments = {},
- returns = {
- view = {
- type = 'boolean',
- description = 'Whether the Texture is a texture view.'
- }
- },
- variants = {
- {
- arguments = {},
- returns = { 'view' }
- }
- },
- related = {
- 'Texture:getParent',
- 'Texture:newView'
- }
- }
|