Lately I\u2019ve been dreaming about new energies and creatures that want to be pulled into this world. In my dreams I usher them through portals, create havens, give them voice. Last night I met the cutest creatures made from consciousness spore prints, called soul prints. Here is a distant relative from a hybrid kingdom who wanted to meet you.
Psychic art co-created with Midjourney and voiceover by Speechify.
I had a vision of bathtubs floating in space. It was before birth. Before I took this form. My soul tribe and I were disembodied spirits bathing in a row of cosmic bathtubs, waiting to be born. This is where we concocted our personalities \u2014 which is different from our consciousness or soul. We each sat in our own bathtub like cauldrons \u2013 adjusting the temperature and flow of the starry water \u2014 adding a little bit of this and a little bit of that \u2014 until we were just perfect for the life that we chose. We know we are not our personalities, we are the bathers in the cosmic bathtubs. Our personality is just a layer \u2014 a residue that we bathed ourselves in. It can always be washed off.
Ok I have run into many frustrating problems.
I first install the game, load up spore and well there are no new parts and no new button to press.
I thought I needed the patch, so I got that and installed, Then loaded the game up again and it still said I needed to patch, Again and again I install and update and it still says that there is a new patch( the same patch btw).
Then I got thinking maybe it is because I have spore installed on my secondary drive, So I went to uninstall C&C pack, thinking that maybe the C&C pack got installed on the wrong drive but lone behold I CAN'T DO THAT WITH OUT FIRST UNINSTALLING SPORE!
UUGGG! I just want to play my damn game!
I am not really against uninstalling then reinstalling if I can get my save files out (Looked online where they are and I still can't find them)
If Anyone has any ideas tell me!
I've never had that happen. I'm guessing the logical thing would be to reinstall but that can be a pain in the ass.
I hope you can play soon. I liked playing around with the Creepy and Cute parts (mainly the creepy parts).
The creature above has quite a few of the creepy parts.
It could be that the save file information you got off the internet didn't apply to the OS you were using, on XP it's C:\Documents and Settings\Your user name\Application Data\Spore\My Spore Creations. On Vista it's C:\Users\Your user name\AppData\Roaming\Spore. The other major problem that people seem to have when finding the folder is that the application data folder is hidden by default, so you'll need to have Windows show your hidden folders. For XP, go to "Tools", then "Folder Options...", click "View", check "Show hidden files and folder" and click "OK". For Vista click "Start, then "Control Panel, then "Appearance and Personalization", then "View", then "Advanced settings", check "Show hidden files and folders" and click "OK". You should now be able to find and backup all your save data so that you can uninstall and reinstall the game without losing any creations or progress. I hope this helped.
Uninstalled, Tried reinstalling, grabbed my case and lone behold the game booklet was missing ( has the cd key on it). great.....................
I'm looking through everything in my room right now. But I bet I won't find it. And I want online functionality(well I guess I would not be missing out on much) so I can't just get a key-gen......... This is bullshit, Buying all my stuff on Steam now.
Waas able to find a key online so I got spore reinstalled and I went to go install the C&C pack and it says that there is no Spore installed on my computer.
uuuuuuuuuuuuuuuuuugggggggggggggggg.
What the hell it worked before when it was saved in my F drive. why does it not work now?
With Spore you can nurture your creature through five stages of evolution: Cell, Creature, Tribe, Civilization, and Space. Or if you prefer, spend as much time as you like making creatures, vehicles, buildings and spaceships with Spore's unique Creator tools.
With more than 100 new cute and creepy items at your disposal, you have even more power and flexibility to build the perfect creature. Create grotesque creatures with villainous mouths, tuberous eyes, and thorned plates, or go cuddly with big batting eyelashes, cute paws, and adorable details. You can mix and match 60 new parts in all for truly unique looks. Then apply one of 48 new paint styles, and bring it all to life with 24 new animations. And don't forget to publish your new cute and creepy creatures to share them with the world!
This page is intended to be a sort of liner notes for my contributions to Spore. It's a place for me to write up miscellaneous development comments about the parts of the game I worked on, while they're still fresh in my mind. I think the game had over 80 people working on it towards the end, and it was in development for more than 5 years, so basically everything in the game was touched by more than one person and was a team effort. Given that, I will strive for inclusion and accuracy, and I will only talk about systems to which I made substantial contributions. If I've left somebody out or made a mistake, I apologize; please email me and I'll correct it immediately.
A Brief Note on Game Credits This page could be seen as augmenting the game credits[1], like what you'd get if you could click on the names to get more information. I think credits are very important for game developers, our industry, and the art form[2]. Although assigning credit is a bit tricky because large-scale game development has a lot of subtle, overlapping, and often blurry responsibilities, I still think it's interesting to have rough descriptions and color commentary of the major things each person worked on. This is my attempt at this for my contributions, before I forget the details. I hope more developers put up pages like this for the games they work on.
Almost all of my contributions center around the creatures, and helping to bring them to life for players. My favorite moment in the game is when you first attach a leg or arm or mouth to the torso in the creature editor, and your creature comes alive and turns to look at its new limb or roars with its mouth. It's great to watch players be delighted by something they just created.
In most cases I'm limiting my discussions to the specific code and tools that I contributed to directly, which leaves out descriptions of a lot of the incredibly important and groundbreaking work other people did on neighboring code, whether higher level, more player facing aspects of the code, like user interface and gameplay, or lower level systems stuff like resource management, threading, rendering, and the like. It also leaves out the contributions of the awesome artists who used the [sometimes cantankerous] tools and systems.
The first thing I worked on when I started on Spore (in October, 2003) was the creature skin. Unlike games with fixed characters, like a James Bond or Lara Croft game, or games with parameterizable meshes, like the Sims or City of Heroes, Spore has to generate the entire mesh on the fly as the player makes the creature. While a typical game's fixed or parameterizable character mesh might be worked on for days in a 3D modeling tool like Maya by a professional game artist, Spore needs to regenerate the skin in real-time as the player deforms the torso and attaches and detaches limbs. I chose a blobby implicit surface (sometimes called metaballs) to represent the skin.
All of this skin paint development was done in tight collaboration with Spore's Art Director Ocean Quigley. We worked closely to figure out which degrees of freedom we needed to expose to give the creatures convincing organic skin, and how we'd fit it onto existing 3D hardware. Ocean has a detailed post about the skin paint system on his blog, and one of Andrew's SIGGRAPH 2007 Technical Sketches discusses skin paint as well.
Texture Charting As mentioned above, for a normal game, the character mesh is fixed early in the process, and that mesh is then charted (also called "uv'd" in reference to the use of 'u' and 'v' for texture coordinates) to create texture coordinates for all the triangles in the mesh. The final set of texture coordinates is called a texture atlas. Intuitively, we flay the 3D mesh apart, like skinning an animal, until it lays flat on a plane. There are mathematical theorems discussing the difficulty of doing this with minimal distortion, and the plethora of map projections[4] shows there's no "best" way to do this, and so artists will adjust and tune the mapping while the character is being created, until they're happy with the result. This might take a few hours or a day.
By contrast, Spore needs to create a texture atlas almost instantly, because the player can modify the mesh and then go into the editor's Play Mode or Paint Mode and see the results immediately. I wrote a very simple but optimized charter that does a really crappy job compared to a professional artist, but it does the job in 10 milliseconds on our minspec platform. Here's an example of an atlas produced by the charter:
Notice all the individual triangles at the bottom, and the wasted space. You can probably determine the algorithm if you look closely at the two images. The code starts on a random uncharted triangle, then floods outward as it finds neighboring triangles facing in approximately the same cardinal direction in 3D (meaning down the +x, -x, +y, -y, +z, or -z axes). When it can't find any more uncharted triangles attached to the current group and facing the same direction, it projects the group flat onto the plane of the current axis. This guarantees bounded distortion. After charting all triangles, it packs the charts into the texture atlas by sorting them by bounding box size, and then packing the bounding boxes of the charts in 2D texture space in a zig zag manner.
3a8082e126