# Redkenrok Skills Love Window

> When to use this skill

- Skill: `tomevault-io/redkenrok-skills-love-window` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/redkenrok-skills-love-window`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/redkenrok-skills-love-window/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/redkenrok-skills-love-window

---


## When to use this skill
{{SKILL_DESCRIPTION}} Use this skill when working with window operations, display settings, fullscreen modes, or any window-related operations in LÖVE games.

## Common use cases
- Creating and managing game windows
- Handling window resizing and display modes
- Working with multiple monitors and display settings
- Managing window properties (title, icon, etc.)
- Handling fullscreen and windowed modes

{{MODULES_LIST}}
{{FUNCTIONS_LIST}}
{{CALLBACKS_LIST}}
{{TYPES_LIST}}
{{ENUMS_LIST}}

## Examples

### Creating a window
```lua
-- Set window properties in love.conf
function love.conf(t)
  t.window.title = "My Awesome Game"
  t.window.width = 800
  t.window.height = 600
  t.window.fullscreen = false
end
```

### Handling window resize
```lua
function love.resize(w, h)
  -- Update game view to match new window size
  gameWidth, gameHeight = w, h
  -- Recalculate any UI elements or camera settings
end
```

## Best practices
- Set window properties in love.conf() for best results
- Handle window resize events gracefully
- Test different display modes on target platforms
- Consider aspect ratio when designing for multiple resolutions
- Be mindful of fullscreen performance implications

## Platform compatibility
- **Desktop (Windows, macOS, Linux)**: Full window management support
- **Mobile (iOS, Android)**: Limited window control, mostly fullscreen
- **Web**: Browser window management with some limitations

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/redkenrok) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-15 -->

