Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - SoftMoon

Pages: [1] 2 3 ... 24
1
cheers everyone!

2
Meshes / Re: Feathered Tail (Canine & Feline) mod!
« on: September 16, 2017, 04:57:57 pm »
Awesome!
FH may gain fish, birds, and more!


aye!
i reckon i may be able to rig a whole new body model for FH, i've done it in the past for IT
just haven't really been working on any :v

3
Meshes / Feathered Tail (Canine & Feline) mod!
« on: September 16, 2017, 04:17:59 pm »
hey guys!

so, i used my feathered tail from my old IT server and put it in FH, just to see how it'd look
i kinda like it, and thought people might like having a tail like that in their game, so it's up for download here!




(don't mind the textures, lol)

> DOWNLOAD <

cheers!


4
I got a pm from someone who said their game crashed when launching after they downloaded the glow outline effect. im replying here so everyone knows!

When you download the outline or cel shading effects, you MUST download this file. It has a .DDS i believe that's required for both effects to work properly without crashing your game or ending up with a marshmallow preset :v

The link can be found under the DL link to the outline effect but for those who missed it, v click here v
http://www.mediafire.com/file/8ly9eb1jbbtv3uv/Cartoon+Outline.zip

5
Thing is... i've seen someone with the outline but i didn't download the outline program.  I'm not sure how that worked.

aye, that's because in the past i have made a thread introducing the outline/cel shading codes and in that thread i asked people to pm me if they wanted to give the code a try
i think i gave the codes to 10-15 users until now, so if you saw people with outlined/cel shaded presets that is because of my old thread :v

6
thanks!
just in case everyone is free to use these without asking me or anything, just take them lol

7
hey guys!

it's been a while since i've been here, woah

i recently just checked my messages and it turns out i have over 30pms asking for the codes of the preset effects and how to use them, so here you go!





YOU MUST DOWNLOAD THIS FILE BEFORE DOWNLOADING ANY OTHER EFFECT, OR YOUR GAME WILL CRASH!
> CLICK HERE <


HOW TO USE: Cell Shading
1.Download, drag and drop the files in media>materials AND in your my_presets>preset# folder

2.Open your preset .material file and add this at the top
Code: [Select]
import * from "CelShading.material"
3. Still in the .material file, you'll need to add this in
Code: [Select]
pass : CelShadingDecaland this too
Code: [Select]
texture_unit decal
so basically, your mat should look like that:
Code: [Select]
import * from "CelShading.material"
material preset_1_bodyMatL
{
receive_shadows on
technique
{
pass : CelShadingDecal
{
ambient 1.000000 1.000000 1.000000 1.000000
diffuse 1.000000 1.000000 1.000000 1.000000
specular 0.050000 0.050000 0.050000 1.000000
emissive 0.000000 0.000000 0.000000 1.000000
cull_hardware none
cull_software none
texture_unit decal
{
texture preset_1body.jpg
tex_address_mode wrap
filtering trilinear
}
}
}
}

> DOWNLOAD CEL SHADING HERE <






HOW TO USE: Outline
1.Download, drag and drop the files in media>materials AND in your my_presets>preset# folder

2.Open your preset .material file and add this at the top
Code: [Select]
import * from "Outline.material"
3. Still in the .material file, you'll need to add this in
Code: [Select]
pass : OutlineExperimentand this too
Code: [Select]
diffuse 0.0 0.0 0.0 1.0
set $sinkScale 1
set $edgeScale 0.2

so basically, your mat should look like that:
Code: [Select]
import * from "Outline.material"
material preset_1_bodyMatL
{
receive_shadows on
technique
{
pass
{
ambient 1.000000 1.000000 1.000000 1.000000
diffuse 1.000000 1.000000 1.000000 1.000000
specular 0.050000 0.050000 0.050000 1.000000
emissive 0.000000 0.000000 0.000000 1.000000
cull_hardware none
cull_software none
texture_unit
{
texture preset_1body.jpg
tex_address_mode wrap
filtering trilinear
}
}
pass : OutlineExperiment
{
diffuse 0.0 0.0 0.0 1.0
set $sinkScale 1
set $edgeScale 0.2
}
}
}

To change the color of the outline, just mess around with this line
Code: [Select]
diffuse 0.0 0.0 0.0 1.0Just think of it as RGB colors

For example:

Red
Code: [Select]
diffuse 1.0 0.0 0.0 1.0Green
Code: [Select]
diffuse 0.0 1.0 0.0 1.0Blue
Code: [Select]
diffuse 0.0 0.0 1.0 1.0Black
Code: [Select]
diffuse 0.0 0.0 0.0 1.0White
Code: [Select]
diffuse 1.0 1.0 1.0 1.0
etc etc

> DOWNLOAD OUTLINE HERE <







HOW TO USE: Outline & Cel Shading at the same time
1.Download, drag and drop the files in media>materials AND in your my_presets>preset# folder

2.Open your preset .material file and add this at the top
Code: [Select]
import * from "CelShading.material"
import * from "Outline.material"

3. Still in the .material file, you'll need to add this in
Code: [Select]
pass : CelShadingDecalthis too
Code: [Select]
texture_unit decalas well as this
Code: [Select]
pass : OutlineExperimentand this
Code: [Select]
diffuse 0.0 0.0 1.0 1.0
set $sinkScale 1
set $edgeScale 0.2

so basically, your mat should look like that:
Code: [Select]
import * from "CelShading.material"
import * from "Outline.material"
material preset_1_bodyMatL
{
receive_shadows on
technique
{
pass : CelShadingDecal
{
ambient 1.000000 1.000000 1.000000 1.000000
diffuse 1.000000 1.000000 1.000000 1.000000
specular 0.050000 0.050000 0.050000 1.000000
emissive 0.000000 0.000000 0.000000 1.000000
cull_hardware none
cull_software none
texture_unit decal
{
texture preset_1body.jpg
tex_address_mode wrap
filtering trilinear
}
}
pass : OutlineExperiment
{
diffuse 0.0 0.0 0.0 1.0
set $sinkScale 1
set $edgeScale 0.2
}
}
}


! THE PROCESS NEEDS TO BE REPEATED FOR EACH MATERIAL !
(HeadR, HeadL, Tail, BodyR, BodyL, etc)


anyway, thanks for reading, have a good one!
Cheers!

8
if possible, could a mod lock this thread?
thank you <3

9
Presets & Markings / Re: //Softie's Preset Gallery// ~ !REQUESTS OPEN!
« on: January 16, 2016, 03:51:25 pm »
I would love a preset!

Feline
Wings?:No
Special texture:( any fluffy ones)
Special request (Transparancy/Glow/Scars etc): Half one ear  and a scar across her eye
Reference:http://purplecrimsom.deviantart.com/art/A-Kitty-578521041?ga_submit_new=10%253A1450370713

Added to the ON-HOLD section ;v;

Nice presets  ;D

Eyy thanks <3

still open or?// ;a; nice job on all the presets btw!
they look lovely <3

Yup, it's still open! You may request a preset but since I'm rather busy I'm kinda slow with preset pft.
Thank you! <33[/color=beige]

Feline/Canine: Canine
Wings?: No
Special texture: This fur texture: http://www.deviantart.com/art/CoyoteMange-Fur-Texture-462119781
Special request (Transparency/Glow/Scars etc): Everything is on the picture. c:


Reference:



Added to the ON-HOLD section

Hi there xD
*Cough Cough* Please may you make this?
Thanks  ;)
Feline/Canine: Canine.
Wings: No
Reference/Picture:
https://i.gyazo.com/6a4a5d86b483975859319d3a97a1e908.png
Special Features:
Eyes glow at night
Scrolling mane
Thanks  ;) Again

Sure thing! Howerver what texture would you like the scrolling mane to have? And, what do you want the eye glows to look like? I can only see black eyes on the reference xD

Hello c:!
Could I Ask one question? You are making wonderfull presets!
My question is.. If I Have a basic preset of my character (Simple markings) could I Send it to you and could you add some special features to it? Like Edit it? :) That would be just perfect. I Really need a preset for my video making.
Hope to get your answer soon :)

Hello hi! First of all thank you very much!
And you can always PM me with your preset, tell me what I need to edit and I'll be able to give you the edited textures so you can do whatever you want with 'em~

10
Presets & Markings / Re: //Softie's Preset Gallery// ~ !REQUESTS OPEN!
« on: December 15, 2015, 06:31:19 pm »
Not that I have a request or anything, but these are astonishing! I love the amount of detail you put into these pieces! Amazing!

//Girly scree
Thank you very much! <3

i know i made requests and canceled them before because i "knew" how to make presets but those totally backfired XD hope ye dont mind me making a request


Feline/Canine: canine! x3
Wings?: yes but i would like them completely invisable/tranceparent (idk i just want to be able to fly without wings XD)
Special texture: i hope this one is fine! ^.^ http://the-dragon-flame.deviantart.com/art/Free-Canine-Texture-513919394
Special request (Transparancy/Glow/Scars etc): trancparency on the character but only just noticable like maybe enough to see whatever is behind her but only just about also the scar is in her reference also with the eye colour there is the scrolling texture going just around the purple slightly also parts coloured blue to have the scrolling texture also
Reference:
this one here is the scroll texture



this is the actual ref (one with mane one without mane and one showing where i want all the scrolling parts to be dont worry its not a lot XD)





the scrolling is just on the edge of the purple in the eye colour and also that "scar" like mark on her neck

Alrighty! Due to the slots being full I'll need to put your request in the "ON-HOLD" section.

Feline/Canine: Cainine
Wings?:Nope
Special texture: Wolf Fur Texture
Special request (Transparancy/Glow/Scars etc): Glowing Tongue, if possible.
Reference:
--
I loved my last one, so it'd bee awesome if I could get another!
Also, COuld you set the preset as slot 3?

Request added to the ON-HOLD section.
Any special fur texture in mind?

Pages: [1] 2 3 ... 24