1
Themes / Re: NxL theme! [Release] new video!2-4-2017 Update
« on: February 11, 2021, 12:23:35 PM »
EDIT: Fixed! Got to the layout.nut and replace the frame and frameglow codes with this (I just added zorder values):
I can't seem to get the border to work properly using the latest attract mode. It stays behind all other objects instead of being in front. Does anyone know how I can make this asset always remain in the foreground?
What is should be:

What mine does:
Code: [Select]
// add the frame selection box
gridc.frame = fe.add_image( "assets/uielements/frame.png", frame_width * 2, frame_height * 2, frame_width, frame_height );
gridc.frame.alpha = 0;
gridc.frame.zorder=102;
// add the frame selection box glow
gridc.frameg = fe.add_image( "assets/uielements/frameglow.png", frame_width * 2, frame_height * 2, frameg_width, frameg_height );
gridc.frameg.alpha = 0;
gridc.frameg.zorder=103;
I can't seem to get the border to work properly using the latest attract mode. It stays behind all other objects instead of being in front. Does anyone know how I can make this asset always remain in the foreground?
What is should be:

What mine does:
