import bge import colors def main(): import bge #import GameLogic cont = bge.logic.getCurrentController() scene = bge.logic.getCurrentScene() own = cont.owner #own = scene.objects['control_cube.002'] dict = bge.logic.globalDict if dict['scene_inited'] == False: own['last_stBut'] = False level = dict['level'] cam = scene.objects['Camera.003'] curscene = bge.logic.getCurrentScene() dict['overlay_fadeout'] = 1 scenes = bge.logic.getSceneList() own['pre_pause_linvel'] = 0.0 objList = scene.objects # get object named MainCharacter parent = objList["control_cube.002"] # combine child's shape with parent's compound = True obj = scene.objects['Char4'] # child is solid ghost = False # set parent obj.setParent( parent, compound, ghost) parent.worldPosition.z += .5 scene.gravity = [0,0,dict['gravity']] for i in scenes: if i.name == "main": main = i for i in scenes: if i.name == "fade_out": print('ending fade_out', scenes) scene2 = i scene2.end() if dict['bc'] == 1: cont.activate(cam.actuators["bc"]) else: cont.activate(cam.actuators["bc_off"]) if dict['hdr'] == 1: cont.activate(cam.actuators["hdr"]) else: cont.activate(cam.actuators["hdr_off"]) if dict['ao'] == 1: cont.activate(cam.actuators["ao"]) else: cont.activate(cam.actuators["ao_off"]) if dict['dof_on'] == 1: cont.activate(cam.actuators["DOF"]) else: cont.activate(cam.actuators["DOF_off"]) if dict['bloom_on'] == 1: cont.activate(cam.actuators["Bloom"]) else: cont.activate(cam.actuators["bloom_off"]) # print(dict['shadow_on'], 'shadow_on') # if dict['shadow_on'] == 1: # bge.render.setGLSLMaterialSetting("shadows", 1) # else: # bge.render.setGLSLMaterialSetting("shadows", 0) if dict['music_player'] == 1: dict['music_start'] = True print('starting music') else: print('not starting music', dict['music_player']) for x in scene.objects: if 'hemi' in x: if 'down' in x: x.energy = dict['ambient_strength'] else: x.energy = dict['ambient_strength'] * .7 if 'sun' in x: x.energy = dict['sun_strength'] #scene.world.envLightEnergy = dict['ambient_strength'] scene.world.envLightEnergy = 0 cam['BC_BRIGHTNESS'] = dict['BC_BRIGHTNESS'] cam['BC_CONTRAST'] = dict['BC_CONTRAST'] cam['bc'] = dict['bc'] cam['hdr'] = dict['hdr'] cam['avgL'] = dict['avgL'] cam['HDRamount'] = dict['HDRamount'] cam['ao'] = dict['ao'] cam['onlyAO'] = dict['onlyAO'] cam['aowidth'] = dict['aowidth'] cam['aoradius'] = dict['aoradius'] cam['ambient_strength'] = dict['ambient_strength'] cam['sun_strength'] = dict['sun_strength'] cam['sun_pos_x'] = dict['sun_rot_x'] cam['sun_pos_y'] = dict['sun_rot_y'] #cam['shadow_on'] = dict['shadow_on'] cam['dof_on'] = dict['dof_on'] cam['bloom_on'] = dict['bloom_on'] cam['fxaa'] = dict['fxaa'] cam['FXAA_SPAN_MAX'] = dict['FXAA_SPAN_MAX'] own['grindnew_timer'] = 0 own['last_ramp'] = 0 own['requestAction'] = '' own['l_actionState'] = '' own['actionState'] = '' own['transition_timer'] = 0 own['transitioning'] = 0 own['driving'] = False dict['last_driving'] = False own['last_roty'] = 0.0 own['walk_targ_speed'] = 2 own['walk_fast_targ_speed'] = 5 own['walk_speed'] = 0 own['walk_inc'] = .05 own['walk_jump_timer'] = 0 own['no_grind_timer'] = 0 own['last_jump_frame'] = 0 own['grinder_rot'] = None colors.update_shirt_tex() colors.update_truck_tex() print('scene init ran') dict['scene_inited'] = True #main()