The Night Sky

22 replies [Last post]
Joined: 08/06/2010

I'm working on a mod that makes World of Goo darker, more like nighttime. It currently changes almost all images and adds Fly Her to the Moon sparkles to all the balls, as well as replacing a few musics and loops.

If you have any more suggestions, post here! Smile

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 08/06/2010

Oh, yes, also, if you have any balls that you want to include sparkle effects for, just post the ball name and the colors of sparkle (red, yellow, green, blue, purple, pink, black, or white).

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 08/06/2010

This brings up another question: can you merge into a custom balls.xml.bin?

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 09/01/2009

Hmm...
I would highly not recommend merging into custom balls.
If someone else doesn't have the ball installed, when GooTool goes to merge it, it stops abruptly with a cryptic error message. Of course, you could make some dependencies on the goomod, and it might be ok, but I'd rather not install a zillion ball mods just in order to see an albino pokey with some cool particle effects.

Joined: 08/06/2010

I asked DaB already, now the idea is to have those balls use a blank particle called SparkleBallname, which this mod can override. For now I'm just trying to upload it, I think it's the biggest mod on Goofans and the connection keeps timing out. Wink

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 05/05/2010

my DEMON mod is HUGE too. Mine is 16mb (if you call that big for just images)

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 08/06/2010

Mine is in 5 mods, it was too big altogether

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 05/05/2010

WOW, okay THAT beats mine

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 05/05/2010

make sure you check my post on "Wanted: Experienced GooBall creators...."

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 08/06/2010

I did. For the record, the original goomod that I tried to upload was about 67 Mb. Images, sound, xsl. I win! Laughing out loud

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 05/05/2010

I really need the coding for how to change (actually add) particles on an Albino

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 05/05/2010

using .xsl

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 08/06/2010

Look at the "Wanted: Experienced..." forum. Smile

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 05/05/2010

thanks alot. oh and how do you change a common so their body 'rotates'?
using .xsl

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 08/06/2010

look at DaB's island 1 expander, copy the SceneLayer move, change it so it sets the part to "rotate="true""

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 05/05/2010

okay. ill try that... and if thay doesn't work ill try my way

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 05/05/2010

i dont get what i have to do... DaB's chapter 1 expander changes a level, not a gooball... how am i going to change that?

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 08/06/2010

Change a reference to the scene root to "ball".

Change SceneLayer to part.

Change depth to rotate, then make it true.

Delete all the extraneous stuff.

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.

Joined: 05/05/2010

OOOH

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 05/05/2010

like this?

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Copy everything not matched by another rule -->
  <xsl:template match="* | comment()">
    <xsl:copy>
      <xsl:copy-of select="@*" />
      <xsl:apply-templates />
    </xsl:copy>
  </xsl:template>
  <!-- Change Enlarge Island Scene to the right -->
  <xsl:template match="/ball">
    <xsl:copy>
      <xsl:copy-of select="@*" />
      <xsl:apply-templates />
    </xsl:copy>
  </xsl:template>
  <!-- Change Enlarge Background image and re-center -->
  <xsl:template match="/ball/part[@name='bg']">
    <xsl:copy>
      <xsl:copy-of select="@*" />
      <xsl:attribute name="rotate">true</xsl:attribute>
      <xsl:apply-templates />
    </xsl:copy>
  </xsl:template>
</xsl:transform>

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 05/05/2010

OMG! it works

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 05/05/2010

THANK YOU ALBINO POKEY (alot)

TM13's View of the World of Goo: PART 1 is now out!

(I now go by ENDESGA)

Joined: 08/06/2010

You're welcome! Smile

Another Planet finally has an official release! Download chapters 1 through 3 here! Thank you for waiting so long while I kept starting over.