Skip to content

Commit 91b1982

Browse files
committed
Cinema 4D C++ SDK 2025.3.0
1 parent 37451cd commit 91b1982

53 files changed

Lines changed: 77 additions & 87 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

plugins/example.main/source/animation/blinker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Bool BlinkerTrack::Animate(const CTrack* track, const CAnimInfo* info, Bool* chg
109109
return true;
110110
}
111111

112-
// be sure to use a unique ID obtained from www.plugincafe.com
112+
// be sure to use a unique ID obtained from developers.maxon.net
113113
#define ID_BLINKERANIMATION 1001152
114114

115115
Bool RegisterBlinker()

plugins/example.main/source/falloff/randomfalloff.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ void RandomFalloff::Sample(const Vector& p, const FalloffDataData& data, Float*
5656

5757
maxon::Result<Bool> RandomFalloff::GetAccessedObjects(const BaseList2D* op, METHOD_ID method, AccessedObjectsCallback& access) const
5858
{
59-
return access.MayAccess(op, ACCESSED_OBJECTS_MASK::DATA, ACCESSED_OBJECTS_MASK::NONE);
59+
return access.MayAccess2(op, ACCESSED_OBJECTS_MASK::DATA, ACCESSED_OBJECTS_MASK::NONE);
6060
}
6161

6262

63-
// be sure to use a unique ID obtained from www.plugincafe.com
63+
// be sure to use a unique ID obtained from developers.maxon.net
6464
#define ID_RANDOMFALLOFF 1019569
6565

6666
Bool RegisterRandomFalloff()

plugins/example.main/source/gui/activeobject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// example code for a menu/manager plugin
22

3-
// be sure to use a unique ID obtained from www.plugincafe.com
3+
// be sure to use a unique ID obtained from developers.maxon.net
44
#define ID_ACTIVEOBJECT 1000472
55

66
#include "activeobject.h"

plugins/example.main/source/gui/activeobject_variabletag.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// example code for a menu/manager plugin
22

3-
// be sure to use a unique ID obtained from www.plugincafe.com
3+
// be sure to use a unique ID obtained from developers.maxon.net
44
#define ID_VARIABLE_TAG_DIALOG 450000282
55

66
#include <stdio.h>

plugins/example.main/source/gui/asynctest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// example code for a menu/manager plugin
22

3-
// be sure to use a unique ID obtained from www.plugincafe.com
3+
// be sure to use a unique ID obtained from developers.maxon.net
44
#define ID_ASYNCTEST 1000955
55

66
#include "c4d.h"

plugins/example.main/source/gui/listview.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// example code for usage of listview elements
22

3-
// be sure to use a unique ID obtained from www.plugincafe.com
3+
// be sure to use a unique ID obtained from developers.maxon.net
44
#define ID_LISTVIEWTEST 1000452
55

66
#include "c4d.h"

plugins/example.main/source/gui/memstat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// be sure to use a unique ID obtained from www.plugincafe.com
1+
// be sure to use a unique ID obtained from developers.maxon.net
22
#define ID_MEMSTAT 200000072
33

44
#include "c4d.h"

plugins/example.main/source/gui/menutest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Bool MenuTest::Execute(BaseDocument* doc, GeDialog* parentManager)
6969

7070
Bool RegisterMenuTest()
7171
{
72-
// be sure to use a unique ID obtained from www.plugincafe.com
72+
// be sure to use a unique ID obtained from developers.maxon.net
7373
return RegisterCommandPlugin(1000956, GeLoadString(IDS_MENUTEST), 0, AutoBitmap("icon.tif"_s), "C++ SDK Menu Test Plugin"_s, NewObjClear(MenuTest));
7474
}
7575

plugins/example.main/source/gui/objectdata_getsetdparameter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "main.h"
99
#include "customgui_texbox.h"
1010

11-
// NOTE: Be sure to use a unique ID obtained from www.plugincafe.com!
11+
// NOTE: Be sure to use a unique ID obtained from developers.maxon.net!
1212
#define ID_GETSETDPARAMETEREXAMPLE 1035580
1313

1414
#define ID_SPLINE 1000

plugins/example.main/source/gui/progressjobs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Bool ProgressTest::ExecuteOptionID(BaseDocument* doc, Int32 plugid, Int32 subid,
178178

179179
Bool RegisterProgressTest()
180180
{
181-
// be sure to use a unique ID obtained from www.plugincafe.com
181+
// be sure to use a unique ID obtained from developers.maxon.net
182182
return RegisterCommandPlugin(1059073, "ProgressTest"_s, PLUGINFLAG_COMMAND_OPTION_DIALOG, nullptr, "C++ SDK Progress Demo"_s, NewObjClear(ProgressTest));
183183
}
184184

0 commit comments

Comments
 (0)