Anim8or Community

Please login or register.

Login with username, password and session length
Advanced search  

News:

Ian Ross has just released a book on Anim8or. It's perect for a beginner and a good reference for experienced users. It contains detailed chapters on every aspect, with many examples. Get your own copy here: "Anim8or Tutorial Book"

Pages: 1 ... 4 5 [6] 7

Author Topic: ASL Scripts Database  (Read 232151 times)

Raxx

  • Administrator
  • Hero Member
  • *****
  • Posts: 1482
    • View Profile
Re: ASL Scripts Database
« Reply #75 on: February 10, 2014, 08:57:51 pm »

Sorry, seems my webhost is slackin'. Working on it.

[edit]I should mention that the related links under nearly every script should still work, for the most part.
« Last Edit: February 10, 2014, 09:28:16 pm by Raxx »
Logged

GATTISNEW

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: ASL Scripts Database
« Reply #76 on: August 10, 2014, 08:10:09 am »

The link for the ring script  is broken :'(
Logged

Raxx

  • Administrator
  • Hero Member
  • *****
  • Posts: 1482
    • View Profile
Re: ASL Scripts Database
« Reply #77 on: August 12, 2014, 12:06:09 pm »

If any of the links are down, send me a message. I had to reboot the server, should be A-okay now.
Logged

kakachiex

  • Newbie
  • *
  • Posts: 13
    • View Profile
Re: ASL Scripts Database
« Reply #78 on: October 22, 2014, 11:38:56 am »

hello Raxx would be nice to have scrip pack download link, like modeling pack, shape, render etc... it is weird to download all individual would be good to have this option over every category.
Logged

polyGon_tError

  • Jr. Member
  • **
  • Posts: 50
    • View Profile
Re: ASL Scripts Database
« Reply #79 on: March 13, 2015, 11:41:08 am »

Hello Raxx,
why don't you add my modeling tool set here or atleast mention it here, though some of them get replaced by new function of anim8or and i am happy with that but what about other?
Logged

neirao

  • Sr. Member
  • ****
  • Posts: 624
  • Neirao
    • View Profile
Plane Stand-up : Plugin
« Reply #80 on: March 14, 2015, 03:03:19 pm »

hi guys
years ago i change the "Plane Primitive Plug-in / Tyson Collins" 
and create this simple plugin:
Tela(screen) is a "Plane Stand-up!"

only now i remember to share :)

is simple but for me is very helpfull!


« Last Edit: March 14, 2015, 03:08:59 pm by neirao »
Logged

Raxx

  • Administrator
  • Hero Member
  • *****
  • Posts: 1482
    • View Profile
Re: ASL Scripts Database
« Reply #81 on: March 17, 2015, 04:54:41 pm »

Hello Raxx,
why don't you add my modeling tool set here or atleast mention it here, though some of them get replaced by new function of anim8or and i am happy with that but what about other?

I won't add anyone's scripts to the list, there's a character limit to how much you can put in one post and I've already reached it. I intend to put everything on An8Hub when it's complete, and then simply link to that website since it'll have a much more sophisticated library of resources. It's not just you I'm ignoring. I haven't updated the list in more than two years.

That being said, please continue to post your scripts as replies to this topic or in their own topics in this board, so that I can publish them on An8Hub when it's time.

Thank you.
Logged

texastuner

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: ASL Scripts Database
« Reply #82 on: May 16, 2017, 05:08:52 pm »

How would one write a controller script that would randomly position an object (x,y,and or z) per frame. Have tried for 2 days and got nowhere but a lot of crashing. If not proper forum please direct me to proper forum
Logged

Steve

  • Administrator
  • Hero Member
  • *****
  • Posts: 2124
    • View Profile
Re: ASL Scripts Database
« Reply #83 on: May 16, 2017, 08:48:20 pm »

Use the randseed() and frand() functions in a position controller script. The random number generator always starts with the same random when a script is run. This insures repeatability. Otherwise each time the same frame was drawn it would be different.

Quote
// Set position to a random position based on frame number.
float $x, $y, $z;

randseed(frame);
$x = frand()*100.0;
$y = frand()*50.0 + 50.0;
$z = frand()*100.0;

$position = ($x, $y, $z);

So in this script I initialize the pseudo-random number generator with the frame number as it's seed. Then I call it 3 times for each if the x, y and z components of it's location, and scale them to make the object jump about quite radically.



I've also attached a simple project.
Logged

texastuner

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: ASL Scripts Database
« Reply #84 on: May 17, 2017, 06:01:47 pm »

WOW talkin about a duh moment times 2 days. How did i forget randseed. Again Steve u r awesome bro thx for all your hard work and help
Logged

Punth

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: ASL Scripts Database
« Reply #85 on: January 11, 2019, 03:31:34 pm »

Most scripts in many links do not work now. Could any one update them to Google Drive and share them, please?
I would like to get this two scripts as follows. Also it is possible that F8ce can be updated as a new version as possible.

Boolean Operations
Create a wide variety of shapes easily using this plugin! Enables union, intersection and subtraction.
Author: Kubajzz with the help of NickE

F8ce
An an8 version of MakeHuman, allowing you to easily create a variety of humanoid characters.
Author: Bob_I_Ts
Logged

Raxx

  • Administrator
  • Hero Member
  • *****
  • Posts: 1482
    • View Profile
Re: ASL Scripts Database
« Reply #86 on: January 12, 2019, 06:14:32 pm »

@Punth I'm consolidating my domains and hosting. The links should now work.
Logged

hf003

  • Newbie
  • *
  • Posts: 17
    • View Profile
Re: ASL Scripts Database
« Reply #87 on: January 24, 2020, 06:30:55 pm »

Just so you know, the links to most scripts in the database do not work. They redirect to a Wordpress error page.
Some website links are broken as well.
Logged

Raxx

  • Administrator
  • Hero Member
  • *****
  • Posts: 1482
    • View Profile
Re: ASL Scripts Database
« Reply #88 on: January 30, 2020, 03:17:26 pm »

Thanks for reporting. The hosted scripts now work. As for other website links, let me know which ones are broken and I'll remove them.
Logged

polyGon_tError

  • Jr. Member
  • **
  • Posts: 50
    • View Profile
Re: ASL Scripts Database
« Reply #89 on: April 03, 2020, 06:02:46 am »

Where? :|
Logged
Pages: 1 ... 4 5 [6] 7