Sorry, I didn't understand it the first time. Anyway I use both single and continuous repeating of animations and apart from multipling the end frame, it works correctly for me.
My next theory is, that you don't set the loop mode correctly. At least I don't see it anywhere in your source.
http ...
Search found 20 matches
- Tue Jul 19, 2005 6:46 am
- Forum: Beginners Help
- Topic: Animation Woes
- Replies: 13
- Views: 1615
- Mon Jul 18, 2005 8:35 am
- Forum: Beginners Help
- Topic: Animation Woes
- Replies: 13
- Views: 1615
- Thu Jun 09, 2005 8:57 am
- Forum: Project Announcements
- Topic: Blender DirectX Exporter update (Version 1.3.1)
- Replies: 24
- Views: 7914
- Sun Jun 05, 2005 10:02 pm
- Forum: Beginners Help
- Topic: my "hello world" whats wrong
- Replies: 9
- Views: 895
what about the semicolon after main? there shouldn't be one
edit:
@Armen138 damn, you were faster
Code: Select all
int main() <- no semicolon
{
...
}@Armen138 damn, you were faster
- Sun Jun 05, 2005 2:20 pm
- Forum: Project Announcements
- Topic: Blender DirectX Exporter update (Version 1.3.1)
- Replies: 24
- Views: 7914
to make it work in blender 2.37 go to line 221 and simply delete the mod_meshtools dependency so it looks like this It seems to work fine without it 
Code: Select all
import time, os, sys- Tue May 31, 2005 10:01 pm
- Forum: Beginners Help
- Topic: #include drives me crazy
- Replies: 5
- Views: 899
- Fri May 27, 2005 9:56 pm
- Forum: Beginners Help
- Topic: Very Odd Co-ord System
- Replies: 3
- Views: 622
- Fri May 27, 2005 3:04 pm
- Forum: Advanced Help
- Topic: EventReceiver causes crash [Solved]
- Replies: 11
- Views: 1600
- Thu May 26, 2005 10:05 pm
- Forum: Bug reports
- Topic: Linux - texture wrapping
- Replies: 7
- Views: 1753
- Thu May 26, 2005 9:57 pm
- Forum: Open Discussion and Dev Announcements
- Topic: what happened with CVideoDirectX files?
- Replies: 2
- Views: 831
- Tue May 17, 2005 9:36 pm
- Forum: Beginners Help
- Topic: Weird flashy linux error...
- Replies: 11
- Views: 970
- Tue May 17, 2005 5:11 pm
- Forum: Beginners Help
- Topic: Weird flashy linux error...
- Replies: 11
- Views: 970
- Mon May 16, 2005 7:20 am
- Forum: FAQs, Tutorials, Howtos, and external tool lists
- Topic: another fantastic free global illumination renderer!
- Replies: 14
- Views: 6069
- Wed May 04, 2005 2:33 pm
- Forum: Bug reports
- Topic: not returning getWorkingDirectory value in Linux, solved
- Replies: 3
- Views: 1543
- Wed May 04, 2005 7:17 am
- Forum: Bug reports
- Topic: not returning getWorkingDirectory value in Linux, solved
- Replies: 3
- Views: 1543
not returning getWorkingDirectory value in Linux, solved
Hi,
the getWorkingDirectory function always returns null under Linux. In CFileSystem.cpp, line 105-108 is
#ifdef LINUX
getcwd(WorkingDirectory, (size_t)FILE_SYSTEM_MAX_PATH);
#endif
and should be
#ifdef LINUX
getcwd(WorkingDirectory, (size_t)FILE_SYSTEM_MAX_PATH);
return WorkingDirectory ...
the getWorkingDirectory function always returns null under Linux. In CFileSystem.cpp, line 105-108 is
#ifdef LINUX
getcwd(WorkingDirectory, (size_t)FILE_SYSTEM_MAX_PATH);
#endif
and should be
#ifdef LINUX
getcwd(WorkingDirectory, (size_t)FILE_SYSTEM_MAX_PATH);
return WorkingDirectory ...