Jump to content

Exmirai

Members
  • Posts

    98
  • Joined

  • Last visited

Everything posted by Exmirai

  1. I Want to add PhysX/Apex Particles system and Turbulence https://developer.nvidia.com/apex-turbulence
  2. Files: FXExport.cpp, FxPrimitives.cpp, FxScheulder.cpp and FxSystem.cpp are located in ojk.exe, not in renderer :\, can we move it?
  3. custom fx system?
  4. How about move fx system into renderer
  5. Possible to increase limit of verts (1024) and objects (32) per model?
  6. where i can enable it?
  7. what about fxaa?
  8. because some of the images become.... ugly after changing them from widescreen to power of-2, and subsequent stretching back to widescreen, for example ... BEFORE: AFTER: I think this will be enough: d
  9. Could we load widescreen images? e.g: 1920 x 1080....
  10. Exmirai

    avi instead roq

    Could we use *.avi videos instead *.roq?
  11. Exmirai

    Entity...

    (
  12. Exmirai

    Entity...

    What about increasing the maximum number of entities?
  13. Exmirai

    MBII

    will be mb2 compatible with openjk?
  14. as some of you know, I'm making a mod for ja like ja++ but for ui module, I need some help on lua, so to the point: I have a function menu:OnESC (I think everyone knows what it is for) when at its performing it should run another lua function ( menu1:OnESC( print('test') ), I wrote all the code, but game still crashes( Here is a code: int UILua_Menu_OnESC( lua_State *L ) { menuDef_t *menu = UILua_CheckMenu( L, 1 ); int id = menu->num; uilua_menu_t *data = UILua_Menu_Get(L, id); if ( lua_type( L, 2 ) != LUA_TFUNCTION) { trap->Print("UILua: Failed to register OnESC function "); return 1; }; data->onESC = luaL_ref( L, LUA_REGISTRYINDEX ); return 1; } void UILua_Menu_OnESC_Call( menuDef_t *menu ) { uilua_menu_t *data = UILua_Menu_Get(UILua.state, menu->num); lua_rawgeti( UILua.state, LUA_REGISTRYINDEX, data->onESC ); UILua_Call( UILua.state, 0, 0 ); }OnESC_Call function executed when "A_ESCAPE" button is pressed Please help
  15. like garry's mod, specifically the load screen, game will receive url from server, and game will load and draw this page possible?
×
×
  • Create New...