ninjaknights/camerautils

PocketMine-MP virion designed to assist developers in creating camera-related plugins.

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ninjaknights/camerautils

0.0.1 2025-11-16 05:20 UTC

This package is auto-updated.

Last update: 2025-11-17 05:53:21 UTC


README

CameraUtils Banner

CameraUtils is a PocketMine-MP virion designed to help developers/users use Camera Features.

GitHub stars GitHub forks
Github downloads
GitHub license GitHub issues
Microsoft Docs Packagist

๐Ÿ”Œ Installation

Add CameraUtils to your project via Composer:

composer require ninjaknights/camerautils

๐Ÿ”Œ Basic Setup

Before using the API, you must register it in your pluginโ€™s onLoad() or onEnable() method:

<?php

use ninjaknights\CameraUtils\APIRegistry;
use ninjaknights\CameraUtils\preset\PresetRegistry;

class MyPlugin extends PluginBase {
	public function onEnable(): void {
		// Register CameraUtils API
		if(!APIRegistry::isRegistered()){
			APIRegistry::register($this);
		}
		 // Register default camera presets
		PresetRegistry::registerDefaults();
	}
}

๐Ÿ”ง Usage & Examples

Check out our detailed examples and documentation:

  • ๐Ÿ“ Example Code: See the examples/ folder for practical implementations
  • ๐Ÿ“– Detailed Guide: USAGE.md for comprehensive documentation

๐Ÿ“ฎ Contributing

  • Found a bug or wish to suggest some changes? Open an issue
  • Want to contribute? Fork the repository and make a pull request!

๐Ÿ’ฌ Get Help & Connect to Us

Discord Website

๐Ÿ“œ License

This project is licensed under the GPL-3.0 License - see the LICENSE file for details.

Made with โค๏ธ by NinjaKnights

ยฉ 2025-2026 NinjaKnights
Website | Discord