• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Planets (Endless Space)

This bundle is marked as pending. It has not been reviewed by a staff member yet.
The pack contains:
  • 1 planet model, 12 textures for it
  • 2 clouds models
  • 6 atmospheric models
  • 3 colonization stages models
  • 1 asteroid belt model to be attached to a planet, 2 animations, one with a tilt, changing its colour will change belt colour
  • moon model

The texture is attached to a planet with this code
JASS:
function SetTexture takes unit u, integer texture_id returns nothing
        set bj_lastCreatedDestructable = CreateDestructable(texture_id, GetUnitX(u) + (10. * Cos(GetUnitFacing(u) * bj_DEGTORAD)), GetUnitY(u) + (10. * Sin(GetUnitFacing(u) * bj_DEGTORAD)), 0., 1., 0)
        call UnitAddAbility(u, 'Agra')
        call IssueTargetOrderById(u, 852511, bj_lastCreatedDestructable)
        call UnitRemoveAbility(u, 'Agra')
        call RemoveDestructable(bj_lastCreatedDestructable)
        call SetUnitAnimation(u, "stand")
    endfunction

You can attach effects either to origin or chest, the difference is that the origin ref point does not rotate with a planet, chest does (clouds and colonization)

Textures from Endless Space
Contents

arctic atmospheric effect (Model)

arctic planet texture (Texture)

arid planet texture (Texture)

blue atmospheric effect (Model)

civilization low (Model)

civilization max (Model)

civilization mid (Model)

clouds (Model)

clouds 2 (Model)

desert planet texture (Texture)

helium atmospheric effect (Model)

helium planet texture (Texture)

hollow planet texture (Texture)

hydrogen atmospheric effect (Model)

hydrogen planet texture (Texture)

jungle planet texture (Texture)

lava atmospheric effect (Model)

lava planet texture (Texture)

methane atmospheric effect (Model)

methane planet texture (Texture)

moon (Model)

ocean planet texture (Texture)

planet asteroid belt (Model)

Planets (Endless Space) (Model)

terrain planet texture (Texture)

tundra planet texture (Texture)

white atmospheric effect (Model)

Top