forked from Cavemanon/SnootGame
remove dupe & unused sfx, work in final changes before release
This commit is contained in:
@ -22,6 +22,7 @@ init -1 python:
|
||||
init python:
|
||||
import random
|
||||
import webbrowser
|
||||
config.developer = 1
|
||||
#function for insult layers
|
||||
def showCG():
|
||||
files = ["text1", "text2", "text3", "text4", "text5", "text6", "text7", "text8", "text9"]
|
||||
@ -36,6 +37,7 @@ init python:
|
||||
renpy.music.register_channel("ambient","sfx",True,tight=True)
|
||||
renpy.music.register_channel("ambient1","sfx",True,tight=True)
|
||||
renpy.music.register_channel("ambient2","sfx",True,tight=True)
|
||||
renpy.music.register_channel("ambient3","sfx",True,tight=True)
|
||||
if persistent.scroll == True:
|
||||
config.keymap['dismiss'].append('mousedown_4')
|
||||
elif persistent.scroll == None:
|
||||
@ -687,6 +689,28 @@ image schooloutside_blur:
|
||||
pause 1
|
||||
repeat
|
||||
|
||||
#Shooter ending blurs
|
||||
image fang flash blurred = im.Blur('images/fang/fullbody/fang silo3.png', 8.0)
|
||||
image shooterroof blurred = im.Blur('images/backgrounds/shooterroof.jpg', 3)
|
||||
image shooterroof normal = "images/backgrounds/shooterroof.jpg"
|
||||
image fang shooter blurred = im.Blur('images/fang/fullbody/fang shooter.png', 3)
|
||||
image fang shooter normal = "images/fang/fullbody/fang shooter.png"
|
||||
|
||||
image blurring_shooterroof:
|
||||
"shooterroof blurred" with Dissolve(2.5)
|
||||
pause 2.5
|
||||
"shooterroof normal" with Dissolve(2.5)
|
||||
pause 2.5
|
||||
repeat
|
||||
|
||||
image blurring_shooter:
|
||||
"fang shooter blurred" with Dissolve(2.5)
|
||||
pause 2.5
|
||||
"fang shooter normal" with Dissolve(2.5)
|
||||
pause 2.5
|
||||
repeat
|
||||
|
||||
|
||||
#phone bgs for video calls
|
||||
#caller bgs
|
||||
image anonday_videocall_bg = im.Crop(im.FactorScale("images/backgrounds/foodcourt.jpg", 0.9),(0,40,576,920))
|
||||
|
Reference in New Issue
Block a user