game development etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
game development etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

Let’s Play into the Future with Flutter Flame!

 


Hello everyone. Today I have prepared a guide about Flame for you. Developers who are bored of constantly developing mobile applications, who want to try something different, who have an idea and want to realize it from a familiar place, this place is for you! Let’s start by getting to know Flame first.

What is Flutter Flame?

Flutter Flame is an open source game engine for developing Flutter-based 2D games. It allows you to create games for mobile, web and desktop platforms using the Dart language. You can bring the power and flexibility of Flutter to the game world and experience a fast and easy game development experience.

Why Preferable?

First of all, as with Flutter in general, you can create games for Android, iOS and web with a single code base.

Assuming you already have Flutter knowledge, you won’t be overwhelmed by the details of a new technology for your simple game, and you will quickly grasp Flame.

It’s open source, so you can easily get support from the developer community.

Let’s look at the main features of Flame.

Game Loop

Flame allows games to run in a continuous loop. Thanks to this loop, all objects on the game screen are updated and drawn. This loop is based on two main functions:

update(dt): Updates of game objects such as position, state, etc. are done here.

render(canvas): The graphics to be drawn on the screen are defined here.

Component System

Flame offers a component-based approach to creating game objects. You can define and manage objects such as players, enemies, obstacles, etc. as components.

class Player extends PositionComponent {
@override
void render(Canvas canvas) {
// You can write the player drawing codes here
}

@override
void update(double dt) {
// You can write the player update codes here
}
}

Sprite ve Animasyon Desteği

Sprites are graphical elements within the game. Flame allows you to easily manage sprite-based animations.

final sprite = await Sprite.load('player.png');

Çarpışma Tespiti (Collision Detection)

In games, it is important to detect the collision of objects. Flame has a collision detection system that facilitates this process.

bool collision = player.toRect().overlaps(enemy.toRect());

Flame ile Yapılabilecek Basit Bir Oyun Taslağı

In this section, I have prepared an outline that you can use as a guide when you start developing a game.

First, after creating the project, we install the flame package.

flutter pub add flame

Then we can create our Main Game class.

import 'package:flame/game.dart';

class MyGame extends FlameGame {

@override
void render(Canvas canvas) {
// Draw game objects here
}

@override
void update(double dt) {
// Make game updates here
}
}

And finally we start the game.

void main() {
runApp(GameWidget(game: MyGame()));
}

This is of course a very simple and general outline. There are a lot of things to change and improve regarding the game’s features and genre. At this point, there is a repo you can review. It has a lot of resources and examples. After my outline, you can make use of this repo to move forward. And of course you should also read the official documentation. The link to both is below.

As a result, Flutter Flame allows you not only to develop games, but also to make creative projects with your Flutter knowledge. It’s a great opportunity to try yourself in the game world! I hope this was useful.

Thank you.

Selin.

Flutter Flame ile Geleceğe Oynayalım!

 


Herkese merhaba. Bugün sizlere Flame ile ilgili bir rehber hazırladım. Sürekli mobil uygulama geliştirmekten sıkılan, farklı bir şey denemek isteyen, fikri olan ve tanıdık bi yerden hayata geçirmek isteyen geliştiriciler, burası tam size göre! Önce Flame’i tanıyarak başlayalım.

Flutter Flame nedir?

Flutter Flame, Flutter tabanlı 2D oyunlar geliştirmek için kullanılan açık kaynaklı bir oyun motorudur. Dart dilini ullanarak mobil, web ve masaüstü platformları için oyunlar oluşturmanı sağlar. Flutter’ın gücünü ve esnekliğini oyun dünyasına taşıyabilir, hızlı ve kolay bir oyun geliştirme deneyimi yaşayabilirsin.

Neden Tercih Edilebilir?

İlk olarak genel Flutter işleyişinde olduğu gibi burada da tek kod tabanı ile Android, iOS ve web için oyunlar oluşturabilirsin.

Flutter bilgisine zaten sahip olduğunu düşünürsek, geliştireceğin basit oyunun için yeni bir teknolojide detaylara boğulmazsın, Flame’i de hızlıca kavrarsın.

Açık kaynaklıdır bu sebeple geliştirici topluluğundan kolaylıkla destek alabilirsin.

Şimdi Flame’in temel özelliklerine bakalım.

Oyun Döngüsü (Game Loop)

Flame, oyunların sürekli bir döngü (loop) içinde çalışmasını sağlar. Bu döngü sayesinde oyun ekranındaki tüm nesneler güncellenir ve çizilir. Bu döngü iki ana fonksiyona dayanır:

update(dt): Oyun nesnelerinin konum, durum gibi güncellemeleri burada yapılır.

render(canvas): Ekrana çizilecek grafikler burada tanımlanır.

Bileşen Tabanlı Sistem (Component System)

Flame, oyun nesnelerini oluşturmak için bileşen tabanlı bir yaklaşım sunar. Oyuncular, düşmanlar, engeller gibi nesneleri bileşenler olarak tanımlayabilir ve yönetebilirsin.

class Player extends PositionComponent {
@override
void render(Canvas canvas) {
// Oyuncu çizim kodlarını buraya yazabilirsin
}

@override
void update(double dt) {
// Oyuncu güncelleme kodlarını buraya yazabilirsin
}
}

Sprite ve Animasyon Desteği

Sprite’lar, oyun içindeki grafik öğeleridir. Flame, sprite tabanlı animasyonları kolayca yönetmeni sağlar.

final sprite = await Sprite.load('player.png');

Çarpışma Tespiti (Collision Detection)

Oyunlarda nesnelerin çarpışmasını algılamak önemlidir. Flame, bu süreci kolaylaştıran collision detection sistemine sahiptir.

bool collision = player.toRect().overlaps(enemy.toRect());

Flame ile Yapılabilecek Basit Bir Oyun Taslağı

Bu bölümde oyun geliştirmeye başladığında rehber olarak kullanabileceğin bir taslak hazırladım.

İlk olarak projeyi oluşturduktan sonra flame paketini yüklüyoruz.

flutter pub add flame

Sonrasında Ana Oyun sınıfımızı oluşturabiliriz.

import 'package:flame/game.dart';

class MyGame extends FlameGame {
@override
void render(Canvas canvas) {
// Oyun nesnelerini burada çiz
}

@override
void update(double dt) {
// Oyun güncellemelerini burada yap
}
}

Ve son olarak oyunu başlatıyoruz.

void main() {
runApp(GameWidget(game: MyGame()));
}

Bu tabiki çok basit ve genel bir taslak. Oyunun özellikleri ve türü ile ilgili olarak değiştirilecek, geliştirilecek çok fazla şey var. Bu noktada inceleyebileceğin bir repo mevcut. İçeriğinde çok fazla kaynak ve örnek var. Benim genel hatlarıyla oluşturduğum yazımdan sonra buradan faydalanarak ilerleyebilirsin. Ve elbette ki resmi dokümantasyonu da okumanda fayda var. Her ikisinin de linki aşağıda.

Sonuç olarak Flutter Flame, sadece oyun geliştirmekle kalmaz, Flutter bilginle yaratıcı projeler yapmanı sağlar. Kendini oyun dünyasında denemek için harika bir fırsat! Umarım faydalı olmuştur.

Teşekkürler.

Selin.

Flutter vs. Unity: Which is the Best Choice for Game Development?

 

When it comes to game development, choosing the right platform is crucial. Both Flutter and Unity are popular choices, but they have different strengths and are suited for different types of projects. In this article, we’ll explore the pros and cons of each, helping you make the best choice for your next game development project.

What is Flutter and Unity?

Flutter is a popular framework developed by Google. Primarily used for mobile app development, it also supports web and desktop applications with a single codebase. Flutter shines when it comes to building beautiful, responsive user interfaces quickly.

Unity, on the other hand, is a game engine renowned for its power in 2D and 3D game development. It’s widely used across the gaming industry and offers advanced tools for graphics, physics, and animation, making it the go-to platform for high-performance games.

Can You Develop Games with Flutter?

Yes, Flutter can be used for simple games. It’s great for developers who want to build games like puzzle gamesquiz apps, or simple arcade games. While it doesn’t offer the extensive graphics capabilities of Unity, you can still create functional games, especially 2D ones, using packages like Flame for Flutter.

For beginner developers, Flutter’s ease of use and ability to quickly build cross-platform apps is a major advantage. You can integrate basic game mechanics while leveraging Flutter’s superior UI capabilities.

Why is Unity Stronger for Game Development?

Unity is a powerhouse when it comes to developing more complex games, especially 3D ones. With Unity’s physics engine, you can build intricate game mechanics, and its graphics rendering makes it perfect for high-performance, visually stunning games. Popular games like PUBG Mobile and Hearthstone were built using Unity, proving its capability for large-scale projects.

Unity offers a wide range of tools for animating characters, handling lighting, and rendering environments, which makes it superior to Flutter for advanced game development.

When to Choose Flutter?

If your game idea is simple, or if it’s part of a larger application, Flutter could be the right choice. For example, if you’re building an educational app for kids with mini-games or a quiz app, Flutter can handle this with ease. Flutter’s biggest strength lies in its ability to create cross-platform apps quickly, so if your game is not graphically intensive, it’s an excellent solution.

Flutter is also ideal if you plan to expand your project into web or desktop applications without rewriting the entire codebase.

When to Choose Unity?

If your goal is to develop a 3D game or a highly immersive 2D game with complex mechanics, Unity is the better choice. Unity’s robust development tools and community support will help you create professional-grade games. If you’re aiming for console or PC games, Unity’s scalability makes it a perfect fit for those platforms as well.

Unity is the right choice for developers who are serious about game development and need an engine that can handle intensive graphics and physics simulations.

Conclusion

Ultimately, your choice between Flutter and Unity depends on your project’s complexity and your goals. For simple 2D games and rapid app development, Flutter is a fantastic option. However, if you’re building a complex game that requires high-performance graphics and detailed mechanics, Unity should be your go-to platform.

Both platforms have their strengths, and learning to use both can give you the flexibility to choose the right tool for any project.

Thank you for your reading, I hope my article is useful for you.

Selin.

Flutter mı, Unity mi? Oyun Geliştirme İçin En Doğru Seçim Hangisi?

 

Günümüzde oyun geliştirmek isteyenlerin karşısına birçok platform seçeneği çıkıyor. Ancak hangisi daha doğru? Flutterve Unity arasındaki farkları bilmek, doğru tercihi yapmanı kolaylaştıracak. Bu yazıda, iki platformun güçlü yanlarını ve hangi durumlarda kullanılmalarının uygun olduğunu tartışacağız. Eğer oyun geliştirmeye yeni başlıyorsan ya da hangi platformu seçeceğine karar veremiyorsan, tam da doğru yerdesin!

Flutter ve Unity Nedir?

Flutter ve Unity, her ikisi de uygulama ve oyun geliştirme dünyasında öne çıkan platformlardır. Flutter, Google tarafından geliştirilmiş olup, mobil, web ve masaüstü uygulamaları geliştirmek için tercih edilen bir araçtır. Unity ise, oyun motoru olarak özellikle 3D oyunlar için popüler bir tercih olup, çok güçlü grafik ve fizik işleme yeteneklerine sahiptir.

Flutter ile Oyun Geliştirme

Flutter, özellikle basit oyunlar ve 2D oyunlar geliştirmek isteyenler için ideal bir seçenek olabilir. Flutter’ın kullanıcı arayüzü oluşturma konusundaki hızı, basit bulmaca ya da quiz tarzı oyunlarda mükemmel sonuçlar verir. Ayrıca, Flamegibi paketler kullanarak Flutter uygulamalarında temel oyun mekaniklerini eklemek mümkün.

Unity Neden Oyun Geliştirme İçin Daha Güçlü?

Unity, özellikle büyük ve karmaşık oyunlar geliştirmek isteyenler için doğru tercih. Güçlü bir fizik motoruna sahip olan Unity, özellikle 3D oyunlar ve detaylı animasyonlar için idealdir. Eğer daha ileri düzeyde grafik işleme ve yüksek performanslı bir oyun geliştirmek istiyorsan, Unity, Flutter’a göre çok daha fazla esneklik sunar.

Hangi Durumda Flutter Kullanılmalı?

Flutter, oyunlar haricinde uygulama geliştiricilere de büyük avantajlar sağlar. Örneğin, bir eğitim uygulaması yapıyorsan ve uygulamanın içinde basit oyun mekanikleri eklemek istiyorsan, Flutter bu konuda oldukça pratik ve hızlıdır. Aynı kod tabanıyla hem mobil hem de web uygulamaları yapabilmen, işlerini çok kolaylaştırır.

Unity’nin Güçlü Yanları

Unity, özellikle profesyonel oyun geliştirme alanında daha çok tercih ediliyor. Karmaşık fizik hesaplamaları, 3D grafikler ve detaylı animasyonlar, Unity’nin parladığı noktalar. Eğer hedefin büyük çaplı bir oyun yapmaksa, Unity senin için doğru bir seçenek olabilir. Ayrıca, geniş bir topluluğa sahip olduğu için ihtiyacın olan desteği bulmak da kolaydır. Daha basit ifadeyle eğer

  • 3D oyunlar yapmayı planlıyorsan,
  • Karmaşık animasyonlar ve fizik tabanlı mekanikler kullanacaksan,
  • Oyunun performansı yüksek olmalıysa (grafik açısından ağır oyunlar)

Unity senin dostun.

Sonuç

Sonuç olarak, eğer oyun geliştirme dünyasına yeni adım attıysan ve daha basit projelerle başlamak istiyorsan, Flutter güzel bir tercih olabilir. Ancak daha kapsamlı ve büyük projeler düşünüyorsan, Unity ile çalışmak uzun vadede daha faydalı olacaktır.

Umarım karşılaştırmam faydalı olmuştur.

Okuduğunuz için teşekkürler.

Selin.

Performance Optimisation in Unity: Tips for Smoother and More Efficient Games

 

Unity and Performance Optimization

Hello everyone,

In this article, I will talk about performance, which is sometimes overlooked by most developers, including me, in the early stages of the game development process, but is very important. I said very important because performance is a critical factor that directly affects the player experience. In order to offer a smoother and more enjoyable experience to the players and to make our game more demanded and played, we need to develop by paying attention to details such as high frame rates (FPS) and low latency. Unity is a very powerful game engine in this sense, and when used correctly, it helps us develop high-performance games. Since I have experienced that it is so important, I have researched what we can do for performance optimisation with Unity, what are the most effective techniques and tips. Let’s get started.

1. Using Profiler

Unity Profiler is a tool for analysing game performance. Profiler monitors CPU and GPU usage, memory allocation, and other performance metrics. Thanks to this tool, we have the chance to identify the source of performance problems and find solutions for them.

How to use it?

  • First of all, we use Window => Analysis => Profiler to open the Profiler window. With this, we aim to see performance data.
  • Then we run Profiler while playing our game and wait for it to collect data in real time. By analysing the performance in different scenes, we get a feedback from the game.
  • At this point, we analyse the data we collect. For this, we can examine different tabs such as CPU, GPU, Rendering, Memory in the Profiler window and identify performance degrading points here.

2. Optimising Graphics Settings

LOD (Level of Detail) Usage

LOD allows distant objects to be rendered with less detailed models. This improves performance, especially in large scenes, by de-detailing some of the objects in the game.

  • Creating LOD Groups: In a game, we can create different levels of detail to let Unity know which objects should be rendered in more detail and which ones don’t need all the detail. We do this mostly for objects and manage it with the LOD Group component. Thus, especially in large scenes, objects that are not in sight are rendered with less detailed models and performance is increased.
  • Culling: We can improve performance by setting a game plan so that we do not need to render objects outside the camera field of view. We can increase performance by using Occlusion Culling.

Batching Techniques

  • Static Batching: Used for static (motionless) objects. It renders many objects with a single draw call.
  • Dynamic Batching: Used for dynamic (moving) objects. Reduces the number of draw calls by combining small and similar objects.

3. Physics and Collision Optimisation

Rigidbody and Collider Settings

  • Adding Rigidbody component unnecessarily may cause performance degradation. Instead, it is sufficient to add it only to objects that interact physically.
  • Another point about game performance is to use simpler Collider types if possible. Examples of simple Collider types are Box and Sphere. Using Mesh Colliders instead of more standardised ones like these can negatively affect performance.

Physics Simulation

  • Physics simulation is important to make the game realistic. However, physics calculations are often resource intensive, which affects game performance. The first thing we can do to prevent this is to set the Fixed Timestep value. The physics simulation is updated at certain time intervals, not every frame. This interval is called Fixed Timestep and we can set it in Edit => Project Settings => Time. This value is set to 0.02 (50 FPS) by default. We can adjust this value according to our game and performance requirements. A higher value means fewer physics updates, which can improve performance, but may reduce the accuracy of the physics simulation.
  • Another topic is what can be done with Physics Layers. Physics layers control which objects collide with each other. We can use these layers to prevent unnecessary collision checks. First we create new layers in Edit => Project Settings => Tags and Layers. Then we assign objects to the appropriate layers from the Inspector panel. Finally, in Edit => Project Settings => Physics, we determine which layers will collide with each other. For example, there may be collisions between player and bullet layers, but not between background objects and bullets. In this case, the unnecessary collision does not need to run in the background. And certainly not to degrade performance.

4. Memory Management

Object Pooling

  • This method allows us to create a certain number of objects in advance for frequently created and destroyed objects and reuse them. Especially since continuous creation and destruction of new objects can negatively affect performance, we can reduce this cost and prevent performance degradation with object pooling. Let’s also mention a few points to be considered while doing this. It is important to determine the initial size of the pool according to the needs of our game. A pool that is too small may cause continuous creation of new objects; a pool that is too large means unnecessary memory usage. Then what we do will not have the desired effect on performance. We should also keep a good track of the state of the objects. Objects must be made suitable for reuse. For example, bullets should return to the pool when they reach the target or after a certain period of time. Finally, when returning objects to the pool, we must remember to deactivate them. This prevents the objects from performing unnecessary calculations.
  • We also need to avoid creating new objects by caching objects that are used repeatedly.

Memory Usage Monitoring

  • With Unity Profiler we can monitor memory usage and identify unnecessary memory allocations.
  • We also need to minimise GC (Garbage Collection) operations. If we can prevent unnecessary memory allocation and reduce the activation of GC, this also contributes positively to performance.

5. Code Optimisation

Efficient Code Writing

  • LINQ (Language Integrated Query) makes it easier to make queries on data, but the performance cost is high. For this reason, it may be more advantageous to use classic loops and conditions instead of LINQ in parts where we expect high performance.
  • In C#, memory management is performed by Garbage Collector (GC). Memory is allocated when new objects are created and cleared by GC when these objects are not in use. However, unnecessary memory allocations and consequent attempts to delete unnecessary created objects can negatively affect performance.

Asynchronous Operations

  • Async and Await: Performing long-running operations such as network operations or disc read/write asynchronously ensures that the main game loop runs uninterrupted.

As a result, performance optimisation in Unity is of great importance as it makes our games run smoother and more efficiently. In this article, I have tried to explain techniques and tips that will help us improve our performance. I hope that by applying these tips, we can offer a better gaming experience to our players.

Good coding to all of us.

Thanks for reading.

Selin.