You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
825 B
24 lines
825 B
/// ApplyLightPreset()
|
|
if (!instance_exists(oLightEngine)) {
|
|
if (global.darkness == 1) {
|
|
le = instance_create(0, 0, oLightEngine);
|
|
le.image_alpha = 0.5;
|
|
instance_create(oCharacter.x, oCharacter.y - 16, oFlashlight64);
|
|
}
|
|
if (global.darkness == 2) {
|
|
le = instance_create(0, 0, oLightEngine);
|
|
le.image_alpha = 0.8;
|
|
instance_create(oCharacter.x, oCharacter.y - 16, oFlashlight64);
|
|
}
|
|
if (global.darkness == 3) {
|
|
le = instance_create(0, 0, oLightEngine);
|
|
le.image_alpha = 0.9;
|
|
instance_create(oCharacter.x, oCharacter.y - 16, oFlashlight64);
|
|
}
|
|
if (global.darkness == 4) {
|
|
le = instance_create(0, 0, oLightEngine);
|
|
le.image_alpha = 1;
|
|
instance_create(oCharacter.x, oCharacter.y - 16, oFlashlight64);
|
|
}
|
|
}
|