Closed Thread
Page 1 of 5 123 ... LastLast
Results 1 to 10 of 46

Thread: A-Z Materials

  1. #1
    Wire Sofaking ahref's Avatar
    Join Date
    Jul 2008
    Posts
    520

    Default A-Z Materials

    Theres a lot of talk around the forums about making text using holograms and although positioning multiple holograms per letter is cool and challenging. I was looking for something a bit more simple.

    I have created materials for the letters A-Z in capitals using the same font and color scheme as the blue button materials(0-9).

    Its all fixed this article is fantastic.

    Creating 8-bit Alpha Transparent PNG Files


    Capitals done. (ahref/letters/A)
    Lowercase done.(ahref/letters/la)
    numbers done. (ahref/letters/1)
    ! (!)
    " (dquote)
    ' (quote)
    ? (pound)
    $ (dollar)
    € (euro)
    % (percent)
    ^ (caret)
    & (and)
    * (star)
    ( (obracket)
    ) (cbracket)
    - (dash)
    + (plus)
    , (comma)
    . (period
    ? (question)
    / (fslash)
    \ (bslash)
    | (line)
    ~ (tilde)
    = (equal)

    heres a little preview:


    RELEASED.

    heres an expression i used to test them:
    Code:
    @name Letters tester
    @inputs A B
    @outputs 
    @persist S:array I 
    if (first()) {
        S:pushString("ahref/letters/A")
        S:pushString("ahref/letters/B")
        S:pushString("ahref/letters/C")
        S:pushString("ahref/letters/D")
        S:pushString("ahref/letters/E")
        S:pushString("ahref/letters/F")
        S:pushString("ahref/letters/G")
        S:pushString("ahref/letters/H")
        S:pushString("ahref/letters/I")
        S:pushString("ahref/letters/J")
        S:pushString("ahref/letters/K")
        S:pushString("ahref/letters/L")
        S:pushString("ahref/letters/M")
        S:pushString("ahref/letters/N")
        S:pushString("ahref/letters/O")
        S:pushString("ahref/letters/P")
        S:pushString("ahref/letters/Q")
        S:pushString("ahref/letters/R")
        S:pushString("ahref/letters/S")
        S:pushString("ahref/letters/T")
        S:pushString("ahref/letters/U")
        S:pushString("ahref/letters/V")
        S:pushString("ahref/letters/W")
        S:pushString("ahref/letters/X")
        S:pushString("ahref/letters/Y")
        S:pushString("ahref/letters/Z")
        S:pushString("ahref/letters/la")
        S:pushString("ahref/letters/lb")
            S:pushString("ahref/letters/lc")
        S:pushString("ahref/letters/ld")
        S:pushString("ahref/letters/le")
        S:pushString("ahref/letters/lf")
            S:pushString("ahref/letters/lg")
        S:pushString("ahref/letters/lh")
        S:pushString("ahref/letters/li")
        S:pushString("ahref/letters/lj")
            S:pushString("ahref/letters/lk")
            S:pushString("ahref/letters/ll")
        S:pushString("ahref/letters/lm")
        S:pushString("ahref/letters/ln")
        S:pushString("ahref/letters/lo")
            S:pushString("ahref/letters/lp")
        S:pushString("ahref/letters/lq")
        S:pushString("ahref/letters/lr")
        S:pushString("ahref/letters/ls")
            S:pushString("ahref/letters/lt")
        S:pushString("ahref/letters/lu")
        S:pushString("ahref/letters/lv")
        S:pushString("ahref/letters/lw")
            S:pushString("ahref/letters/lx")
        S:pushString("ahref/letters/ly")
        S:pushString("ahref/letters/lz")
        S:pushString("ahref/letters/dash")
            S:pushString("ahref/letters/plus")
        S:pushString("ahref/letters/period")
        S:pushString("ahref/letters/!")
        S:pushString("ahref/letters/question")
            S:pushString("ahref/letters/dquote")
        S:pushString("ahref/letters/quote")
        S:pushString("ahref/letters/dollar")
        S:pushString("ahref/letters/euro")
            S:pushString("ahref/letters/pound")
        S:pushString("ahref/letters/percent")
        S:pushString("ahref/letters/caret")
        S:pushString("ahref/letters/and")
            S:pushString("ahref/letters/star")
        S:pushString("ahref/letters/obracket")
        S:pushString("ahref/letters/cbracket")
        S:pushString("ahref/letters/line")
            S:pushString("ahref/letters/fslash")
        S:pushString("ahref/letters/bslash")
        S:pushString("ahref/letters/tilde")
        S:pushString("ahref/letters/equal")
            S:pushString("ahref/letters/period")
             S:pushString("ahref/letters/1")
        S:pushString("ahref/letters/2")
            S:pushString("ahref/letters/3")
             S:pushString("ahref/letters/4")
        S:pushString("ahref/letters/5")
            S:pushString("ahref/letters/6")
            S:pushString("ahref/letters/7")
            S:pushString("ahref/letters/8")
             S:pushString("ahref/letters/9")
        S:pushString("ahref/letters/0")
            holoCreate(1)
    holoScale(1,vec(10,10,10))
    }
    
    if(A & ~A){
        I++
        holoMaterial(1,S:string(I))
    }elseif(B & ~B){
        I--
        holoMaterial(1,S:string(I))
    }
    Attached Files Attached Files
    Last edited by ahref; 10-04-2009 at 07:57 AM.
    A-Z Materials - Released!!!!!!!

  2. #2
    Wirererer Venompapa's Avatar
    Join Date
    Feb 2008
    Location
    Slovakia
    Posts
    179

    Default Re: A-Z Materials

    Very nice.
    Can you make alpha backgrounded materials? Better for holograms i think.

  3. #3
    Wire Sofaking ahref's Avatar
    Join Date
    Jul 2008
    Posts
    520

    Default Re: A-Z Materials

    They are easier to read with a background.
    A-Z Materials - Released!!!!!!!

  4. #4
    Developer Matte's Avatar
    Join Date
    Jan 2009
    Location
    Norway
    Posts
    3,109

    Default Re: A-Z Materials

    Moved to WM Addons.
    "If anybody says he can think about quantum physics without getting giddy, that only shows he has not understood the first thing about them."
    -- Niels Bohr

  5. #5
    Wire Sofaking Beer's Avatar
    Join Date
    Jul 2007
    Location
    Dallas, Texas
    Posts
    1,357

    Default Re: A-Z Materials

    Meh.. noble effort I guess.

    I don't see this as being very useful, and I really don't like the fact that the colors are basically chosen for everyone. Letters are also sloppily misaligned.

    The colors SHOULD be, in my opinion, black text on white background, so if you change the color of the hologram/prop, it will change the white background to any color you choose and leave the text black. Since there's really no way that I know of to be able to set the text/bg colors separately short of using RT, that would give the most flexibility.

  6. #6
    Wire Sofaking Unsmart's Avatar
    Join Date
    Dec 2008
    Location
    Belgium OR BANland
    Posts
    1,965

    Default Re: A-Z Materials

    How about you rescript the Label stool, to make it able to attach text to holos?
    New server IP: 89.238.160.17:27018
    Hologram contraptions 1 Holo contraptions 2 EGP stuff Holo minigun Holo javelin rocket launcher
    Unsmart: I doubt the intelligence of some people.
    Drunkie: Nobody could have said that any better than Unsmart.

    Unsmart: Solece, I totally did your mom yesterday
    Solece: Who hasnt

    Divran: there are more retarded people than there are clever people in this world

  7. #7
    Wire Weeaboo Pyro-Fire's Avatar
    Join Date
    Aug 2007
    Location
    WA, Australia
    Posts
    1,804

    Default Re: A-Z Materials

    Quote Originally Posted by Beer View Post
    Meh.. noble effort I guess.

    I don't see this as being very useful, and I really don't like the fact that the colors are basically chosen for everyone. Letters are also sloppily misaligned.

    The colors SHOULD be, in my opinion, black text on white background, so if you change the color of the hologram/prop, it will change the white background to any color you choose and leave the text black. Since there's really no way that I know of to be able to set the text/bg colors separately short of using RT, that would give the most flexibility.
    This.

    Fix the aligning and put them on a white background, and it will probably get commited



  8. #8
    Wire Sofaking ahref's Avatar
    Join Date
    Jul 2008
    Posts
    520

    Default Re: A-Z Materials

    there are NO aligning issues. they are all aligned to the centre of the material. You see them misaligned there because doors are not even in their width.

    You should have tried them before thinking this :P.

    As for the colors that shouldn't be a problem. Whilst i do the colors i may do lowercase letters aswell. Does anyone want symbols aswell. i would do "!,."



    See they align perfectly on things with equal proportions.
    Last edited by ahref; 08-07-2009 at 04:20 AM.
    A-Z Materials - Released!!!!!!!

  9. #9
    Wire Sofaking Unsmart's Avatar
    Join Date
    Dec 2008
    Location
    Belgium OR BANland
    Posts
    1,965

    Default Re: A-Z Materials

    Quote Originally Posted by ahref View Post


    That's kickass, Im adding this to my server when I get back, it looks really good on those holos, also, yes , Id like ", ! ? as well lol.
    New server IP: 89.238.160.17:27018
    Hologram contraptions 1 Holo contraptions 2 EGP stuff Holo minigun Holo javelin rocket launcher
    Unsmart: I doubt the intelligence of some people.
    Drunkie: Nobody could have said that any better than Unsmart.

    Unsmart: Solece, I totally did your mom yesterday
    Solece: Who hasnt

    Divran: there are more retarded people than there are clever people in this world

  10. #10
    Wire Sofaking ahref's Avatar
    Join Date
    Jul 2008
    Posts
    520

    Default Re: A-Z Materials

    Okay everything is done. Fireworks really wasn't helpful. I tried batch commanding it but .

    Gotta run a few more batch scripts and then reupload :P.

    DONE :P:



    Ill update the first post with the new zip
    Last edited by ahref; 08-07-2009 at 05:43 AM.
    A-Z Materials - Released!!!!!!!

Closed Thread
Page 1 of 5 123 ... LastLast

LinkBacks (?)

  1. 02-06-2010, 08:49 AM

Similar Threads

  1. Replies: 5
    Last Post: 07-17-2009, 11:33 AM
  2. Missing materials!
    By Blynx in forum Installation and Malfunctions Support
    Replies: 5
    Last Post: 07-26-2007, 03:40 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
proceed-collector
proceed-collector
proceed-collector
proceed-collector
linguistic-parrots
linguistic-parrots
linguistic-parrots
linguistic-parrots