Skip to content

Commit

Permalink
bug fixes and banner
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryLi-0 committed Aug 14, 2024
1 parent 1e966f5 commit ce21889
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# protoplop
![](</protoplop_banner.png>)

# Protoplop

a totally original drawing idea

Expand Down
Binary file added protoplop_banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 6 additions & 5 deletions subsystems/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ def processFetchSketchSector(self, x, y, forceNoRegen = False):
scaledDrawingMask = getRegion(self.layerProperties[self.selectedLayer][2], (self.cameraPos[0] + (128*x-512)*(100/self.sketchZoom),self.cameraPos[1] + (94*y-329)*(100/self.sketchZoom)), (self.cameraPos[0] + (128*(x+1)-512)*(100/self.sketchZoom),self.cameraPos[1] + (94*(y+1)-329)*(100/self.sketchZoom)), color=0, thirdaxis=False)
scaledDrawingMask = setSizeSize(scaledDrawingMask, (math.ceil(128*1/SKETCH_QUALITY), math.ceil(94*1/SKETCH_QUALITY)))
applyMask(scaledDrawingImage, scaledDrawingMask)
placeOver(total, scaledDrawingImage, (0,0))
placeOver(total, scaledDrawingImage, (0,0))
placeOver(total, self.regionLayersCache[(x,y)][1], (0,0))

self.regionDataCache[(x,y)] = total
Expand Down Expand Up @@ -948,10 +948,11 @@ def saveDrawing(self):
if path != "":
total = self.blankLayer.copy()
for i in range(len(self.layers)):
c = self.layers[i].copy()
if type(self.layerProperties[i][2]) != str:
applyMask(c, self.layerProperties[i][2])
placeOver(total, c, (0,0))
if self.layerProperties[i][1]:
c = self.layers[i].copy()
if type(self.layerProperties[i][2]) != str:
applyMask(c, self.layerProperties[i][2])
placeOver(total, c, (0,0))
img = Image.fromarray(total)
img.save(path)
else:
Expand Down
12 changes: 12 additions & 0 deletions updatelogs/logs082024/08132024.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 8/13/2024 - 23rd Update!

ok, today is gonna be the release day! (ive been procrastinating this all day) unfortunately, i do not trust my art skills to draw a banner, so its gonna have a similar one to Tape, just a part of some image that i think looks good! now, time to make a video...


how do you zoom in on this camera's video... yes, im actually gonna use a physcial camera too! i love finding a bug in the middle of the demo (yes it crashed me in the middle of drawing) 28 minutes of drawing, time to film the rest of the video...

ok, finished drawing and filming! editing time! ok, footage is uploading, time for editing! (yes, i also fixed a bug just now! flattening image wasnt taking in account the state of whether or not an image is visible!) 1 GB of footage... uh oh. comes in handy i edited videos for two years ig... spent 5 minutes editing 19 seconds! i love editing!

i dont like editing... its been an hour, and yes, im still editing D:

finally done editing at 2 minute 47 seconds video! only took 2 hours for filming and editing! cant wait to wait half an hour for it to render and upload!

0 comments on commit ce21889

Please sign in to comment.