IRC-Galleria

arafat

arafat

Pekka Puupää

Selaa blogimerkintöjä

asiat ovat ja tapahtuvat niin, minun on vain pakko, tarve, joka on pakottava, tarttua jokaiseen aiheeseen ja ne vaihtuvat tahdilla, jossa on vaikea olla mukana, mutta yritänpäs:
saatetaan musiikilla, jota kukaan ei kuuntele, eihän minuakaan lueta
niin että sillä olisi merkitystä; ehkä jonain päivänä, jonain päivänä kun en enää ole, se häilyvä ajatus ja kannustin, muttta sitä musiikkia keventämään - edes vähän - ensin Gwoegew Harrison:
Something - [http://www.youtube.com/watch?v=UKAp-jRUp2o], it's all there, it' it is all that ismple; just to quote, and let the song play, sing to say, all is sayd. youst let it be.

// REMark something in the way she moves, attracts me like no other lover.
// something in the way she whoos me. I don't belive in how, I won't beleve in
// why. ja kitara soi, kun se soi ja se voida vaan soitettaessa, noin!
// huomenna koko maassa on kaunis pakkaspäivä ja suurin maksaja on Lemminkäinen
// joka antoi tulosvaroituksen heti päätöksen kuultuaan. yllätys, yllätys!
// en olisi uskonut sitä mitä kukaan ei kuvitellut; että nokia olisi
// kansallistettava, ja byrokratia on suomessa se, joka pitää sisämarkkinat
// käynnissä. lisäksi oikeudessa odottaa kannetta (käsittelyä) yli 700 "juttua"
// puukartelleista. Rakenneuudistukset ovat puhuttaneet tänään eduskunnan
// kyselytunnilla ja maassa kaikki on hyvin: puhetta riittää, ja välikysymykset
// voidaan ohittaa olankohautuksella, ne on politiikkaa eli yhteisten asioiden
// hoitoa, jotenkin kai ja vissiin lie? Tupakkaa sai ostettua ja alaikäinen
// kertoi kuulleensa juttua: hyvää jälkeä ja nimitetään tutkimukseksi, kun yhden
// ostajan kohdalla yhdessä kaupungissa näin, kaupungissa joka on sellainen
// varsinainen ei sijainniltaan vaan keskisuomalainen opiskelijakaupunki.
// PANKAA SE TUPAKKA ALKON MYYTÄVÄKSI, ONGELMA ON RATKAISTU JA VALVONTAA
// EI TARVI JATKAA, tuon mallin mukaisesti. olen sekä yllättynyt että pettynyt,
// sanoo hän. minä olen sekä pettynyt attä liikuttunut, että asiat voivat
// ja menevät noin ennustettavasti. Ehkä on aika, ehkä aika on kypsä tai minä,
// niin että ahneusjuttuja on kommentoitava tappamalla joku paskanaama, ihan ja
// vaan esimerkiksi. wahlros - on ihminen - jonka tahtoessa voisin tappaa käsin
// ja kiduttamatta. onnea bossi! muutan navettaasi ja harjoittelen karjallasi,
// lehmästä saa sekä maitoa että verta, tappamatta. rakas bossi sinusta saa
// esimerkin, ja itsestä martyyrin! TAAS LAITON UHKAUS, TAAS MINÄ TEEN MIHIN
// SORRUN. mIKSI aINA mINULLE kÄY nIIN eTTÄ on reagoitava ajatuksen tasolla
// uhkausta esittäen: "niin, kyllähän tämä laittoman uhkauksen määritelmän
// täyttää", no totta vitussa se täyttää jos lainkohdassa luetaan, "ken toista
// kohtaan kirveen nostaa" - VITTU, MIÄ EN ENSINNÄKÄÄN OLE KEN JA vielä toisena
// enemmän en nostanut kirvestä siinä jutussa missä tuomittiin. on tuomio jo
// varastossa teolle josta on tuomio, niin ajattelen muutta toimin taas, niin
// teen siitä tekstipelin kun ei kirjoitustaitoni riitä muuhun kuin hätäisesti
// ohjelmointiin. Tulkitaan lakia kun tietomurroista tulee totta tai niin
// kuvitellaan. elämä on sitä varten että katkerasta tulee niin sairas tai vain
// kipeä jotenkin että kiusaaminen ahdistaa tekojen tarpeeeseen: siitä virsi.
// ensinmäisestä hiv-diagnoosista on kolmekymmentä vuotta ja työläisten
// presidentti vastaa Oulusta. laittaako se nyt oulun kuntoon vai vastaako se
// siitä työläisten pressana. sitä ihmiset - mietiskellessä - muistelkaa!
d3d_start
Tells GameMaker:Studio that all further drawing is to be done in 3D mode.
Syntax :
d3d_start()


Returns : Real


Description
With this function you can tell GameMaker:Studio that all further drawing should
be done in 3D mode. This function can be called in any event, but will affect
all drawing done after, so if your game is not completely done in 3D you may
need to switch it off using d3d_end to draw certain parts (and then use this
function again to switch 3D mode back on).

Starting 3D mode will result in the following changes :

•First of all depth testing (also known as Z Buffering) is switched on (using
a 24-bit z-buffer). This means that for each pixel on the screen only the
drawing with the smallest z-value (= depth value) is drawn. If instances have
the same depth then you will get what is known as Z-fighting. This occurs as
the 2 instances attempt to draw at the same level, and inaccuracies in the
rendering due to very close Z value cause ugly effects. To avoid this, try
and make sure instances that might overlap do not have the same depth value!


•Secondly, the normal orthographic projection is replaced by a perspective one.
This means the following. Normally the size of instances on the screen is
independent on its depth. With a perspective projection instances that have
a greater depth will appear smaller. When the depth is 0 it is equal to the
old size (unless you change the projection). The viewpoint for the camera is
placed at a distance above the room. (This distance is equal to the width of
the room; that gives a reasonable default projection.) Only instances in front
of the camera are drawn. So don't use instances with a depth smaller than 0
(or at least not smaller than -w where w is the width of the room or the view).


•Thirdly, the vertical y-coordinate is reversed. While normally the (0,0)
position is at the top-left of the view, in 3D mode the (0,0) position is at
the bottom-left position, as is normal for 3-dimensional views.



Example :
d3d_start();

This code has been placed in the create event of an instance to tell
GameMaker:Studio that all further drawing should be done in 3D mode.


Back : 3D Setup Next : d3d_end
© Copyright YoYo Games Ltd. 2013 All Rights Reserved

--
--

// what more can I say; I have a plan, dr. King had a dream, I do have a plan.
// dreams are for different kind, plans to fullfill the arguments, but are to
// be executed, anyway. done... I have a plan! to come up with a language or
// interface for ppl with no way to express them self. be an autist or be a
// being that knows of that she has a way or no way to express herself, except
// yourself with computer; computer make it all possible, in recard to be felt
// to be able to build a view that others like her if none else to be, not
// wander wheter to be and how or why. RELEASE YOURSELF, DO NOT BE ASHAMED;
// just creatte an environment that you rule; become a dictator in your own
// world, forget that you are a human, be a being and become the being you are!
// What more can I say...
Cula Shaker or Crispian Mills - Tattva : what more can I say [http://www.youtube.com/watch?v=2bYj2o7y4rk] :
what more the is to say but listen for Crispian Milllsa kind of genius:

Songwriters: WINTER-HART, PAUL/BEVAN, ALONZA GEORGE/MILLS, CRISPIAN
Tattva, acintya bheda bheda tattva (4 times)
Like the flower and the scent of summer
Like the sun and the shine
Well the truth may come in strange disguises
Send a message to your mind
Tattva, acintya bheda bheda tattva (4 times)
At the moment that you wake from sleeping
And you know it's all a dream
Well the truth may come in strange disguises
Never knowing what it means
Tattva, acintya bheda bheda tattva (4 times)
For you shall be tomorrow
Like you have been today
If this was never ending
What more can you say?

"So, what more can I say? - let the music ve and sons to speak

Fatman
PS. Yet i prefe, over my typos, infece mushroom á la c64 -
[http://www.youtube.com/watch?v=So5J1CNa0GA] - see me now

Etkö vielä ole jäsen?

Liity ilmaiseksi

Rekisteröityneenä käyttäjänä voisit

Lukea ja kirjoittaa kommentteja, kirjoittaa blogia ja keskustella muiden käyttäjien kanssa lukuisissa yhteisöissä.