mirror of
				https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
				synced 2025-11-04 08:35:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			302 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			302 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
class_name MoonGravity
 | 
						|
extends Node
 | 
						|
 | 
						|
 | 
						|
@export var new_gravity := 5
 | 
						|
const OLD_GRAVITY := 10
 | 
						|
 | 
						|
 | 
						|
 | 
						|
func _ready() -> void:
 | 
						|
	Global.entity_gravity = new_gravity
 | 
						|
	for i: Player in get_tree().get_nodes_in_group("Players"):
 | 
						|
		i.low_gravity = true
 | 
						|
 | 
						|
func _exit_tree() -> void:
 | 
						|
	Global.entity_gravity = OLD_GRAVITY
 |