mirror of
				https://github.com/flame-engine/flame.git
				synced 2025-10-31 08:56:01 +08:00 
			
		
		
		
	 5529869a76
			
		
	
	5529869a76
	
	
	
		
			
			* Adding custom mouse cursors for flame * linting and adding fvm to gitignore * PR suggestions * Apply suggestions from code review Co-authored-by: Luan Nico <luanpotter27@gmail.com> Co-authored-by: Luan Nico <luanpotter27@gmail.com>
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:flame/extensions.dart';
 | |
| import 'package:flame/game.dart';
 | |
| import 'package:flame/input.dart';
 | |
| import 'package:flame/palette.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:flutter/widgets.dart';
 | |
| 
 | |
| class MouseCursorGame extends Game with MouseMovementDetector {
 | |
|   static const speed = 200;
 | |
|   static final Paint _blue = BasicPalette.blue.paint();
 | |
|   static final Paint _white = BasicPalette.white.paint();
 | |
|   static final Vector2 objSize = Vector2.all(150);
 | |
| 
 | |
|   Vector2 position = Vector2(100, 100);
 | |
|   Vector2? target;
 | |
| 
 | |
|   bool onTarget = false;
 | |
| 
 | |
|   @override
 | |
|   void onMouseMove(PointerHoverInfo info) {
 | |
|     target = info.eventPosition.game;
 | |
|   }
 | |
| 
 | |
|   Rect _toRect() => position.toPositionedRect(objSize);
 | |
| 
 | |
|   @override
 | |
|   void render(Canvas canvas) {
 | |
|     canvas.drawRect(
 | |
|       _toRect(),
 | |
|       onTarget ? _blue : _white,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   void update(double dt) {
 | |
|     final target = this.target;
 | |
|     if (target != null) {
 | |
|       final hovering = _toRect().contains(target.toOffset());
 | |
|       if (hovering) {
 | |
|         if (!onTarget) {
 | |
|           //Entered
 | |
|           mouseCursor.value = SystemMouseCursors.grab;
 | |
|         }
 | |
|       } else {
 | |
|         if (onTarget) {
 | |
|           // Exited
 | |
|           mouseCursor.value = SystemMouseCursors.move;
 | |
|         }
 | |
|       }
 | |
|       onTarget = hovering;
 | |
|     }
 | |
|   }
 | |
| }
 |