Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Blur Map Script Version: 1.0

Khoa

Member

Blur Map Script Version: 1.0
By: Khoa

Introduction

This small script helps you make the map blur. Use it when you want to make player feel hero is thinking or when you show a notice, ect.

Features
  • Make the map blur
  • Make the map un-blur
  • Re-color the blurred map XD

Screenshots

Just open menu, and look at the map background =D

Demo

I think you don't need demo, this script is plug-and-play

Script

Code:
#===============================================================================

# Blur Map Script v1.0

# Author      : Khoa (Dang_Khoa)

# Release date: 26/01/2009

#-------------------------------------------------------------------------------

# INTRODUCTION

# This script helps you make the map blur. Use it when you want to make player 

# feel hero is thinking or when you show a notice, ect.

# Thank Necro (Matt) for helping me make this script.

#

# FEATURE

# - Make the map blur

# - Make the map un-blur

# - Re-color the blurred map XD

#

# HOW TO USE

# When you want to make the map blur, just call:

#   $scene.blur_map

# And if you don't want to make it blur, call:

#   $scene.terminate_blur

#

# COMPATIBILITY

# I think it is compatible with all other script XD

#

# AUTHOR'S NOTE

# You are free to use it, but don't forget to credit me and Necro.

# And, sorry for my bad English :P

#===============================================================================

class Scene_Map

  #---------------------------------------------------------------------------

  # Blur_map

  #---------------------------------------------------------------------------

  def blur_map

    $game_temp.background_bitmap = Graphics.snap_to_bitmap

    $game_temp.background_bitmap.blur

 

    @back = Sprite.new

    @back.bitmap = $game_temp.background_bitmap

    # Re-color the map, you can change it to other color if you want.

    # But I think black is OK. XD

    @back.color.set(16, 16, 16, 128)

  end

  #---------------------------------------------------------------------------

  # Terminate_blur

  #---------------------------------------------------------------------------

  def terminate_blur

    @back.dispose

  end

end

 

Instructions

When you want to make the map blur, just call:
Code:
$scene.blur_map
And if you don't want to make it blur, call:
Code:
$scene.terminate_blur

FAQ

Feel free to ask :D

Compatibility

I think it is compatible with all other scripts XD

Credits and Thanks

Thank Necro (Matt) for helping me make this script.

Terms and Conditions

You are free to use it, but don't forget to credit me and Necro. XD
 
ive been looking for something like this, but i got this error
i1gt3k.jpg
 

Khoa

Member

Yes, this script is made for rmvx, not rmxp.

I remember someone has made one for rmxp, you can find it if you need it
:smile:
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top