Lua는 설정 파일과 게임 스크립트에서 많이 보이고, 코드는 보통 작은 테이블 하나나 함수 하나입니다.
Codeshot은 붙여넣은 코드에서 Lua을 판별하므로 언어 선택을 잘못할 일이 없습니다. 기본 제공되는 30가지 테마 가운데 세 가지로 같은 스니펫을, 앱 자체 스타일시트로 렌더링했습니다.
Lua
Mac을 벗어나지 않고 Lua 스니펫을 공유하고 싶은 이미지로 바꿔 보세요.
Lua는 설정 파일과 게임 스크립트에서 많이 보이고, 코드는 보통 작은 테이블 하나나 함수 하나입니다.
Codeshot은 붙여넣은 코드에서 Lua을 판별하므로 언어 선택을 잘못할 일이 없습니다. 기본 제공되는 30가지 테마 가운데 세 가지로 같은 스니펫을, 앱 자체 스타일시트로 렌더링했습니다.
local Snapshot = {}
Snapshot.__index = Snapshot
function Snapshot.new(code, theme)
return setmetatable({ code = code, theme = theme or "xcode" }, Snapshot)
end
function Snapshot:export(path, scale)
return render(self.code, self.theme):save(path, scale or 2)
end
return Snapshot
local Snapshot = {}
Snapshot.__index = Snapshot
function Snapshot.new(code, theme)
return setmetatable({ code = code, theme = theme or "xcode" }, Snapshot)
end
function Snapshot:export(path, scale)
return render(self.code, self.theme):save(path, scale or 2)
end
return Snapshot
local Snapshot = {}
Snapshot.__index = Snapshot
function Snapshot.new(code, theme)
return setmetatable({ code = code, theme = theme or "xcode" }, Snapshot)
end
function Snapshot:export(path, scale)
return render(self.code, self.theme):save(path, scale or 2)
end
return Snapshot
Lua 코드는 원래 짧으니 화면을 채우려 들지 마세요. 여백을 넉넉히 준 짧은 코드가, 빽빽한 긴 코드보다 잘 읽힙니다.
이미지를 내용에 맞추거나 비율로 고정하세요 — 1:1, 4:3, 3:2, 16:9, 9:16, 2:3, 3:4 — 그런 다음 1×, 2×, 3× 중에서 골라 내보내면 레티나 화면에서도 또렷합니다. ⌘⇧C로 클립보드에 바로 복사하거나 ⌘S로 저장할 수 있습니다.
30가지 테마를 나란히 보기, 또는 전체 과정을 읽어 보세요.
모든 작업이 Mac에서 이루어집니다. 코드가 밖으로 나가지 않습니다.