Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate

Primary tabs

  • View
  • Collections
  • Comments(active tab)
  • Followers
  • Friends
  • Favorites
Breakthrough..I got it
Thursday, January 12, 2023 - 04:25

Breakthrough..I got it working with the following snip:

for(int y = 0; y < eset->misc.net_pc_count; y++){

Entity *nete = new Entity();

    nete->stats.animations = "animations/enemies/training_dummy.txt";
    nete->loadAnimations();
    nete->stats.pos = pc->stats.net_pc[y].pos;
    nete->stats.direction = pc->stats.net_pc[y].dir;
    entities.push_back(nete);

}