Author Topic: Ideas for stage effect.  (Read 3361 times)

Ario147

  • Spike Dodger
  • Posts: 201
  • Sex me
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 45.0.2454.101 Chrome 45.0.2454.101
    • View Profile
    • YouTube
  • Playstyle: Keyboard
Ideas for stage effect.
« on: October 02, 2015, 05:53:32 AM »
I have no idea for effects for ice cave stage, compared to other stages it looks... Blank.
I had idea for random water droplets from ceilings but idk.
Its a beautiful day outside.

Birds are singing, flowers are blooming,

On days like these, kids like you...

S H O U L D  B E  B U R N I N G  I N  H E L L .

lawatson

  • The Kid
  • Posts: 331
  • I do things and I make things.
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 45.0.2454.101 Chrome 45.0.2454.101
    • View Profile
  • Playstyle: Keyboard
Re: Ideas for stage effect.
« Reply #1 on: October 02, 2015, 06:40:10 AM »
Maybe lightly falling snow? That sounds fitting for an ice cave.
(click to show/hide)

smoke weed everyday

ShadowsDieAway

  • Spike Dodger
  • Posts: 172
  • OS:
  • iOS 8.4.1 iOS 8.4.1
  • Browser:
  • Safari 8.0 Safari 8.0
    • View Profile
Re: Ideas for stage effect.
« Reply #2 on: October 02, 2015, 09:40:09 AM »
you can have some tiny ice wisps flying around, and can have ice acting like reflections

Kyir

  • The Kid
  • Posts: 293
  • Normal Guy
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 45.0.2454.101 Chrome 45.0.2454.101
    • View Profile
  • Playstyle: Keyboard
Re: Ideas for stage effect.
« Reply #3 on: October 04, 2015, 02:58:41 PM »
Maybe put a scrolling grid in the background?

TOKETMEK

  • Cherry Eater
  • Posts: 71
  • lolgamer in other forums, and kakoka1pro on twitch
  • OS:
  • iOS 9.0.1 iOS 9.0.1
  • Browser:
  • Safari 9.0 Safari 9.0
    • View Profile
  • Playstyle: Keyboard
Re: Ideas for stage effect.
« Reply #4 on: October 04, 2015, 04:21:59 PM »
Maybe put a scrolling grid in the background?
Yeah, and don't forget to add corners!! :P :P

Ario147

  • Spike Dodger
  • Posts: 201
  • Sex me
  • OS:
  • Windows Phone Windows Phone
  • Browser:
  • Internet Explorer 11 Internet Explorer 11
    • View Profile
    • YouTube
  • Playstyle: Keyboard
Re: Ideas for stage effect.
« Reply #5 on: October 04, 2015, 07:58:30 PM »
Snowing in cave, grid lmao. Corners are already in Kappa

Reflections idk how and seems annoying for player.

Ice wisps tho sounds cool, problem being idk how to make them not restart on R in yuuutu engine.

Game is out but I still may update it so if any help with ice wisps/ other ideas tell me.
Its a beautiful day outside.

Birds are singing, flowers are blooming,

On days like these, kids like you...

S H O U L D  B E  B U R N I N G  I N  H E L L .

Zurai

  • Community Manager
  • Spike Dodger
  • Administrator
  • Posts: 170
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 40.0.2214.94 Chrome 40.0.2214.94
    • View Profile
  • Playstyle: Keyboard
Re: Ideas for stage effect.
« Reply #6 on: October 05, 2015, 06:47:49 AM »
I don't think you can make them not restart with yuuutu because of the Game restart on every R event. Unless you would fiddle around with global variables which are storing the current y/x of a wisp and when you press are the new created once are getting these global variables.
Stop by and say hello at www.twitch.tv/zurairofl :PogChamp:

WetWookie

  • Cherry Eater
  • Posts: 90
  • OS:
  • Windows 8.1/Server 2012 Windows 8.1/Server 2012
  • Browser:
  • Firefox 41.0 Firefox 41.0
    • View Profile
  • Playstyle: Keyboard
Re: Ideas for stage effect.
« Reply #7 on: October 05, 2015, 07:13:00 AM »
Make sound effects echo a bit

Sudnep

  • Global Moderator
  • Spike Dodger
  • Posts: 124
  • OS:
  • Windows 10 Windows 10
  • Browser:
  • Chrome 45.0.2454.101 Chrome 45.0.2454.101
    • View Profile
  • Playstyle: Keyboard
Re: Ideas for stage effect.
« Reply #8 on: October 05, 2015, 10:20:31 AM »
I don't think you can make them not restart with yuuutu because of the Game restart on every R event. Unless you would fiddle around with global variables which are storing the current y/x of a wisp and when you press are the new created once are getting these global variables.

Room Start:
Code: [Select]
persistent = false
if !(scrRoomCheck()) { instance_destroy() }

Room End:
Code: [Select]
persistent = true
scrRoomCheck():
Code: [Select]
switch(room) {
      case rIceStage01:
      case rIceStage02:
               return true;
      break;
      default:
               return false;
      break;
}

Derf

  • Guest
Re: Ideas for stage effect.
« Reply #9 on: October 05, 2015, 06:57:39 PM »
Either that or just edit the saving and loading so it doesn't restart the game.

(Though saying that you'd still need the object to be persistent due to the fact that room restart would also affect it.)