A flexible & efficient way to manage and access services in Unity
A powerful, ScriptableObject-based service locator pattern implementation for Unity that provides robust dependency injection with asynchronous support, automatic scene management, and comprehensive debugging tools.
- ScriptableObject-Based: Clean, asset-based architecture that integrates seamlessly with Unity's workflow.
- Multi-Phase Initialization: A robust, automated lifecycle ensures services are registered, injected, and initialized safely.
- Async Service Resolution: Wait for services to become fully ready with cancellation and timeout support.
- UniTask Integration: Automatic performance optimization when UniTask is available - zero allocations and faster async operations.
- Fluent Dependency Injection: Elegant builder pattern for configuring service injection.
- Automatic Scene Management: Services are automatically tracked and cleaned up when scenes unload.
- Comprehensive Debugging: Built-in editor window with search, filtering, and service inspection.
- Type-Safe: Full generic support with compile-time type checking.
- Performance Optimized: Efficient service lookup with minimal overhead, enhanced further with UniTask.
- Thread-Safe: Concurrent access protection for multi-threaded scenarios.
- Open the Package Manager window (
Window > Package Manager
) - Click the
+
button and selectAdd package from git URL
- Enter:
https://github.com/PaulNonatomic/ServiceKit.git
Add this line to your Packages/manifest.json
:
{
"dependencies": {
"com.nonatomic.servicekit": "https://github.com/PaulNonatomic/ServiceKit.git"
}
}
Right-click in your project window and create a ServiceKit Locator:
Create > ServiceKit > ServiceKitLocator
public interface IPlayerService
{
void SavePlayer();
void LoadPlayer();
int GetPlayerLevel();
}
public class PlayerService : IPlayerService
{
private int _playerLevel = 1;
public void SavePlayer() => Debug.Log("Player saved!");
public void LoadPlayer() => Debug.Log("Player loaded!");
public int GetPlayerLevel() => _playerLevel;
}
public class GameBootstrap : MonoBehaviour
{
[SerializeField] private ServiceKitLocator _serviceKit;
private void Awake()
{
// Register services during game startup
var playerService = new PlayerService();
_serviceKit.RegisterService<IPlayerService>(playerService);
// A service must be marked as "Ready" before it can be injected
_serviceKit.ReadyService<IPlayerService>();
}
}
public class PlayerUI : MonoBehaviour
{
[SerializeField] private ServiceKitLocator _serviceKit;
// Mark fields for injection
[InjectService] private IPlayerService _playerService;
private async void Awake()
{
// Inject services with fluent configuration
await _serviceKit.InjectServicesAsync(this)
.WithTimeout(5f)
.WithCancellation(destroyCancellationToken)
.WithErrorHandling()
.ExecuteAsync();
// The service is now injected and ready to use
_playerService.LoadPlayer();
Debug.Log($"Player Level: {_playerService.GetPlayerLevel()}");
}
}
ServiceKit provides automatic optimization when UniTask is installed in your project. UniTask is a high-performance, zero-allocation async library specifically designed for Unity.
ServiceKit automatically detects when UniTask is available and seamlessly switches to use UniTask APIs for enhanced performance:
// Same code, different performance characteristics:
await serviceKit.GetServiceAsync<IPlayerService>();
// With UniTask installed: โ Zero allocations, faster execution
// Without UniTask: โ Standard Task performance
Install UniTask via Unity Package Manager:
- Open Package Manager (
Window > Package Manager
) - Click
+
and selectAdd package from git URL
- Enter:
https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask
Or add to your Packages/manifest.json
:
{
"dependencies": {
"com.cysharp.unitask": "https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask"
}
}
When UniTask is available, ServiceKit automatically provides:
- ๐ 2-3x Faster Async Operations: For immediately completing operations
- ๐ 50-80% Less Memory Allocation: Reduced GC pressure and frame drops
- โก Zero-Allocation Async: Most async operations produce no garbage
- ๐ฏ Unity-Optimized: Better main thread synchronization and PlayerLoop integration
The same ServiceKit code works with both Task and UniTask - no changes needed:
public class PlayerController : ServiceKitBehaviour<IPlayerController>
{
[InjectService] private IPlayerService _playerService;
[InjectService] private IInventoryService _inventoryService;
// Automatically uses UniTask when available for better performance
protected override async UniTask InitializeServiceAsync()
{
await _playerService.LoadPlayerDataAsync();
await _inventoryService.LoadInventoryAsync();
}
}
Multiple service resolution is also optimized:
// UniTask.WhenAll is more efficient than Task.WhenAll
var (player, inventory, audio) = await UniTask.WhenAll(
serviceKit.GetServiceAsync<IPlayerService>(),
serviceKit.GetServiceAsync<IInventoryService>(),
serviceKit.GetServiceAsync<IAudioService>()
);
- Mobile Games: UniTask's zero-allocation benefits are most noticeable on mobile devices
- Complex Scenes: Projects with many services see the biggest improvements
- Frame-Critical Code: Use for smooth 60fps gameplay where every allocation matters
- Memory-Constrained Platforms: VR, WebGL, and older devices benefit significantly
ServiceKit includes integrated support for Roslyn Analyzers to help you write better code with real-time analysis and suggestions specifically tailored for ServiceKit development.
The ServiceKit Analyzers provide:
- Code analysis for common ServiceKit patterns and best practices
- Real-time suggestions to improve your service implementations
- Compile-time warnings for potential issues with dependency injection
- Code fixes to automatically resolve common problems
ServiceKit includes a built-in tool to download and manage the Roslyn Analyzers:
- Open the ServiceKit Settings window:
Edit > Project Settings > ServiceKit
- Navigate to the Developer Tools section
- Click Download Analyzers to automatically fetch the latest version from GitHub
- The analyzers will be installed to
Assets/Analyzers/ServiceKit/
You can also manually download the analyzers:
- Visit the ServiceKit Analyzers releases page
- Download the latest
ServiceKit.Analyzers.dll
- Place it in
Assets/Analyzers/ServiceKit/
in your Unity project - Unity will automatically recognize and apply the analyzers
Through the ServiceKit Settings window, you can:
- Update: Download the latest version to get new analysis rules and improvements
- Remove: Uninstall the analyzers if you no longer need them
- View Details: See the installed version, file size, and last modified date
The ServiceKit Analyzers are open source! If you'd like to contribute new analysis rules or improvements:
- Visit the ServiceKit Analyzers repository
- Check out the contribution guidelines
- Submit issues for bugs or feature requests
- Create pull requests with your improvements
The analyzer repository includes documentation on:
- How to build custom analyzers for ServiceKit
- Adding new diagnostic rules
- Creating code fix providers
- Testing analyzer implementations
For the most robust and seamless experience, inherit from ServiceKitBehaviour<T>
. This base class automates a sophisticated multi-phase initialization process within a single Awake()
call, ensuring that services are registered, injected, and made ready in a safe, deterministic order.
It handles the following lifecycle automatically:
- Registration: The service immediately registers itself, making it discoverable.
- Dependency Injection: It asynchronously waits for all services marked with
[InjectService]
to become fully ready. - Custom Initialization: It provides
InitializeServiceAsync()
andInitializeService()
for you to override with your own setup logic. - Readiness: After your initialization, it marks the service as ready, allowing other services that depend on it to complete their own initialization.
public class PlayerController : ServiceKitBehaviour<IPlayerController>, IPlayerController
{
[InjectService] private IPlayerService _playerService;
[InjectService] private IInventoryService _inventoryService;
// This is the new hook for your initialization logic.
// It's called after dependencies are injected, but before this service is marked as "Ready".
protected override void InitializeService()
{
// Safe to access injected services here
_playerService.LoadPlayer();
_inventoryService.LoadInventory();
Debug.Log("Player controller initialized with all dependencies!");
}
// For async setup, you can use the async override:
// Note: Returns UniTask when available, Task otherwise - same code works for both!
protected override async UniTask InitializeServiceAsync()
{
// Example: load data from a web request or file
await _inventoryService.LoadFromCloudAsync(destroyCancellationToken);
}
// Optional: Handle injection failures gracefully
protected override void OnServiceInjectionFailed(Exception exception)
{
Debug.LogError($"Failed to initialize player controller: {exception.Message}");
if (exception is TimeoutException)
{
Debug.Log("Services took too long to become available");
}
else if (exception is ServiceInjectionException)
{
Debug.Log("Required services are not registered or failed to become ready");
gameObject.SetActive(false); // Disable this component
}
}
}
Wait for services that may not be immediately available (or ready):
public class LateInitializer : MonoBehaviour
{
[SerializeField] private ServiceKitLocator _serviceKit;
private async void Start()
{
try
{
// Wait up to 10 seconds for the service to be registered AND ready
var audioService = await _serviceKit.GetServiceAsync<IAudioService>(
new CancellationTokenSource(TimeSpan.FromSeconds(10)).Token);
audioService.PlaySound("welcome");
}
catch (OperationCanceledException)
{
Debug.LogError("Audio service was not available or ready within the timeout period");
}
}
}
Services can be marked as optional using intelligent 3-state dependency resolution:
public class AnalyticsReporter : MonoBehaviour
{
[InjectService(Required = false)]
private IAnalyticsService _analyticsService; // Uses intelligent resolution
[InjectService]
private IPlayerService _playerService; // Required - will fail if missing
// ...
}
When Required = false
, ServiceKit uses intelligent 3-state resolution:
- Service is ready โ Inject immediately
- Service is registered but not ready โ Wait for it (treat as required temporarily)
- Service is not registered โ Skip injection (field remains null)
This eliminates guesswork - you don't need to predict whether a service will be available. The system automatically waits for registered services that are "coming soon" while skipping services that will "never come."
When Required = true
(default):
- Always wait for the service regardless of registration status
- Timeout and fail if service is not available within the specified timeout period
In advanced scenarios, you might need to bypass the circular dependency check. This is useful for two main reasons:
- Wrapping Third-Party Code: When you "shim" an external library into ServiceKit, that service has no knowledge of your project's classes. A circular dependency check is unnecessary and can be safely bypassed.
- Managed Deadlocks: In rare cases, a "manager" service might need a reference to a "subordinate" that also depends back on the manager. If you can guarantee this cycle is not accessed until after full initialization, an exemption can resolve the deadlock.
To handle this, you can register a service with an exemption. This should be used with extreme caution, as it bypasses a critical safety feature.
RegisterServiceWithCircularExemption
allows a service to be registered without being considered in the dependency graph analysis.
// Example of a service that needs to be exempted
public class SubordinateService : ServiceKitBehaviour<ISubordinateService>
{
[InjectService] private IManagerService _manager;
// Override Awake to change the registration method
protected override void Awake()
{
// Instead of the default registration, we call the exemption method.
ServiceKitLocator.RegisterServiceWithCircularExemption<ISubordinateService>(this);
Registered = true; // Manually set the flag since we overrode the default
}
//...
}
Access the powerful debugging interface via Tools > ServiceKit > ServiceKit Window
:
- Real-time Service Monitoring: View all registered services across all ServiceKit locators.
- Readiness Status: See at a glance whether a service is just registered or fully ready.
- Scene-based Grouping: Services organized by the scene that registered them.
- Search & Filtering: Find services quickly with fuzzy search.
- Script Navigation: Click to open service implementation files.
- GameObject Pinging: Click MonoBehaviour services to highlight them in the scene.
// Registration & Readiness
void RegisterService<T>(T service, string registeredBy = null) where T : class;
void RegisterServiceWithCircularExemption<T>(T service, string registeredBy = null) where T : class;
void ReadyService<T>() where T : class;
void UnregisterService<T>() where T : class;
// Synchronous Access
T GetService<T>() where T : class;
bool TryGetService<T>(out T service) where T : class;
// Asynchronous Access (automatically uses UniTask when available)
Task<T> GetServiceAsync<T>(CancellationToken cancellationToken = default) where T : class;
// Returns UniTask<T> when UniTask package is installed
// Dependency Injection
IServiceInjectionBuilder InjectServicesAsync(object target);
// Management
IReadOnlyList<ServiceInfo> GetAllServices();
IServiceInjectionBuilder WithCancellation(CancellationToken cancellationToken);
IServiceInjectionBuilder WithTimeout(float timeoutSeconds);
IServiceInjectionBuilder WithErrorHandling(Action<Exception> errorHandler);
void Execute(); // Fire-and-forget
Task ExecuteAsync(); // Awaitable (UniTask when available)
- Use interfaces for service contracts to maintain loose coupling.
- Keep services stateless when possible for better testability.
- Prefer composition over inheritance for complex service dependencies.
- Register early in the application lifecycle.
ServiceKitBehaviour
automates this inAwake
. - Initialize wisely. Place dependency-related logic in
InitializeService
orInitializeServiceAsync
when usingServiceKitBehaviour
. - Global services should be registered in persistent scenes or DontDestroyOnLoad objects.
- Mark dependencies as optional when they're not critical for functionality.
- Use timeouts for service resolution to avoid indefinite waits.
- Handle injection failures gracefully with proper error handling.
- Avoid circular dependency exemptions unless absolutely necessary and the lifecycle is fully understood.
- Install UniTask for automatic performance improvements in async operations.
- Use async initialization in
InitializeServiceAsync()
for I/O operations to avoid blocking the main thread. - Batch service resolution when possible using
UniTask.WhenAll()
orTask.WhenAll()
. - Profile on target platforms - UniTask benefits are most noticeable on mobile and lower-end devices.
ServiceKit has been extensively benchmarked to ensure excellent performance across all operations. The framework delivers production-ready performance with sub-millisecond to low-millisecond execution times that make it suitable for real-time applications.
Operation | Average Time | Throughput | Category |
---|---|---|---|
TryGetService | 0.004ms | 245,700 ops/sec | ๐ ABSOLUTE CHAMPION |
IsServiceRegistered | 0.005ms | 220,614 ops/sec | ๐ ULTRA CHAMPION |
IsServiceReady | 0.007ms | 147,477 ops/sec | ๐ ULTRA CHAMPION |
GetService (Synchronous) | 0.010ms | 103,000 ops/sec | โก Lightning Fast |
GetServiceAsync | 0.018ms | 54,789 ops/sec | โก Lightning Fast |
GetAllServices | 0.021ms | 47,491 ops/sec | โก Lightning Fast |
Service Status Checking | 0.023ms | 42,610 ops/sec | โก Lightning Fast |
GetService Multiple Types | 0.025ms | 40,016 ops/sec | โก Lightning Fast |
GetServicesWithTag | 0.026ms | 38,493 ops/sec | โก Lightning Fast |
Operation | Average Time | Throughput | Category |
---|---|---|---|
GetService NonExistent | 0.002ms | 614,931 ops/sec | ๐ CHAMPION |
Clear All Services | 0.024ms | 42,082 ops/sec | โก Lightning Fast |
Service Discovery | 0.042ms | 23,805 ops/sec | โก Lightning Fast |
Tag System (Complex) | 0.154ms | 6,491 ops/sec | ๐ TAG CHAMPION |
RegisterService Simple | 0.594ms | 1,686 ops/sec | โก Excellent |
RegisterService WithTags | 0.600ms | 1,666 ops/sec | โก Excellent |
RegisterService WithDependencies | 0.654ms | 1,529 ops/sec | โก Excellent |
RegisterService WithCircularExemption | 1.158ms | 863 ops/sec | โก Excellent |
RegisterAndReadyService | 1.196ms | 837 ops/sec | โก Excellent |
DontDestroyOnLoad Services | 1.340ms | 746 ops/sec | โก Excellent |
MonoBehaviour Services | 1.418ms | 705 ops/sec | โก Excellent |
Scene Service Management | 1.522ms | 657 ops/sec | โก Excellent |
Complete Service Lifecycle | 1.722ms | 581 ops/sec | โก Excellent |
ReadyService | 1.726ms | 579 ops/sec | โก Excellent |
Service Tag Management | 1.791ms | 558 ops/sec | โก Excellent |
UnregisterService | 1.880ms | 532 ops/sec | โก Excellent |
Operation | Average Time | Throughput | Category |
---|---|---|---|
High Volume Resolution (1000x) | 2.763ms | 362 ops/sec | โก Excellent |
Service Cleanup and Reregistration | 3.680ms | 272 ops/sec | โ Good |
Multiple Services Lifecycle | 5.062ms | 198 ops/sec | โ Good |
Inject Services With Timeout | 5.431ms | 184 ops/sec | โ Good |
ServiceKitTimeoutManager | 6.107ms | 164 ops/sec | |
Inject Services Complex Graph | 7.755ms | 129 ops/sec | โ Good |
Register 10 Services | 17.152ms | 58 ops/sec | โ Good |
Register 25 Services | 43.955ms | 23 ops/sec | โ Good |
Memory Allocation - Service Creation | 65.429ms | 15 ops/sec | |
Register 50 Services | 91.096ms | 11 ops/sec | โ Good for Volume |
Operation | Average Time | Throughput | Category |
---|---|---|---|
Async Service Resolution (100x) | 16.413ms | 61 ops/sec | |
GetServiceAsync With Delay | 34.333ms | 29 ops/sec | |
Concurrent Service Access (50x20) | 36.818ms | 27 ops/sec | |
Rapid Service Lifecycle (100x) | 198.721ms | 5 ops/sec | โก Excellent for Volume |
High Volume Registration (1000x) | 1867.780ms | 1 ops/sec | ๐ฅ High Volume Stress |
Memory Pressure (50x100) | 9209.677ms | 0 ops/sec | ๐ง Memory Stress Test |
๐ Outstanding Core Operations
- Sub-millisecond service resolution: TryGetService (0.004ms), IsServiceRegistered (0.005ms), IsServiceReady (0.007ms)
- Lightning-fast service access: GetService operations consistently under 0.02ms
- Exceptional tag system: Complex tag queries with 5 service types perform at 0.154ms
- Perfect scaling: Linear performance scaling with predictable overhead
โก Real-World Performance
- Frame-rate friendly: All core operations are fast enough for 60fps+ applications
- Memory efficient: Excellent memory management under extreme pressure (50MB+ tests)
- Concurrent safe: Handles 1000+ concurrent operations without failure
- Production ready: Consistent performance across all operation categories
๐ฎ Unity-Optimized
- MonoBehaviour integration: 1.418ms average with GameObject lifecycle
- Scene management: 1.522ms for complex scene service operations
- DontDestroyOnLoad: 1.340ms for persistent service handling
- PlayMode compatibility: Robust performance in Unity's runtime environment
ServiceKit includes a comprehensive benchmark suite that tests:
- Service Registration Patterns: Simple, tagged, bulk registration
- Service Resolution: Sync/async, with/without tags
- Dependency Injection: Single, multiple, inherited, optional dependencies
- Unity Integration: MonoBehaviour, DontDestroyOnLoad, scene management
- Async Operations: Timeout functionality and cancellation
- Stress Testing: High-volume operations and concurrent access
The benchmark results above were obtained using the following configuration:
Hardware:
- Platform: Windows 10 (CYGWIN_NT-10.0 3.3.4)
- Architecture: x86_64 (64-bit)
- CPU: Modern multi-core processor (specific details may vary)
- RAM: Sufficient for Unity Editor and test execution
- Storage: SSD recommended for optimal test performance
Software:
- Unity Editor: Latest LTS version (specific version may vary)
- .NET Framework: Unity's integrated .NET runtime
- Test Framework: Unity Test Runner with NUnit
- Build Configuration: Development build in Editor mode
Test Methodology:
- Warm-up Iterations: 2-5 iterations to stabilize performance
- Benchmark Iterations: 10-1000 iterations depending on operation complexity
- Statistical Analysis: Average, median, min/max, standard deviation, and throughput
- Isolation: Each test runs independently with proper cleanup
- Repeatability: Multiple test runs to ensure consistent results
Performance Variables:
- Results may vary based on hardware specifications
- Unity Editor overhead affects absolute timing but not relative performance
- Background processes and system load can influence results
- Release builds typically show improved performance over Editor results
To validate performance on your specific hardware:
- Open Unity Test Runner (
Window โ General โ Test Runner
) - Switch to EditMode tab for core benchmarks
- Switch to PlayMode tab for Unity integration benchmarks
- Navigate to
ServiceKit/Tests/PerformanceTests
and run individual or comprehensive suites - Compare your results with the baseline metrics above
Note: Your results may differ based on your hardware configuration, Unity version, and system environment. The relative performance characteristics and operation rankings should remain consistent across different setups.
For Maximum Performance:
// ๐ ABSOLUTE FASTEST: Safe service access (0.004ms - 245,700 ops/sec)
if (serviceKit.TryGetService<IPlayerService>(out var service))
{
// Use service - this is the fastest pattern
}
// ๐ ULTRA-FAST: Service status checking (0.005ms - 0.007ms)
bool isRegistered = serviceKit.IsServiceRegistered<IPlayerService>();
bool isReady = serviceKit.IsServiceReady<IPlayerService>();
// โก EXCELLENT: Direct service access (0.010ms)
var playerService = serviceKit.GetService<IPlayerService>();
// โ
Good: Async when services may not be ready (0.018ms)
var playerService = await serviceKit.GetServiceAsync<IPlayerService>();
// โก EXCEPTIONAL: Tag-based discovery (0.026ms)
var performanceServices = serviceKit.GetServicesWithTag("performance");
Registration Optimization:
// โก FASTEST: Simple registration (0.594ms)
serviceKit.RegisterService<IPlayerService>(playerServiceInstance);
serviceKit.ReadyService<IPlayerService>();
// โก EXCELLENT: Combined operation (1.196ms)
serviceKit.RegisterAndReadyService<IPlayerService>(playerServiceInstance);
// โ
Good: With tags for organization (0.600ms + ready time)
serviceKit.RegisterService<IPlayerService>(playerService,
new[] { new ServiceTag("core"), new ServiceTag("player") });
Memory Optimization:
// โ
Reuse services rather than frequent creation
serviceKit.RegisterAndReadyService<IPlayerService>(playerServiceInstance);
// โ
Use ServiceKitBehaviour for optimal lifecycle management
public class PlayerController : ServiceKitBehaviour<IPlayerController>
{
// Automatic registration (0.594ms), injection (~5ms), and cleanup (1.880ms)
}
Batch Operations:
// โก EXCELLENT: Bulk resolution is very efficient (2.763ms for 1000 operations)
for (int i = 0; i < 1000; i++)
{
var service = serviceKit.GetService<IPlayerService>(); // ~0.003ms each
}
// โ
Good: Async batch operations
var (player, inventory, audio) = await UniTask.WhenAll(
serviceKit.GetServiceAsync<IPlayerService>(),
serviceKit.GetServiceAsync<IInventoryService>(),
serviceKit.GetServiceAsync<IAudioService>()
);
UniTask Performance Boost:
- Async operations maintain excellent performance (0.018ms vs 0.010ms sync)
- Minimal async overhead - only 80% slower than synchronous
- Excellent concurrent handling - 1000+ operations without failure
- Zero-allocation async for most operations when UniTask is installed
ServiceKit's performance characteristics make it suitable for:
- High-frequency gameplay systems (player controllers, input handlers)
- Frame-critical applications (VR, AR, 60fps+ games)
- Mobile applications (memory-constrained environments)
- Complex dependency graphs (large-scale applications)
- Real-time multiplayer (low-latency service access)
The framework's sub-millisecond core operations ensure that dependency injection never becomes a performance bottleneck in your Unity applications.
Version 2.0 includes breaking changes to improve code readability and self-documentation. If you have custom services that extend ServiceKitBehaviour<T>
, you'll need to update your code:
// Old (v1.x)
if (Registered) { /* ... */ }
if (Ready) { /* ... */ }
// New (v2.0)
if (IsServiceRegistered) { /* ... */ }
if (IsServiceReady) { /* ... */ }
// Old (v1.x)
public class MyService : ServiceKitBehaviour<IMyService>
{
protected override void RegisterService()
{
base.RegisterService();
// Custom logic
}
protected override void OnServiceInjectionFailed(Exception ex)
{
base.OnServiceInjectionFailed(ex);
// Custom error handling
}
}
// New (v2.0)
public class MyService : ServiceKitBehaviour<IMyService>
{
protected override void RegisterServiceWithLocator()
{
base.RegisterServiceWithLocator();
// Custom logic
}
protected override void HandleDependencyInjectionFailure(Exception ex)
{
base.HandleDependencyInjectionFailure(ex);
// Custom error handling
}
}
v1.x Method | v2.0 Method |
---|---|
RegisterService() |
RegisterServiceWithLocator() |
UnregisterService() |
UnregisterServiceFromLocator() |
InjectServicesAsync() |
InjectDependenciesAsync() |
MarkServiceReady() |
MarkServiceAsReady() |
OnServiceInjectionFailed() |
HandleDependencyInjectionFailure() |
- Update your
package.json
to version2.0.0
- Search your codebase for any overrides of the old method names
- Replace with the new method names as shown above
- Update any direct field access from
Registered
/Ready
toIsServiceRegistered
/IsServiceReady
- Recompile and test your services
The core functionality remains unchanged - only the naming has been improved for better clarity and maintainability.
We welcome contributions! Please see our Contributing Guidelines for details.
This project is licensed under the MIT License - see the LICENSE file for details.
Built with โค๏ธ for the Unity community