-
Notifications
You must be signed in to change notification settings - Fork 1
Entity Creation
Hempfest edited this page Aug 15, 2021
·
2 revisions
Easily create entities and modify their data!
Select an entity you'd like to spawn and give it a location:
Bee bee = Entities.BEE.spawn(Location);
Interally used is Entities.Spawner
, you can make your own "Spawner" like so:
public class TestSpawner extends Entities.Spawner<PolarBear> {
public TestSpawner() {
super(EntityType.POLAR_BEAR);
}
@Override
public PolarBear spawn(@NotNull Location location) {
return super.spawn(location);
}
}
-
- AFK Player Utility
- Command Builder
- Command Utility
- Complete GUI Builder
- Complete Head Database/Locator
- Cooldown Abstraction
- Custom Gradient Color Interface
- Custom ID Generation
- Directional Enumeration
- Economy Interface Wrapper
- Entity Creation Tools
- File Management
- Item Recipe Builder
- Item Modification Builder
- Legacy Safe NamespacedKey
- Listing Collections
- Material Matcher
- Message Formatter
- String Utility
- Tab Completion Builder
- Task Scheduling
- Template Creation
- TextComponent Builder
- Vault Permission Interface Wrapper