Kevin Gutowski

Results 32 issues of Kevin Gutowski

I tried looking at the ASE spec to get a sense if this would be easy but all the block and byte stuff seems super spooky. Anywho, would love to...

I realize this is probably a bit complicated to support but it would be nice to have some way to run both the released version of the plugin and the...

enhancement
builder

Was watching [Atrioc's Marketing Mondays](https://youtu.be/km8zwVGzslo?t=3784) and there were a number of interesting points being made about Elden Ring. - How FromSoftware's games differentiates themselves from other games - Addictive task...

Right now you have to drop down to the private api to do this ```javascript let sketch = require('sketch') let document = sketch.getSelectedDocument() let selectedLayer = document.selectedLayers.layers[0] console.log(selectedLayer.sketchObject.booleanOperation()) ```

enhancement
api

This is super super helpful and I always forget about it since its not documented in the export section. It is documented way over here but I never check there:...

Many folks often want to display some visual representation of these shared objects in their sketch plugins. Sketch is already doing a bunch of work to maintain image previews of...

Would love to have this in to see some better interoperability between this function and an `ExportFormat` js object.

Seems like you have to convert the `ExportFormat` js object into something that `Sketch.export` accepts. This is kinda silly because the native methods are much easier. I wish there was...

It is pretty painful that Sketch.export doesn’t follow the conventions of the ExportFormats object. I always have to interpret the ExportFormat object and reformat it so that Sketch.export can interpret...

Currently, it's very painful to create a symbol with the JS api. Its much easier using the internal method: ``` let sketch = require('sketch') let doc = sketch.getSelectedDocument() let selectedLayersObject...