Per 2016, RMID pindah ke RMID Discord (Invite link dihapus untuk mencegah spambot -Theo @ 2019). Posting sudah tidak bisa dilakukan lagi.
Mohon maaf atas ketidaknyamanannya dan mohon kerjasamanya.
|
|
| 2011-12-25, 11:44 | [VX] Nufus Splash Scene |
---|
Nefusa 7 Senior
Posts : 954 Thanked : 6 Engine : RMXP Skill : Intermediate Type : Scripter
| Nufus Scene SplashVersi: 1.0Tipe: Before Title PengenalanSplash Screen . . Fitur=> Membuat Splash seperti game-game lain sebelum title => Simple, mudah dan tahan lama ScreenshotsSplash? Screenshot? DemoHere Scripts - Code:
-
#------------------------------------------------------------------------ # [VX] Splash Screen ( ver 1.0 ) ORIGINAL # Author : Nefusa 7 #------------------------------------------------------------------------ # ** Description # This script show a splash screen before title screen #------------------------------------------------------------------------ # ** How to use # => Place this script above main # => in main, change "$scene = Scene_Title.new" to "$scene = Scene_Splash.new" #------------------------------------------------------------------------ # ** Credit to: # => Nefusa 7 #------------------------------------------------------------------------ class Scene_Splash #-------------------------------------------------------------------------- # ● Initialize the scene #-------------------------------------------------------------------------- def main # Load the System database & create a new game $data_system = load_data("Data/System.rvdata") $game_system = Game_System.new # Initialize some transition stuff @show = true @hide = false @n = 0 @splash_numb = 2 # Define info about each splash screen @sprite1 = Sprite.new @sprite1.bitmap = ::Cache.system("Splash-1") @sprite1.opacity = 0 @sprite2 = Sprite.new @sprite2.bitmap = ::Cache.system("Splash-2") @sprite2.opacity = 0 # Update graphics and input Graphics.transition loop do Graphics.update Input.update update if $scene != self break end end # Discard your graphics when you leave this scene Graphics.freeze @sprite1.dispose @sprite2.dispose end #-------------------------------------------------------------------------- # ● Update the contents in this scene #-------------------------------------------------------------------------- def update # If SPACEBAR is pressed, go to to title screen if Input.trigger?(Input::C) Sound.play_decision $scene = Scene_Title.new end # Change the opacity of the graphics transition # Update graphics @sprite1.update @sprite2.update end #-------------------------------------------------------------- # Transition through splash screens #-------------------------------------------------------------- def transition # Fade in a splashscreen if @show == true @n += 2 if @n > 255 @hide = true @show = false @n = 255 end end # Fade out a splashscreen and load the next one if @hide == true @n -= 2 if @n < 0 @hide = false @show = true @splash_numb -= 1 @n = 0 end end # Choose which action to perform in this scene case @splash_numb when 0 $scene = Scene_Title.new when 1 @sprite2.opacity = @n when 2 @sprite1.opacity = @n end end end
taruh gambar ukuran 544 x 416 pixel didalam folder system namai Splash-1 dan Splash-2. . di main ganti $scene = Scene_Title.new jadi $scene = Scene_Splash.new Credits=> Nefusa 7
Terakhir diubah oleh Nefusa 7 tanggal 2012-03-13, 18:32, total 1 kali diubah |
| | | 2011-12-25, 11:51 | Re: [VX] Nufus Splash Scene |
---|
McPherson Senior
Posts : 777 Thanked : 7 Engine : Multi-Engine User Skill : Intermediate Type : Mapper
Awards:
| wow.. wow.. nice share, gan! saya coba DL dulu dmonya |
| | | 2011-12-25, 12:01 | Re: [VX] Nufus Splash Scene |
---|
LowlingLife Administrator
Posts : 2000 Thanked : 25 Engine : Multi-Engine User
Awards:
| Wow!! Keren nih! Udah merambah ke dunia scripting!! Di lihat dari methodnya sih kayaknya nih script cukup simpel.... Blom DL sih... Tapi good job! |
| | | 2011-12-25, 12:05 | Re: [VX] Nufus Splash Scene |
---|
Bcyborg21 Novice
Posts : 204 Thanked : 1 Engine : RMVX Skill : Advanced Type : Artist
| , wahh, cocok nih buat ojekan Ane . . .,, ,, ijin DL dulu yo . . . Menuju TKP |
| | | 2011-12-25, 13:11 | Re: [VX] Nufus Splash Scene |
---|
Garry Laly Senior
Posts : 651 Thanked : 3 Engine : Multi-Engine User Skill : Beginner
| Bisa bikin yang VX juga Good job Ijin DL uy Kayaknya bisa buat tempat request nih |
| | | 2012-03-12, 21:28 | Re: [VX] Nufus Splash Scene |
---|
Galvin09 Novice
Posts : 241 Thanked : 8 Engine : Multi-Engine User Skill : Beginner Type : Developer
| mantap, ijin DL ya.. kalo ada bug, nanti ane kasih tau~ kayaknya sih ga ada.. <<< ngejar posting.. |
| | | 2012-03-12, 21:50 | Re: [VX] Nufus Splash Scene |
---|
andry5ury4 Novice
Posts : 124 Thanked : 0 Engine : Multi-Engine User Skill : Intermediate Type : Jack of All Trades
| bukan maksudnya necropost... tapi saya mau ngingetin yang di atas saya necropost soalnya posting terakhir dah 3 bulan yang lalu.... - Quote :
- mantap, ijin DL ya..
kalo ada bug, nanti ane kasih tau~ kayaknya sih ga ada.. <<< ngejar posting.. woooiiii kamu necropost |
| | | 2012-03-13, 13:17 | Re: [VX] Nufus Splash Scene |
---|
Galvin09 Novice
Posts : 241 Thanked : 8 Engine : Multi-Engine User Skill : Beginner Type : Developer
| ^belum genap 3 bulan bro... @nefusa udah jalan dengan baik , tapi timingnyya kayaknya agak kecepetan menurut ane.. oh ya, kira2 splashnya bisa ditambah ga? misalnya jadi 3 screen, 4 screen, dst.. |
| | | 2012-03-13, 17:36 | Re: [VX] Nufus Splash Scene |
---|
Garry Laly Senior
Posts : 651 Thanked : 3 Engine : Multi-Engine User Skill : Beginner
| | | | 2012-03-13, 18:44 | Re: [VX] Nufus Splash Scene |
---|
Nefusa 7 Senior
Posts : 954 Thanked : 6 Engine : RMXP Skill : Intermediate Type : Scripter
| - Galvin09 wrote:
- @nefusa
udah jalan dengan baik , tapi timingnyya kayaknya agak kecepetan menurut ane.. oh ya, kira2 splashnya bisa ditambah ga? misalnya jadi 3 screen, 4 screen, dst.. kalo masalah timingnya kamu bisa atur di - Code:
-
# Fade in a splashscreen if @show == true @n += 2 if @n > 255 @hide = true @show = false @n = 255 end end # Fade out a splashscreen and load the next one if @hide == true @n -= 2 if @n < 0 @hide = false @show = true @splash_numb -= 1 @n = 0 end end
itu yang - Code:
-
@n += 2 dan - Code:
-
@n -= 2 Kalau kamu tambahin, nanti jadi agak lama Atau kebalik ya? Pokoknya dicoba dulu deh @Garry, Rikues? jangan disini dong - btw garry:
Coba aja klik link di signatureku lalu rikues di sono
Maaf ya kalo jawaban kurang memuaskan lagi mobile mode |
| | | 2012-03-13, 19:47 | Re: [VX] Nufus Splash Scene |
---|
Garry Laly Senior
Posts : 651 Thanked : 3 Engine : Multi-Engine User Skill : Beginner
| IGC Perasaan aku daftar disitu Lagian masih sepi |
| | | 2012-03-13, 19:52 | Re: [VX] Nufus Splash Scene |
---|
Nefusa 7 Senior
Posts : 954 Thanked : 6 Engine : RMXP Skill : Intermediate Type : Scripter
| kalo mo rikues kan bisa lewat PM susah banget |
| | | | Re: [VX] Nufus Splash Scene |
---|
Sponsored content
| | | | Similar topics | |
|
Similar topics | |
| |
Halaman 1 dari 1 | |
| Permissions in this forum: | Anda tidak dapat menjawab topik
| |
| |
Latest 10 Topics | [Web Novel] Gloria Infidelis 2016-11-17, 21:27 by LightNightKnight
[Announcement] Forum baru untuk RMID 2016-08-25, 16:39 by TheoAllen
Where I'm Wrong ? 2016-07-24, 16:10 by ReydVires
flakeheartnet's Resources part III 2016-07-08, 14:30 by flakeheartnet
Keira's Art Warehouse 2016-06-28, 19:27 by KeiraBlaze
Theo Core Time System + Bingung 2016-06-27, 16:24 by Lockin
Error Script, Maybe ? 2016-06-27, 16:20 by Lockin
Nusaimoe @ RMID Lounge 2016-06-21, 05:02 by Jihad Bagas
Call Random Battle 2016-06-15, 17:04 by Lockin
Flakeheartnet Resources Part II [come back gift] 2016-06-07, 15:51 by flakeheartnet
|
Statistics
|
Members: [ 4947 ]
Topics: [ 8258 ]
Posts: [ 112606 ]
Newest member: [ https://rmid.forumotion.net/u4968 ]
|
|
|
|
|
|