C++ extension Effekseer for 3D and 2D games.
Project description
igeEffekseer
C++ extension Effekseer for 3D and 2D games.
Before running this tutorial, you have to install igeEffekseer
[pip install igeEffekseer]
The Editor
Get from link : https://effekseer.github.io/en/download.html
Tutorial
https://github.com/indigames/pyxieTutorials/tree/dev/igeEffekseer
Support
- Effeck : .efk
- Texture : .pyxi
APIs
Functions
-
static
- texture_loader
- set the texture loader callback
- use igeCore as a helper to load the texture then give back the texture information (width, height, id, has_mipmap)
textures = {} def f_texture_loader(name, type): print('f_texture_loader - ' + name) tex = core.texture(name) textures[name] = tex return (tex.width, tex.height, tex.id, tex.numMips > 1) igeEffekseer.texture_loader(f_texture_loader)
- texture_loader
-
getset
_particle = igeEffekseer.particle()
- framerate
- the desired framerate
- 60 fps as default
_particle.framerate = 60.0
- framerate
-
particle
_particle = igeEffekseer.particle()
- shoot
- update then render the effekseer system
- shoot(delta_time, clean_screen)
- delta_time : float
- clean_screen : bool optional
_particle.shoot(core.getElapsedTime())
- add
- add the effect to the effekseer system
- handle = _particle.add(name, loop, position, rotation, scale)
- name : string
- the effect string path
- loop : bool optional
- Optional Is looping or not
- position : tuple
- Optional The position optional
- rotation : tuple
- Optional The rotation optional
- scale : tuple
- Optional The scale optional
- name : string
_distortion_handle = _particle.add(name='Simple_Distortion.efk', loop=True, position=(0.0, 0.0, 0.0))
- remove
- remove the effect from effekseer system
- _particle.remove(handle)
- handle : int
- the effect handle
- handle : int
_particle.remove(_distortion_hd)
- stop_all_effects
- remove | stop all the effect from effekseer system
_particle.stop_all_effects()
- set_target_location
- set target location for the effect handle
- _particle.set_target_location(handle, x, y, z)
- handle : int
- the effect handle
- x, y, z : float location
- handle : int
- get_location
- get location from the effect handle
- result = _particle.get_location(handle)
- handle : int
- the effect handle
- result : tuple location
- handle : int
- set_location
- set location for the effect handle
- _particle.set_location(handle, x, y, z)
- handle : int
- the effect handle
- x, y, z : float location
- handle : int
- set_rotation
- set rotation for the effect handle
- _particle.set_rotation(handle, x, y, z)
- handle : int
- the effect handle
- x, y, z : float rotation
- handle : int
- set_scale
- set scale for the effect handle
- _particle.set_scale(handle, x, y, z)
- handle : int
- the effect handle
- x, y, z : float scale
- handle : int
- set_color
- set scale for the effect handle
- _particle.set_scale(handle, red, green, blue, alpha)
- handle : int
- the effect handle
- red, green, blue, alpha : int value channel (0-255)
- handle : int
- get_speed
- get speed from the effect handle
- result = _particle.get_speed(handle)
- handle : int
- the effect handle
- result : float speed
- handle : int
- set_speed
- set speed for the effect handle
- _particle.set_speed(handle, speed)
- handle : int
- the effect handle
- speed : float value
- handle : int
- is_playing
- checking the effect is playing
- result = _particle.is_playing(handle)
- handle : int
- the effect handle
- result : bool. True if the effect is playing
- handle : int
- set_pause
- pause the effect handle
- _particle.set_pause(handle, paused)
- handle : int
- the effect handle
- paused : bool value
- handle : int
- get_pause
- get the pause status from the effect handle
- result = _particle.get_pause(handle)
- handle : int
- the effect handle
- result : bool value
- handle : int
- set_shown
- switch between show or hide of the effect handle
- _particle.set_shown(handle, shown)
- handle : int
- the effect handle
- shown : bool value
- handle : int
- get_shown
- get the show status from the effect handle
- result = _particle.get_shown(handle)
- handle : int
- the effect handle
- result : bool value
- handle : int
- set_loop
- loop (true / false)
- _particle.set_loop(handle, loop)
- handle : int
- the effect handle
- loop : bool value
- handle : int
- get_loop
- get the loop status from the effect handle
- result = _particle.get_loop(handle)
- handle : int
- the effect handle
- result : bool value
- handle : int
- shoot
-
statistic
- drawcall_count
- return the drawcall count
- count = _particle.drawcall_count()
- vertex_count
- return the draw vertex count
- count = _particle.vertex_count()
- update_time
- return the update time take
- time = _particle.update_time()
- time : int (micro second)
- draw_time
- return the draw time take
- time = _particle.draw_time()
- time : int (micro second)
- drawcall_count
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distributions
Close
Hashes for igeEffekseer-0.1.6-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e6a454a19d595ab177f85a2711ca95f98ea45993b42b8d6d4a31fe0394f41ce |
|
MD5 | 392e5d79a82f85a45f4e1364181313d2 |
|
BLAKE2b-256 | ae3c6b3acd8fe58fa80f71024a5b8086953c57922103f42bae553fcdb25bf2a3 |
Close
Hashes for igeEffekseer-0.1.6-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | abc86ce71f8d0c705a6fe7d697127480b8268177bc8e671fa2a3ca075c0708da |
|
MD5 | dcde00a1ba9ad98860d2c7ccbe7b7764 |
|
BLAKE2b-256 | 31561931c0a87a78f9ae214ccd4d7d73ae1c913806fd50e016439fd416edb763 |